forked from cometd/cometd-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcometd.js
3405 lines (3032 loc) · 127 KB
/
cometd.js
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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2008-2019 the original author or authors.
*
* 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.
*/
/* CometD Version 4.0.3 */
(function(root, factory) {
if (typeof exports === 'object') {
// CommonJS.
module.exports = factory();
} else if (typeof define === 'function' && define.amd) {
// AMD.
define([], factory);
} else {
// Globals.
root.org = root.org || {};
root.org.cometd = factory();
}
}(this, function() {
/**
* Browsers may throttle the Window scheduler,
* so we may replace it with a Worker scheduler.
*/
var Scheduler = function() {
var _ids = 0;
var _tasks = {};
this.register = function(funktion) {
var id = ++_ids;
_tasks[id] = funktion;
return id;
};
this.unregister = function(id) {
var funktion = _tasks[id];
delete _tasks[id];
return funktion;
};
this.setTimeout = function(funktion, delay) {
return window.setTimeout(funktion, delay);
};
this.clearTimeout = function(id) {
window.clearTimeout(id);
};
};
/**
* The scheduler code that will run in the Worker.
*/
function WorkerScheduler() {
var _tasks = {};
self.onmessage = function(e) {
var cmd = e.data;
var id = _tasks[cmd.id];
switch (cmd.type) {
case 'setTimeout':
_tasks[cmd.id] = self.setTimeout(function() {
delete _tasks[cmd.id];
self.postMessage({
id: cmd.id
});
}, cmd.delay);
break;
case 'clearTimeout':
delete _tasks[cmd.id];
if (id) {
self.clearTimeout(id);
}
break;
default:
throw 'Unknown command ' + cmd.type;
}
};
}
/**
* Utility functions.
*/
var Utils = {
isString: function(value) {
if (value === undefined || value === null) {
return false;
}
return typeof value === 'string' || value instanceof String;
},
isArray: function(value) {
if (value === undefined || value === null) {
return false;
}
return value instanceof Array;
},
/**
* Returns whether the given element is contained into the given array.
* @param element the element to check presence for
* @param array the array to check for the element presence
* @return the index of the element, if present, or a negative index if the element is not present
*/
inArray: function(element, array) {
for (var i = 0; i < array.length; ++i) {
if (element === array[i]) {
return i;
}
}
return -1;
}
};
/**
* A registry for transports used by the CometD object.
*/
var TransportRegistry = function() {
var _types = [];
var _transports = {};
this.getTransportTypes = function() {
return _types.slice(0);
};
this.findTransportTypes = function(version, crossDomain, url) {
var result = [];
for (var i = 0; i < _types.length; ++i) {
var type = _types[i];
if (_transports[type].accept(version, crossDomain, url) === true) {
result.push(type);
}
}
return result;
};
this.negotiateTransport = function(types, version, crossDomain, url) {
for (var i = 0; i < _types.length; ++i) {
var type = _types[i];
for (var j = 0; j < types.length; ++j) {
if (type === types[j]) {
var transport = _transports[type];
if (transport.accept(version, crossDomain, url) === true) {
return transport;
}
}
}
}
return null;
};
this.add = function(type, transport, index) {
var existing = false;
for (var i = 0; i < _types.length; ++i) {
if (_types[i] === type) {
existing = true;
break;
}
}
if (!existing) {
if (typeof index !== 'number') {
_types.push(type);
} else {
_types.splice(index, 0, type);
}
_transports[type] = transport;
}
return !existing;
};
this.find = function(type) {
for (var i = 0; i < _types.length; ++i) {
if (_types[i] === type) {
return _transports[type];
}
}
return null;
};
this.remove = function(type) {
for (var i = 0; i < _types.length; ++i) {
if (_types[i] === type) {
_types.splice(i, 1);
var transport = _transports[type];
delete _transports[type];
return transport;
}
}
return null;
};
this.clear = function() {
_types = [];
_transports = {};
};
this.reset = function(init) {
for (var i = 0; i < _types.length; ++i) {
_transports[_types[i]].reset(init);
}
};
};
/**
* Base object with the common functionality for transports.
*/
var Transport = function() {
var _type;
var _cometd;
var _url;
/**
* Function invoked just after a transport has been successfully registered.
* @param type the type of transport (for example 'long-polling')
* @param cometd the cometd object this transport has been registered to
* @see #unregistered()
*/
this.registered = function(type, cometd) {
_type = type;
_cometd = cometd;
};
/**
* Function invoked just after a transport has been successfully unregistered.
* @see #registered(type, cometd)
*/
this.unregistered = function() {
_type = null;
_cometd = null;
};
this._debug = function() {
_cometd._debug.apply(_cometd, arguments);
};
this._mixin = function() {
return _cometd._mixin.apply(_cometd, arguments);
};
this.getConfiguration = function() {
return _cometd.getConfiguration();
};
this.getAdvice = function() {
return _cometd.getAdvice();
};
this.setTimeout = function(funktion, delay) {
return _cometd.setTimeout(funktion, delay);
};
this.clearTimeout = function(id) {
_cometd.clearTimeout(id);
};
/**
* Converts the given response into an array of bayeux messages
* @param response the response to convert
* @return an array of bayeux messages obtained by converting the response
*/
this.convertToMessages = function(response) {
if (Utils.isString(response)) {
try {
return JSON.parse(response);
} catch (x) {
this._debug('Could not convert to JSON the following string', '"' + response + '"');
throw x;
}
}
if (Utils.isArray(response)) {
return response;
}
if (response === undefined || response === null) {
return [];
}
if (response instanceof Object) {
return [response];
}
throw 'Conversion Error ' + response + ', typeof ' + (typeof response);
};
/**
* Returns whether this transport can work for the given version and cross domain communication case.
* @param version a string indicating the transport version
* @param crossDomain a boolean indicating whether the communication is cross domain
* @param url the URL to connect to
* @return true if this transport can work for the given version and cross domain communication case,
* false otherwise
*/
this.accept = function(version, crossDomain, url) {
throw 'Abstract';
};
/**
* Returns the type of this transport.
* @see #registered(type, cometd)
*/
this.getType = function() {
return _type;
};
this.getURL = function() {
return _url;
};
this.setURL = function(url) {
_url = url;
};
this.send = function(envelope, metaConnect) {
throw 'Abstract';
};
this.reset = function(init) {
this._debug('Transport', _type, 'reset', init ? 'initial' : 'retry');
};
this.abort = function() {
this._debug('Transport', _type, 'aborted');
};
this.toString = function() {
return this.getType();
};
};
Transport.derive = function(baseObject) {
function F() {
}
F.prototype = baseObject;
return new F();
};
/**
* Base object with the common functionality for transports based on requests.
* The key responsibility is to allow at most 2 outstanding requests to the server,
* to avoid that requests are sent behind a long poll.
* To achieve this, we have one reserved request for the long poll, and all other
* requests are serialized one after the other.
*/
var RequestTransport = function() {
var _super = new Transport();
var _self = Transport.derive(_super);
var _requestIds = 0;
var _metaConnectRequest = null;
var _requests = [];
var _envelopes = [];
function _coalesceEnvelopes(envelope) {
while (_envelopes.length > 0) {
var envelopeAndRequest = _envelopes[0];
var newEnvelope = envelopeAndRequest[0];
var newRequest = envelopeAndRequest[1];
if (newEnvelope.url === envelope.url &&
newEnvelope.sync === envelope.sync) {
_envelopes.shift();
envelope.messages = envelope.messages.concat(newEnvelope.messages);
this._debug('Coalesced', newEnvelope.messages.length, 'messages from request', newRequest.id);
continue;
}
break;
}
}
function _transportSend(envelope, request) {
this.transportSend(envelope, request);
request.expired = false;
if (!envelope.sync) {
var maxDelay = this.getConfiguration().maxNetworkDelay;
var delay = maxDelay;
if (request.metaConnect === true) {
delay += this.getAdvice().timeout;
}
this._debug('Transport', this.getType(), 'waiting at most', delay, 'ms for the response, maxNetworkDelay', maxDelay);
var self = this;
request.timeout = this.setTimeout(function() {
request.expired = true;
var errorMessage = 'Request ' + request.id + ' of transport ' + self.getType() + ' exceeded ' + delay + ' ms max network delay';
var failure = {
reason: errorMessage
};
var xhr = request.xhr;
failure.httpCode = self.xhrStatus(xhr);
self.abortXHR(xhr);
self._debug(errorMessage);
self.complete(request, false, request.metaConnect);
envelope.onFailure(xhr, envelope.messages, failure);
}, delay);
}
}
function _queueSend(envelope) {
var requestId = ++_requestIds;
var request = {
id: requestId,
metaConnect: false,
envelope: envelope
};
// Consider the /meta/connect requests which should always be present.
if (_requests.length < this.getConfiguration().maxConnections - 1) {
_requests.push(request);
_transportSend.call(this, envelope, request);
} else {
this._debug('Transport', this.getType(), 'queueing request', requestId, 'envelope', envelope);
_envelopes.push([envelope, request]);
}
}
function _metaConnectComplete(request) {
var requestId = request.id;
this._debug('Transport', this.getType(), '/meta/connect complete, request', requestId);
if (_metaConnectRequest !== null && _metaConnectRequest.id !== requestId) {
throw '/meta/connect request mismatch, completing request ' + requestId;
}
_metaConnectRequest = null;
}
function _complete(request, success) {
var index = Utils.inArray(request, _requests);
// The index can be negative if the request has been aborted
if (index >= 0) {
_requests.splice(index, 1);
}
if (_envelopes.length > 0) {
var envelopeAndRequest = _envelopes.shift();
var nextEnvelope = envelopeAndRequest[0];
var nextRequest = envelopeAndRequest[1];
this._debug('Transport dequeued request', nextRequest.id);
if (success) {
if (this.getConfiguration().autoBatch) {
_coalesceEnvelopes.call(this, nextEnvelope);
}
_queueSend.call(this, nextEnvelope);
this._debug('Transport completed request', request.id, nextEnvelope);
} else {
// Keep the semantic of calling response callbacks asynchronously after the request
var self = this;
this.setTimeout(function() {
self.complete(nextRequest, false, nextRequest.metaConnect);
var failure = {
reason: 'Previous request failed'
};
var xhr = nextRequest.xhr;
failure.httpCode = self.xhrStatus(xhr);
nextEnvelope.onFailure(xhr, nextEnvelope.messages, failure);
}, 0);
}
}
}
_self.complete = function(request, success, metaConnect) {
if (metaConnect) {
_metaConnectComplete.call(this, request);
} else {
_complete.call(this, request, success);
}
};
/**
* Performs the actual send depending on the transport type details.
* @param envelope the envelope to send
* @param request the request information
*/
_self.transportSend = function(envelope, request) {
throw 'Abstract';
};
_self.transportSuccess = function(envelope, request, responses) {
if (!request.expired) {
this.clearTimeout(request.timeout);
this.complete(request, true, request.metaConnect);
if (responses && responses.length > 0) {
envelope.onSuccess(responses);
} else {
envelope.onFailure(request.xhr, envelope.messages, {
httpCode: 204
});
}
}
};
_self.transportFailure = function(envelope, request, failure) {
if (!request.expired) {
this.clearTimeout(request.timeout);
this.complete(request, false, request.metaConnect);
envelope.onFailure(request.xhr, envelope.messages, failure);
}
};
function _metaConnectSend(envelope) {
if (_metaConnectRequest !== null) {
throw 'Concurrent /meta/connect requests not allowed, request id=' + _metaConnectRequest.id + ' not yet completed';
}
var requestId = ++_requestIds;
this._debug('Transport', this.getType(), '/meta/connect send, request', requestId, 'envelope', envelope);
var request = {
id: requestId,
metaConnect: true,
envelope: envelope
};
_transportSend.call(this, envelope, request);
_metaConnectRequest = request;
}
_self.send = function(envelope, metaConnect) {
if (metaConnect) {
_metaConnectSend.call(this, envelope);
} else {
_queueSend.call(this, envelope);
}
};
_self.abort = function() {
_super.abort();
for (var i = 0; i < _requests.length; ++i) {
var request = _requests[i];
if (request) {
this._debug('Aborting request', request);
if (!this.abortXHR(request.xhr)) {
this.transportFailure(request.envelope, request, {reason: 'abort'});
}
}
}
var metaConnectRequest = _metaConnectRequest;
if (metaConnectRequest) {
this._debug('Aborting /meta/connect request', metaConnectRequest);
if (!this.abortXHR(metaConnectRequest.xhr)) {
this.transportFailure(metaConnectRequest.envelope, metaConnectRequest, {reason: 'abort'});
}
}
this.reset(true);
};
_self.reset = function(init) {
_super.reset(init);
_metaConnectRequest = null;
_requests = [];
_envelopes = [];
};
_self.abortXHR = function(xhr) {
if (xhr) {
try {
var state = xhr.readyState;
xhr.abort();
return state !== window.XMLHttpRequest.UNSENT;
} catch (x) {
this._debug(x);
}
}
return false;
};
_self.xhrStatus = function(xhr) {
if (xhr) {
try {
return xhr.status;
} catch (x) {
this._debug(x);
}
}
return -1;
};
return _self;
};
var LongPollingTransport = function() {
var _super = new RequestTransport();
var _self = Transport.derive(_super);
// By default, support cross domain
var _supportsCrossDomain = true;
_self.accept = function(version, crossDomain, url) {
return _supportsCrossDomain || !crossDomain;
};
_self.newXMLHttpRequest = function() {
return new window.XMLHttpRequest();
};
_self.xhrSend = function(packet) {
var xhr = _self.newXMLHttpRequest();
// Copy external context, to be used in other environments.
xhr.context = _self.context;
xhr.withCredentials = true;
xhr.open('POST', packet.url, packet.sync !== true);
var headers = packet.headers;
if (headers) {
for (var headerName in headers) {
if (headers.hasOwnProperty(headerName)) {
xhr.setRequestHeader(headerName, headers[headerName]);
}
}
}
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');
xhr.onload = function() {
if (xhr.status === 200) {
packet.onSuccess(xhr.responseText);
} else {
packet.onError(xhr.statusText);
}
};
xhr.onerror = function() {
packet.onError(xhr.statusText);
};
xhr.send(packet.body);
return xhr;
};
_self.transportSend = function(envelope, request) {
this._debug('Transport', this.getType(), 'sending request', request.id, 'envelope', envelope);
var self = this;
try {
var sameStack = true;
request.xhr = this.xhrSend({
transport: this,
url: envelope.url,
sync: envelope.sync,
headers: this.getConfiguration().requestHeaders,
body: JSON.stringify(envelope.messages),
onSuccess: function(response) {
self._debug('Transport', self.getType(), 'received response', response);
var success = false;
try {
var received = self.convertToMessages(response);
if (received.length === 0) {
_supportsCrossDomain = false;
self.transportFailure(envelope, request, {
httpCode: 204
});
} else {
success = true;
self.transportSuccess(envelope, request, received);
}
} catch (x) {
self._debug(x);
if (!success) {
_supportsCrossDomain = false;
var failure = {
exception: x
};
failure.httpCode = self.xhrStatus(request.xhr);
self.transportFailure(envelope, request, failure);
}
}
},
onError: function(reason, exception) {
self._debug('Transport', self.getType(), 'received error', reason, exception);
_supportsCrossDomain = false;
var failure = {
reason: reason,
exception: exception
};
failure.httpCode = self.xhrStatus(request.xhr);
if (sameStack) {
// Keep the semantic of calling response callbacks asynchronously after the request
self.setTimeout(function() {
self.transportFailure(envelope, request, failure);
}, 0);
} else {
self.transportFailure(envelope, request, failure);
}
}
});
sameStack = false;
} catch (x) {
_supportsCrossDomain = false;
// Keep the semantic of calling response callbacks asynchronously after the request
this.setTimeout(function() {
self.transportFailure(envelope, request, {
exception: x
});
}, 0);
}
};
_self.reset = function(init) {
_super.reset(init);
_supportsCrossDomain = true;
};
return _self;
};
var CallbackPollingTransport = function() {
var _super = new RequestTransport();
var _self = Transport.derive(_super);
var jsonp = 0;
_self.accept = function(version, crossDomain, url) {
return true;
};
_self.jsonpSend = function(packet) {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
var callbackName = '_cometd_jsonp_' + jsonp++;
window[callbackName] = function(responseText) {
head.removeChild(script);
delete window[callbackName];
packet.onSuccess(responseText);
};
var url = packet.url;
url += url.indexOf('?') < 0 ? '?' : '&';
url += 'jsonp=' + callbackName;
url += '&message=' + encodeURIComponent(packet.body);
script.src = url;
script.async = packet.sync !== true;
script.type = 'application/javascript';
script.onerror = function(e) {
packet.onError('jsonp ' + e.type);
};
head.appendChild(script);
};
function _failTransportFn(envelope, request, x) {
var self = this;
return function() {
self.transportFailure(envelope, request, 'error', x);
};
}
_self.transportSend = function(envelope, request) {
var self = this;
// Microsoft Internet Explorer has a 2083 URL max length
// We must ensure that we stay within that length
var start = 0;
var length = envelope.messages.length;
var lengths = [];
while (length > 0) {
// Encode the messages because all brackets, quotes, commas, colons, etc
// present in the JSON will be URL encoded, taking many more characters
var json = JSON.stringify(envelope.messages.slice(start, start + length));
var urlLength = envelope.url.length + encodeURI(json).length;
var maxLength = this.getConfiguration().maxURILength;
if (urlLength > maxLength) {
if (length === 1) {
var x = 'Bayeux message too big (' + urlLength + ' bytes, max is ' + maxLength + ') ' +
'for transport ' + this.getType();
// Keep the semantic of calling response callbacks asynchronously after the request
this.setTimeout(_failTransportFn.call(this, envelope, request, x), 0);
return;
}
--length;
continue;
}
lengths.push(length);
start += length;
length = envelope.messages.length - start;
}
// Here we are sure that the messages can be sent within the URL limit
var envelopeToSend = envelope;
if (lengths.length > 1) {
var begin = 0;
var end = lengths[0];
this._debug('Transport', this.getType(), 'split', envelope.messages.length, 'messages into', lengths.join(' + '));
envelopeToSend = this._mixin(false, {}, envelope);
envelopeToSend.messages = envelope.messages.slice(begin, end);
envelopeToSend.onSuccess = envelope.onSuccess;
envelopeToSend.onFailure = envelope.onFailure;
for (var i = 1; i < lengths.length; ++i) {
var nextEnvelope = this._mixin(false, {}, envelope);
begin = end;
end += lengths[i];
nextEnvelope.messages = envelope.messages.slice(begin, end);
nextEnvelope.onSuccess = envelope.onSuccess;
nextEnvelope.onFailure = envelope.onFailure;
this.send(nextEnvelope, request.metaConnect);
}
}
this._debug('Transport', this.getType(), 'sending request', request.id, 'envelope', envelopeToSend);
try {
var sameStack = true;
this.jsonpSend({
transport: this,
url: envelopeToSend.url,
sync: envelopeToSend.sync,
headers: this.getConfiguration().requestHeaders,
body: JSON.stringify(envelopeToSend.messages),
onSuccess: function(responses) {
var success = false;
try {
var received = self.convertToMessages(responses);
if (received.length === 0) {
self.transportFailure(envelopeToSend, request, {
httpCode: 204
});
} else {
success = true;
self.transportSuccess(envelopeToSend, request, received);
}
} catch (x) {
self._debug(x);
if (!success) {
self.transportFailure(envelopeToSend, request, {
exception: x
});
}
}
},
onError: function(reason, exception) {
var failure = {
reason: reason,
exception: exception
};
if (sameStack) {
// Keep the semantic of calling response callbacks asynchronously after the request
self.setTimeout(function() {
self.transportFailure(envelopeToSend, request, failure);
}, 0);
} else {
self.transportFailure(envelopeToSend, request, failure);
}
}
});
sameStack = false;
} catch (xx) {
// Keep the semantic of calling response callbacks asynchronously after the request
this.setTimeout(function() {
self.transportFailure(envelopeToSend, request, {
exception: xx
});
}, 0);
}
};
return _self;
};
var WebSocketTransport = function() {
var _super = new Transport();
var _self = Transport.derive(_super);
var _cometd;
// By default WebSocket is supported
var _webSocketSupported = true;
// Whether we were able to establish a WebSocket connection
var _webSocketConnected = false;
var _stickyReconnect = true;
// The context contains the envelopes that have been sent
// and the timeouts for the messages that have been sent.
var _context = null;
var _connecting = null;
var _connected = false;
var _successCallback = null;
_self.reset = function(init) {
_super.reset(init);
_webSocketSupported = true;
if (init) {
_webSocketConnected = false;
}
_stickyReconnect = true;
_context = null;
_connecting = null;
_connected = false;
};
function _forceClose(context, event) {
if (context) {
this.webSocketClose(context, event.code, event.reason);
// Force immediate failure of pending messages to trigger reconnect.
// This is needed because the server may not reply to our close()
// and therefore the onclose function is never called.
this.onClose(context, event);
}
}
function _sameContext(context) {
return context === _connecting || context === _context;
}
function _storeEnvelope(context, envelope, metaConnect) {
var messageIds = [];
for (var i = 0; i < envelope.messages.length; ++i) {
var message = envelope.messages[i];
if (message.id) {
messageIds.push(message.id);
}
}
context.envelopes[messageIds.join(',')] = [envelope, metaConnect];
this._debug('Transport', this.getType(), 'stored envelope, envelopes', context.envelopes);
}
function _websocketConnect(context) {
// We may have multiple attempts to open a WebSocket
// connection, for example a /meta/connect request that
// may take time, along with a user-triggered publish.
// Early return if we are already connecting.
if (_connecting) {
return;
}
// Mangle the URL, changing the scheme from 'http' to 'ws'.
var url = _cometd.getURL().replace(/^http/, 'ws');
this._debug('Transport', this.getType(), 'connecting to URL', url);
try {
var protocol = _cometd.getConfiguration().protocol;
context.webSocket = protocol ? new window.WebSocket(url, protocol) : new window.WebSocket(url);
_connecting = context;
} catch (x) {
_webSocketSupported = false;
this._debug('Exception while creating WebSocket object', x);
throw x;
}
// By default use sticky reconnects.
_stickyReconnect = _cometd.getConfiguration().stickyReconnect !== false;
var self = this;
var connectTimeout = _cometd.getConfiguration().connectTimeout;
if (connectTimeout > 0) {
context.connectTimer = this.setTimeout(function() {
_cometd._debug('Transport', self.getType(), 'timed out while connecting to URL', url, ':', connectTimeout, 'ms');
// The connection was not opened, close anyway.
_forceClose.call(self, context, {code: 1000, reason: 'Connect Timeout'});
}, connectTimeout);
}
var onopen = function() {
_cometd._debug('WebSocket onopen', context);
if (context.connectTimer) {
self.clearTimeout(context.connectTimer);
}
if (_sameContext(context)) {
_connecting = null;
_context = context;
_webSocketConnected = true;
self.onOpen(context);
} else {
// We have a valid connection already, close this one.
_cometd._warn('Closing extra WebSocket connection', this, 'active connection', _context);
_forceClose.call(self, context, {code: 1000, reason: 'Extra Connection'});
}
};
// This callback is invoked when the server sends the close frame.
// The close frame for a connection may arrive *after* another
// connection has been opened, so we must make sure that actions
// are performed only if it's the same connection.
var onclose = function(event) {
event = event || {code: 1000};
_cometd._debug('WebSocket onclose', context, event, 'connecting', _connecting, 'current', _context);
if (context.connectTimer) {
self.clearTimeout(context.connectTimer);
}
self.onClose(context, event);
};
var onmessage = function(wsMessage) {
_cometd._debug('WebSocket onmessage', wsMessage, context);
self.onMessage(context, wsMessage);
};
context.webSocket.onopen = onopen;
context.webSocket.onclose = onclose;
context.webSocket.onerror = function() {
// Clients should call onclose(), but if they do not we do it here for safety.
onclose({code: 1000, reason: 'Error'});
};
context.webSocket.onmessage = onmessage;
this._debug('Transport', this.getType(), 'configured callbacks on', context);
}