View Javadoc

1   /**
2    * Copyright 2005-2012 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.service.impl;
17  
18  import java.util.HashMap;
19  import java.util.List;
20  import java.util.Map;
21  
22  import org.apache.log4j.Logger;
23  import org.kuali.rice.krad.service.DataDictionaryService;
24  import org.kuali.rice.krad.uif.UifConstants;
25  import org.kuali.rice.krad.uif.UifConstants.ViewStatus;
26  import org.kuali.rice.krad.uif.view.View;
27  import org.kuali.rice.krad.uif.service.ViewHelperService;
28  import org.kuali.rice.krad.uif.service.ViewService;
29  import org.kuali.rice.krad.uif.service.ViewTypeService;
30  import org.kuali.rice.krad.uif.UifConstants.ViewType;
31  import org.kuali.rice.krad.web.form.UifFormBase;
32  
33  /**
34   * Implementation of <code>ViewService</code>
35   *
36   * <p>
37   * Provides methods for retrieving View instances and carrying out the View
38   * lifecycle methods. Interacts with the configured <code>ViewHelperService</code>
39   * during the view lifecycle
40   * </p>
41   *
42   * @author Kuali Rice Team (rice.collab@kuali.org)
43   */
44  public class ViewServiceImpl implements ViewService {
45      private static final Logger LOG = Logger.getLogger(ViewServiceImpl.class);
46  
47      private DataDictionaryService dataDictionaryService;
48  
49      // TODO: remove once we can get beans by type from spring
50      private List<ViewTypeService> viewTypeServices;
51  
52      /**
53       * @see org.kuali.rice.krad.uif.service.ViewService#getViewById(java.lang.String)
54       */
55      public View getViewById(String viewId) {
56          LOG.debug("retrieving view instance for id: " + viewId);
57  
58          View view = dataDictionaryService.getViewById(viewId);
59          if (view == null) {
60              LOG.warn("View not found for id: " + viewId);
61          } else {
62              LOG.debug("Updating view status to CREATED for view: " + view.getId());
63              view.setViewStatus(ViewStatus.CREATED);
64          }
65  
66          return view;
67      }
68  
69      /**
70       * Retrieves the <code>ViewTypeService</code> for the given view type, then builds up the index based
71       * on the supported view type parameters and queries the dictionary service to retrieve the view
72       * based on its type and index
73       *
74       * @see org.kuali.rice.krad.uif.service.ViewService#getViewByType(org.kuali.rice.krad.uif.UifConstants.ViewType,
75       *      java.util.Map<java.lang.String,java.lang.String>)
76       */
77      public View getViewByType(ViewType viewType, Map<String, String> parameters) {
78          ViewTypeService typeService = getViewTypeService(viewType);
79          if (typeService == null) {
80              throw new RuntimeException("Unable to find view type service for view type name: " + viewType);
81          }
82  
83          Map<String, String> typeParameters = typeService.getParametersFromRequest(parameters);
84  
85          Map<String, String> indexKey = new HashMap<String, String>();
86          for (Map.Entry<String, String> parameter : typeParameters.entrySet()) {
87              indexKey.put(parameter.getKey(), parameter.getValue());
88          }
89  
90          View view = dataDictionaryService.getViewByTypeIndex(viewType, indexKey);
91          if (view == null) {
92              LOG.warn("View not found for type: " + viewType);
93          } else {
94              LOG.debug("Updating view status to CREATED for view: " + view.getId());
95              view.setViewStatus(ViewStatus.CREATED);
96          }
97  
98          return view;
99      }
100 
101     /**
102      * @see org.kuali.rice.krad.uif.service.ViewService#buildView(org.kuali.rice.krad.uif.view.View, java.lang.Object,
103      * java.util.Map<java.lang.String,java.lang.String>)
104      */
105     public void buildView(View view, Object model, Map<String, String> parameters) {
106         // get the configured helper service for the view
107         ViewHelperService helperService = view.getViewHelperService();
108 
109         // populate view from request parameters
110         helperService.populateViewFromRequestParameters(view, parameters);
111 
112         // backup view request parameters on form for recreating lost views (session timeout)
113         ((UifFormBase) model).setViewRequestParameters(view.getViewRequestParameters());
114 
115         // run view lifecycle
116         performViewLifecycle(view, model, parameters);
117     }
118 
119     /**
120      * Initializes a newly created <code>View</code> instance. Each component of the tree is invoked
121      * to perform setup based on its configuration. In addition helper service methods are invoked to
122      * perform custom initialization
123      *
124      * @param view - view instance to initialize
125      * @param model - object instance containing the view data
126      * @param parameters - Map of key values pairs that provide configuration for the <code>View</code>, this
127      * is generally comes from the request and can be the request parameter Map itself. Any parameters
128      * not valid for the View will be filtered out
129      */
130     protected void performViewLifecycle(View view, Object model, Map<String, String> parameters) {
131         // get the configured helper service for the view
132         ViewHelperService helperService = view.getViewHelperService();
133 
134         // invoke initialize phase on the views helper service
135         LOG.info("performing initialize phase for view: " + view.getId());
136         helperService.performInitialization(view, model);
137 
138         // do indexing
139         LOG.debug("processing indexing for view: " + view.getId());
140         view.index();
141 
142         // update status on view
143         LOG.debug("Updating view status to INITIALIZED for view: " + view.getId());
144         view.setViewStatus(ViewStatus.INITIALIZED);
145 
146         // Apply Model Phase
147         LOG.info("performing apply model phase for view: " + view.getId());
148         helperService.performApplyModel(view, model);
149 
150         // do indexing
151         LOG.info("reindexing after apply model for view: " + view.getId());
152         view.index();
153 
154         // Finalize Phase
155         LOG.info("performing finalize phase for view: " + view.getId());
156         helperService.performFinalize(view, model);
157 
158         // do indexing
159         LOG.info("processing final indexing for view: " + view.getId());
160         view.index();
161 
162         // update status on view
163         LOG.debug("Updating view status to FINAL for view: " + view.getId());
164         view.setViewStatus(ViewStatus.FINAL);
165     }
166 
167     public ViewTypeService getViewTypeService(UifConstants.ViewType viewType) {
168         if (viewTypeServices != null) {
169             for (ViewTypeService typeService : viewTypeServices) {
170                 if (viewType.equals(typeService.getViewTypeName())) {
171                     return typeService;
172                 }
173             }
174         }
175 
176         return null;
177     }
178 
179     public List<ViewTypeService> getViewTypeServices() {
180         return this.viewTypeServices;
181     }
182 
183     public void setViewTypeServices(List<ViewTypeService> viewTypeServices) {
184         this.viewTypeServices = viewTypeServices;
185     }
186 
187     protected DataDictionaryService getDataDictionaryService() {
188         return this.dataDictionaryService;
189     }
190 
191     public void setDataDictionaryService(DataDictionaryService dataDictionaryService) {
192         this.dataDictionaryService = dataDictionaryService;
193     }
194 
195 }