View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * Perform the lifecycle process for the view or a component.
35   *
36   * @author Kuali Rice Team (rice.collab@kuali.org)
37   * @see ViewLifecycle#encapsulateLifecycle(View, Object, javax.servlet.http.HttpServletRequest,
38   * javax.servlet.http.HttpServletResponse, Runnable)
39   * @see UifControllerHelper#prepareViewForRendering(javax.servlet.http.HttpServletRequest,
40   * javax.servlet.http.HttpServletResponse, UifFormBase)
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       * Constructor.
50       *
51       * @param parameters Map of key values pairs that provide configuration for the view, this is generally comes from
52       * the request and can be the request parameter Map itself. Any parameters not valid for the View will be
53       * filtered out
54       * @param refreshPathMappings
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       * Runs the three lifecycle phases and performs post finalize processing.
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          // build script for generating growl messages
79          String growlScript = ViewLifecycle.getHelper().buildGrowlScript();
80          ((ViewModel) ViewLifecycle.getModel()).setGrowlScript(growlScript);
81  
82          // on component refreshes regenerate server message content for page
83          if (ViewLifecycle.isRefreshLifecycle()) {
84              PageGroup page = view.getCurrentPage();
85              page.getValidationMessages().generateMessages(view, ViewLifecycle.getModel(), page);
86          }
87  
88          LifecycleRefreshPathBuilder.processLifecycleElements();
89  
90          // clear old added collection objects data since they are only needed during the lifecycle
91          ViewLifecycle.getViewPostMetadata().setAddedCollectionObjects(new HashMap<String, List<Object>>());
92  
93          ProcessLogger.trace("finalize:" + view.getId());
94      }
95  
96      /**
97       * Invokes the view helper to populate view attributes from request parameters, then makes a back up of the
98       * view request parameters on the form.
99       */
100     protected void populateViewRequestParameters() {
101         View view = ViewLifecycle.getView();
102         ViewHelperService helper = ViewLifecycle.getHelper();
103         UifFormBase model = (UifFormBase) ViewLifecycle.getModel();
104 
105         // populate view from request parameters. In case of refresh, the parameters will be stored on the
106         // form from the initial build
107         Map<String, String> parametersToPopulate = parameters;
108         if (ViewLifecycle.isRefreshLifecycle()) {
109             parametersToPopulate = model.getViewRequestParameters();
110         }
111 
112         helper.populateViewFromRequestParameters(parametersToPopulate);
113 
114         // backup view request parameters on form for refreshes
115         model.setViewRequestParameters(view.getViewRequestParameters());
116     }
117 
118     /**
119      * Runs the initialize lifecycle phase.
120      *
121      * <p>First the view helper is invoked to perform any custom processing, then the processor is invoked
122      * to perform any tasks for this phase.</p>
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      * Runs the apply model lifecycle phase.
151      *
152      * <p>Default values are applied and context is setup for expression evaluation. Then the processor is invoked
153      * to perform any tasks for this phase. </p>
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         // apply default values if they have not been applied yet
167         if (!model.isDefaultsApplied()) {
168             helper.applyDefaultValues(view);
169             model.setDefaultsApplied(true);
170         }
171 
172         // get action flag and edit modes from authorizer/presentation controller
173         helper.retrieveEditModesAndActionFlags();
174 
175         // set view context for conditional expressions
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      * Runs the finalize lifecycle phase.
190      *
191      * <p>Processor is invoked to perform any tasks for this phase.</p>
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 }