/* * 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.jboss.as.webservices.service; import java.util.List; import javax.management.MBeanServer; import org.jboss.as.server.ServerEnvironment; import org.jboss.as.server.ServerEnvironmentService; import org.jboss.as.webservices.config.ServerConfigImpl; import org.jboss.as.webservices.logging.WSLogger; import org.jboss.as.webservices.util.WSServices; import org.jboss.msc.service.Service; import org.jboss.msc.service.ServiceBuilder; import org.jboss.msc.service.ServiceBuilder.DependencyType; import org.jboss.msc.service.ServiceController; import org.jboss.msc.service.ServiceController.Mode; 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.value.ImmediateValue; import org.jboss.wsf.spi.management.ServerConfig; import org.wildfly.extension.undertow.UndertowService; /** * WS server config service. * * @author <a href="alessio.soldano@jboss.com">Alessio Soldano</a> * @author <a href="mailto:ropalka@redhat.com">Richard Opalka</a> * @author <a href="mailto:ema@redhat.com">Jim Ma</a> */ public final class ServerConfigService implements Service<ServerConfig> { private static final ServiceName MBEAN_SERVER_NAME = ServiceName.JBOSS.append("mbean", "server"); private final ServerConfigImpl serverConfig; private ServerConfigService(final ServerConfigImpl serverConfig) { this.serverConfig = serverConfig; } @Override public ServerConfig getValue() { return serverConfig; } @Override public void start(final StartContext context) throws StartException { try { serverConfig.create(); } catch (final Exception e) { WSLogger.ROOT_LOGGER.configServiceCreationFailed(); throw new StartException(e); } } @Override public void stop(final StopContext context) { try { serverConfig.destroy(); } catch (final Exception e) { WSLogger.ROOT_LOGGER.configServiceDestroyFailed(); } } public static ServiceController<?> install(final ServiceTarget serviceTarget, final ServerConfigImpl serverConfig, final List<ServiceName> dependencies, final boolean jmxSubsystemAvailable, final boolean requireUndertow) { final ServiceBuilder<ServerConfig> builder = serviceTarget.addService(WSServices.CONFIG_SERVICE, new ServerConfigService(serverConfig)); if (jmxSubsystemAvailable) { builder.addDependency(DependencyType.REQUIRED, MBEAN_SERVER_NAME, MBeanServer.class, serverConfig.getMBeanServerInjector()); } else { serverConfig.getMBeanServerInjector().setValue(new ImmediateValue<MBeanServer>(null)); } builder.addDependency(ServerEnvironmentService.SERVICE_NAME, ServerEnvironment.class, serverConfig.getServerEnvironmentInjector()); if (requireUndertow) { builder.addDependency(DependencyType.REQUIRED, UndertowService.UNDERTOW, UndertowService.class, serverConfig.getUndertowServiceInjector()); } else { serverConfig.getUndertowServiceInjector().setValue(new ImmediateValue<UndertowService>(null)); } for (ServiceName dep : dependencies) { builder.addDependency(dep); } builder.setInitialMode(Mode.ACTIVE); return builder.install(); } }