/t2-ext/guiceadapter/src/main/java/org/t2framework/t2/adapter/GuiceAdapter.java

http://t-2.googlecode.com/ · Java · 193 lines · 132 code · 23 blank · 38 comment · 10 complexity · 093f1ff026d36c4853ac8c0cad581e2f MD5 · raw file

  1. /*
  2. * Copyright 2008-2010 the T2 Project ant the Others.
  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 org.t2framework.t2.adapter;
  17. import java.util.Collections;
  18. import java.util.Iterator;
  19. import java.util.List;
  20. import org.t2framework.commons.bootstrap.CommonsInitializer;
  21. import org.t2framework.commons.exception.NoSuchComponentException;
  22. import org.t2framework.commons.meta.BeanDesc;
  23. import org.t2framework.commons.meta.BeanDescFactory;
  24. import org.t2framework.commons.util.Assertion;
  25. import org.t2framework.commons.util.CollectionsUtil;
  26. import org.t2framework.commons.util.Logger;
  27. import org.t2framework.t2.handler.ExceptionHandler;
  28. import org.t2framework.t2.handler.GlobalExceptionHandler;
  29. import org.t2framework.t2.handler.impl.GlobalExceptionHandlerImpl;
  30. import com.google.inject.Guice;
  31. import com.google.inject.Injector;
  32. import com.google.inject.Module;
  33. /**
  34. *
  35. * {@.en An adapter class for Google Guice.}
  36. *
  37. * <br />
  38. *
  39. * {@.ja Guice???????????????.{@link Module}?{@link CommonsInitializer}
  40. * ?????????{@link Injector}??????.
  41. *
  42. * @author shot
  43. * @author yone098
  44. * @see com.google.inject.Module
  45. * @see com.google.inject.Injector
  46. */
  47. public class GuiceAdapter extends AbstractContainerAdapter<Injector> {
  48. protected static Logger logger = Logger.getLogger(GuiceAdapter.class);
  49. protected static Injector injector;
  50. protected Module[] modules;
  51. @Override
  52. public void init() {
  53. List<Module> moduleList = CollectionsUtil.newArrayList();
  54. for (Iterator<Module> iterator = CommonsInitializer
  55. .iterator(CommonsInitializer.load(Module.class)); iterator
  56. .hasNext();) {
  57. moduleList.add(iterator.next());
  58. }
  59. this.modules = moduleList.toArray(new Module[0]);
  60. }
  61. @Override
  62. public void init(String configPath) {
  63. init();
  64. }
  65. @SuppressWarnings("unchecked")
  66. @Override
  67. public <T> BeanDesc<T> getBeanDesc(Class<? super T> key) {
  68. Assertion.notNull(key);
  69. setupInjector();
  70. if (hasComponent(key)) {
  71. return (BeanDesc<T>) BeanDescFactory.getBeanDesc(key);
  72. } else {
  73. return null;
  74. }
  75. }
  76. @SuppressWarnings("unchecked")
  77. @Override
  78. public <T> T getComponent(Class<? super T> componentClass) {
  79. Assertion.notNull(componentClass);
  80. setupInjector();
  81. try {
  82. return (T) injector.getInstance(componentClass);
  83. } catch (Throwable e) {
  84. throw new NoSuchComponentException(componentClass);
  85. }
  86. }
  87. protected void setupInjector() {
  88. if (injector == null) {
  89. injector = Guice.createInjector(modules);
  90. }
  91. }
  92. @Override
  93. public <T> List<T> getComponents(Class<? super T> componentClass) {
  94. logger
  95. .debug("GuiceAdapter does not support getComponents(), so just return single component.");
  96. setupInjector();
  97. if (hasComponent(componentClass)) {
  98. List<T> ret = CollectionsUtil.newArrayList();
  99. ret.add((T) getComponent(componentClass));
  100. return ret;
  101. } else {
  102. return Collections.emptyList();
  103. }
  104. }
  105. @Override
  106. public <T> boolean hasComponent(Class<T> componentClass) {
  107. setupInjector();
  108. try {
  109. return injector.getInstance(componentClass) != null;
  110. } catch (Throwable t) {
  111. return false;
  112. }
  113. }
  114. @Override
  115. public <T> T injectDependency(T t) {
  116. setupInjector();
  117. injector.injectMembers(t);
  118. return t;
  119. }
  120. @Override
  121. public <T> void register(Class<? extends T> key) {
  122. Assertion.notNull(key);
  123. setupInjector();
  124. logger.debug("GuiceAdapter can not register a component:"
  125. + key.getName());
  126. }
  127. @Override
  128. public <T> void register(T key) {
  129. Assertion.notNull(key);
  130. setupInjector();
  131. logger.debug("GuiceAdapter can not register a component:"
  132. + key.getClass().getName());
  133. }
  134. @Override
  135. public Injector getContainer() {
  136. return injector;
  137. }
  138. @Override
  139. public List<ExceptionHandler<Throwable, Exception>> createExceptionHandlers() {
  140. setupInjector();
  141. logger
  142. .debug("GuiceAdapter does not support createrExceptionHandlers().");
  143. return CollectionsUtil.emptyList();
  144. }
  145. @Override
  146. public GlobalExceptionHandler createGlobalExceptionHandler() {
  147. setupInjector();
  148. if (hasComponent(GlobalExceptionHandler.class)) {
  149. return injector.getInstance(GlobalExceptionHandler.class);
  150. } else {
  151. return new GlobalExceptionHandlerImpl();
  152. }
  153. }
  154. @Override
  155. public void destroy() {
  156. injector = null;
  157. }
  158. /**
  159. * {@.en {@link Injector} generated with this adaptor is returned.}
  160. *
  161. * <br />
  162. *
  163. * {@.ja ?Adapter?????.{@link Injector}??????
  164. *
  165. * @return {@link Injector}
  166. */
  167. public static Injector getSingletonGuiceInjector() {
  168. return injector;
  169. }
  170. }