/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
- /*******************************************************************************
- * Copyright (c) 2010-2011 Sonatype, Inc.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * and Apache License v2.0 which accompanies this distribution.
- * The Eclipse Public License is available at
- * http://www.eclipse.org/legal/epl-v10.html
- * The Apache License v2.0 is available at
- * http://www.apache.org/licenses/LICENSE-2.0.html
- * You may elect to redistribute this code under either of these licenses.
- *******************************************************************************/
- package org.sonatype.guice.bean.containers;
- import java.lang.reflect.InvocationHandler;
- import java.lang.reflect.Method;
- import java.lang.reflect.Proxy;
- import java.util.Iterator;
- import java.util.Map.Entry;
- import javax.inject.Inject;
- import org.sonatype.guice.bean.binders.WireModule;
- import org.sonatype.guice.bean.locators.BeanLocator;
- import org.sonatype.guice.bean.reflect.Logs;
- import com.google.inject.AbstractModule;
- import com.google.inject.Binder;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- import com.google.inject.Key;
- import com.google.inject.util.Providers;
- public final class SisuGuice
- {
- // ----------------------------------------------------------------------
- // Implementation fields
- // ----------------------------------------------------------------------
- private static final ThreadLocal<BeanLocator> LOCATOR = new InheritableThreadLocal<BeanLocator>();
- // ----------------------------------------------------------------------
- // Constructors
- // ----------------------------------------------------------------------
- private SisuGuice()
- {
- // static utility class, not allowed to create instances
- }
- // ----------------------------------------------------------------------
- // Public methods
- // ----------------------------------------------------------------------
- @Inject
- public static void setBeanLocator( final BeanLocator locator )
- {
- if ( null != locator )
- {
- LOCATOR.set( locator );
- }
- else
- {
- LOCATOR.remove();
- }
- }
- public static BeanLocator getBeanLocator()
- {
- return LOCATOR.get();
- }
- public static <T> T lookup( final Key<T> key )
- {
- final BeanLocator locator = getBeanLocator();
- if ( null != locator )
- {
- final Iterator<? extends Entry<?, T>> i = locator.locate( key ).iterator();
- if ( i.hasNext() )
- {
- return i.next().getValue();
- }
- }
- else
- {
- Logs.debug( "No BeanLocator found for thread {}", Thread.currentThread(), null );
- }
- return null;
- }
- public static void inject( final Object that )
- {
- final BeanLocator locator = getBeanLocator();
- if ( null != locator )
- {
- Guice.createInjector( new WireModule()
- {
- @Override
- public void configure( final Binder binder )
- {
- binder.bind( BeanLocator.class ).toProvider( Providers.of( locator ) );
- binder.requestInjection( that );
- }
- } );
- }
- else
- {
- Logs.debug( "No BeanLocator found for thread {}", Thread.currentThread(), null );
- }
- }
- public static Injector enhance( final Injector injector )
- {
- final Class<?>[] api = { Injector.class };
- return (Injector) Proxy.newProxyInstance( api[0].getClassLoader(), api, new InvocationHandler()
- {
- @SuppressWarnings( { "rawtypes", "unchecked" } )
- public Object invoke( final Object proxy, final Method method, final Object[] args )
- throws Throwable
- {
- final String methodName = method.getName();
- if ( "getInstance".equals( methodName ) )
- {
- final Key key = args[0] instanceof Key ? (Key) args[0] : Key.get( (Class) args[0] );
- final Iterator<Entry> i = injector.getInstance( BeanLocator.class ).locate( key ).iterator();
- return i.hasNext() ? i.next().getValue() : null;
- }
- if ( "injectMembers".equals( methodName ) )
- {
- Guice.createInjector( new WireModule( new AbstractModule()
- {
- @Override
- protected void configure()
- {
- bind( BeanLocator.class ).toProvider( injector.getProvider( BeanLocator.class ) );
- requestInjection( args[0] );
- }
- } ) );
- return null;
- }
- return method.invoke( injector, args );
- }
- } );
- }
- }