/***************************************************************************** * Copyright (c) 2011 CEA LIST. * * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * CEA LIST - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.alf.ui.internal; import static com.google.inject.util.Modules.override; import static com.google.inject.Guice.createInjector; import org.apache.log4j.Logger; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; import com.google.inject.Injector; import com.google.inject.Module; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheLoader; import java.util.concurrent.ExecutionException; import org.eclipse.xtext.ui.shared.SharedStateModule; /** * This class was generated. Customizations should only happen in a newly * introduced subclass. */ public class AlfActivator extends AbstractUIPlugin { private static final Logger logger = Logger.getLogger(AlfActivator.class); private Cache<String, Injector> injectors = CacheBuilder.newBuilder().build(new CacheLoader<String, Injector>() { @Override public Injector load(String language) throws Exception { Module runtimeModule = getRuntimeModule(language); Module sharedStateModule = getSharedStateModule(); Module uiModule = getUiModule(language); Module mergedModule = override(override(runtimeModule).with(sharedStateModule)).with(uiModule); return createInjector(mergedModule); } }); private static AlfActivator INSTANCE; public static final String ORG_ECLIPSE_PAPYRUS_UML_ALF_ALF = "org.eclipse.papyrus.uml.alf.Alf"; public Injector getInjector(String languageName) { try { return injectors.get(languageName); } catch(ExecutionException e) { logger.error("Failed to create injector for " + languageName); logger.error(e.getMessage(), e); throw new RuntimeException("Failed to create injector for " + languageName, e); } } @Override public void start(BundleContext context) throws Exception { super.start(context); INSTANCE = this; } @Override public void stop(BundleContext context) throws Exception { injectors.invalidateAll(); injectors.cleanUp(); INSTANCE = null; super.stop(context); } public static AlfActivator getInstance() { return INSTANCE; } protected Module getRuntimeModule(String grammar) { if (ORG_ECLIPSE_PAPYRUS_UML_ALF_ALF.equals(grammar)) { return new org.eclipse.papyrus.uml.alf.AlfRuntimeModule(); } throw new IllegalArgumentException(grammar); } protected Module getUiModule(String grammar) { if (ORG_ECLIPSE_PAPYRUS_UML_ALF_ALF.equals(grammar)) { return new org.eclipse.papyrus.uml.alf.ui.AlfUiModule(this); } throw new IllegalArgumentException(grammar); } protected Module getSharedStateModule() { return new SharedStateModule(); } }