/** * OpenSpotLight - Open Source IT Governance Platform * * Copyright (c) 2009, CARAVELATECH CONSULTORIA E TECNOLOGIA EM INFORMATICA LTDA * or third-party contributors as indicated by the @author tags or express * copyright attribution statements applied by the authors. All third-party * contributions are distributed under license by CARAVELATECH CONSULTORIA E * TECNOLOGIA EM INFORMATICA LTDA. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program 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 distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA * *********************************************************************** * OpenSpotLight - Plataforma de Governança de TI de Código Aberto * * Direitos Autorais Reservados (c) 2009, CARAVELATECH CONSULTORIA E TECNOLOGIA * EM INFORMATICA LTDA ou como contribuidores terceiros indicados pela etiqueta * @author ou por expressa atribuição de direito autoral declarada e atribuída pelo autor. * Todas as contribuições de terceiros estão distribuídas sob licença da * CARAVELATECH CONSULTORIA E TECNOLOGIA EM INFORMATICA LTDA. * * Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo sob os * termos da Licença Pública Geral Menor do GNU conforme publicada pela Free Software * Foundation. * * Este programa é distribuído na expectativa de que seja útil, porém, SEM NENHUMA * GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU ADEQUAÇÃO A UMA * FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral Menor do GNU para mais detalhes. * * Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto com este * programa; se não, escreva para: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.openspotlight.web; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import org.openspotlight.bundle.context.ExecutionContext; import org.openspotlight.bundle.context.ExecutionContextFactory; import org.openspotlight.bundle.scheduler.Scheduler; import org.openspotlight.common.exception.ConfigurationException; import org.openspotlight.common.util.Arrays; import org.openspotlight.common.util.Assertions; import org.openspotlight.common.util.Exceptions; import org.openspotlight.domain.GlobalSettings; import org.openspotlight.domain.Repository; import org.openspotlight.graph.GraphModule; import org.openspotlight.graph.server.RemoteGraphSessionServer; import org.openspotlight.persist.guice.SimplePersistModule; import org.openspotlight.storage.StorageSession; import org.openspotlight.storage.redis.guice.JRedisStorageModule; import org.openspotlight.storage.redis.util.ExampleRedisConfig; import org.openspotlight.web.command.InitialImportWebCommand; import com.google.inject.Guice; import com.google.inject.Injector; /** * The listener interface for receiving oslContext events. The class that is interested in processing a oslContext event * implements this interface, and the object created with that class is registered with a component using the component's * <code>addOslContextListener<code> method. When * the oslContext event occurs, that object's appropriate * method is invoked. */ public class OslContextListener implements ServletContextListener, OslDataConstants { public static ExecutionContextFactory factory; public static Scheduler scheduler; private RemoteGraphSessionServer server; /** * {@inheritDoc} */ @Override public void contextDestroyed(final ServletContextEvent arg0) { scheduler.stopScheduler(); server.shutdown(); } /** * {@inheritDoc} */ @Override public void contextInitialized(final ServletContextEvent sce) { try { final Injector injector = Guice.createInjector(new JRedisStorageModule(StorageSession.FlushMode.AUTO, ExampleRedisConfig.EXAMPLE.getMappedServerConfig()), new SimplePersistModule(), new GraphModule()); // final String remotePortAsString = sce.getServletContext().getInitParameter("REMOTE_GRAPH_PORT"); // final String remoteGraphTimeoutAsString = sce.getServletContext().getInitParameter("REMOTE_GRAPH_TIMEOUT"); // final int remotePort = Strings.isEmpty(remotePortAsString) ? RemoteGraphSessionFactory.DEFAULT_PORT : Integer.parseInt(remotePortAsString); // final long remoteGraphTimeout = Strings.isEmpty(remoteGraphTimeoutAsString) ? RemoteGraphSessionFactory.DEFAULT_TIMOUT_IN_MILLISECONDS : Long.parseLong(remoteGraphTimeoutAsString); factory = injector.getInstance(ExecutionContextFactory.class); final ExecutionContext context = factory.get(); GlobalSettings settings = context.getDefaultConfigurationManager().getGlobalSettings(); Iterable<Repository> repositories = context.getDefaultConfigurationManager().getAllRepositories(); if (settings == null || repositories == null || !repositories.iterator().hasNext()) { // needs to load the xml again new InitialImportWebCommand().execute(context, Arrays.map(Arrays.of("forceReload"), Arrays.andOf("true"))); settings = context.getDefaultConfigurationManager().getGlobalSettings(); repositories = context.getDefaultConfigurationManager().getAllRepositories(); Assertions.checkNotNull("settings", settings); Assertions.checkNotNull("repositories", repositories); Assertions.checkCondition("repositoriesSizePositive", repositories.iterator().hasNext()); } scheduler = injector.getInstance(Scheduler.class); scheduler.refreshJobs(settings, repositories); // server = new RemoteGraphSessionServer(new DefaultUserAuthenticator(descriptor), remotePort, remoteGraphTimeout, // descriptor, graph); } catch (final Exception e) { throw Exceptions.logAndReturnNew(e, ConfigurationException.class); } } }