/sisu-2.2.3/sisu-inject/containers/guice-bean/guice-bean-containers/src/main/java/org/sonatype/guice/bean/containers/SisuGuice.java

# · Java · 144 lines · 109 code · 14 blank · 21 comment · 9 complexity · 91e924c6a6f22bc2d9cd56659e998e8f MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2010-2011 Sonatype, Inc.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * and Apache License v2.0 which accompanies this distribution.
  6. * The Eclipse Public License is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. * The Apache License v2.0 is available at
  9. * http://www.apache.org/licenses/LICENSE-2.0.html
  10. * You may elect to redistribute this code under either of these licenses.
  11. *******************************************************************************/
  12. package org.sonatype.guice.bean.containers;
  13. import java.lang.reflect.InvocationHandler;
  14. import java.lang.reflect.Method;
  15. import java.lang.reflect.Proxy;
  16. import java.util.Iterator;
  17. import java.util.Map.Entry;
  18. import javax.inject.Inject;
  19. import org.sonatype.guice.bean.binders.WireModule;
  20. import org.sonatype.guice.bean.locators.BeanLocator;
  21. import org.sonatype.guice.bean.reflect.Logs;
  22. import com.google.inject.AbstractModule;
  23. import com.google.inject.Binder;
  24. import com.google.inject.Guice;
  25. import com.google.inject.Injector;
  26. import com.google.inject.Key;
  27. import com.google.inject.util.Providers;
  28. public final class SisuGuice
  29. {
  30. // ----------------------------------------------------------------------
  31. // Implementation fields
  32. // ----------------------------------------------------------------------
  33. private static final ThreadLocal<BeanLocator> LOCATOR = new InheritableThreadLocal<BeanLocator>();
  34. // ----------------------------------------------------------------------
  35. // Constructors
  36. // ----------------------------------------------------------------------
  37. private SisuGuice()
  38. {
  39. // static utility class, not allowed to create instances
  40. }
  41. // ----------------------------------------------------------------------
  42. // Public methods
  43. // ----------------------------------------------------------------------
  44. @Inject
  45. public static void setBeanLocator( final BeanLocator locator )
  46. {
  47. if ( null != locator )
  48. {
  49. LOCATOR.set( locator );
  50. }
  51. else
  52. {
  53. LOCATOR.remove();
  54. }
  55. }
  56. public static BeanLocator getBeanLocator()
  57. {
  58. return LOCATOR.get();
  59. }
  60. public static <T> T lookup( final Key<T> key )
  61. {
  62. final BeanLocator locator = getBeanLocator();
  63. if ( null != locator )
  64. {
  65. final Iterator<? extends Entry<?, T>> i = locator.locate( key ).iterator();
  66. if ( i.hasNext() )
  67. {
  68. return i.next().getValue();
  69. }
  70. }
  71. else
  72. {
  73. Logs.debug( "No BeanLocator found for thread {}", Thread.currentThread(), null );
  74. }
  75. return null;
  76. }
  77. public static void inject( final Object that )
  78. {
  79. final BeanLocator locator = getBeanLocator();
  80. if ( null != locator )
  81. {
  82. Guice.createInjector( new WireModule()
  83. {
  84. @Override
  85. public void configure( final Binder binder )
  86. {
  87. binder.bind( BeanLocator.class ).toProvider( Providers.of( locator ) );
  88. binder.requestInjection( that );
  89. }
  90. } );
  91. }
  92. else
  93. {
  94. Logs.debug( "No BeanLocator found for thread {}", Thread.currentThread(), null );
  95. }
  96. }
  97. public static Injector enhance( final Injector injector )
  98. {
  99. final Class<?>[] api = { Injector.class };
  100. return (Injector) Proxy.newProxyInstance( api[0].getClassLoader(), api, new InvocationHandler()
  101. {
  102. @SuppressWarnings( { "rawtypes", "unchecked" } )
  103. public Object invoke( final Object proxy, final Method method, final Object[] args )
  104. throws Throwable
  105. {
  106. final String methodName = method.getName();
  107. if ( "getInstance".equals( methodName ) )
  108. {
  109. final Key key = args[0] instanceof Key ? (Key) args[0] : Key.get( (Class) args[0] );
  110. final Iterator<Entry> i = injector.getInstance( BeanLocator.class ).locate( key ).iterator();
  111. return i.hasNext() ? i.next().getValue() : null;
  112. }
  113. if ( "injectMembers".equals( methodName ) )
  114. {
  115. Guice.createInjector( new WireModule( new AbstractModule()
  116. {
  117. @Override
  118. protected void configure()
  119. {
  120. bind( BeanLocator.class ).toProvider( injector.getProvider( BeanLocator.class ) );
  121. requestInjection( args[0] );
  122. }
  123. } ) );
  124. return null;
  125. }
  126. return method.invoke( injector, args );
  127. }
  128. } );
  129. }
  130. }