/WebWind/src/org/expressme/webwind/container/GuiceContainerFactory.java

http://webwind.googlecode.com/ · Java · 119 lines · 100 code · 13 blank · 6 comment · 15 complexity · e19fa3212884f62984ba88685d4db78e MD5 · raw file

  1. package org.expressme.webwind.container;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Map;
  5. import java.util.Set;
  6. import javax.servlet.ServletContext;
  7. import org.apache.commons.logging.Log;
  8. import org.apache.commons.logging.LogFactory;
  9. import org.expressme.webwind.Config;
  10. import org.expressme.webwind.ConfigException;
  11. import org.expressme.webwind.Destroyable;
  12. import org.expressme.webwind.guice.ServletContextAware;
  13. import com.google.inject.Binding;
  14. import com.google.inject.Guice;
  15. import com.google.inject.Injector;
  16. import com.google.inject.Key;
  17. import com.google.inject.Module;
  18. import com.google.inject.Stage;
  19. /**
  20. * Create Guice 2.0 Injector instance, and bind it on ServletContext with
  21. * name of <code>Injector.class.getName()</code>.
  22. *
  23. * @author Michael Liao (askxuefeng@gmail.com)
  24. */
  25. public class GuiceContainerFactory implements ContainerFactory {
  26. private Log log = LogFactory.getLog(getClass());
  27. private Injector injector;
  28. public List<Object> findAllBeans() {
  29. Map<Key<?>, Binding<?>> map = injector.getBindings();
  30. Set<Key<?>> keys = map.keySet();
  31. List<Object> list = new ArrayList<Object>(keys.size());
  32. for (Key<?> key : keys) {
  33. Object bean = injector.getInstance(key);
  34. list.add(bean);
  35. }
  36. return list;
  37. }
  38. public void init(final Config config) {
  39. String value = config.getInitParameter("modules");
  40. if (value==null)
  41. throw new ConfigException("Init guice failed. Missing parameter '<modules>'.");
  42. String[] ss = value.split(",");
  43. List<Module> moduleList = new ArrayList<Module>(ss.length);
  44. for (String s : ss) {
  45. Module m = initModule(s, config.getServletContext());
  46. if (m!=null)
  47. moduleList.add(m);
  48. }
  49. if (moduleList.isEmpty())
  50. throw new ConfigException("No module found.");
  51. this.injector = Guice.createInjector(Stage.PRODUCTION, moduleList);
  52. config.getServletContext().setAttribute(Injector.class.getName(), this.injector);
  53. }
  54. Module initModule(String s, ServletContext servletContext) {
  55. s = trim(s);
  56. if (s.length()>0) {
  57. if (log.isDebugEnabled())
  58. log.debug("Initializing module '" + s + "'...");
  59. try {
  60. Object o = Class.forName(s).newInstance();
  61. if (o instanceof Module) {
  62. if (o instanceof ServletContextAware) {
  63. ((ServletContextAware) o).setServletContext(servletContext);
  64. }
  65. return (Module) o;
  66. }
  67. throw new ConfigException("Class '" + s + "' does not implement '" + Module.class.getName() + "'.");
  68. }
  69. catch(InstantiationException e) {
  70. throw new ConfigException("Cannot instanciate class '" + s + "'.", e);
  71. }
  72. catch(IllegalAccessException e) {
  73. throw new ConfigException("Cannot instanciate class '" + s + "'.", e);
  74. }
  75. catch(ClassNotFoundException e) {
  76. throw new ConfigException("Cannot instanciate class '" + s + "'.", e);
  77. }
  78. }
  79. return null;
  80. }
  81. String trim(String s) {
  82. while (s.length()>0) {
  83. char c = s.charAt(0);
  84. if (" \t\r\n".indexOf(c)!=(-1))
  85. s = s.substring(1);
  86. else
  87. break;
  88. }
  89. while (s.length()>0) {
  90. char c = s.charAt(s.length()-1);
  91. if (" \t\r\n".indexOf(c)!=(-1))
  92. s = s.substring(0, s.length()-1);
  93. else
  94. break;
  95. }
  96. return s;
  97. }
  98. public void destroy() {
  99. List<Object> beans = findAllBeans();
  100. for (Object bean : beans) {
  101. if (bean instanceof Destroyable) {
  102. ((Destroyable)bean).destroy();
  103. }
  104. }
  105. }
  106. }