1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.lifecycle;
17
18 import java.util.HashMap;
19 import java.util.List;
20 import java.util.Map;
21
22 import org.kuali.rice.krad.uif.UifConstants;
23 import org.kuali.rice.krad.uif.container.PageGroup;
24 import org.kuali.rice.krad.uif.service.ViewHelperService;
25 import org.kuali.rice.krad.uif.util.ProcessLogger;
26 import org.kuali.rice.krad.uif.view.View;
27 import org.kuali.rice.krad.uif.view.ViewModel;
28 import org.kuali.rice.krad.web.controller.UifControllerHelper;
29 import org.kuali.rice.krad.web.form.UifFormBase;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33
34
35
36
37
38
39
40
41
42 public class ViewLifecycleBuild implements Runnable {
43 private static final Logger LOG = LoggerFactory.getLogger(ViewLifecycleBuild.class);
44
45 private final Map<String, String> parameters;
46 private final Map<String, List<String>> refreshPathMappings;
47
48
49
50
51
52
53
54
55
56 public ViewLifecycleBuild(Map<String, String> parameters, Map<String, List<String>> refreshPathMappings) {
57 this.parameters = parameters;
58 this.refreshPathMappings = refreshPathMappings;
59 }
60
61
62
63
64 @Override
65 public void run() {
66 View view = ViewLifecycle.getView();
67
68 ProcessLogger.trace("begin-view-lifecycle:" + view.getId());
69
70 populateViewRequestParameters();
71
72 runInitializePhase();
73
74 runApplyModelPhase();
75
76 runFinalizePhase();
77
78
79 String growlScript = ViewLifecycle.getHelper().buildGrowlScript();
80 ((ViewModel) ViewLifecycle.getModel()).setGrowlScript(growlScript);
81
82
83 if (ViewLifecycle.isRefreshLifecycle()) {
84 PageGroup page = view.getCurrentPage();
85 page.getValidationMessages().generateMessages(view, ViewLifecycle.getModel(), page);
86 }
87
88 LifecycleRefreshPathBuilder.processLifecycleElements();
89
90
91 ViewLifecycle.getViewPostMetadata().setAddedCollectionObjects(new HashMap<String, List<Object>>());
92
93 ProcessLogger.trace("finalize:" + view.getId());
94 }
95
96
97
98
99
100 protected void populateViewRequestParameters() {
101 View view = ViewLifecycle.getView();
102 ViewHelperService helper = ViewLifecycle.getHelper();
103 UifFormBase model = (UifFormBase) ViewLifecycle.getModel();
104
105
106
107 Map<String, String> parametersToPopulate = parameters;
108 if (ViewLifecycle.isRefreshLifecycle()) {
109 parametersToPopulate = model.getViewRequestParameters();
110 }
111
112 helper.populateViewFromRequestParameters(parametersToPopulate);
113
114
115 model.setViewRequestParameters(view.getViewRequestParameters());
116 }
117
118
119
120
121
122
123
124 protected void runInitializePhase() {
125 ViewLifecycleProcessor processor = ViewLifecycle.getProcessor();
126
127 View view = ViewLifecycle.getView();
128 ViewHelperService helper = ViewLifecycle.getHelper();
129 UifFormBase model = (UifFormBase) ViewLifecycle.getModel();
130
131 ViewLifecycle.getExpressionEvaluator().initializeEvaluationContext(model);
132
133 if (LOG.isInfoEnabled()) {
134 LOG.info("performing initialize phase for view: " + view.getId());
135 }
136
137 helper.performCustomViewInitialization(model);
138
139 List<String> refreshPaths = null;
140 if (refreshPathMappings != null) {
141 refreshPaths = refreshPathMappings.get(UifConstants.ViewPhases.INITIALIZE);
142 }
143
144 processor.performPhase(LifecyclePhaseFactory.initialize(view, model, "", refreshPaths, null, null));
145
146 ProcessLogger.trace("initialize:" + view.getId());
147 }
148
149
150
151
152
153
154
155 protected void runApplyModelPhase() {
156 ViewLifecycleProcessor processor = ViewLifecycle.getProcessor();
157
158 View view = ViewLifecycle.getView();
159 ViewHelperService helper = ViewLifecycle.getHelper();
160 UifFormBase model = (UifFormBase) ViewLifecycle.getModel();
161
162 if (LOG.isInfoEnabled()) {
163 LOG.info("performing apply model phase for view: " + view.getId());
164 }
165
166
167 if (!model.isDefaultsApplied()) {
168 helper.applyDefaultValues(view);
169 model.setDefaultsApplied(true);
170 }
171
172
173 helper.retrieveEditModesAndActionFlags();
174
175
176 helper.setViewContext();
177
178 List<String> refreshPaths = null;
179 if (refreshPathMappings != null) {
180 refreshPaths = refreshPathMappings.get(UifConstants.ViewPhases.APPLY_MODEL);
181 }
182
183 processor.performPhase(LifecyclePhaseFactory.applyModel(view, model, "", refreshPaths));
184
185 ProcessLogger.trace("apply-model:" + view.getId());
186 }
187
188
189
190
191
192
193 protected void runFinalizePhase() {
194 ViewLifecycleProcessor processor = ViewLifecycle.getProcessor();
195
196 View view = ViewLifecycle.getView();
197 UifFormBase model = (UifFormBase) ViewLifecycle.getModel();
198
199 if (LOG.isInfoEnabled()) {
200 LOG.info("performing finalize phase for view: " + view.getId());
201 }
202
203 List<String> refreshPaths = null;
204 if (refreshPathMappings != null) {
205 refreshPaths = refreshPathMappings.get(UifConstants.ViewPhases.FINALIZE);
206 }
207
208 processor.performPhase(LifecyclePhaseFactory.finalize(view, model, "", refreshPaths, null));
209 }
210
211 }