-
Notifications
You must be signed in to change notification settings - Fork 24
/
WebSocket.js
560 lines (489 loc) · 18.3 KB
/
WebSocket.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
/**
* @class Ext.ux.data.proxy.WebSocket
* @author Vincenzo Ferrari <[email protected]>
*
* HTML5 WebSocket proxy
*
* <h1>How it works?</h1>
* Ext.ux.data.proxy.WebSocket provides an interface between stores and readers/writers.
* By default, this proxy communicates with the server through CRUD operations: each operation is identified by its name, as create, read, update and destroy (instead of delete).
* Let's have a look to the first example:
*
* Ext.define ('model', {
* extend: 'Ext.data.Model' ,
* fields: ['id', 'name', 'age'] ,
* proxy: {
* type: 'websocket' ,
* storeId: 'myStore',
* url: 'ws://localhost:8888' ,
* reader: {
* type: 'json' ,
* root: 'user'
* }
* }
* });
*
* var store = Ext.create ('Ext.data.Store', {
* model: 'model',
* storeId: 'myStore'
* });
*
* In the above example, a WebSocket proxy is defined into the model (the same thing can be done into stores): when a CRUD operation is made by its store (through sync/load methods), a 'create'/'read'/'update'/'destroy' event is sent to the server.
* At this point, the server intercepts the event, parses the request, and then replies back with the same event.
* If you want/need to specify your communication protocol (you wanna CRUD operations like 'createUsers','readUsers','updateUsers','destroyUsers'), just use the api configuration:
*
* proxy: {
* type: 'websocket' ,
* storeId: 'myStore',
* url: 'ws://localhost:8888' ,
* api: {
* create: 'createUsers' ,
* read: 'readUsers' ,
* update: 'updateUsers' ,
* destroy: 'destroyUsers'
* } ,
* reader: {
* type: 'json' ,
* root: 'user'
* }
* }
*
* With this configuration, each sync/load operation made by the store will fire the right CRUD-overridden action.
*
* Reached this point, you can easily attach your store to grids and charts, and watch the WebSocket magic in action!
*/
Ext.define('Ext.ux.data.proxy.WebSocket', {
extend: 'Ext.data.proxy.Proxy',
alias: 'proxy.websocket',
requires: ['Ext.ux.WebSocket'],
/**
* @property {Object} callbacks
* @private
* Callbacks stack
*/
callbacks: {},
config: {
/**
* @cfg {String} storeId (required) Id of the store associated
*/
storeId: '',
/**
* @cfg {Object} api CRUD operation for the communication with the server
*/
api: {
create: 'create',
read: 'read',
update: 'update',
destroy: 'destroy'
},
/**
* @cfg {String} url (required) The URL to connect the websocket
*/
url: '',
/**
* @cfg {String} [pageParam="page"]
* The name of the 'page' parameter to send in a request. Defaults to 'page'. Set this to `''` if you don't
* want to send a page parameter.
*/
pageParam: 'page',
/**
* @cfg {String} [startParam="start"]
* The name of the 'start' parameter to send in a request. Defaults to 'start'. Set this to `''` if you don't
* want to send a start parameter.
*/
startParam: 'start',
/**
* @cfg {String} [limitParam="limit"]
* The name of the 'limit' parameter to send in a request. Defaults to 'limit'. Set this to `''` if you don't
* want to send a limit parameter.
*/
limitParam: 'limit',
/**
* @cfg {String} [groupParam="group"]
* The name of the 'group' parameter to send in a request. Defaults to 'group'. Set this to `''` if you don't
* want to send a group parameter.
*/
groupParam: 'group',
/**
* @cfg {String} [groupDirectionParam="groupDir"]
* The name of the direction parameter to send in a request. **This is only used when simpleGroupMode is set to
* true.**
*/
groupDirectionParam: 'groupDir',
/**
* @cfg {String} [sortParam="sort"]
* The name of the 'sort' parameter to send in a request. Defaults to 'sort'. Set this to `''` if you don't
* want to send a sort parameter.
*/
sortParam: 'sort',
/**
* @cfg {String} [filterParam="filter"]
* The name of the 'filter' parameter to send in a request. Defaults to 'filter'. Set this to `''` if you don't
* want to send a filter parameter.
*/
filterParam: 'filter',
/**
* @cfg {String} [directionParam="dir"]
* The name of the direction parameter to send in a request. **This is only used when simpleSortMode is set to
* true.**
*/
directionParam: 'dir',
/**
* @cfg {Boolean} [simpleSortMode=false]
* Enabling simpleSortMode in conjunction with remoteSort will only send one sort property and a direction when a
* remote sort is requested. The {@link #directionParam} and {@link #sortParam} will be sent with the property name
* and either 'ASC' or 'DESC'.
*/
simpleSortMode: false,
/**
* @cfg {Boolean} [simpleGroupMode=false]
* Enabling simpleGroupMode in conjunction with remoteGroup will only send one group property and a direction when a
* remote group is requested. The {@link #groupDirectionParam} and {@link #groupParam} will be sent with the property name and either 'ASC'
* or 'DESC'.
*/
simpleGroupMode: false,
/**
* @cfg {Object} extraParams
* Extra parameters that will be included on every request. Individual requests with params of the same name
* will override these params when they are in conflict.
*/
extraParams: {},
/**
* @cfg {String} protocol The protocol to use in the connection
*/
protocol: null,
/**
* @cfg {Ext.ux.WebSocket} websocket An instance of Ext.ux.WebSocket (no needs to make a new one)
*/
websocket: null,
/**
* @cfg {Boolean} autoReconnect If the connection is closed by the server, it tries to re-connect again. The execution interval time of this operation is specified in autoReconnectInterval
*/
autoReconnect: true,
/**
* @cfg {Int} autoReconnectInterval Execution time slice of the autoReconnect operation, specified in milliseconds.
*/
autoReconnectInterval: 5000,
/**
* @cfg {Boolean} keepUnsentMessages Keep unsent messages and try to send them back after the connection is open again.
*/
keepUnsentMessages: true
},
/**
* Creates new Ext.ux.data.proxy.WebSocket
* @param {String/Object} config To instatiate this proxy, just define it on a model or a store.
*
* // *** On a Model ***
* Ext.define ('model', {
* extend: 'Ext.data.Model' ,
* fields: ['id', 'name', 'age'] ,
* proxy: {
* type: 'websocket' ,
* storeId: 'myStore',
* url: 'ws://localhost:8888' ,
* reader: {
* type: 'json' ,
* root: 'user'
* }
* }
* });
*
* var store = Ext.create ('Ext.data.Store', {
* model: 'model',
* storeId: 'myStore'
* });
*
* // *** Or on a store ***
* Ext.define ('model', {
* extend: 'Ext.data.Model' ,
* fields: ['id', 'name', 'age']
* });
*
* var store = Ext.create ('Ext.data.Store', {
* model: 'model',
* storeId: 'myStore' ,
* proxy: {
* type: 'websocket' ,
* storeId: 'myStore',
* url: 'ws://localhost:8888' ,
* reader: {
* type: 'json' ,
* root: 'user'
* }
* }
* });
*
* In each case, a storeId has to be specified and of course a url for the websocket.
* If you already have an instance of Ext.ux.WebSocket, just use it in place of url:
*
* var ws = Ext.create ('Ext.ux.WebSocket', 'ws://localhost:8888');
*
* var store = Ext.create ('Ext.data.Store', {
* model: 'model',
* storeId: 'myStore' ,
* proxy: {
* type: 'websocket' ,
* storeId: 'myStore',
* websocket: ws ,
* reader: {
* type: 'json' ,
* root: 'user'
* }
* }
* });
*
* @return {Ext.ux.WebSocket} An instance of Ext.ux.WebSocket or null if an error occurred.
*/
constructor: function (cfg) {
var me = this;
// Requires a configuration
if (Ext.isEmpty(cfg)) {
Ext.Error.raise('A configuration is needed!');
return false;
}
me.initConfig(cfg);
me.mixins.observable.constructor.call(me, cfg);
// Requires a storeId
if (Ext.isEmpty(me.getStoreId())) {
Ext.Error.raise('The storeId field is needed!');
return false;
}
//if (Ext.isEmpty (cfg.websocket)) {
if (Ext.isEmpty(me.getWebsocket())) {
me.setWebsocket(Ext.create('Ext.ux.WebSocket', {
url: me.getUrl(),
protocol: me.getProtocol(),
communicationType: 'event',
autoReconnect: me.getAutoReconnect(),
autoReconnectInterval: me.getAutoReconnectInterval(),
keepUnsentMessages: me.getKeepUnsentMessages()
}));
}
var ws = me.getWebsocket();
// Forces the event communication
if (ws.getCommunicationType() !== 'event') {
Ext.Error.raise('Ext.ux.WebSocket must use event communication type (set communicationType to event)!');
return false;
}
ws.on(me.getApi().create, function (ws, data) {
me.completeTask('create', me.getApi().create, data);
});
ws.on(me.getApi().read, function (ws, data) {
me.completeTask('read', me.getApi().read, data);
});
ws.on(me.getApi().update, function (ws, data) {
me.completeTask('update', me.getApi().update, data);
});
ws.on(me.getApi().destroy, function (ws, data) {
me.completeTask('destroy', me.getApi().destroy, data);
});
// Allows to define WebSocket proxy both into a model and a store
me.callParent([cfg]);
return me;
},
/**
* Encodes the array of {@link Ext.util.Sorter} objects into a string to be sent in the request url. By default,
* this simply JSON-encodes the sorter data
* @param {Ext.util.Sorter[]} sorters The array of {@link Ext.util.Sorter Sorter} objects
* @param {Boolean} [preventArray=false] Prevents the items from being output as an array.
* @return {String} The encoded sorters
*/
encodeSorters: function (sorters, preventArray) {
var out = [],
length = sorters.length,
i;
for (i = 0; i < length; i++) {
out[i] = sorters[i].serialize();
}
return Ext.encode(preventArray ? out[0] : out);
},
/**
* Encodes the array of {@link Ext.util.Filter} objects into a string to be sent in the request url. By default,
* this simply JSON-encodes the filter data
* @param {Ext.util.Filter[]} filters The array of {@link Ext.util.Filter Filter} objects
* @return {String} The encoded filters
*/
encodeFilters: function (filters) {
var out = [],
length = filters.length,
i, op;
for (i = 0; i < length; i++) {
out[i] = filters[i].serialize();
}
return Ext.encode(out);
},
/**
* @private
* Copy any sorters, filters etc into the params so they can be sent over the wire
*/
getParams: function (operation) {
var me = this,
params = {},
grouper = operation.getGrouper(),
sorters = operation.getSorters(),
filters = operation.getFilters(),
page = operation.getPage(),
start = operation.getStart(),
limit = operation.getLimit(),
simpleSortMode = me.getSimpleSortMode(),
simpleGroupMode = me.getSimpleGroupMode(),
pageParam = me.getPageParam(),
startParam = me.getStartParam(),
limitParam = me.getLimitParam(),
groupParam = me.getGroupParam(),
groupDirectionParam = me.getGroupDirectionParam(),
sortParam = me.getSortParam(),
filterParam = me.getFilterParam(),
directionParam = me.getDirectionParam(),
hasGroups, index;
if (pageParam && page) {
params[pageParam] = page;
}
if (startParam && (start || start === 0)) {
params[startParam] = start;
}
if (limitParam && limit) {
params[limitParam] = limit;
}
hasGroups = groupParam && grouper;
if (hasGroups) {
// Grouper is a subclass of sorter, so we can just use the sorter method
if (simpleGroupMode) {
params[groupParam] = grouper.getProperty();
params[groupDirectionParam] = grouper.getDirection();
} else {
params[groupParam] = me.encodeSorters([grouper], true);
}
}
if (sortParam && sorters && sorters.length > 0) {
if (simpleSortMode) {
index = 0;
// Group will be included in sorters, so grab the next one
if (sorters.length > 1 && hasGroups) {
index = 1;
}
params[sortParam] = sorters[index].getProperty();
params[directionParam] = sorters[index].getDirection();
} else {
params[sortParam] = me.encodeSorters(sorters);
}
}
if (filterParam && filters && filters.length > 0) {
params[filterParam] = me.encodeFilters(filters);
}
return params;
},
/**
* @method create
* Starts a new CREATE operation (pull)
* The use of this method is discouraged: it's invoked by the store with sync/load operations.
* Use api config instead
*/
create: function (operation) {
this.runTask(this.getApi().create, operation);
},
/**
* @method read
* Starts a new READ operation (pull)
* The use of this method is discouraged: it's invoked by the store with sync/load operations.
* Use api config instead
*/
read: function (operation) {
this.runTask(this.getApi().read, operation);
},
/**
* @method update
* Starts a new CREATE operation (pull)
* The use of this method is discouraged: it's invoked by the store with sync/load operations.
* Use api config instead
*/
update: function (operation) {
this.runTask(this.getApi().update, operation);
},
/**
* @method erase
* Starts a new DESTROY operation (pull)
* The use of this method is discouraged: it's invoked by the store with sync/load operations.
* Use api config instead
*/
erase: function (operation) {
this.runTask(this.getApi().destroy, operation);
},
/**
* @method runTask
* Starts a new operation (pull)
* @private
*/
runTask: function (action, operation) {
var me = this ,
data = {} ,
ws = me.getWebsocket() ,
i = 0;
// Callbacks store
me.callbacks[action] = {
operation: operation
};
// Treats 'read' as a string event, with no data inside
if (action === me.getApi().read) {
var initialParams = Ext.apply({}, operation.getParams());
data = Ext.applyIf(initialParams, me.getExtraParams() || {});
// copy any sorters, filters etc into the params so they can be sent over the wire
Ext.applyIf(data, me.getParams(operation));
}
// Create, Update, Destroy
else {
var writer = Ext.StoreManager.lookup(me.getStoreId()).getProxy().getWriter(),
records = operation.getRecords();
data = [];
for (i = 0; i < records.length; i++) {
data.push(writer.getRecordData(records[i]));
}
}
ws.send(action, data);
},
/**
* @method completeTask
* Completes a pending operation (push/pull)
* @private
*/
completeTask: function (action, event, data) {
var me = this ,
resultSet = me.getReader().read(data);
// Server push case: the store is get up-to-date with the incoming data
if (!me.callbacks[event]) {
var store = Ext.StoreManager.lookup(me.getStoreId());
if (typeof store === 'undefined') {
Ext.Error.raise('Unrecognized store: check if the storeId passed into configuration is right.');
return false;
}
if (action === 'update') {
for (var i = 0; i < resultSet.records.length; i++) {
var record = store.getById(resultSet.records[i].getId());
if (record) {
record.set(resultSet.records[i].data);
}
}
store.commitChanges();
}
else if (action === 'destroy') {
Ext.each(resultSet.records, function (record) {
store.remove(record);
});
store.commitChanges();
}
else {
store.loadData(resultSet.records, true);
store.fireEvent('load', store);
}
}
// Client request case: a callback function (operation) has to be called
else {
var opt = me.callbacks[event].operation ,
records = opt.records || data;
delete me.callbacks[event];
if (typeof opt.setResultSet === 'function') opt.setResultSet(resultSet);
else opt.resultSet = resultSet;
opt.setSuccessful(true);
}
}
});