1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.view;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.krad.uif.container.CollectionGroup;
20 import org.kuali.rice.krad.uif.component.Component;
21 import org.kuali.rice.krad.uif.field.DataField;
22 import org.kuali.rice.krad.uif.field.InputField;
23 import org.kuali.rice.krad.uif.layout.TableLayoutManager;
24 import org.kuali.rice.krad.uif.util.ComponentUtils;
25 import org.kuali.rice.krad.uif.util.ViewCleaner;
26
27 import java.beans.PropertyEditor;
28 import java.io.Serializable;
29 import java.util.HashMap;
30 import java.util.HashSet;
31 import java.util.Map;
32 import java.util.Set;
33
34
35
36
37
38
39 public class ViewIndex implements Serializable {
40 private static final long serialVersionUID = 4700818801272201371L;
41
42 protected Map<String, Component> index;
43 protected Map<String, DataField> dataFieldIndex;
44 protected Map<String, CollectionGroup> collectionsIndex;
45
46 protected Map<String, Component> initialComponentStates;
47
48 protected Map<String, PropertyEditor> fieldPropertyEditors;
49 protected Map<String, PropertyEditor> secureFieldPropertyEditors;
50 protected Map<String, Integer> idSequenceSnapshot;
51 protected Map<String, Map<String, String>> componentExpressionGraphs;
52
53
54
55
56 public ViewIndex() {
57 index = new HashMap<String, Component>();
58 dataFieldIndex = new HashMap<String, DataField>();
59 collectionsIndex = new HashMap<String, CollectionGroup>();
60 initialComponentStates = new HashMap<String, Component>();
61 fieldPropertyEditors = new HashMap<String, PropertyEditor>();
62 secureFieldPropertyEditors = new HashMap<String, PropertyEditor>();
63 idSequenceSnapshot = new HashMap<String, Integer>();
64 componentExpressionGraphs = new HashMap<String, Map<String, String>>();
65 }
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83 protected void index(View view) {
84 index = new HashMap<String, Component>();
85 dataFieldIndex = new HashMap<String, DataField>();
86 collectionsIndex = new HashMap<String, CollectionGroup>();
87 fieldPropertyEditors = new HashMap<String, PropertyEditor>();
88 secureFieldPropertyEditors = new HashMap<String, PropertyEditor>();
89
90 indexComponent(view);
91 }
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110 public void indexComponent(Component component) {
111 if (component == null) {
112 return;
113 }
114
115 index.put(component.getId(), component);
116
117 if (component instanceof DataField) {
118 DataField field = (DataField) component;
119 dataFieldIndex.put(field.getBindingInfo().getBindingPath(), field);
120
121
122 if (component.isRender()) {
123 if (field.hasSecureValue()) {
124 secureFieldPropertyEditors.put(field.getBindingInfo().getBindingPath(), field.getPropertyEditor());
125 } else {
126 fieldPropertyEditors.put(field.getBindingInfo().getBindingPath(), field.getPropertyEditor());
127 }
128 }
129 } else if (component instanceof CollectionGroup) {
130 CollectionGroup collectionGroup = (CollectionGroup) component;
131 collectionsIndex.put(collectionGroup.getBindingInfo().getBindingPath(), collectionGroup);
132 }
133
134 for (Component nestedComponent : component.getComponentsForLifecycle()) {
135 indexComponent(nestedComponent);
136 }
137 }
138
139
140
141
142
143 public void clearIndexesAfterRender() {
144
145 Set<String> holdIds = new HashSet<String>();
146 Set<String> holdFactoryIds = new HashSet<String>();
147 for (Component component : index.values()) {
148 if (component != null) {
149
150 if (!component.isDisableSessionPersistence() && (StringUtils.isNotBlank(
151 component.getProgressiveRender())
152 || StringUtils.isNotBlank(component.getConditionalRefresh())
153 || component.getRefreshTimer() > 0
154 || (component.getRefreshWhenChangedPropertyNames() != null && !component
155 .getRefreshWhenChangedPropertyNames().isEmpty())
156 || component.isRefreshedByAction()
157 || component.isDisclosedByAction())) {
158 holdFactoryIds.add(component.getBaseId());
159 holdIds.add(component.getId());
160 }
161
162 else if (component.isForceSessionPersistence()) {
163 holdFactoryIds.add(component.getBaseId());
164 holdIds.add(component.getId());
165 }
166
167 else if (component instanceof CollectionGroup && ((CollectionGroup) component)
168 .getLayoutManager() instanceof TableLayoutManager && usesTableExportOption(
169 (TableLayoutManager) ((CollectionGroup) component).getLayoutManager())) {
170 holdFactoryIds.add(component.getBaseId());
171 holdIds.add(component.getId());
172 }
173
174 else if (component instanceof CollectionGroup && !component.isDisableSessionPersistence()) {
175 ViewCleaner.cleanCollectionGroup((CollectionGroup) component);
176 holdFactoryIds.add(component.getBaseId());
177 holdIds.add(component.getId());
178 }
179
180 else if ((component instanceof InputField) && !component.isDisableSessionPersistence()) {
181 InputField inputField = (InputField) component;
182 if ((inputField.getAttributeQuery() != null) || ((inputField.getSuggest() != null) && inputField
183 .getSuggest().isRender())) {
184 holdIds.add(component.getId());
185 }
186 }
187 }
188 }
189
190
191 Map<String, Component> holdInitialComponentStates = new HashMap<String, Component>();
192 for (String factoryId : initialComponentStates.keySet()) {
193 if (holdFactoryIds.contains(factoryId)) {
194 holdInitialComponentStates.put(factoryId, initialComponentStates.get(factoryId));
195 }
196 }
197 initialComponentStates = holdInitialComponentStates;
198
199
200 Map<String, Component> holdComponentStates = new HashMap<String, Component>();
201 for (String id : index.keySet()) {
202 if (holdIds.contains(id)) {
203 Component component = index.get(id);
204 holdComponentStates.put(id, component);
205
206
207 if (!component.getRefreshExpressionGraph().isEmpty()) {
208 componentExpressionGraphs.put(component.getBaseId(), component.getRefreshExpressionGraph());
209 }
210 }
211 }
212 index = holdComponentStates;
213
214 dataFieldIndex = new HashMap<String, DataField>();
215 }
216
217
218
219
220
221
222
223 private boolean usesTableExportOption(TableLayoutManager layoutManager) {
224 return layoutManager.getRichTable() != null && (layoutManager.getRichTable().isShowExportOption()
225 || layoutManager.getRichTable().isShowSearchAndExportOptions());
226 }
227
228
229
230
231
232
233
234 public Component getComponentById(String id) {
235 return index.get(id);
236 }
237
238
239
240
241
242
243
244 public DataField getDataFieldByPath(String propertyPath) {
245 return dataFieldIndex.get(propertyPath);
246 }
247
248
249
250
251
252
253
254
255 public DataField getDataFieldByPropertyName(String propertyName) {
256 DataField dataField = null;
257
258 for (DataField field : dataFieldIndex.values()) {
259 if (StringUtils.equals(propertyName, field.getPropertyName())) {
260 dataField = field;
261 break;
262 }
263 }
264
265 return dataField;
266 }
267
268
269
270
271
272
273
274
275 public Map<String, DataField> getDataFieldIndex() {
276 return this.dataFieldIndex;
277 }
278
279
280
281
282
283
284
285
286 public Map<String, CollectionGroup> getCollectionsIndex() {
287 return this.collectionsIndex;
288 }
289
290
291
292
293
294
295
296
297 public CollectionGroup getCollectionGroupByPath(String collectionPath) {
298 return collectionsIndex.get(collectionPath);
299 }
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317 public Map<String, Component> getInitialComponentStates() {
318 return initialComponentStates;
319 }
320
321
322
323
324
325
326
327
328
329
330
331 public void addInitialComponentStateIfNeeded(Component component) {
332 if (StringUtils.isBlank(component.getBaseId())) {
333 component.setBaseId(component.getId());
334 initialComponentStates.put(component.getBaseId(), ComponentUtils.copy(component));
335 }
336 }
337
338
339
340
341
342
343 public void setInitialComponentStates(Map<String, Component> initialComponentStates) {
344 this.initialComponentStates = initialComponentStates;
345 }
346
347
348
349
350
351
352
353
354
355
356
357
358
359 public Map<String, PropertyEditor> getFieldPropertyEditors() {
360 return fieldPropertyEditors;
361 }
362
363
364
365
366
367
368
369
370
371
372
373
374
375 public Map<String, PropertyEditor> getSecureFieldPropertyEditors() {
376 return secureFieldPropertyEditors;
377 }
378
379
380
381
382
383
384 public Map<String, Integer> getIdSequenceSnapshot() {
385 return idSequenceSnapshot;
386 }
387
388
389
390
391
392
393
394 public void addSequenceValueToSnapshot(String componentId, int sequenceVal) {
395 if (!idSequenceSnapshot.containsKey(componentId)){
396 idSequenceSnapshot.put(componentId, sequenceVal);
397 }
398 }
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415 public Map<String, Map<String, String>> getComponentExpressionGraphs() {
416 return componentExpressionGraphs;
417 }
418
419
420
421
422
423
424 public ViewIndex copy() {
425 ViewIndex viewIndexCopy = new ViewIndex();
426
427 if (this.index != null) {
428 Map<String, Component> indexCopy = new HashMap<String, Component>();
429 for (Map.Entry<String, Component> indexEntry : this.index.entrySet()) {
430 indexCopy.put(indexEntry.getKey(), (Component) indexEntry.getValue().copy());
431 }
432
433 viewIndexCopy.index = indexCopy;
434 }
435
436 if (this.dataFieldIndex != null) {
437 Map<String, DataField> dataFieldIndexCopy = new HashMap<String, DataField>();
438 for (Map.Entry<String, DataField> indexEntry : this.dataFieldIndex.entrySet()) {
439 dataFieldIndexCopy.put(indexEntry.getKey(), (DataField) indexEntry.getValue().copy());
440 }
441
442 viewIndexCopy.dataFieldIndex = dataFieldIndexCopy;
443 }
444
445 if (this.collectionsIndex != null) {
446 Map<String, CollectionGroup> collectionsIndexCopy = new HashMap<String, CollectionGroup>();
447 for (Map.Entry<String, CollectionGroup> indexEntry : this.collectionsIndex.entrySet()) {
448 collectionsIndexCopy.put(indexEntry.getKey(), (CollectionGroup) indexEntry.getValue().copy());
449 }
450
451 viewIndexCopy.collectionsIndex = collectionsIndexCopy;
452 }
453
454 if (this.initialComponentStates != null) {
455 Map<String, Component> initialComponentStatesCopy = new HashMap<String, Component>();
456 for (Map.Entry<String, Component> indexEntry : this.initialComponentStates.entrySet()) {
457 initialComponentStatesCopy.put(indexEntry.getKey(), (Component) indexEntry.getValue().copy());
458 }
459
460 viewIndexCopy.initialComponentStates = initialComponentStatesCopy;
461 }
462
463 if (this.fieldPropertyEditors != null) {
464 viewIndexCopy.fieldPropertyEditors = new HashMap<String, PropertyEditor>(this.fieldPropertyEditors);
465 }
466
467 if (this.secureFieldPropertyEditors != null) {
468 viewIndexCopy.secureFieldPropertyEditors = new HashMap<String, PropertyEditor>(
469 this.secureFieldPropertyEditors);
470 }
471
472 if (this.idSequenceSnapshot != null) {
473 viewIndexCopy.idSequenceSnapshot = new HashMap<String, Integer>(this.idSequenceSnapshot);
474 }
475
476 if (this.componentExpressionGraphs != null) {
477 viewIndexCopy.componentExpressionGraphs = new HashMap<String, Map<String, String>>(
478 this.componentExpressionGraphs);
479 }
480
481 return viewIndexCopy;
482 }
483
484 }