/**
*
* Copyright 2003-2004 The Apache Software Foundation
*
* 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 org.apache.geronimo.gbean;
import java.beans.Introspector;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;
import net.sf.cglib.reflect.FastClass;
import net.sf.cglib.reflect.FastMethod;
/**
* Wraps an <code>Object</code> in a <code>DynamicGBean</code> facade.
*
* @version $Rev$ $Date$
*/
public class DynamicGBeanDelegate implements DynamicGBean {
protected final Map getters = new HashMap();
protected final Map setters = new HashMap();
protected final Map operations = new HashMap();
private Class targetClass;
public void addAll(Object target) {
this.targetClass = target.getClass();
Method[] methods = targetClass.getMethods();
for (int i = 0; i < methods.length; i++) {
Method method = methods[i];
if (isGetter(method)) {
addGetter(target, method);
} else if (isSetter(method)) {
addSetter(target, method);
} else {
addOperation(target, method);
}
}
}
public void addGetter(Object target, Method method) {
String name = method.getName();
if (name.startsWith("get")) {
addGetter(name.substring(3), target, method);
} else if (name.startsWith("is")) {
addGetter(name.substring(2), target, method);
} else {
throw new IllegalArgumentException("Method name must start with 'get' or 'is' " + method);
}
}
public void addGetter(String name, Object target, Method method) {
if (!(method.getParameterTypes().length == 0 && method.getReturnType() != Void.TYPE)) {
throw new IllegalArgumentException("Method must take no parameters and return a value " + method);
}
getters.put(name, new Operation(target, method));
// we want to be user-friendly so we put the attribute name in
// the Map in both lower-case and upper-case
getters.put(Introspector.decapitalize(name), new Operation(target, method));
}
public void addSetter(Object target, Method method) {
if (!method.getName().startsWith("set")) {
throw new IllegalArgumentException("Method name must start with 'set' " + method);
}
addSetter(method.getName().substring(3), target, method);
}
public void addSetter(String name, Object target, Method method) {
if (!(method.getParameterTypes().length == 1 && method.getReturnType() == Void.TYPE)) {
throw new IllegalArgumentException("Method must take one parameter and not return anything " + method);
}
setters.put(name, new Operation(target, method));
// we want to be user-friendly so we put the attribute name in
// the Map in both lower-case and upper-case
setters.put(Introspector.decapitalize(name), new Operation(target, method));
}
public void addOperation(Object target, Method method) {
Class[] parameters = method.getParameterTypes();
String[] types = new String[parameters.length];
for (int i = 0; i < parameters.length; i++) {
types[i] = parameters[i].getName();
}
GOperationSignature key = new GOperationSignature(method.getName(), types);
operations.put(key, new Operation(target, method));
}
private boolean isGetter(Method method) {
String name = method.getName();
return (name.startsWith("get") || name.startsWith("is")) &&
method.getParameterTypes().length == 0
&& method.getReturnType() != Void.TYPE;
}
private boolean isSetter(Method method) {
return method.getName().startsWith("set") &&
method.getParameterTypes().length == 1 &&
method.getReturnType() == Void.TYPE;
}
public Object getAttribute(String name) throws Exception {
Operation operation = (Operation) getters.get(name);
if (operation == null) {
throw new IllegalArgumentException(targetClass.getName() + ": no getter for " + name);
}
return operation.invoke(null);
}
public void setAttribute(String name, Object value) throws Exception {
Operation operation = (Operation) setters.get(name);
if (operation == null) {
throw new IllegalArgumentException(targetClass.getName() + ": no setter for " + name);
}
operation.invoke(new Object[]{value});
}
public Object invoke(String name, Object[] arguments, String[] types) throws Exception {
GOperationSignature signature = new GOperationSignature(name, types);
Operation operation = (Operation) operations.get(signature);
if (operation == null) {
throw new IllegalArgumentException(targetClass.getName() + ": no operation " + signature);
}
return operation.invoke(arguments);
}
/**
* Gets all properties (with both a getter and setter), in the form of
* propertyName
*/
public String[] getProperties() {
Set one = getters.keySet();
Set two = setters.keySet();
List out = new ArrayList();
for (Iterator it = one.iterator(); it.hasNext();) {
String name = (String) it.next();
if(Character.isLowerCase(name.charAt(0)) && two.contains(name)) {
out.add(name);
}
}
return (String[]) out.toArray(new String[out.size()]);
}
public Class getPropertyType(String name) {
Operation oper = (Operation) getters.get(name);
return oper.method.getReturnType();
}
protected static class Operation {
private final Object target;
private final FastMethod method;
public Operation(Object target, Method method) {
assert target != null;
assert method != null;
this.target = target;
this.method = FastClass.create(target.getClass()).getMethod(method);
}
public Object invoke(Object[] arguments) throws Exception {
try {
return method.invoke(target, arguments);
} catch (InvocationTargetException e) {
Throwable targetException = e.getTargetException();
if (targetException instanceof Exception) {
throw (Exception) targetException;
} else if (targetException instanceof Error) {
throw (Error) targetException;
}
throw e;
}
}
}
}