com.sun.enterprise.admin.cli.StopDomainCommand Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.enterprise.admin.cli;
import com.sun.enterprise.universal.process.ProcessManager;
import com.sun.enterprise.universal.process.ProcessManagerException;
import com.sun.enterprise.universal.process.ProcessUtils;
import com.sun.enterprise.util.OS;
import com.sun.enterprise.util.io.FileUtils;
import java.io.File;
import java.io.IOException;
import org.jvnet.hk2.annotations.*;
import org.jvnet.hk2.component.*;
import org.glassfish.api.Param;
import org.glassfish.api.admin.*;
import com.sun.enterprise.admin.cli.remote.RemoteCommand;
import com.sun.enterprise.admin.cli.remote.DASUtils;
/**
* The stop-domain command.
*
* @author Byron Nevins
* @author Bill Shannon
*/
@Service(name = "stop-domain")
@Scoped(PerLookup.class)
public class StopDomainCommand extends LocalDomainCommand {
@Param(name = "domain_name", primary = true, optional = true)
private String userArgDomainName;
@Param(name = "force", optional = true, defaultValue = "true")
Boolean force;
@Param(optional = true, defaultValue = "false")
Boolean kill;
private boolean local;
private static final long WAIT_FOR_DAS_TIME_MS = 60000; // 1 minute
@Override
protected void validate()
throws CommandException {
setDomainName(userArgDomainName);
super.validate(); // which calls initDomain() !!
local = getServerDirs().getServerName() != null;
}
/**
* Override initDomain in LocalDomainCommand to only initialize
* the local domain information (name, directory) in the local
* case, when no --host has been specified.
*/
@Override
protected void initDomain() throws CommandException {
// only initialize local domain information if it's a local operation
if (programOpts.getHost().equals(CLIConstants.DEFAULT_HOSTNAME))
super.initDomain();
else if (userArgDomainName != null) // remote case
throw new CommandException(
Strings.get("StopDomain.noDomainNameAllowed"));
}
@Override
protected int executeCommand()
throws CommandException {
if (local) {
// if the local password isn't available, the domain isn't running
// (localPassword is set by initDomain)
if (getServerDirs().getLocalPassword() == null)
return dasNotRunning(local);
programOpts.setHostAndPort(getAdminAddress());
logger.finer("Stopping local domain on port "
+ programOpts.getPort());
/*
* If we're using the local password, we don't want to prompt
* for a new password. If the local password doesn't work it
* most likely means we're talking to the wrong server.
*/
programOpts.setInteractive(false);
// in the local case, make sure we're talking to the correct DAS
if (!isThisDAS(getDomainRootDir()))
return dasNotRunning(local);
logger.finer("It's the correct DAS");
}
else { // remote
// Verify that the DAS is running and reachable
if (!DASUtils.pingDASQuietly(programOpts, env))
return dasNotRunning(local);
logger.finer("DAS is running");
programOpts.setInteractive(false);
}
/*
* At this point any options will have been prompted for, and
* the password will have been prompted for by pingDASQuietly,
* so even if the password is wrong we don't want any more
* prompting here.
*/
doCommand();
return 0;
}
/**
* Print message and return exit code when
* we detect that the DAS is not running.
*/
protected int dasNotRunning(boolean local) throws CommandException {
if (kill) {
if (local)
return kill();
else // remote. We can NOT kill and we can't ask it to kill itself.
throw new CommandException(Strings.get("StopDomain.dasNotRunningRemotely"));
}
// by definition this is not an error
// https://glassfish.dev.java.net/issues/show_bug.cgi?id=8387
if (local)
logger.warning(Strings.get("StopDomain.dasNotRunning", getDomainRootDir()));
else
logger.warning(Strings.get("StopDomain.dasNotRunningRemotely"));
return 0;
}
/**
* Execute the actual stop-domain command.
*/
protected void doCommand() throws CommandException {
// run the remote stop-domain command and throw away the output
RemoteCommand cmd = new RemoteCommand(getName(), programOpts, env);
cmd.executeAndReturnOutput("stop-domain", "--force", force.toString());
waitForDeath();
if (kill && local) {
kill();
}
}
/**
* Wait for the server to die.
*/
protected void waitForDeath() throws CommandException {
if (!programOpts.isTerse()) {
// use stdout because logger always appends a newline
System.out.print(Strings.get("StopDomain.WaitDASDeath") + " ");
}
long startWait = System.currentTimeMillis();
boolean alive = true;
int count = 0;
while (!timedOut(startWait)) {
if (!isRunning()) {
alive = false;
break;
}
try {
Thread.sleep(100);
if (!programOpts.isTerse() && count++ % 10 == 0)
System.out.print(".");
}
catch (InterruptedException ex) {
// don't care
}
}
if (!programOpts.isTerse())
System.out.println();
if (alive) {
throw new CommandException(Strings.get("StopDomain.DASNotDead",
(WAIT_FOR_DAS_TIME_MS / 1000)));
}
}
private boolean timedOut(long startTime) {
return (System.currentTimeMillis() - startTime) > WAIT_FOR_DAS_TIME_MS;
}
private int kill() throws CommandException {
File prevPid = null;
String pids = null;
try {
prevPid = new File(getServerDirs().getPidFile().getPath() + ".prev");
if (!prevPid.canRead())
throw new CommandException(Strings.get("StopDomain.nopidprev", prevPid));
pids = FileUtils.readSmallFile(prevPid).trim();
String s = ProcessUtils.kill(Integer.parseInt(pids));
if(s != null)
logger.finer(s);
}
catch (CommandException ce) {
throw ce;
}
catch (Exception ex) {
throw new CommandException(Strings.get("StopDomain.pidprevreaderror",
prevPid, ex.getMessage()));
}
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy