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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
/*
* Copyright 2000-2013 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.client.communication;
import java.util.ArrayList;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.Scheduler;
import com.google.gwt.user.client.Command;
import com.vaadin.client.ApplicationConnection;
import com.vaadin.client.ApplicationConnection.CommunicationErrorHandler;
import com.vaadin.client.ResourceLoader;
import com.vaadin.client.ResourceLoader.ResourceLoadEvent;
import com.vaadin.client.ResourceLoader.ResourceLoadListener;
import com.vaadin.client.VConsole;
import com.vaadin.shared.ApplicationConstants;
import com.vaadin.shared.communication.PushConstants;
import com.vaadin.shared.ui.ui.UIConstants;
import com.vaadin.shared.ui.ui.UIState.PushConfigurationState;
/**
* The default {@link PushConnection} implementation that uses Atmosphere for
* handling the communication channel.
*
* @author Vaadin Ltd
* @since 7.1
*/
public class AtmospherePushConnection implements PushConnection {
protected enum State {
/**
* Opening request has been sent, but still waiting for confirmation
*/
CONNECT_PENDING,
/**
* Connection is open and ready to use.
*/
CONNECTED,
/**
* Connection was disconnected while the connection was pending. Wait
* for the connection to get established before closing it. No new
* messages are accepted, but pending messages will still be delivered.
*/
DISCONNECT_PENDING,
/**
* Connection has been disconnected and should not be used any more.
*/
DISCONNECTED;
}
/**
* Represents a message that should be sent as multiple fragments.
*/
protected static class FragmentedMessage {
private static final int FRAGMENT_LENGTH = PushConstants.WEBSOCKET_FRAGMENT_SIZE;
private String message;
private int index = 0;
public FragmentedMessage(String message) {
this.message = message;
}
public boolean hasNextFragment() {
return index < message.length();
}
public String getNextFragment() {
assert hasNextFragment();
String result;
if (index == 0) {
String header = "" + message.length()
+ PushConstants.MESSAGE_DELIMITER;
int fragmentLen = FRAGMENT_LENGTH - header.length();
result = header + getFragment(0, fragmentLen);
index += fragmentLen;
} else {
result = getFragment(index, index + FRAGMENT_LENGTH);
index += FRAGMENT_LENGTH;
}
return result;
}
private String getFragment(int begin, int end) {
return message.substring(begin, Math.min(message.length(), end));
}
}
private ApplicationConnection connection;
private JavaScriptObject socket;
private ArrayList<String> messageQueue = new ArrayList<String>();
private State state = State.CONNECT_PENDING;
private AtmosphereConfiguration config;
private String uri;
private String transport;
private CommunicationErrorHandler errorHandler;
/**
* Keeps track of the disconnect confirmation command for cases where
* pending messages should be pushed before actually disconnecting.
*/
private Command pendingDisconnectCommand;
public AtmospherePushConnection() {
}
/*
* (non-Javadoc)
*
* @see
* com.vaadin.client.communication.PushConnection#init(ApplicationConnection
* , Map<String, String>, CommunicationErrorHandler)
*/
@Override
public void init(final ApplicationConnection connection,
final PushConfigurationState pushConfiguration,
CommunicationErrorHandler errorHandler) {
this.connection = connection;
this.errorHandler = errorHandler;
config = createConfig();
for (String param : pushConfiguration.parameters.keySet()) {
config.setStringValue(param,
pushConfiguration.parameters.get(param));
}
runWhenAtmosphereLoaded(new Command() {
@Override
public void execute() {
Scheduler.get().scheduleDeferred(new Command() {
@Override
public void execute() {
connect();
}
});
}
});
}
private void connect() {
String baseUrl = connection
.translateVaadinUri(ApplicationConstants.APP_PROTOCOL_PREFIX
+ ApplicationConstants.PUSH_PATH + '/');
String extraParams = UIConstants.UI_ID_PARAMETER + "="
+ connection.getConfiguration().getUIId();
extraParams += "&" + ApplicationConstants.CSRF_TOKEN_PARAMETER + "="
+ connection.getCsrfToken();
// uri is needed to identify the right connection when closing
uri = ApplicationConnection.addGetParameters(baseUrl, extraParams);
VConsole.log("Establishing push connection");
socket = doConnect(uri, getConfig());
}
@Override
public boolean isActive() {
switch (state) {
case CONNECT_PENDING:
case CONNECTED:
return true;
default:
return false;
}
}
/*
* (non-Javadoc)
*
* @see
* com.vaadin.client.communication.PushConenction#push(java.lang.String)
*/
@Override
public void push(String message) {
switch (state) {
case CONNECT_PENDING:
assert isActive();
VConsole.log("Queuing push message: " + message);
messageQueue.add(message);
break;
case CONNECTED:
assert isActive();
VConsole.log("Sending push message: " + message);
if (transport.equals("websocket")) {
FragmentedMessage fragmented = new FragmentedMessage(message);
while (fragmented.hasNextFragment()) {
doPush(socket, fragmented.getNextFragment());
}
} else {
doPush(socket, message);
}
break;
case DISCONNECT_PENDING:
case DISCONNECTED:
throw new IllegalStateException("Can not push after disconnecting");
}
}
protected AtmosphereConfiguration getConfig() {
return config;
}
protected void onOpen(AtmosphereResponse response) {
transport = response.getTransport();
VConsole.log("Push connection established using " + transport);
switch (state) {
case CONNECT_PENDING:
state = State.CONNECTED;
for (String message : messageQueue) {
push(message);
}
messageQueue.clear();
break;
case DISCONNECT_PENDING:
// Set state to connected to make disconnect close the connection
state = State.CONNECTED;
assert pendingDisconnectCommand != null;
disconnect(pendingDisconnectCommand);
break;
case CONNECTED:
// IE likes to open the same connection multiple times, just ignore
break;
default:
throw new IllegalStateException(
"Got onOpen event when conncetion state is " + state
+ ". This should never happen.");
}
}
/*
* (non-Javadoc)
*
* @see com.vaadin.client.communication.PushConenction#disconnect()
*/
@Override
public void disconnect(Command command) {
assert command != null;
switch (state) {
case CONNECT_PENDING:
// Make the connection callback initiate the disconnection again
state = State.DISCONNECT_PENDING;
pendingDisconnectCommand = command;
break;
case CONNECTED:
// Normal disconnect
VConsole.log("Closing push connection");
doDisconnect(uri);
state = State.DISCONNECTED;
command.execute();
break;
case DISCONNECT_PENDING:
case DISCONNECTED:
throw new IllegalStateException("Can not disconnect more than once");
}
}
protected void onMessage(AtmosphereResponse response) {
String message = response.getResponseBody();
if (message.startsWith("for(;;);")) {
VConsole.log("Received push message: " + message);
// "for(;;);[{json}]" -> "{json}"
message = message.substring(9, message.length() - 1);
connection.handlePushMessage(message);
}
if (!connection.isApplicationRunning()) {
disconnect(new Command() {
@Override
public void execute() {
}
});
}
}
/**
* Called if the transport mechanism cannot be used and the fallback will be
* tried
*/
protected void onTransportFailure() {
VConsole.log("Push connection using primary method ("
+ getConfig().getTransport() + ") failed. Trying with "
+ getConfig().getFallbackTransport());
}
/**
* Called if the push connection fails. Atmosphere will automatically retry
* the connection until successful.
*
*/
protected void onError(AtmosphereResponse response) {
state = State.DISCONNECTED;
errorHandler.onError("Push connection using "
+ getConfig().getTransport() + " failed!",
response.getStatusCode());
}
protected void onClose(AtmosphereResponse response) {
VConsole.log("Push connection closed, awaiting reconnection");
state = State.CONNECT_PENDING;
}
protected void onReconnect(JavaScriptObject request,
final AtmosphereResponse response) {
VConsole.log("Reopening push connection");
}
public static abstract class AbstractJSO extends JavaScriptObject {
protected AbstractJSO() {
}
protected final native String getStringValue(String key)
/*-{
return this[key];
}-*/;
protected final native void setStringValue(String key, String value)
/*-{
this[key] = value;
}-*/;
protected final native int getIntValue(String key)
/*-{
return this[key];
}-*/;
protected final native void setIntValue(String key, int value)
/*-{
this[key] = value;
}-*/;
}
public static class AtmosphereConfiguration extends AbstractJSO {
protected AtmosphereConfiguration() {
super();
}
public final String getTransport() {
return getStringValue("transport");
}
public final String getFallbackTransport() {
return getStringValue("fallbackTransport");
}
public final void setTransport(String transport) {
setStringValue("transport", transport);
}
public final void setFallbackTransport(String fallbackTransport) {
setStringValue("fallbackTransport", fallbackTransport);
}
}
public static class AtmosphereResponse extends AbstractJSO {
protected AtmosphereResponse() {
}
public final int getStatusCode() {
return getIntValue("status");
}
public final String getResponseBody() {
return getStringValue("responseBody");
}
public final String getState() {
return getStringValue("state");
}
public final String getError() {
return getStringValue("error");
}
public final String getTransport() {
return getStringValue("transport");
}
}
protected native AtmosphereConfiguration createConfig()
/*-{
return {
transport: 'websocket',
fallbackTransport: 'streaming',
contentType: 'application/json; charset=UTF-8',
reconnectInterval: 5000,
maxReconnectOnClose: 10000000,
trackMessageLength: true,
messageDelimiter: String.fromCharCode(@com.vaadin.shared.communication.PushConstants::MESSAGE_DELIMITER)
};
}-*/;
private native JavaScriptObject doConnect(String uri,
JavaScriptObject config)
/*-{
var self = this;
config.url = uri;
config.onOpen = $entry(function(response) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onOpen(*)(response);
});
config.onMessage = $entry(function(response) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onMessage(*)(response);
});
config.onError = $entry(function(response) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onError(*)(response);
});
config.onTransportFailure = $entry(function(reason,request) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onTransportFailure(*)(reason);
});
config.onClose = $entry(function(response) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onClose(*)(response);
});
config.onReconnect = $entry(function(request, response) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onReconnect(*)(request, response);
});
return $wnd.jQueryVaadin.atmosphere.subscribe(config);
}-*/;
private native void doPush(JavaScriptObject socket, String message)
/*-{
socket.push(message);
}-*/;
private static native void doDisconnect(String url)
/*-{
$wnd.jQueryVaadin.atmosphere.unsubscribeUrl(url);
}-*/;
private static native boolean isAtmosphereLoaded()
/*-{
return $wnd.jQueryVaadin != undefined;
}-*/;
private void runWhenAtmosphereLoaded(final Command command) {
if (isAtmosphereLoaded()) {
command.execute();
} else {
final String pushJs = ApplicationConstants.VAADIN_PUSH_JS;
VConsole.log("Loading " + pushJs);
ResourceLoader.get().loadScript(
connection.getConfiguration().getVaadinDirUrl() + pushJs,
new ResourceLoadListener() {
@Override
public void onLoad(ResourceLoadEvent event) {
if (isAtmosphereLoaded()) {
VConsole.log(pushJs + " loaded");
command.execute();
} else {
// If bootstrap tried to load vaadinPush.js,
// ResourceLoader assumes it succeeded even if
// it failed (#11673)
onError(event);
}
}
@Override
public void onError(ResourceLoadEvent event) {
errorHandler.onError(
event.getResourceUrl()
+ " could not be loaded. Push will not work.",
0);
}
});
}
}
/*
* (non-Javadoc)
*
* @see com.vaadin.client.communication.PushConnection#getTransportType()
*/
@Override
public String getTransportType() {
return transport;
}
}
|