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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
/*
* Copyright 2000-2014 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.logging.Logger;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.Scheduler;
import com.google.gwt.user.client.Command;
import com.google.gwt.user.client.Window.Location;
import com.vaadin.client.ApplicationConfiguration;
import com.vaadin.client.ApplicationConnection;
import com.vaadin.client.ApplicationConnection.ApplicationStoppedEvent;
import com.vaadin.client.ApplicationConnection.ApplicationStoppedHandler;
import com.vaadin.client.ResourceLoader;
import com.vaadin.client.ResourceLoader.ResourceLoadEvent;
import com.vaadin.client.ResourceLoader.ResourceLoadListener;
import com.vaadin.client.ValueMap;
import com.vaadin.shared.ApplicationConstants;
import com.vaadin.shared.Version;
import com.vaadin.shared.communication.PushConstants;
import com.vaadin.shared.ui.ui.UIConstants;
import com.vaadin.shared.ui.ui.UIState.PushConfigurationState;
import com.vaadin.shared.util.SharedUtil;
import elemental.json.JsonObject;
/**
* 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 State state = State.CONNECT_PENDING;
private AtmosphereConfiguration config;
private String uri;
private String transport;
/**
* Keeps track of the disconnect confirmation command for cases where
* pending messages should be pushed before actually disconnecting.
*/
private Command pendingDisconnectCommand;
/**
* The url to use for push requests
*/
private String url;
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) {
this.connection = connection;
connection.addHandler(ApplicationStoppedEvent.TYPE,
new ApplicationStoppedHandler() {
@Override
public void onApplicationStopped(
ApplicationStoppedEvent event) {
if (state == State.DISCONNECT_PENDING
|| state == State.DISCONNECTED) {
return;
}
disconnect(new Command() {
@Override
public void execute() {
}
});
}
});
config = createConfig();
String debugParameter = Location.getParameter("debug");
if ("push".equals(debugParameter)) {
config.setStringValue("logLevel", "debug");
}
for (String param : pushConfiguration.parameters.keySet()) {
config.setStringValue(param,
pushConfiguration.parameters.get(param));
}
if (pushConfiguration.pushUrl != null) {
url = pushConfiguration.pushUrl;
} else {
url = ApplicationConstants.APP_PROTOCOL_PREFIX
+ ApplicationConstants.PUSH_PATH;
}
runWhenAtmosphereLoaded(new Command() {
@Override
public void execute() {
Scheduler.get().scheduleDeferred(new Command() {
@Override
public void execute() {
connect();
}
});
}
});
}
private void connect() {
String baseUrl = connection.translateVaadinUri(url);
String extraParams = UIConstants.UI_ID_PARAMETER + "="
+ connection.getConfiguration().getUIId();
String csrfToken = connection.getMessageHandler().getCsrfToken();
if (!csrfToken.equals(ApplicationConstants.CSRF_TOKEN_DEFAULT_VALUE)) {
extraParams += "&" + ApplicationConstants.CSRF_TOKEN_PARAMETER
+ "=" + csrfToken;
}
// uri is needed to identify the right connection when closing
uri = SharedUtil.addGetParameters(baseUrl, extraParams);
getLogger().info("Establishing push connection");
socket = doConnect(uri, getConfig());
}
@Override
public boolean isActive() {
switch (state) {
case CONNECT_PENDING:
case CONNECTED:
return true;
default:
return false;
}
}
@Override
public boolean isBidirectional() {
if (transport == null) {
return false;
}
if (!transport.equals("websocket")) {
// If we are not using websockets, we want to send XHRs
return false;
}
if (getPushConfigurationState().alwaysUseXhrForServerRequests) {
// If user has forced us to use XHR, let's abide
return false;
}
if (state == State.CONNECT_PENDING) {
// Not sure yet, let's go for using websockets still as still will
// delay the message until a connection is established. When the
// connection is established, bi-directionality will be checked
// again to be sure
}
return true;
};
private PushConfigurationState getPushConfigurationState() {
return connection.getUIConnector().getState().pushConfiguration;
}
@Override
public void push(JsonObject message) {
if (!isBidirectional()) {
throw new IllegalStateException(
"This server to client push connection should not be used to send client to server messages");
}
if (state == State.CONNECTED) {
getLogger().info(
"Sending push (" + transport + ") message to server: "
+ message.toJson());
if (transport.equals("websocket")) {
FragmentedMessage fragmented = new FragmentedMessage(
message.toJson());
while (fragmented.hasNextFragment()) {
doPush(socket, fragmented.getNextFragment());
}
} else {
doPush(socket, message.toJson());
}
return;
}
if (state == State.CONNECT_PENDING) {
getConnectionStateHandler().pushNotConnected(message);
return;
}
throw new IllegalStateException("Can not push after disconnecting");
}
protected AtmosphereConfiguration getConfig() {
return config;
}
protected void onReopen(AtmosphereResponse response) {
getLogger().info(
"Push connection re-established using "
+ response.getTransport());
onConnect(response);
}
protected void onOpen(AtmosphereResponse response) {
getLogger().info(
"Push connection established using " + response.getTransport());
onConnect(response);
}
/**
* Called whenever a server push connection is established (or
* re-established).
*
* @param response
*
* @since 7.2
*/
protected void onConnect(AtmosphereResponse response) {
transport = response.getTransport();
switch (state) {
case CONNECT_PENDING:
state = State.CONNECTED;
getConnectionStateHandler().pushOk(this);
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
getLogger().info("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();
ValueMap json = MessageHandler.parseWrappedJson(message);
if (json == null) {
// Invalid string (not wrapped as expected)
getConnectionStateHandler().pushInvalidContent(this, message);
return;
} else {
getLogger().info(
"Received push (" + getTransportType() + ") message: "
+ message);
connection.getMessageHandler().handleMessage(json);
}
}
/**
* Called if the transport mechanism cannot be used and the fallback will be
* tried
*/
protected void onTransportFailure() {
getLogger().warning(
"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;
getConnectionStateHandler().pushError(this, response);
}
protected void onClose(AtmosphereResponse response) {
state = State.CONNECT_PENDING;
getConnectionStateHandler().pushClosed(this, response);
}
protected void onClientTimeout(AtmosphereResponse response) {
state = State.DISCONNECTED;
getConnectionStateHandler().pushClientTimeout(this, response);
}
protected void onReconnect(JavaScriptObject request,
final AtmosphereResponse response) {
if (state == State.CONNECTED) {
state = State.CONNECT_PENDING;
}
getConnectionStateHandler().pushReconnectPending(this);
}
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',
maxStreamingLength: 1000000,
fallbackTransport: 'long-polling',
contentType: 'application/json; charset=UTF-8',
reconnectInterval: 5000,
timeout: -1,
maxReconnectOnClose: 10000000,
trackMessageLength: true,
enableProtocol: 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.onReopen = $entry(function(response) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onReopen(*)(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);
});
config.onClientTimeout = $entry(function(request) {
self.@com.vaadin.client.communication.AtmospherePushConnection::onClientTimeout(*)(request);
});
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 = getVersionedPushJs();
getLogger().info("Loading " + pushJs);
ResourceLoader.get().loadScript(
connection.getConfiguration().getVaadinDirUrl() + pushJs,
new ResourceLoadListener() {
@Override
public void onLoad(ResourceLoadEvent event) {
if (isAtmosphereLoaded()) {
getLogger().info(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) {
getConnectionStateHandler().pushScriptLoadError(
event.getResourceUrl());
}
});
}
}
private String getVersionedPushJs() {
String pushJs;
if (ApplicationConfiguration.isProductionMode()) {
pushJs = ApplicationConstants.VAADIN_PUSH_JS;
} else {
pushJs = ApplicationConstants.VAADIN_PUSH_DEBUG_JS;
}
// Parameter appended to bypass caches after version upgrade.
pushJs += "?v=" + Version.getFullVersion();
return pushJs;
}
@Override
public String getTransportType() {
return transport;
}
private static Logger getLogger() {
return Logger.getLogger(AtmospherePushConnection.class.getName());
}
private ConnectionStateHandler getConnectionStateHandler() {
return connection.getConnectionStateHandler();
}
}
|