/sources/solrmeter/src/main/java/com/plugtree/solrmeter/SolrMeterMain.java

http://solrmeter.googlecode.com/ · Java · 117 lines · 85 code · 12 blank · 20 comment · 7 complexity · 86fabb60851c913b23c9532f73844e97 MD5 · raw file

  1. /**
  2. * Copyright Plugtree LLC
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.plugtree.solrmeter;
  17. import com.google.inject.Guice;
  18. import com.google.inject.Injector;
  19. import com.google.inject.Module;
  20. import com.plugtree.solrmeter.controller.StatisticsRepository;
  21. import com.plugtree.solrmeter.runMode.SolrMeterRunMode;
  22. import com.plugtree.solrmeter.model.*;
  23. import com.plugtree.solrmeter.view.*;
  24. import com.plugtree.stressTestScope.StressTestScopeModule;
  25. import org.apache.log4j.Logger;
  26. import java.io.File;
  27. import java.io.IOException;
  28. import java.util.ArrayList;
  29. import java.util.List;
  30. /**
  31. *
  32. * @author tflobbe
  33. *
  34. */
  35. public class SolrMeterMain {
  36. public static ConsoleFrame mainFrame;
  37. private static Injector injector;
  38. private static SolrMeterRunMode runMode;
  39. public static void main(String[] args) throws Exception {
  40. addPlugins(new ExpectedParameter(args, "statisticsLocation", "./plugins").getValue());
  41. createInjector();
  42. runMode = injector.getInstance(SolrMeterRunMode.class);
  43. runMode.main(injector);
  44. mainFrame = runMode.getMainFrame();
  45. }
  46. private static void addPlugins(String statisticsPath) {
  47. try {
  48. Logger.getLogger("boot").info("Adding plugins from " + statisticsPath);
  49. File pluginsDir = new File(statisticsPath);
  50. if(!pluginsDir.exists() || pluginsDir.list().length == 0) {
  51. Logger.getLogger("boot").warn("No plugins directory found. No pluggin added");
  52. return;
  53. }
  54. for(String jarName:pluginsDir.list()) {
  55. if(jarName.endsWith(".jar")) {
  56. Logger.getLogger("boot").info("Adding file " + jarName + " to classpath.");
  57. ClassPathHacker.addFile(new File(pluginsDir, jarName));
  58. }
  59. }
  60. SolrMeterConfiguration.setTransientProperty(StatisticsRepository.PLUGIN_STATISTICS_CONF_FILE_PROPERTY, statisticsPath + "/statistics-config.xml");
  61. } catch (IOException e) {
  62. Logger.getLogger("boot").error("Error while adding plugins to classpath", e);
  63. throw new RuntimeException(e);
  64. }
  65. }
  66. private static void createInjector() {
  67. List<Module> modules = new ArrayList<Module>();
  68. modules.add(createModule("guice.statisticsModule"));
  69. modules.add(createModule("guice.modelModule"));
  70. if (SolrMeterConfiguration.isHeadless()) {
  71. modules.add(createModule("guice.headlessModule"));
  72. }
  73. else {
  74. modules.add(createModule("guice.standalonePresentationModule"));
  75. }
  76. modules.add(createModule("guice.solrMeterRunModeModule"));
  77. modules.add(new StressTestScopeModule());
  78. injector = Guice.createInjector(modules);
  79. }
  80. private static Module createModule(String moduleKey) {
  81. String moduleClassName = SolrMeterConfiguration.getProperty(moduleKey);
  82. Logger.getLogger(SolrMeterMain.class).info("Using module: " + moduleClassName);
  83. Class<?> moduleClass;
  84. try {
  85. moduleClass = Class.forName(moduleClassName);
  86. } catch (ClassNotFoundException e) {
  87. Logger.getLogger(SolrMeterMain.class).error("Module for name " + moduleClassName + " can't be found! Make sure it is in classpath.", e);
  88. throw new RuntimeException("Could not start application, module for name " + moduleClassName + " was not found.", e);
  89. }
  90. Module moduleInstance;
  91. try {
  92. moduleInstance = (Module) moduleClass.newInstance();
  93. } catch (Exception e) {
  94. Logger.getLogger(SolrMeterMain.class).error("Module for name " + moduleClassName + " could not be instantiated.", e);
  95. throw new RuntimeException("Module for name " + moduleClassName + " could not be instantiated.", e);
  96. }
  97. return moduleInstance;
  98. }
  99. public static void restartApplication() {
  100. runMode.restartApplication();
  101. }
  102. public static SolrMeterRunMode getRunMode() {
  103. return runMode;
  104. }
  105. }