/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.plugin.server; import java.io.IOException; import java.util.concurrent.atomic.AtomicBoolean; import org.jboss.as.controller.client.ModelControllerClient; import org.wildfly.core.launcher.ProcessHelper; import org.wildfly.core.launcher.StandaloneCommandBuilder; import org.wildfly.plugin.core.DeploymentManager; import org.wildfly.plugin.core.ServerHelper; import org.wildfly.plugin.core.ServerProcess; import org.wildfly.plugin.tests.Environment; /** * @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a> */ public class StandaloneTestServer implements TestServer { private static final AtomicBoolean STARTED = new AtomicBoolean(false); private volatile Process currentProcess; private volatile Thread shutdownThread; private volatile ModelControllerClient client; private volatile DeploymentManager deploymentManager; @Override public void start() { if (STARTED.compareAndSet(false, true)) { try { final StandaloneCommandBuilder commandBuilder = StandaloneCommandBuilder.of(Environment.WILDFLY_HOME) .setBindAddressHint("management", Environment.HOSTNAME) .addJavaOption("-Djboss.management.http.port=" + Environment.PORT); final Process process = ServerProcess.start(commandBuilder, null, System.out); shutdownThread = ProcessHelper.addShutdownHook(process); client = ModelControllerClient.Factory.create(Environment.HOSTNAME, Environment.PORT); currentProcess = process; ServerHelper.waitForStandalone(process, client, Environment.TIMEOUT); deploymentManager = DeploymentManager.Factory.create(client); } catch (Throwable t) { try { throw new RuntimeException("Failed to start server", t); } finally { STARTED.set(false); cleanUp(); } } } } @Override public void stop() { try { try { final Thread shutdownThread = this.shutdownThread; if (shutdownThread != null) { Runtime.getRuntime().removeShutdownHook(shutdownThread); this.shutdownThread = null; } } catch (Exception ignore) { } if (STARTED.compareAndSet(true, false)) { ServerHelper.shutdownStandalone(client); } } catch (IOException e) { throw new RuntimeException(e); } finally { cleanUp(); } } @Override public ModelControllerClient getClient() { return client; } @Override public DeploymentManager getDeploymentManager() { return deploymentManager; } private void cleanUp() { try { if (client != null) try { client.close(); } catch (Exception ignore) { } finally { client = null; } try { ProcessHelper.destroyProcess(currentProcess); } catch (InterruptedException ignore) { } } finally { currentProcess = null; } } }