/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2010 Sun Microsystems, Inc. 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.html * or glassfish/bootstrap/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 glassfish/bootstrap/legal/LICENSE.txt. * Sun designates this particular file as subject to the "Classpath" exception * as provided by Sun in the GPL Version 2 section of the License file that * accompanied this code. If applicable, add the following below the License * Header, with the fields enclosed by brackets [] replaced by your own * identifying information: "Portions Copyrighted [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.v3.server; import com.sun.enterprise.config.serverbeans.Cluster; import com.sun.enterprise.config.serverbeans.Clusters; import com.sun.enterprise.config.serverbeans.Server; import com.sun.enterprise.config.serverbeans.Domain; import com.sun.logging.LogDomains; import java.util.logging.Level; import java.util.logging.Logger; import org.glassfish.api.Startup; import org.glassfish.api.admin.ServerEnvironment; import org.glassfish.internal.api.GMSService; import org.jvnet.hk2.annotations.*; import org.jvnet.hk2.component.*; /** * This service is responsible for loading the group management * service. GMS will only be enabled if there is at least one cluster * present with the gms-enabled attribute set to true. */ // todo: what should this be? default is 5. looking for gms-enabled attribute // has no effect if not present //@Priority(3) @Service(name="GmsLoaderService") public class GmsLoaderService implements Startup, PreDestroy, PostConstruct { final static Logger logger = LogDomains.getLogger( GmsLoaderService.class, LogDomains.CORE_LOGGER); // todo: check instance name. need to know if das or instance @Inject(name=ServerEnvironment.DEFAULT_INSTANCE_NAME) Server server; @Inject ServerEnvironment env; @Inject Habitat habitat; /** * Returns the lifecyle of the service. This service may not be needed * after startup -- we still need to determine how to load GMS when * a gms-enabled cluster is first created during runtime. * TODO: determine SERVER v START */ @Override public Startup.Lifecycle getLifecycle() { return Startup.Lifecycle.SERVER; } /** * Starts the application loader service. * * Look at the list of existing clusters. Stop after finding the * first gms-enabled cluster. * * todo: in instance, only check *my* cluster (if I'm part of * a cluster) */ @Override public void postConstruct() { Domain domain = habitat.getComponent(Domain.class); Clusters clusters = domain.getClusters(); if (clusters != null) { for (Cluster cluster : clusters.getCluster()) { String gmsEnString = cluster.getGmsEnabled(); if (logger.isLoggable(Level.FINE)) { logger.fine(String.format( "cluster %s found with gms-enabled='%s'", cluster.getName(), gmsEnString)); } if(gmsEnString != null && Boolean.parseBoolean(gmsEnString)) { loadService(); break; } } } } private void loadService() { // getting the service from the habitat is enough to load it GMSService gmss = habitat.getByContract(GMSService.class); } /** * Placeholder -- Stop gms. * TODO: need this? */ @Override public void preDestroy() { } @Override public String toString() { return "GMS Loader"; } }