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.util;
17  
18  import org.kuali.rice.krad.UserSession;
19  import org.kuali.rice.krad.web.form.UifFormManager;
20  import org.kuali.rice.core.framework.util.ApplicationThreadLocal;
21  
22  import java.util.HashMap;
23  import java.util.LinkedList;
24  import java.util.Map;
25  import java.util.concurrent.Callable;
26  
27  /**
28   * Holds all of our thread local variables and accessors for those
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public final class GlobalVariables {
33  
34      private static ThreadLocal<LinkedList<GlobalVariables>> GLOBAL_VARIABLES_STACK = new ApplicationThreadLocal<LinkedList<GlobalVariables>>() {
35          protected LinkedList<GlobalVariables> initialValue() {
36              LinkedList<GlobalVariables> globalVariablesStack = new LinkedList<GlobalVariables>();
37              globalVariablesStack.add(new GlobalVariables());
38              return globalVariablesStack;
39          }
40      };
41  
42      private static GlobalVariables getCurrentGlobalVariables() {
43          return GLOBAL_VARIABLES_STACK.get().getLast();
44      }
45  
46      static GlobalVariables pushGlobalVariables() {
47          GlobalVariables vars = new GlobalVariables();
48          GLOBAL_VARIABLES_STACK.get().add(vars);
49          return vars;
50      }
51  
52      static GlobalVariables popGlobalVariables() {
53          return GLOBAL_VARIABLES_STACK.get().removeLast();
54      }
55  
56      static void reset() {
57          LinkedList<GlobalVariables> stack = GLOBAL_VARIABLES_STACK.get();
58          stack.clear();
59          stack.add(new GlobalVariables());
60      }
61  
62      private UserSession userSession = null;
63      private String hideSessionFromTestsMessage = null;
64      private MessageMap messageMap = new MessageMap();
65      private Map<String,Object> requestCache = new HashMap<String, Object>();
66      private UifFormManager uifFormManager = null;
67  
68      private GlobalVariables() {}
69  
70      /**
71       * @return the UserSession that has been assigned to this thread of execution it is important that this not be called by
72       *         anything that lives outside
73       */
74      public static UserSession getUserSession() {
75          GlobalVariables vars = getCurrentGlobalVariables();
76          String message = vars.hideSessionFromTestsMessage;
77          if (message != null) {
78              throw new RuntimeException(message);
79          }
80          return vars.userSession;
81      }
82  
83      /**
84       * Sets an error message for tests that try to use the session without declaring it.
85       * This method should be use by only KualiTestBase, not by other test code and especially not by production code.
86       *
87       * @param message the detail to throw, or null to allow access to the session
88       */
89      public static void setHideSessionFromTestsMessage(String message) {
90          GlobalVariables vars = getCurrentGlobalVariables();
91          vars.hideSessionFromTestsMessage = message;
92      }
93  
94      /**
95       * sets the userSession object into the global variable for this thread
96       *
97       * @param userSession
98       */
99      public static void setUserSession(UserSession userSession) {
100         GlobalVariables vars = getCurrentGlobalVariables();
101         vars.userSession = userSession;
102     }
103 
104     public static MessageMap getMessageMap() {
105         GlobalVariables vars = getCurrentGlobalVariables();
106         return vars.messageMap;
107     }
108 
109     /**
110      * Merges a message map into the global variables error map
111      * @param messageMap
112      */
113     public static void mergeErrorMap(MessageMap messageMap) {
114         getMessageMap().getErrorMessages().putAll(messageMap.getErrorMessages());
115         getMessageMap().getWarningMessages().putAll(messageMap.getWarningMessages());
116         getMessageMap().getInfoMessages().putAll(messageMap.getInfoMessages());
117     }
118 
119     /**
120      * Sets a new (clean) MessageMap
121      *
122      * @param messageMap
123      */
124     public static void setMessageMap(MessageMap messageMap) {
125         GlobalVariables vars = getCurrentGlobalVariables();
126         vars.messageMap = messageMap;
127     }
128 
129     public static Object getRequestCache(String cacheName) {
130         GlobalVariables vars = getCurrentGlobalVariables();
131         return vars.requestCache.get(cacheName);
132     }
133 
134     public static void setRequestCache(String cacheName, Object cacheObject) {
135         GlobalVariables vars = getCurrentGlobalVariables();
136         vars.requestCache.put(cacheName, cacheObject);
137     }
138 
139     /**
140      * Retrieves the {@link org.kuali.rice.krad.web.form.UifFormManager} which can be used to store and remove forms
141      * from the session
142      *
143      * @return UifFormManager
144      */
145     public static UifFormManager getUifFormManager() {
146         GlobalVariables vars = getCurrentGlobalVariables();
147         return vars.uifFormManager;
148     }
149 
150     /**
151      * Sets a {@link org.kuali.rice.krad.web.form.UifFormManager} for the current thread
152      *
153      * @param uifFormManager
154      */
155     public static void setUifFormManager(UifFormManager uifFormManager) {
156         GlobalVariables vars = getCurrentGlobalVariables();
157         vars.uifFormManager = uifFormManager;
158     }
159 
160     /**
161      * Clears out GlobalVariable objects with the exception of the UserSession
162      */
163     public static void clear() {
164         GlobalVariables vars = getCurrentGlobalVariables();
165         vars.messageMap = new MessageMap();
166         vars.requestCache = new HashMap<String,Object>();
167     }
168 
169     /**
170      * Pushes a new GlobalVariables object onto the ThreadLocal GlobalVariables stack, invokes the runnable,
171      * and pops the GlobalVariables off in a finally clause
172      * @param callable the code to run under a new set of GlobalVariables
173      */
174     public static <T> T doInNewGlobalVariables(Callable<T> callable) throws Exception {
175         return doInNewGlobalVariables(null, callable);
176     }
177 
178     /**
179      * Convenience method that creates a new GlobalVariables stack frame, initialized with the provided
180      * UserSession (which may be the previous UserSession).
181      * @param userSession the UserSession to initialize the new frame with (may be null)
182      * @param callable the code to run under a new set of GlobalVariables
183      * @throws Exception
184      */
185     public static <T> T doInNewGlobalVariables(UserSession userSession, Callable<T> callable) throws Exception {
186         try {
187             GlobalVariables vars = pushGlobalVariables();
188             if (userSession != null) {
189                 vars.userSession = userSession;
190             }
191             return callable.call();
192         } finally {
193             popGlobalVariables();
194         }
195     }
196 }