Java tutorial
/* * @(#)$Id$ * * Copyright 2006-2008 Makoto YUI * * Licensed 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. * * Contributors: * Makoto YUI - initial implementation */ package gridool.discovery; import gridool.GridConfiguration; import gridool.GridResourceRegistry; import gridool.Settings; import gridool.discovery.file.FileDiscoveryService; import gridool.discovery.jgroups.JGroupsDiscoveryService; import gridool.replication.ReplicaCoordinator; import gridool.replication.ReplicationManager; import gridool.routing.GridRouter; import gridool.util.lang.ObjectUtils; import javax.annotation.Nonnull; import org.apache.commons.logging.LogFactory; /** * * <DIV lang="en"></DIV> * <DIV lang="ja"></DIV> * * @author Makoto YUI (yuin405@gmail.com) */ public final class DiscoveryServiceProvider { private DiscoveryServiceProvider() { } @Nonnull public static GridDiscoveryService createService(@Nonnull GridResourceRegistry resourceRegistry, @Nonnull GridConfiguration config) { final GridDiscoveryService srv; final String serviceType = Settings.get("gridool.discovery"); if ("jgroups".equals(serviceType)) { srv = new JGroupsDiscoveryService(resourceRegistry, config); } else if ("file".equals(serviceType)) { srv = new FileDiscoveryService(config); } else { throw new IllegalStateException( "Unexpected service type is set for 'gridool.discovery': " + serviceType); } GridRouter router = resourceRegistry.getRouter(); srv.addListener(router); ReplicationManager replMgr = resourceRegistry.getReplicationManager(); ReplicaCoordinator replCoord = replMgr.getReplicaCoordinator(); srv.addListener(replCoord); // TODO REVIEWME String additional = Settings.get("gridool.discovery.listener"); if (additional != null) { setupAdditionalListeners(srv, additional); } resourceRegistry.setDiscoveryService(srv); return srv; } private static void setupAdditionalListeners(@Nonnull GridDiscoveryService srv, @Nonnull String additional) { final String[] listeners = additional.split(","); for (String listenerClazz : listeners) { Object obj = ObjectUtils.instantiateSafely(listenerClazz.trim()); if (obj != null && obj instanceof GridDiscoveryListener) { GridDiscoveryListener listener = (GridDiscoveryListener) obj; srv.addListener(listener); } else { LogFactory.getLog(DiscoveryServiceProvider.class) .warn("Specified DiscoveryListener not found: " + listenerClazz); } } } }