org.jboss.as.host.controller.HostControllerService Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, 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.jboss.as.host.controller;
import static java.security.AccessController.doPrivileged;
import static org.jboss.as.server.ServerLogger.AS_ROOT_LOGGER;
import static org.jboss.as.server.ServerLogger.CONFIG_LOGGER;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.TreeSet;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import org.jboss.as.controller.ControlledProcessState;
import org.jboss.as.remoting.HttpListenerRegistryService;
import org.jboss.as.remoting.management.ManagementRemotingServices;
import org.jboss.as.server.BootstrapListener;
import org.jboss.as.server.FutureServiceContainer;
import org.wildfly.security.manager.action.GetAccessControlContextAction;
import org.jboss.as.server.Services;
import org.jboss.as.version.ProductConfig;
import org.jboss.modules.Module;
import org.jboss.msc.service.Service;
import org.jboss.msc.service.ServiceContainer;
import org.jboss.msc.service.ServiceController;
import org.jboss.msc.service.ServiceName;
import org.jboss.msc.service.ServiceTarget;
import org.jboss.msc.service.StartContext;
import org.jboss.msc.service.StartException;
import org.jboss.msc.service.StopContext;
import org.jboss.msc.service.ValueService;
import org.jboss.msc.value.ImmediateValue;
import org.jboss.msc.value.Value;
import org.jboss.threads.AsyncFuture;
import org.jboss.threads.JBossThreadFactory;
/**
* The root service for a HostController process.
*
* @author Brian Stansberry (c) 2011 Red Hat Inc.
*/
public class HostControllerService implements Service> {
public static final ServiceName HC_SERVICE_NAME = ServiceName.JBOSS.append("host", "controller");
public static final ServiceName HC_EXECUTOR_SERVICE_NAME = HC_SERVICE_NAME.append("executor");
static final int DEFAULT_POOL_SIZE = 20;
private final HostControllerEnvironment environment;
private final HostRunningModeControl runningModeControl;
private final ControlledProcessState processState;
private final byte[] authCode;
private volatile FutureServiceContainer futureContainer;
private volatile long startTime;
HostControllerService(final HostControllerEnvironment environment, final HostRunningModeControl runningModeControl,
final byte[] authCode, final ControlledProcessState processState) {
this.environment = environment;
this.runningModeControl = runningModeControl;
this.authCode = authCode;
this.processState = processState;
this.startTime = Module.getStartTime();
}
@Override
public void start(StartContext context) throws StartException {
processState.setStarting();
final ProductConfig config = environment.getProductConfig();
final String prettyVersion = config.getPrettyVersionString();
AS_ROOT_LOGGER.serverStarting(prettyVersion);
if (CONFIG_LOGGER.isDebugEnabled()) {
final Properties properties = System.getProperties();
final StringBuilder b = new StringBuilder(8192);
b.append("Configured system properties:");
for (String property : new TreeSet(properties.stringPropertyNames())) {
b.append("\n\t").append(property).append(" = ").append(properties.getProperty(property, ""));
}
CONFIG_LOGGER.debug(b);
CONFIG_LOGGER.debugf("VM Arguments: %s", getVMArguments());
if (CONFIG_LOGGER.isTraceEnabled()) {
b.setLength(0);
final Map env = System.getenv();
b.append("Configured system environment:");
for (String key : new TreeSet(env.keySet())) {
b.append("\n\t").append(key).append(" = ").append(env.get(key));
}
CONFIG_LOGGER.trace(b);
}
}
final ServiceTarget serviceTarget = context.getChildTarget();
final ServiceController> myController = context.getController();
final ServiceContainer serviceContainer = myController.getServiceContainer();
futureContainer = new FutureServiceContainer();
long startTime = this.startTime;
if (startTime == -1) {
startTime = System.currentTimeMillis();
} else {
this.startTime = -1;
}
final BootstrapListener bootstrapListener = new BootstrapListener(serviceContainer, startTime, serviceTarget, futureContainer, prettyVersion + " (Host Controller)");
bootstrapListener.getStabilityMonitor().addController(myController);
// The first default services are registered before the bootstrap operations are executed.
// Install the process controller client
final ProcessControllerConnectionService processControllerClient = new ProcessControllerConnectionService(environment, authCode);
serviceTarget.addService(ProcessControllerConnectionService.SERVICE_NAME, processControllerClient).install();
// Executor Services
final HostControllerExecutorService executorService = new HostControllerExecutorService();
serviceTarget.addService(HC_EXECUTOR_SERVICE_NAME, executorService)
.addAliases(ManagementRemotingServices.SHUTDOWN_EXECUTOR_NAME) // Use this executor for mgmt shutdown for now
.install();
// Install required path services. (Only install those identified as required)
HostPathManagerService hostPathManagerService = new HostPathManagerService();
HostPathManagerService.addService(serviceTarget, hostPathManagerService, environment);
HttpListenerRegistryService.install(serviceTarget);
// Add product config service
final Value productConfigValue = new ImmediateValue(config);
serviceTarget.addService(Services.JBOSS_PRODUCT_CONFIG_SERVICE, new ValueService(productConfigValue))
.setInitialMode(ServiceController.Mode.ACTIVE)
.install();
DomainModelControllerService.addService(serviceTarget, environment, runningModeControl, processState, bootstrapListener, hostPathManagerService);
}
@Override
public void stop(StopContext context) {
String prettyVersion = environment.getProductConfig().getPrettyVersionString();
processState.setStopping();
AS_ROOT_LOGGER.serverStopped(prettyVersion, Integer.valueOf((int) (context.getElapsedTime() / 1000000L)));
}
@Override
public AsyncFuture getValue() throws IllegalStateException, IllegalArgumentException {
return futureContainer;
}
public HostControllerEnvironment getEnvironment() {
return environment;
}
private String getVMArguments() {
final StringBuilder result = new StringBuilder(1024);
final RuntimeMXBean rmBean = ManagementFactory.getRuntimeMXBean();
final List inputArguments = rmBean.getInputArguments();
for (String arg : inputArguments) {
result.append(arg).append(" ");
}
return result.toString();
}
static final class HostControllerExecutorService implements Service {
final ThreadFactory threadFactory = new JBossThreadFactory(new ThreadGroup("Host Controller Service Threads"), Boolean.FALSE, null, "%G - %t", null, null, doPrivileged(GetAccessControlContextAction.getInstance()));
private ExecutorService executorService;
@Override
public synchronized void start(final StartContext context) throws StartException {
executorService = new ThreadPoolExecutor(0, Integer.MAX_VALUE,
5L, TimeUnit.SECONDS,
new SynchronousQueue(),
threadFactory);
}
@Override
public synchronized void stop(final StopContext context) {
Thread executorShutdown = new Thread(new Runnable() {
@Override
public void run() {
try {
executorService.shutdown();
} finally {
executorService = null;
context.complete();
}
}
}, "HostController ExecutorService Shutdown Thread");
executorShutdown.start();
context.asynchronous();
}
@Override
public synchronized ExecutorService getValue() throws IllegalStateException {
return executorService;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy