blob: 3cbdc989386476a281f80de5dc5e435c3fb98c47 [file] [log] [blame]
crazyboblee66b415a2006-08-25 02:01:19 +00001/**
2 * Copyright (C) 2006 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.google.inject;
18
19import java.lang.reflect.InvocationHandler;
crazyboblee66b415a2006-08-25 02:01:19 +000020import java.lang.reflect.InvocationTargetException;
kevinb9na99dca72007-02-11 04:48:57 +000021import java.lang.reflect.Method;
crazyboblee66b415a2006-08-25 02:01:19 +000022import java.lang.reflect.Proxy;
crazyboblee66b415a2006-08-25 02:01:19 +000023import java.util.ArrayList;
kevinb9na99dca72007-02-11 04:48:57 +000024import java.util.List;
crazyboblee66b415a2006-08-25 02:01:19 +000025
26/**
27 * Context of a dependency construction. Used to manage circular references.
28 *
29 * @author crazybob@google.com (Bob Lee)
30 */
31class ConstructionContext<T> {
32
33 T currentReference;
34 boolean constructing;
35
36 List<DelegatingInvocationHandler<T>> invocationHandlers;
37
38 T getCurrentReference() {
39 return currentReference;
40 }
41
42 void removeCurrentReference() {
43 this.currentReference = null;
44 }
45
46 void setCurrentReference(T currentReference) {
47 this.currentReference = currentReference;
48 }
49
50 boolean isConstructing() {
51 return constructing;
52 }
53
54 void startConstruction() {
55 this.constructing = true;
56 }
57
58 void finishConstruction() {
59 this.constructing = false;
60 invocationHandlers = null;
61 }
62
kevinb9n48d13072007-02-12 18:21:26 +000063 T createProxy(Class<T> expectedType) {
crazyboblee66b415a2006-08-25 02:01:19 +000064 // TODO: if I create a proxy which implements all the interfaces of
65 // the implementation type, I'll be able to get away with one proxy
66 // instance (as opposed to one per caller).
67
68 if (!expectedType.isInterface()) {
crazybobleee3adfd62007-02-02 21:30:08 +000069 // TODO: Report better error.
crazyboblee63b592b2007-01-25 02:45:24 +000070 throw new ConfigurationException(
crazyboblee66b415a2006-08-25 02:01:19 +000071 expectedType.getName() + " is not an interface.");
72 }
73
74 if (invocationHandlers == null) {
75 invocationHandlers = new ArrayList<DelegatingInvocationHandler<T>>();
76 }
77
kevinb9na99dca72007-02-11 04:48:57 +000078 DelegatingInvocationHandler<T> invocationHandler
79 = new DelegatingInvocationHandler<T>();
crazyboblee66b415a2006-08-25 02:01:19 +000080 invocationHandlers.add(invocationHandler);
81
kevinb9n48d13072007-02-12 18:21:26 +000082 Object object = Proxy.newProxyInstance(expectedType.getClassLoader(),
kevinb9na99dca72007-02-11 04:48:57 +000083 new Class[] { expectedType }, invocationHandler);
kevinb9n48d13072007-02-12 18:21:26 +000084 return expectedType.cast(object);
crazyboblee66b415a2006-08-25 02:01:19 +000085 }
86
87 void setProxyDelegates(T delegate) {
88 if (invocationHandlers != null) {
kevinb9na99dca72007-02-11 04:48:57 +000089 for (DelegatingInvocationHandler<T> handler : invocationHandlers) {
90 handler.setDelegate(delegate);
crazyboblee66b415a2006-08-25 02:01:19 +000091 }
92 }
93 }
94
95 static class DelegatingInvocationHandler<T> implements InvocationHandler {
96
97 T delegate;
98
99 public Object invoke(Object proxy, Method method, Object[] args)
100 throws Throwable {
101 if (delegate == null) {
102 throw new IllegalStateException(
103 "Not finished constructing. Please don't call methods on this"
104 + " object until the caller's construction is complete.");
105 }
106
107 try {
108 return method.invoke(delegate, args);
kevinb9na99dca72007-02-11 04:48:57 +0000109 }
110 catch (IllegalAccessException e) {
crazyboblee66b415a2006-08-25 02:01:19 +0000111 throw new RuntimeException(e);
kevinb9na99dca72007-02-11 04:48:57 +0000112 }
113 catch (IllegalArgumentException e) {
crazyboblee66b415a2006-08-25 02:01:19 +0000114 throw new RuntimeException(e);
kevinb9na99dca72007-02-11 04:48:57 +0000115 }
116 catch (InvocationTargetException e) {
crazyboblee66b415a2006-08-25 02:01:19 +0000117 throw e.getTargetException();
118 }
119 }
120
121 void setDelegate(T delegate) {
122 this.delegate = delegate;
123 }
124 }
125}