xapi.inject.impl.JavaInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-gwt Show documentation
Show all versions of xapi-gwt Show documentation
This module exists solely to package all other gwt modules into a single
uber jar. This makes deploying to non-mavenized targets much easier.
Of course, you would be wise to inherit your dependencies individually;
the uber jar is intended for projects like collide,
which have complex configuration, and adding many jars would be a pain.
The newest version!
/*
* Copyright 2012, We The Internet Ltd.
*
* All rights reserved.
*
* Distributed under a modified BSD License as follow:
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution, unless otherwise
* agreed to in a written document signed by a director of We The Internet Ltd.
*
* Neither the name of We The Internet nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
package xapi.inject.impl;
import java.lang.reflect.Method;
import javax.inject.Provider;
import xapi.inject.api.Injector;
import xapi.log.X_Log;
import xapi.util.X_Runtime;
import xapi.util.X_Util;
public class JavaInjector {
/**
* This is a wrapper proxy for any types that want a lazy-loaded provider.
*
* Subclasses may want to customize the behavior of this provider, perhaps
* to implement hotswapping or class preloading.
*
* @author "James X. Nelson ([email protected])"
*
* @param
*/
private static class LazySingletonInjector extends SingletonInitializer{
private Class super X> cls;
public LazySingletonInjector(Class super X> cls) {
this.cls=cls;
}
@Override
protected X initialValue() {
return singleton.get().provide(cls);
}
}
/**
* A singleton wrapper class to allow lazy loading of the XInjector.
*
* @author James X. Nelson ([email protected], @james)
*/
private static class XInjectSingleton extends SingletonProvider{
@Override
protected Injector initialValue() {
//This method is only ever called once.
if (X_Runtime.isGwt()){
// gwt-dev mode
// allow the generator to create a custom injector.
// in gwt-dev, we can't super-source or use magic methods.
try {
// use reflection here so jres without gwt on classpath don't mind
Class> cls = Class.forName("com.google.gwt.core.shared.GWT");
Method m = cls.getDeclaredMethod("create", Class.class);
return (Injector)m.invoke(null, Injector.class);
}catch (Exception e) {
throw X_Util.rethrow(e);
}
}
// pure jre
return new JreInjector();
}
}
/**
* Our lazily-loaded injector singleton.
*/
private static final XInjectSingleton singleton = new XInjectSingleton();
public static T instance(Class super T> cls) {
return singleton.get().create(cls);
}
public static Provider singletonLazy(Class super T> cls) {
return new LazySingletonInjector(cls);
}
public static void initialize(Object o) {
// singleton.get().initialize(o);
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public static void registerSingletonProvider(String iface, final String name) {
try {
singleton.get().setSingletonFactory(Class.forName(iface), new SingletonProvider() {
@Override
public Object initialValue() {
try {
return Class.forName(name).newInstance();
} catch (Exception e) {
X_Log.error("Unable to instantiate ",name," using Class.newInstance", e);
throw X_Util.rethrow(e);
}
}
});
} catch (NoClassDefFoundError e) {
X_Log.error(e, "Cannot create interface class ",iface, "while registering singleton provider");
} catch (ClassNotFoundException e) {
X_Log.error(e, "Cannot create interface class ",iface, "while registering singleton provider");
}
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public static void registerInstanceProvider(String iface, final String name) {
try {
final Class cls = Class.forName(name);
singleton.get().setSingletonFactory(Class.forName(iface), new Provider() {
@Override
public Object get() {
try {
return cls.newInstance();
} catch (Exception e) {
X_Log.error("Unable to instantiate ",name," using Class.newInstance", e);
throw X_Util.rethrow(e);
}
}
});
} catch (ClassNotFoundException e) {
X_Log.error("Cannot create interface class ",iface, "while registering singleton provider");
}
}
}