blob: ad74e6990235e9085266f25e60e95e982f36b7cd [file] [log] [blame]
crazyboblee62fcdde2007-02-03 02:10:13 +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 */
crazyboblee1b82a8f2007-02-02 23:30:42 +000016
crazyboblee10a3b022007-02-10 01:49:38 +000017package com.google.inject;
crazyboblee1b82a8f2007-02-02 23:30:42 +000018
kevinb9na99dca72007-02-11 04:48:57 +000019import java.lang.reflect.AccessibleObject;
20import java.lang.reflect.Method;
21import java.util.List;
crazyboblee1b82a8f2007-02-02 23:30:42 +000022import net.sf.cglib.proxy.MethodProxy;
crazyboblee1b82a8f2007-02-02 23:30:42 +000023import org.aopalliance.intercept.MethodInterceptor;
24import org.aopalliance.intercept.MethodInvocation;
25
crazyboblee1b82a8f2007-02-02 23:30:42 +000026/**
27 * Intercepts a method with a stack of interceptors.
28 *
29 * @author crazybob@google.com (Bob Lee)
30 */
31class InterceptorStackCallback implements net.sf.cglib.proxy.MethodInterceptor {
32
33 final MethodInterceptor[] interceptors;
34 final Method method;
35
36 public InterceptorStackCallback(Method method,
37 List<MethodInterceptor> interceptors) {
38 this.method = method;
kevinb9na99dca72007-02-11 04:48:57 +000039 this.interceptors
40 = interceptors.toArray(new MethodInterceptor[interceptors.size()]);
crazyboblee1b82a8f2007-02-02 23:30:42 +000041 }
42
43 public Object intercept(Object proxy, Method method, Object[] arguments,
44 MethodProxy methodProxy) throws Throwable {
kevinb9na99dca72007-02-11 04:48:57 +000045 return new InterceptedMethodInvocation(proxy, methodProxy, arguments)
46 .proceed();
crazyboblee1b82a8f2007-02-02 23:30:42 +000047 }
48
49 class InterceptedMethodInvocation implements MethodInvocation {
50
51 final Object proxy;
52 final Object[] arguments;
53 final MethodProxy methodProxy;
54 int index = -1;
55
56 public InterceptedMethodInvocation(Object proxy, MethodProxy methodProxy,
57 Object[] arguments) {
58 this.proxy = proxy;
59 this.methodProxy = methodProxy;
60 this.arguments = arguments;
61 }
62
63 public Object proceed() throws Throwable {
64 try {
65 index++;
66 return index == interceptors.length
kevinb9na99dca72007-02-11 04:48:57 +000067 ? methodProxy.invokeSuper(proxy, arguments)
68 : interceptors[index].invoke(this);
69 }
70 finally {
crazyboblee1b82a8f2007-02-02 23:30:42 +000071 index--;
72 }
73 }
74
75 public Method getMethod() {
76 return method;
77 }
78
79 public Object[] getArguments() {
80 return arguments;
81 }
82
83 public Object getThis() {
84 return proxy;
85 }
86
87 public AccessibleObject getStaticPart() {
88 return getMethod();
89 }
90 }
91}