/cuke4duke/src/main/java/cuke4duke/internal/jvmclass/GuiceFactory.java

http://github.com/cucumber/cuke4duke · Java · 92 lines · 69 code · 23 blank · 0 comment · 3 complexity · f2feb48e7e45563b7acfce65ab1d2a31 MD5 · raw file

  1. package cuke4duke.internal.jvmclass;
  2. import com.google.inject.*;
  3. import cuke4duke.StepMother;
  4. import java.util.ArrayList;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.lang.reflect.Modifier;
  9. public class GuiceFactory implements ObjectFactory {
  10. private static final String CONFIG_GUICE_MODULE = "cuke4duke.guiceModule";
  11. private final List<Module> modules = new ArrayList<Module>();
  12. private final List<Class<?>> classes = new ArrayList<Class<?>>();
  13. private final Map<Class<?>, Object> instances = new HashMap<Class<?>, Object>();
  14. public GuiceFactory() throws Throwable {
  15. this(System.getProperty(CONFIG_GUICE_MODULE, null));
  16. }
  17. public GuiceFactory(String moduleClassName) throws Throwable {
  18. modules.add((Module) Class.forName(moduleClassName).newInstance());
  19. }
  20. public boolean canHandle(Class<?> clazz) {
  21. return Modifier.isStatic(clazz.getModifiers())
  22. || clazz.getEnclosingClass() == null;
  23. }
  24. public void addClass(Class<?> clazz) {
  25. classes.add(clazz);
  26. }
  27. public void addStepMother(StepMother stepMother) {
  28. modules.add(new StepMotherModule(stepMother));
  29. }
  30. public void createObjects() {
  31. Injector injector = Guice.createInjector(modules);
  32. for (Class<?> clazz : classes) {
  33. try {
  34. instances.put(clazz, injector.getInstance(clazz));
  35. } catch (ConfigurationException e) {
  36. System.err.println("WARNING: Cuke4Duke/Guice could not create instance for " + clazz.getCanonicalName() + ":\n" + e.getLocalizedMessage());
  37. }
  38. }
  39. }
  40. public void disposeObjects() {
  41. instances.clear();
  42. }
  43. @SuppressWarnings("unchecked")
  44. public <T> T getComponent(Class<T> clazz) {
  45. return (T) instances.get(clazz);
  46. }
  47. public List<Class<?>> getClasses() {
  48. return classes;
  49. }
  50. class StepMotherModule extends AbstractModule {
  51. private Provider<? extends StepMother> stepMotherProvider;
  52. public StepMotherModule(StepMother stepMother) {
  53. stepMotherProvider = new StepMotherProvider(stepMother);
  54. }
  55. @Override
  56. protected void configure() {
  57. bind(StepMother.class).toProvider(stepMotherProvider);
  58. }
  59. }
  60. class StepMotherProvider implements Provider<StepMother> {
  61. private StepMother stepMother;
  62. public StepMotherProvider(StepMother stepMother) {
  63. this.stepMother = stepMother;
  64. }
  65. public StepMother get() {
  66. return stepMother;
  67. }
  68. }
  69. }