blob: 25dc08e18bab5d929fab34b8a34c08be697c1abc [file] [log] [blame]
/**
* Copyright (C) 2006 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.inject;
import com.google.inject.InjectorImpl.SingleMemberInjector;
import com.google.inject.InjectorImpl.SingleParameterInjector;
import com.google.inject.internal.Errors;
import com.google.inject.internal.ErrorsException;
import com.google.inject.internal.StackTraceElements;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
/**
* Injects constructors.
*
* @author crazybob@google.com (Bob Lee)
*/
class ConstructorInjector<T> {
final Class<T> implementation;
final SingleMemberInjector[] memberInjectors;
final SingleParameterInjector<?>[] parameterInjectors;
final ConstructionProxy<T> constructionProxy;
ConstructorInjector(Errors errors, InjectorImpl injector, Class<T> implementation)
throws ErrorsException {
this.implementation = implementation;
constructionProxy = injector.reflection.getConstructionProxy(errors, implementation);
parameterInjectors = createParameterInjector(errors, injector, constructionProxy);
List<SingleMemberInjector> memberInjectorsList
= injector.getMemberInjectors(implementation, errors);
memberInjectors = memberInjectorsList.toArray(
new SingleMemberInjector[memberInjectorsList.size()]);
}
SingleParameterInjector<?>[] createParameterInjector(Errors errors,
InjectorImpl injector, ConstructionProxy<T> constructionProxy)
throws ErrorsException {
Constructor constructor = constructionProxy.getConstructor();
Object source = StackTraceElements.forMember(constructor);
errors = errors.withSource(source);
return constructionProxy.getParameters().isEmpty()
? null // default constructor.
: injector.getParametersInjectors(constructor,
constructionProxy.getParameters(), errors);
}
/**
* Construct an instance. Returns {@code Object} instead of {@code T} because
* it may return a proxy.
*/
Object construct(Errors errors, InternalContext context, Class<?> expectedType)
throws ErrorsException {
ConstructionContext<T> constructionContext = context.getConstructionContext(this);
// We have a circular reference between constructors. Return a proxy.
if (constructionContext.isConstructing()) {
// TODO (crazybob): if we can't proxy this object, can we proxy the other object?
return constructionContext.createProxy(errors, expectedType);
}
// If we're re-entering this factory while injecting fields or methods,
// return the same instance. This prevents infinite loops.
T t = constructionContext.getCurrentReference();
if (t != null) {
return t;
}
try {
// First time through...
constructionContext.startConstruction();
try {
Object[] parameters = InjectorImpl.getParameters(errors, context, parameterInjectors);
t = constructionProxy.newInstance(parameters);
constructionContext.setProxyDelegates(t);
}
finally {
constructionContext.finishConstruction();
}
// Store reference. If an injector re-enters this factory, they'll
// get the same reference.
constructionContext.setCurrentReference(t);
// Inject fields and methods.
for (InjectorImpl.SingleMemberInjector injector : memberInjectors) {
injector.inject(errors, context, t);
}
return t;
}
catch (InvocationTargetException userException) {
Throwable cause = userException.getCause() != null
? userException.getCause()
: userException;
throw errors.errorInjectingConstructor(cause).toException();
}
finally {
constructionContext.removeCurrentReference();
}
}
}