1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.apache.commons.jelly.tags.core; |
17 |
|
|
18 |
|
import java.lang.reflect.InvocationTargetException; |
19 |
|
import java.util.ArrayList; |
20 |
|
import java.util.List; |
21 |
|
|
22 |
|
import org.apache.commons.beanutils.ConstructorUtils; |
23 |
|
import org.apache.commons.jelly.JellyTagException; |
24 |
|
import org.apache.commons.jelly.MissingAttributeException; |
25 |
|
import org.apache.commons.jelly.XMLOutput; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
4 |
public class NewTag extends BaseClassLoaderTag implements ArgTagParent { |
33 |
|
|
34 |
|
|
35 |
|
private String var; |
36 |
|
|
37 |
|
|
38 |
|
private String className; |
39 |
|
|
40 |
50 |
private List paramTypes = new ArrayList(); |
41 |
50 |
private List paramValues = new ArrayList(); |
42 |
|
|
43 |
50 |
public NewTag() { |
44 |
50 |
} |
45 |
|
|
46 |
|
|
47 |
|
public void setVar(String var) { |
48 |
40 |
this.var = class="keyword">var; |
49 |
40 |
} |
50 |
|
|
51 |
|
|
52 |
|
public void setClassName(String className) { |
53 |
50 |
this.className = className; |
54 |
50 |
} |
55 |
|
|
56 |
|
public void addArgument(Class type, Object value) { |
57 |
36 |
paramTypes.add(type); |
58 |
36 |
paramValues.add(value); |
59 |
36 |
} |
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
public void doTag(XMLOutput output) throws MissingAttributeException, JellyTagException { |
64 |
50 |
ArgTag parentArg = null; |
65 |
50 |
if ( var == null ) { |
66 |
10 |
parentArg = (ArgTag)(findAncestorWithClass(ArgTag.class)); |
67 |
10 |
if(null == parentArg) { |
68 |
0 |
throw new MissingAttributeException( "var" ); |
69 |
|
} |
70 |
|
} |
71 |
50 |
if ( className == null ) { |
72 |
0 |
throw new MissingAttributeException( "className" ); |
73 |
|
} |
74 |
50 |
invokeBody(output); |
75 |
|
|
76 |
|
try { |
77 |
50 |
Class theClass = getClassLoader().loadClass( className ); |
78 |
50 |
Object object = null; |
79 |
50 |
if(paramTypes.size() == 0) { |
80 |
28 |
object = theClass.newInstance(); |
81 |
|
} else { |
82 |
22 |
Object[] values = paramValues.toArray(); |
83 |
22 |
Class[] types = (Class[])(paramTypes.toArray(new Class[paramTypes.size()])); |
84 |
22 |
object = ConstructorUtils.invokeConstructor(theClass,values,types); |
85 |
22 |
paramTypes.clear(); |
86 |
22 |
paramValues.clear(); |
87 |
|
} |
88 |
50 |
if(null != var) { |
89 |
40 |
context.setVariable(var, object); |
90 |
|
} else { |
91 |
10 |
parentArg.setValue(object); |
92 |
|
} |
93 |
50 |
} |
94 |
|
catch (ClassNotFoundException e) { |
95 |
0 |
throw new JellyTagException(e); |
96 |
|
} |
97 |
|
catch (InstantiationException e) { |
98 |
0 |
throw new JellyTagException(e); |
99 |
|
} |
100 |
|
catch (NoSuchMethodException e) { |
101 |
0 |
throw new JellyTagException(e); |
102 |
|
} |
103 |
|
catch (IllegalAccessException e) { |
104 |
0 |
throw new JellyTagException(e); |
105 |
|
} |
106 |
|
catch (InvocationTargetException e) { |
107 |
0 |
throw new JellyTagException(e); |
108 |
|
} |
109 |
50 |
} |
110 |
|
} |