Deletions are marked like this. | Additions are marked like this. |
Line 6: | Line 6: |
1. Use explicit bindings. * If the binding links to another, follow this resolution algorithm for that. * If the binding specifies an instance, return that. * If the binding specifies a provider, use that. 1. Ask a parent injector. If this injector has a parent injector, ask that to resolve the binding. If it succeeds, use that. Otherwise proceed. 1. Ask child injectors. If any child injector already has this binding, give up. A blacklist of bindings from child injectors is kept so injectors don't need to maintain references to their child injectors. 1. Handle Provider injections. If the type is Provider<T>, resolve T instead, using the same binding annotation, if it exists. |
1. 明示的なバインディングを使う * バインディングリンクがあればそれに従う。 * バインディングがインスタンスを指示していればそれを返す。 * バインディングがプロバイダを指示していればそれを使う。 1. 親インジェクタに問い合わせる。 もしこのインジェクタが親インジェクタを持つ場合には、バインディングを解決するためにそれに問い合わせる。成功したなら、それを使う。そうでなければ次に進む。 1. 複数の子インジェクタに問い合わせる。もしいずれかの子インジェクタがそのバインディングを所持しているのなら、ギブアップする。子インジェクタから取得したブラックリストを保持するため、子インジェクタへの参照を保持する必要はない。 1. プロバイダ注入を扱う。型がProvider<T>であるとき、Tに対するバインディングがもしあればそれを使って解決を行う。 |
バインディングの解決
注入リクエストを解決するためのプロセスは、バインディングとタイプのアノテーションに依存している。 以下では、どのように注入リクエストを解決するかを説明する。
- 明示的なバインディングを使う
- バインディングリンクがあればそれに従う。
- バインディングがインスタンスを指示していればそれを返す。
- バインディングがプロバイダを指示していればそれを使う。
- 親インジェクタに問い合わせる。 もしこのインジェクタが親インジェクタを持つ場合には、バインディングを解決するためにそれに問い合わせる。成功したなら、それを使う。そうでなければ次に進む。
- 複数の子インジェクタに問い合わせる。もしいずれかの子インジェクタがそのバインディングを所持しているのなら、ギブアップする。子インジェクタから取得したブラックリストを保持するため、子インジェクタへの参照を保持する必要はない。
プロバイダ注入を扱う。型がProvider<T>であるとき、Tに対するバインディングがもしあればそれを使って解決を行う。
Convert constants. If there is a constant string bound with the same annotation, and a TypeConverter that supports this type, use the converted String.
- If the dependency has a binding annotation, give up. Guice will not create default bindings for annotated dependencies.
- If the dependency is an array or enum, give up.
Handle TypeLiteral injections. If the type is TypeLiteral<T>, inject that value, using context for the value of the type parameter.
Use resolution annotations. If the dependency's type has @ImplementedBy or @ProvidedBy, lookup the binding for the referenced type and use that.
- If the dependency is abstract or a non-static inner class, give up.
- Use a single @Inject or public no-arguments constructor.
- Validate bindings for all dependencies — the constructor's parameters, plus @Inject methods and fields of the type and all supertypes.
- Invoke the constructor.
- Inject all fields. Supertype fields are injected before subtype fields.
- Inject all methods. Supertype methods are injected before subtype methods.