1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.core.api.resourceloader; |
18 | |
|
19 | |
import java.lang.reflect.InvocationTargetException; |
20 | |
import java.util.Collection; |
21 | |
import java.util.Iterator; |
22 | |
import java.util.List; |
23 | |
|
24 | |
import org.apache.commons.beanutils.ConstructorUtils; |
25 | |
import org.apache.commons.beanutils.PropertyUtils; |
26 | |
import org.apache.log4j.Logger; |
27 | |
import org.kuali.rice.core.api.reflect.DataDefinition; |
28 | |
import org.kuali.rice.core.api.reflect.ObjectDefinition; |
29 | |
import org.kuali.rice.core.api.reflect.PropertyDefinition; |
30 | |
import org.kuali.rice.core.api.reflect.DataDefinition; |
31 | |
import org.kuali.rice.core.api.reflect.ObjectDefinition; |
32 | |
import org.kuali.rice.core.api.reflect.PropertyDefinition; |
33 | |
import org.kuali.rice.core.util.ClassLoaderUtils; |
34 | |
import org.kuali.rice.core.util.ContextClassLoaderBinder; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | 0 | public class ObjectDefinitionResolver { |
44 | |
|
45 | 0 | private static final Logger LOG = Logger.getLogger(ObjectDefinitionResolver.class); |
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
public static Object wrap(Object object) { |
52 | 0 | return wrap(object, ClassLoaderUtils.getDefaultClassLoader()); |
53 | |
} |
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
public static Object wrap(Object object, ClassLoader classLoader) { |
60 | |
|
61 | 0 | return object; |
62 | |
} |
63 | |
|
64 | |
public static Object createObject(String className, ClassLoader classLoader) { |
65 | 0 | return createObject(new ObjectDefinition(className), classLoader, true); |
66 | |
} |
67 | |
|
68 | |
public static Object createObject(ObjectDefinition definition, ClassLoader classLoader, boolean wrap) { |
69 | 0 | Object object = null; |
70 | 0 | String className = definition.getClassName(); |
71 | |
try { |
72 | 0 | ContextClassLoaderBinder.bind(classLoader); |
73 | 0 | Class<?>[] constructorParamTypes = buildConstructorParamTypes(definition.getConstructorParameters()); |
74 | 0 | Object[] constructorParams = buildConstructorParams(definition.getConstructorParameters()); |
75 | |
try { |
76 | 0 | Class<?> objectClass = Class.forName(className, true, classLoader); |
77 | 0 | object = loadObject(objectClass, constructorParams, constructorParamTypes); |
78 | 0 | } catch (ClassNotFoundException e) { |
79 | 0 | return null; |
80 | 0 | } |
81 | 0 | invokeProperties(object, definition.getProperties()); |
82 | 0 | if (wrap) { |
83 | 0 | return wrap(object, classLoader); |
84 | |
} |
85 | 0 | return object; |
86 | 0 | } catch (Exception e) { |
87 | 0 | handleException(className, e); |
88 | |
} finally { |
89 | 0 | ContextClassLoaderBinder.unbind(); |
90 | 0 | } |
91 | 0 | return object; |
92 | |
} |
93 | |
|
94 | |
protected static Object loadObject(Class<?> objectClass, Object[] constructorParams, Class<?>[] constructorParamTypes) throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException { |
95 | 0 | return ConstructorUtils.invokeConstructor(objectClass, constructorParams, constructorParamTypes); |
96 | |
} |
97 | |
|
98 | |
private static void handleException(String className, Exception e) { |
99 | 0 | if (e instanceof RuntimeException) { |
100 | 0 | throw (RuntimeException) e; |
101 | |
} |
102 | 0 | throw new ResourceLoaderException("Could not materialize object from definition, using classname: " + className, e); |
103 | |
} |
104 | |
|
105 | |
protected static Class<?>[] buildConstructorParamTypes(List<DataDefinition> constructorParameters) { |
106 | 0 | Class<?>[] params = new Class[constructorParameters.size()]; |
107 | 0 | int index = 0; |
108 | 0 | for (Iterator iterator = constructorParameters.iterator(); iterator.hasNext();) { |
109 | 0 | DataDefinition dataDef = (DataDefinition) iterator.next(); |
110 | 0 | params[index++] = dataDef.getType(); |
111 | 0 | } |
112 | 0 | return params; |
113 | |
} |
114 | |
|
115 | |
protected static Object[] buildConstructorParams(List<DataDefinition> constructorParameters) { |
116 | 0 | Object[] params = new Object[constructorParameters.size()]; |
117 | 0 | int index = 0; |
118 | 0 | for (Iterator iterator = constructorParameters.iterator(); iterator.hasNext();) { |
119 | 0 | DataDefinition dataDef = (DataDefinition) iterator.next(); |
120 | 0 | params[index++] = dataDef.getValue(); |
121 | 0 | } |
122 | 0 | return params; |
123 | |
} |
124 | |
|
125 | |
protected static void invokeProperties(Object object, Collection<PropertyDefinition> properties) throws InvocationTargetException, IllegalAccessException, NoSuchMethodException { |
126 | 0 | for (Iterator iterator = properties.iterator(); iterator.hasNext();) { |
127 | 0 | PropertyDefinition propertyDef = (PropertyDefinition) iterator.next(); |
128 | 0 | invokeProperty(object, propertyDef); |
129 | 0 | } |
130 | 0 | } |
131 | |
|
132 | |
protected static void invokeProperty(Object object, PropertyDefinition definition) throws InvocationTargetException, IllegalAccessException, NoSuchMethodException { |
133 | 0 | PropertyUtils.setProperty(object, definition.getName(), definition.getData().getValue()); |
134 | 0 | } |
135 | |
|
136 | |
|
137 | |
} |