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