blob: eeb88a2d9cf89f2c835218f4b1c2572165c2f021 [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.apache.brooklyn.entity.webapp.tomcat;
import static java.lang.String.format;
import java.io.InputStream;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import com.google.common.base.Preconditions;
import org.apache.brooklyn.entity.webapp.JavaWebAppSshDriver;
import org.apache.brooklyn.location.ssh.SshMachineLocation;
import org.apache.brooklyn.util.collections.MutableList;
import org.apache.brooklyn.util.collections.MutableMap;
import org.apache.brooklyn.util.net.Networking;
import org.apache.brooklyn.util.os.Os;
import org.apache.brooklyn.util.ssh.BashCommands;
import org.apache.brooklyn.util.text.StringEscapes.BashStringEscapes;
import org.apache.brooklyn.util.time.Duration;
public class TomcatSshDriver extends JavaWebAppSshDriver implements TomcatDriver {
private static final String KEYSTORE_FILE = "keystore";
public TomcatSshDriver(TomcatServerImpl entity, SshMachineLocation machine) {
super(entity, machine);
}
@Override
public void install() {
List<String> urls = resolver.getTargets();
String saveAs = resolver.getFilename();
List<String> commands = new LinkedList<String>();
commands.addAll(BashCommands.commandsToDownloadUrlsAs(urls, saveAs));
commands.add(BashCommands.INSTALL_TAR);
commands.add(format("tar xvzf %s", saveAs));
newScript(INSTALLING)
.environmentVariablesReset()
.body.append(commands)
.execute();
}
@Override
public void customize() {
newScript(CUSTOMIZING)
.body.append("mkdir -p conf logs webapps temp")
.failOnNonZeroResultCode()
.execute();
copyTemplate(entity.getConfig(TomcatServer.SERVER_XML_RESOURCE), Os.mergePaths(getRunDir(), "conf", "server.xml"));
copyTemplate(entity.getConfig(TomcatServer.WEB_XML_RESOURCE), Os.mergePaths(getRunDir(), "conf", "web.xml"));
// Deduplicate same code in JBoss
if (isProtocolEnabled("HTTPS")) {
String keystoreUrl = Preconditions.checkNotNull(getSslKeystoreUrl(), "keystore URL must be specified if using HTTPS for " + entity);
String destinationSslKeystoreFile = getHttpsSslKeystoreFile();
InputStream keystoreStream = resource.getResourceFromUrl(keystoreUrl);
getMachine().copyTo(keystoreStream, destinationSslKeystoreFile);
}
getEntity().deployInitialWars();
}
@Override
public void launch() {
Map<String, Integer> ports = MutableMap.of("httpPort", getHttpPort(), "shutdownPort", getShutdownPort());
Networking.checkPortsValid(ports);
// We wait for evidence of tomcat running because, using SshCliTool,
// we saw the ssh session return before the tomcat process was fully running
// so the process failed to start.
newScript(MutableMap.of(USE_PID_FILE, false), LAUNCHING)
.body.append(
"mv "+getLogFileLocation()+" "+getLogFileLocation()+"-$(date +\"%Y%m%d.%H%M.%S\").log || true",
format("%s/bin/startup.sh >>$RUN/console 2>&1 </dev/null",getExpandedInstallDir()),
BashCommands.waitForFileExists(getLogFileLocation(), Duration.TEN_SECONDS, false)
)
.execute();
}
@Override
public boolean isRunning() {
return newScript(MutableMap.of(USE_PID_FILE, "pid.txt"), CHECK_RUNNING).execute() == 0;
}
@Override
public void stop() {
newScript(MutableMap.of(USE_PID_FILE, "pid.txt"), STOPPING).execute();
}
@Override
public void kill() {
newScript(MutableMap.of(USE_PID_FILE, "pid.txt"), KILLING).execute();
}
@Override
protected List<String> getCustomJavaConfigOptions() {
return MutableList.<String>builder()
.addAll(super.getCustomJavaConfigOptions())
.add("-Xms200m")
.add("-Xmx800m")
.add("-XX:MaxPermSize=400m")
.build();
}
@Override
public Map<String, String> getShellEnvironment() {
Map<String, String> shellEnv = MutableMap.<String, String>builder()
.putAll(super.getShellEnvironment())
.remove("JAVA_OPTS")
.put("CATALINA_PID", "pid.txt")
.put("CATALINA_BASE", getRunDir())
.put("RUN", getRunDir())
.build();
// Double quoting of individual JAVA_OPTS entries required due to eval in catalina.sh
List<String> javaOpts = getJavaOpts();
String sJavaOpts = BashStringEscapes.doubleQuoteLiteralsForBash(javaOpts.toArray(new String[0]));
shellEnv.put("CATALINA_OPTS", sJavaOpts);
return shellEnv;
}
@Override
protected String getLogFileLocation() {
return Os.mergePathsUnix(getRunDir(), "logs/catalina.out");
}
@Override
protected String getDeploySubdir() {
return "webapps";
}
public Integer getShutdownPort() {
return entity.getAttribute(TomcatServerImpl.SHUTDOWN_PORT);
}
public String getHttpsSslKeystoreFile() {
return Os.mergePathsUnix(getRunDir(), "conf", KEYSTORE_FILE);
}
}