1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.util;
17
18 import org.kuali.rice.core.framework.util.ReflectionUtils;
19 import org.kuali.rice.krad.uif.UifConstants;
20 import org.kuali.rice.krad.uif.component.Component;
21 import org.kuali.rice.krad.uif.container.CollectionGroup;
22 import org.kuali.rice.krad.uif.lifecycle.ViewLifecycleUtils;
23
24 import java.util.Collection;
25 import java.util.Collections;
26 import java.util.HashMap;
27 import java.util.LinkedList;
28 import java.util.List;
29 import java.util.Map;
30 import java.util.Queue;
31
32
33
34
35
36
37 public class ContextUtils {
38
39 private ContextUtils() {}
40
41
42
43
44
45
46
47
48 public static void pushObjectToContextDeep(Collection<? extends LifecycleElement> elements, String contextName,
49 Object contextValue) {
50 if (elements == null || elements.isEmpty()) {
51 return;
52 }
53
54 Queue<LifecycleElement> elementQueue = new LinkedList<LifecycleElement>();
55
56 try {
57 elementQueue.addAll(elements);
58 while (!elementQueue.isEmpty()) {
59 LifecycleElement currentElement = elementQueue.poll();
60
61 if (currentElement == null) {
62 continue;
63 }
64
65 if (currentElement instanceof Component) {
66 ((Component) currentElement).pushObjectToContext(contextName, contextValue);
67 }
68
69 elementQueue.addAll(ViewLifecycleUtils.getElementsForLifecycle(currentElement).values());
70 }
71 } finally {
72 elementQueue.clear();
73 RecycleUtils.recycle(elementQueue);
74 }
75 }
76
77
78
79
80
81
82
83
84
85
86
87
88 public static void pushObjectToContextDeep(Component component, String contextName, Object contextValue) {
89 if (component == null) {
90 return;
91 }
92
93 pushObjectToContextDeep(Collections.singletonList(component), contextName, contextValue);
94 }
95
96
97
98
99
100
101
102
103
104
105
106 public static void pushAllToContextDeep(Component component, Map<String, Object> sourceContext) {
107 if (component == null) {
108 return;
109 }
110
111 pushAllToContextDeep(Collections.singletonList(component), sourceContext);
112 }
113
114
115
116
117
118
119
120 public static void pushAllToContextDeep(List<? extends Component> components, Map<String, Object> sourceContext) {
121 if (components == null || components.isEmpty()) {
122 return;
123 }
124
125 @SuppressWarnings("unchecked") Queue<LifecycleElement> elementQueue = RecycleUtils.getInstance(
126 LinkedList.class);
127 try {
128 elementQueue.addAll(components);
129 while (!elementQueue.isEmpty()) {
130 LifecycleElement currentElement = elementQueue.poll();
131
132 if (currentElement == null) {
133 continue;
134 }
135
136 if (currentElement instanceof Component) {
137 ((Component) currentElement).pushAllToContext(sourceContext);
138 }
139
140 elementQueue.addAll(ViewLifecycleUtils.getElementsForLifecycle(currentElement).values());
141 }
142 } finally {
143 elementQueue.clear();
144 RecycleUtils.recycle(elementQueue);
145 }
146 }
147
148
149
150
151
152
153
154
155
156
157 public static void updateContextsForLine(List<? extends Component> components, CollectionGroup collectionGroup,
158 Object collectionLine, int lineIndex, String lineSuffix) {
159 for (Component component : components) {
160 updateContextForLine(component, collectionGroup, collectionLine, lineIndex, lineSuffix);
161 }
162 }
163
164
165
166
167
168
169
170
171
172
173
174
175
176 public static void updateContextForLine(Component component, CollectionGroup collectionGroup, Object collectionLine,
177 int lineIndex, String lineSuffix) {
178 Map<String, Object> toUpdate = new HashMap<String, Object>(5);
179
180 toUpdate.put(UifConstants.ContextVariableNames.COLLECTION_GROUP, collectionGroup);
181 toUpdate.put(UifConstants.ContextVariableNames.LINE, collectionLine);
182 toUpdate.put(UifConstants.ContextVariableNames.INDEX, Integer.valueOf(lineIndex));
183 toUpdate.put(UifConstants.ContextVariableNames.LINE_SUFFIX, lineSuffix);
184
185 boolean isAddLine = (lineIndex == -1);
186 toUpdate.put(UifConstants.ContextVariableNames.IS_ADD_LINE, isAddLine);
187
188 pushAllToContextDeep(component, toUpdate);
189 }
190
191
192
193
194
195
196
197 public static void cleanContextDeep(LifecycleElement lifecycleElement) {
198 if (lifecycleElement == null) {
199 return;
200 }
201
202 lifecycleElement.setContext(null);
203
204
205 Class<?> elementClass = lifecycleElement.getClass();
206
207 List<java.lang.reflect.Field> fields = ReflectionUtils.getAllFields(elementClass);
208 for (java.lang.reflect.Field field : fields) {
209
210 if (Collection.class.isAssignableFrom(field.getType())) {
211 ReflectionUtils.makeAccessible(field);
212 Collection<Object> elements = (Collection<Object>) ReflectionUtils.getField(field, lifecycleElement);
213 if (elements != null) {
214 for (Object element : elements) {
215 if (element != null && LifecycleElement.class.isAssignableFrom(element.getClass())) {
216 cleanContextDeep((LifecycleElement) element);
217 }
218 }
219 }
220
221 } else if (Map.class.isAssignableFrom(field.getType())) {
222 ReflectionUtils.makeAccessible(field);
223 Map<Object, Object> elements = (Map<Object, Object>) ReflectionUtils.getField(field, lifecycleElement);
224 if (elements != null) {
225 for (Object element : elements.entrySet()) {
226 if (element != null && LifecycleElement.class.isAssignableFrom(element.getClass())) {
227 cleanContextDeep((LifecycleElement) element);
228 }
229 }
230 }
231
232 } else if (LifecycleElement.class.isAssignableFrom(field.getType())) {
233 ReflectionUtils.makeAccessible(field);
234 LifecycleElement nestedElement = (LifecycleElement) ReflectionUtils.getField(field, lifecycleElement);
235
236 cleanContextDeep(nestedElement);
237 }
238 }
239 }
240 }