blob: 6351cd8b5b6ea8deecf53123ddb8fd602ac9f06d [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 java.lang.reflect.Member;
import java.util.LinkedHashMap;
import com.google.inject.internal.Objects;
/**
* An immutable snapshot of the current context which is safe to expose to
* client code.
*
* @author crazybob@google.com (Bob Lee)
*/
class ExternalContext<T> implements Context {
final Member member;
final Key<T> key;
final InjectorImpl injector;
final int parameterIndex;
final Nullability nullability;
public ExternalContext(Member member, int paramterIndex,
Nullability nullability, Key<T> key, InjectorImpl injector) {
this.member = member;
this.parameterIndex = paramterIndex;
this.nullability = Objects.nonNull(nullability, "nullability");
this.key = key;
this.injector = injector;
}
public Key<?> getKey() {
return this.key;
}
public Injector getInjector() {
return injector;
}
public Member getMember() {
return member;
}
public int getParameterIndex() {
return parameterIndex;
}
public Nullability getNullability() {
return nullability;
}
public String toString() {
return "Context" + new LinkedHashMap<String, Object>() {{
put("member", member);
put("key", getKey());
put("injector", injector);
}}.toString();
}
static <T> ExternalContext<T> newInstance(Member member,
Nullability nullability, Key<T> key, InjectorImpl injector) {
return new ExternalContext<T>(member, -1, nullability, key, injector);
}
static <T> ExternalContext<T> newInstance(Member member, int parameterIndex,
Nullability nullability, Key<T> key, InjectorImpl injector) {
return new ExternalContext<T>(member, parameterIndex, nullability, key,
injector);
}
}