1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.server;
import java.io.File;
import java.io.PrintWriter;
import java.io.Serializable;
import java.io.StringWriter;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionBindingEvent;
import javax.servlet.http.HttpSessionBindingListener;
import com.vaadin.Application;
import com.vaadin.service.ApplicationContext;
/**
* Web application context for the IT Mill Toolkit applications.
*
* @author IT Mill Ltd.
* @version
* @VERSION@
* @since 3.1
*/
@SuppressWarnings("serial")
public class WebApplicationContext implements ApplicationContext,
HttpSessionBindingListener, Serializable {
protected List<TransactionListener> listeners;
protected transient HttpSession session;
protected final HashSet<Application> applications = new HashSet<Application>();
protected WebBrowser browser = new WebBrowser();
protected HashMap<Application, CommunicationManager> applicationToAjaxAppMgrMap = new HashMap<Application, CommunicationManager>();
/**
* Creates a new Web Application Context.
*
*/
WebApplicationContext() {
}
/**
* Gets the application context base directory.
*
* @see com.vaadin.service.ApplicationContext#getBaseDirectory()
*/
public File getBaseDirectory() {
final String realPath = ApplicationServlet.getResourcePath(session
.getServletContext(), "/");
if (realPath == null) {
return null;
}
return new File(realPath);
}
/**
* Gets the http-session application is running in.
*
* @return HttpSession this application context resides in.
*/
public HttpSession getHttpSession() {
return session;
}
/**
* Gets the applications in this context.
*
* @see com.vaadin.service.ApplicationContext#getApplications()
*/
public Collection getApplications() {
return Collections.unmodifiableCollection(applications);
}
/**
* Gets the application context for HttpSession.
*
* @param session
* the HTTP session.
* @return the application context for HttpSession.
*/
static public WebApplicationContext getApplicationContext(
HttpSession session) {
WebApplicationContext cx = (WebApplicationContext) session
.getAttribute(WebApplicationContext.class.getName());
if (cx == null) {
cx = new WebApplicationContext();
session.setAttribute(WebApplicationContext.class.getName(), cx);
}
if (cx.session == null) {
cx.session = session;
}
return cx;
}
@Override
public boolean equals(Object obj) {
if (session == null) {
return false;
}
return session.equals(obj);
}
@Override
public int hashCode() {
if (session == null) {
return -1;
}
return session.hashCode();
}
/**
* Adds the transaction listener to this context.
*
* @see com.vaadin.service.ApplicationContext#addTransactionListener(com.vaadin.service.ApplicationContext.TransactionListener)
*/
public void addTransactionListener(TransactionListener listener) {
if (listeners == null) {
listeners = new LinkedList<TransactionListener>();
}
listeners.add(listener);
}
/**
* Removes the transaction listener from this context.
*
* @see com.vaadin.service.ApplicationContext#removeTransactionListener(com.vaadin.service.ApplicationContext.TransactionListener)
*/
public void removeTransactionListener(TransactionListener listener) {
if (listeners != null) {
listeners.remove(listener);
}
}
/**
* Notifies the transaction start.
*
* @param application
* @param request
* the HTTP request.
*/
protected void startTransaction(Application application,
HttpServletRequest request) {
if (listeners == null) {
return;
}
for (final Iterator i = listeners.iterator(); i.hasNext();) {
((ApplicationContext.TransactionListener) i.next())
.transactionStart(application, request);
}
}
/**
* Notifies the transaction end.
*
* @param application
* @param request
* the HTTP request.
*/
protected void endTransaction(Application application,
HttpServletRequest request) {
if (listeners == null) {
return;
}
LinkedList<Exception> exceptions = null;
for (final Iterator i = listeners.iterator(); i.hasNext();) {
try {
((ApplicationContext.TransactionListener) i.next())
.transactionEnd(application, request);
} catch (final RuntimeException t) {
if (exceptions == null) {
exceptions = new LinkedList<Exception>();
}
exceptions.add(t);
}
}
// If any runtime exceptions occurred, throw a combined exception
if (exceptions != null) {
final StringBuffer msg = new StringBuffer();
for (final Iterator i = exceptions.iterator(); i.hasNext();) {
final RuntimeException e = (RuntimeException) i.next();
if (msg.length() == 0) {
msg.append("\n\n--------------------------\n\n");
}
msg.append(e.getMessage() + "\n");
final StringWriter trace = new StringWriter();
e.printStackTrace(new PrintWriter(trace, true));
msg.append(trace.toString());
}
throw new RuntimeException(msg.toString());
}
}
protected void removeApplication(Application application) {
applications.remove(application);
}
protected void addApplication(Application application) {
applications.add(application);
}
/**
* @see javax.servlet.http.HttpSessionBindingListener#valueBound(HttpSessionBindingEvent)
*/
public void valueBound(HttpSessionBindingEvent arg0) {
// We are not interested in bindings
}
/**
* @see javax.servlet.http.HttpSessionBindingListener#valueUnbound(HttpSessionBindingEvent)
*/
public void valueUnbound(HttpSessionBindingEvent event) {
// If we are going to be unbound from the session, the session must be
// closing
try {
while (!applications.isEmpty()) {
final Application app = applications.iterator().next();
app.close();
applicationToAjaxAppMgrMap.remove(app);
removeApplication(app);
}
} catch (Exception e) {
// This should never happen but is possible with rare
// configurations (e.g. robustness tests). If you have one
// thread doing HTTP socket write and another thread trying to
// remove same application here. Possible if you got e.g. session
// lifetime 1 min but socket write may take longer than 1 min.
// FIXME: Handle exception
System.err.println("Could not remove application, leaking memory.");
e.printStackTrace();
}
}
/**
* Get the web browser associated with this application context.
*
* Because application context is related to the http session and server
* maintains one session per browser-instance, each context has exactly one
* web browser associated with it.
*
* @return
*/
public WebBrowser getBrowser() {
return browser;
}
/**
* Gets communication manager for an application.
*
* If this application has not been running before, a new manager is
* created.
*
* @param application
* @return CommunicationManager
*/
protected CommunicationManager getApplicationManager(
Application application, AbstractApplicationServlet servlet) {
CommunicationManager mgr = applicationToAjaxAppMgrMap.get(application);
if (mgr == null) {
// Creates new manager
mgr = new CommunicationManager(application, servlet);
applicationToAjaxAppMgrMap.put(application, mgr);
}
return mgr;
}
}
|