1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| |
8 |
| |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| package org.apache.tapestry.enhance; |
16 |
| |
17 |
| import java.util.Iterator; |
18 |
| |
19 |
| import org.apache.hivemind.ErrorLog; |
20 |
| import org.apache.hivemind.service.ClassFabUtils; |
21 |
| import org.apache.hivemind.util.Defense; |
22 |
| import org.apache.tapestry.IComponent; |
23 |
| import org.apache.tapestry.spec.IComponentSpecification; |
24 |
| import org.apache.tapestry.spec.IContainedComponent; |
25 |
| |
26 |
| |
27 |
| |
28 |
| |
29 |
| |
30 |
| |
31 |
| |
32 |
| |
33 |
| public class InjectComponentWorker implements EnhancementWorker |
34 |
| { |
35 |
| private ErrorLog _errorLog; |
36 |
| |
37 |
414
| public void performEnhancement(EnhancementOperation op, IComponentSpecification spec)
|
38 |
| { |
39 |
414
| Iterator i = spec.getComponentIds().iterator();
|
40 |
| |
41 |
414
| while (i.hasNext())
|
42 |
| { |
43 |
259
| String id = (String) i.next();
|
44 |
| |
45 |
259
| IContainedComponent cc = spec.getComponent(id);
|
46 |
| |
47 |
259
| String propertyName = cc.getPropertyName();
|
48 |
| |
49 |
259
| if (propertyName != null)
|
50 |
| { |
51 |
2
| try
|
52 |
| { |
53 |
2
| injectComponent(op, id, propertyName);
|
54 |
| } |
55 |
| catch (Exception ex) |
56 |
| { |
57 |
1
| _errorLog.error(EnhanceMessages.errorAddingProperty(propertyName, op
|
58 |
| .getBaseClass(), ex), cc.getLocation(), ex); |
59 |
| } |
60 |
| } |
61 |
| } |
62 |
| } |
63 |
| |
64 |
2
| public void injectComponent(EnhancementOperation op, String componentId, String propertyName)
|
65 |
| { |
66 |
2
| Defense.notNull(op, "op");
|
67 |
2
| Defense.notNull(componentId, "componentId");
|
68 |
2
| Defense.notNull(propertyName, "propertyName");
|
69 |
| |
70 |
2
| Class propertyType = EnhanceUtils.extractPropertyType(op, propertyName, null);
|
71 |
| |
72 |
2
| op.claimProperty(propertyName);
|
73 |
| |
74 |
1
| String fieldName = "_$" + propertyName;
|
75 |
| |
76 |
1
| op.addField(fieldName, propertyType);
|
77 |
| |
78 |
1
| EnhanceUtils.createSimpleAccessor(op, fieldName, propertyName, propertyType);
|
79 |
| |
80 |
| |
81 |
| |
82 |
1
| String code = fieldName + " = (" + ClassFabUtils.getJavaClassName(propertyType)
|
83 |
| + ") getComponent(\"" + componentId + "\");"; |
84 |
| |
85 |
1
| op.extendMethodImplementation(IComponent.class, EnhanceUtils.FINISH_LOAD_SIGNATURE, code);
|
86 |
| } |
87 |
| |
88 |
41
| public void setErrorLog(ErrorLog errorLog)
|
89 |
| { |
90 |
41
| _errorLog = errorLog;
|
91 |
| } |
92 |
| } |