/bpl.xtext.editor.ui/src-gen/bpl/xtext/editor/ui/internal/BoogieActivator.java

http://boogietools.codeplex.com · Java · 95 lines · 69 code · 19 blank · 7 comment · 4 complexity · b292141db49a8b269c5db45968350999 MD5 · raw file

  1. /*
  2. * generated by Xtext
  3. */
  4. package bpl.xtext.editor.ui.internal;
  5. import java.util.Collections;
  6. import java.util.Map;
  7. import org.apache.log4j.Logger;
  8. import org.eclipse.ui.plugin.AbstractUIPlugin;
  9. import org.eclipse.xtext.ui.shared.SharedStateModule;
  10. import org.eclipse.xtext.util.Modules2;
  11. import org.osgi.framework.BundleContext;
  12. import com.google.common.collect.Maps;
  13. import com.google.inject.Guice;
  14. import com.google.inject.Injector;
  15. import com.google.inject.Module;
  16. /**
  17. * This class was generated. Customizations should only happen in a newly
  18. * introduced subclass.
  19. */
  20. public class BoogieActivator extends AbstractUIPlugin {
  21. public static final String BPL_XTEXT_EDITOR_BOOGIE = "bpl.xtext.editor.Boogie";
  22. private static final Logger logger = Logger.getLogger(BoogieActivator.class);
  23. private static BoogieActivator INSTANCE;
  24. private Map<String, Injector> injectors = Collections.synchronizedMap(Maps.<String, Injector> newHashMapWithExpectedSize(1));
  25. @Override
  26. public void start(BundleContext context) throws Exception {
  27. super.start(context);
  28. INSTANCE = this;
  29. }
  30. @Override
  31. public void stop(BundleContext context) throws Exception {
  32. injectors.clear();
  33. INSTANCE = null;
  34. super.stop(context);
  35. }
  36. public static BoogieActivator getInstance() {
  37. return INSTANCE;
  38. }
  39. public Injector getInjector(String language) {
  40. synchronized (injectors) {
  41. Injector injector = injectors.get(language);
  42. if (injector == null) {
  43. injectors.put(language, injector = createInjector(language));
  44. }
  45. return injector;
  46. }
  47. }
  48. protected Injector createInjector(String language) {
  49. try {
  50. Module runtimeModule = getRuntimeModule(language);
  51. Module sharedStateModule = getSharedStateModule();
  52. Module uiModule = getUiModule(language);
  53. Module mergedModule = Modules2.mixin(runtimeModule, sharedStateModule, uiModule);
  54. return Guice.createInjector(mergedModule);
  55. } catch (Exception e) {
  56. logger.error("Failed to create injector for " + language);
  57. logger.error(e.getMessage(), e);
  58. throw new RuntimeException("Failed to create injector for " + language, e);
  59. }
  60. }
  61. protected Module getRuntimeModule(String grammar) {
  62. if (BPL_XTEXT_EDITOR_BOOGIE.equals(grammar)) {
  63. return new bpl.xtext.editor.BoogieRuntimeModule();
  64. }
  65. throw new IllegalArgumentException(grammar);
  66. }
  67. protected Module getUiModule(String grammar) {
  68. if (BPL_XTEXT_EDITOR_BOOGIE.equals(grammar)) {
  69. return new bpl.xtext.editor.ui.BoogieUiModule(this);
  70. }
  71. throw new IllegalArgumentException(grammar);
  72. }
  73. protected Module getSharedStateModule() {
  74. return new SharedStateModule();
  75. }
  76. }