blob: 8b8165cc8f8049b71f6ab25ef538eceea934addf [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.db.mysql.actions;
import org.netbeans.modules.db.mysql.util.Utils;
import org.netbeans.modules.db.mysql.DatabaseServer;
import org.netbeans.modules.db.mysql.DatabaseServer.ServerState;
import org.netbeans.modules.db.mysql.impl.StopManager;
import org.netbeans.modules.db.mysql.ui.PropertiesDialog;
import org.netbeans.modules.db.mysql.ui.PropertiesDialog.Tab;
import org.openide.nodes.Node;
import org.openide.util.HelpCtx;
import org.openide.util.actions.CookieAction;
/**
* @author David Van Couvering
*/
public class StopAction extends CookieAction {
private static final Class[] COOKIE_CLASSES =
new Class[] { DatabaseServer.class };
public StopAction() {
putValue("noIconInMenu", Boolean.TRUE);
}
@Override
protected boolean asynchronous() {
return false;
}
@Override
public String getName() {
return Utils.getBundle().getString("LBL_StopAction");
}
@Override
public HelpCtx getHelpCtx() {
return new HelpCtx(StopAction.class);
}
@Override
public boolean enable(Node[] activatedNodes) {
if ( activatedNodes == null || activatedNodes.length == 0 ) {
return false;
}
DatabaseServer server = activatedNodes[0].getCookie(DatabaseServer.class);
if (server == null) {
return false;
}
ServerState state = server.getState();
// Don't be too picky about when to enable stop, as we really don't have
// 100% certainty about what exactly is up with the server
return state != ServerState.DISCONNECTED && !StopManager.getDefault().isStopRequested();
}
@Override
protected void performAction(Node[] activatedNodes) {
final DatabaseServer server = activatedNodes[0].getCookie(DatabaseServer.class);
String path = server.getStopPath();
String message = Utils.getMessage(
"MSG_NoStopPath");
PropertiesDialog dialog = new PropertiesDialog(server);
while ( path == null || path.equals("")) {
if ( ! Utils.displayConfirmDialog(message) ) {
return;
}
if ( ! dialog.displayDialog(Tab.ADMIN) ) {
return;
}
path = server.getStopPath();
}
StopManager.getDefault().stop(server);
}
@Override
protected int mode() {
return MODE_EXACTLY_ONE;
}
@Override
protected Class<?>[] cookieClasses() {
return COOKIE_CLASSES;
}
}