forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessingService.js
More file actions
480 lines (455 loc) · 18.4 KB
/
ProcessingService.js
File metadata and controls
480 lines (455 loc) · 18.4 KB
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
import L from "leaflet";
import SuperMap from '../../common/SuperMap';
import {ServiceBase} from './ServiceBase';
import KernelDensityJobsService from '../../common/iServer/KernelDensityJobsService';
import SingleObjectQueryJobsService from '../../common/iServer/SingleObjectQueryJobsService';
import SummaryMeshJobsService from '../../common/iServer/SummaryMeshJobsService';
import SummaryRegionJobsService from '../../common/iServer/SummaryRegionJobsService';
import VectorClipJobsService from '../../common/iServer/VectorClipJobsService';
import CommontypesConversion from '../core/CommontypesConversion';
/**
* @class L.supermap.processingService
* @classdesc 分布式分析服务类
* @extends L.supermap.ServiceBase
* @example
* L.supermap.processingService(url)
* .getKernelDensityJobs(function(result){
* //doSomething
* })
* @param url -{string} 分布式分析服务地址。
* @param options - {Object} 交互服务时所需可选参数。如:<br>
* serverType - {{@link SuperMap.ServerType}} 服务来源 iServer|iPortal|online。
*/
export var ProcessingService = ServiceBase.extend({
initialize: function (url, options) {
options = options || {};
L.setOptions(this, options);
ServiceBase.prototype.initialize.call(this, url, options);
this.kernelDensityJobs = {};
this.summaryMeshJobs = {};
this.queryJobs = {};
this.summaryRegionJobs = {};
this.vectorClipJobs = {};
},
/**
* @function L.supermap.processingService.prototype.getKernelDensityJobs
* @description 获取密度分析的列表。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getKernelDensityJobs: function (callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var kernelDensityJobsService = new KernelDensityJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
kernelDensityJobsService.getKernelDensityJobs();
return me;
},
/**
* @function L.supermap.processingService.prototype.getKernelDensityJob
* @description 获取某一个密度分析。
* @param id - {string}空间分析的id。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getKernelDensityJob: function (id, callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var kernelDensityJobsService = new KernelDensityJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
kernelDensityJobsService.getKernelDensityJob(id);
return me;
},
/**
* @function L.supermap.processingService.prototype.addKernelDensityJob
* @description 新建一个密度分析。
* @param params -{SuperMap.KernelDensityJobParameter} 创建一个空间分析的请求参数。
* @param callback - {function} 请求结果的回调函数。
* @param seconds - {number}开始创建后,获取创建成功结果的时间间隔。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
addKernelDensityJob: function (params, callback, seconds, resultFormat) {
var me = this,
param = me._processParams(params),
format = me._processFormat(resultFormat);
var kernelDensityJobsService = new KernelDensityJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback,
processRunning: function (job) {
me.kernelDensityJobs[job.id] = job.state;
}
},
format: format
});
kernelDensityJobsService.addKernelDensityJob(param, seconds);
return me;
},
/**
* @function L.supermap.processingService.prototype.getKernelDensityJobState
* @description 获取密度分析的状态。
* @param id - {string}密度分析的id。
*/
getKernelDensityJobState: function (id) {
return this.kernelDensityJobs[id];
},
/**
* @function L.supermap.processingService.prototype.getSummaryMeshJobs
* @description 获取点聚合分析的列表。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getSummaryMeshJobs: function (callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var summaryMeshJobsService = new SummaryMeshJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
summaryMeshJobsService.getSummaryMeshJobs();
return me;
},
/**
* @function L.supermap.processingService.prototype.getSummaryMeshJob
* @description 获取某一个点聚合分析。
* @param id - {string}空间分析的id。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat}返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getSummaryMeshJob: function (id, callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var summaryMeshJobsService = new SummaryMeshJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
summaryMeshJobsService.getSummaryMeshJob(id);
return me;
},
/**
* @function L.supermap.processingService.prototype.addSummaryMeshJob
* @description 新建一个点聚合分析。
* @param params - {SuperMap.SummaryMeshJobParameter} 点聚合分析任务参数类。
* @param callback - {function} 请求结果的回调函数。
* @param seconds - {number}开始创建后,获取创建成功结果的时间间隔
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
addSummaryMeshJob: function (params, callback, seconds, resultFormat) {
var me = this,
param = me._processParams(params),
format = me._processFormat(resultFormat);
var summaryMeshJobsService = new SummaryMeshJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback,
processRunning: function (job) {
me.summaryMeshJobs[job.id] = job.state;
}
},
format: format
});
summaryMeshJobsService.addSummaryMeshJob(param, seconds);
return me;
},
/**
* @function L.supermap.processingService.prototype.getSummaryMeshJobState
* @description 获取点聚合分析的状态。
* @param id - {string} 点聚合分析的id。
*/
getSummaryMeshJobState: function (id) {
return this.summaryMeshJobs[id];
},
/**
* @function L.supermap.processingService.prototype.getQueryJobs
* @description 获取单对象查询分析的列表。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getQueryJobs: function (callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var singleObjectQueryJobsService = new SingleObjectQueryJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
singleObjectQueryJobsService.getQueryJobs();
return me;
},
/**
* @function L.supermap.processingService.prototype.getQueryJob
* @description 获取某一个单对象查询分析。
* @param id - {string}空间分析的id。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getQueryJob: function (id, callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var singleObjectQueryJobsService = new SingleObjectQueryJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
singleObjectQueryJobsService.getQueryJob(id);
return me;
},
/**
* @function L.supermap.processingService.prototype.addQueryJob
* @description 新建一个单对象查询分析。
* @param params -{SuperMap.SingleObjectQueryJobsParameter} 创建一个空间分析的请求参数。
* @param callback - {function} 请求结果的回调函数。
* @param seconds - {number}开始创建后,获取创建成功结果的时间间隔。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
addQueryJob: function (params, callback, seconds, resultFormat) {
var me = this,
param = me._processParams(params),
format = me._processFormat(resultFormat);
var singleObjectQueryJobsService = new SingleObjectQueryJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback,
processRunning: function (job) {
me.queryJobs[job.id] = job.state;
}
},
format: format
});
singleObjectQueryJobsService.addQueryJob(param, seconds);
return me;
},
/**
* @function L.supermap.processingService.prototype.getQueryJobState
* @description 获取单对象查询分析的状态。
* @param id - {string}单对象查询分析的id。
*/
getQueryJobState: function (id) {
return this.queryJobs[id];
},
/**
* @function L.supermap.processingService.prototype.getSummaryRegionJobs
* @description 获取区域汇总分析的列表。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getSummaryRegionJobs: function (callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var summaryRegionJobsService = new SummaryRegionJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
summaryRegionJobsService.getSummaryRegionJobs();
return me;
},
/**
* @function L.supermap.processingService.prototype.getSummaryRegionJob
* @description 获取某一个区域汇总分析。
* @param id - {string}区域汇总分析的id。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getSummaryRegionJob: function (id, callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var summaryRegionJobsService = new SummaryRegionJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
summaryRegionJobsService.getSummaryRegionJob(id);
return me;
},
/**
* @function L.supermap.processingService.prototype.addSummaryRegionJob
* @description 新建一个区域汇总分析。
* @param params -{SuperMap.SingleObjectQueryJobsParameter} 创建一个区域汇总分析的请求参数。
* @param callback - {function} 请求结果的回调函数。
* @param seconds - {number}开始创建后,获取创建成功结果的时间间隔。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
addSummaryRegionJob: function (params, callback, seconds, resultFormat) {
var me = this,
param = me._processParams(params),
format = me._processFormat(resultFormat);
var summaryRegionJobsService = new SummaryRegionJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback,
processRunning: function (job) {
me.summaryRegionJobs[job.id] = job.state;
}
},
format: format
});
summaryRegionJobsService.addSummaryRegionJob(param, seconds);
return me;
},
/**
* @function L.supermap.processingService.prototype.getSummaryRegionJobState
* @description 获取区域汇总分析的状态。
* @param id - {string}区域汇总分析的id。
*/
getSummaryRegionJobState: function (id) {
return this.summaryRegionJobs[id];
},
/**
* @function L.supermap.processingService.prototype.getVectorClipJobs
* @description 获取矢量裁剪分析的列表。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getVectorClipJobs: function (callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var vectorClipJobsService = new VectorClipJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
vectorClipJobsService.getVectorClipJobs();
return me;
},
/**
* @function L.supermap.processingService.prototype.getVectorClipJob
* @description 获取某一个矢量裁剪分析。
* @param id - {string}空间分析的id。
* @param callback - {function} 请求结果的回调函数。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
getVectorClipJob: function (id, callback, resultFormat) {
var me = this,
format = me._processFormat(resultFormat);
var vectorClipJobsService = new VectorClipJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback
},
format: format
});
vectorClipJobsService.getVectorClipJob(id);
return me;
},
/**
* @function L.supermap.processingService.prototype.addVectorClipJob
* @description 新建一个矢量裁剪分析。
* @param params -{SuperMap.VectorClipJobsParameter} 创建一个空间分析的请求参数。
* @param callback - {function} 请求结果的回调函数。
* @param seconds - {number}开始创建后,获取创建成功结果的时间间隔。
* @param resultFormat - {SuperMap.DataFormat} 返回的结果类型(默认为GeoJSON)。
* @returns {this}
*/
addVectorClipJob: function (params, callback, seconds, resultFormat) {
var me = this,
param = me._processParams(params),
format = me._processFormat(resultFormat);
var vectorClipJobsService = new VectorClipJobsService(me.url, {
serverType: me.options.serverType,
eventListeners: {
scope: me,
processCompleted: callback,
processFailed: callback,
processRunning: function (job) {
me.vectorClipJobs[job.id] = job.state;
}
},
format: format
});
vectorClipJobsService.addVectorClipJob(param, seconds);
return me;
},
/**
* @function L.supermap.processingService.prototype.getVectorClipJobState
* @description 获取矢量裁剪分析的状态。
* @param id - {string}矢量裁剪分析的id。
*/
getVectorClipJobState: function (id) {
return this.vectorClipJobs[id];
},
_processFormat: function (resultFormat) {
return (resultFormat) ? resultFormat : SuperMap.DataFormat.GEOJSON;
},
_processParams: function (params) {
if (!params) {
return {};
}
if (params.query) {
params.query = CommontypesConversion.toSuperMapBounds(params.query);
}
return params;
},
});
export var processingService = function (url, options) {
return new ProcessingService(url, options);
};
L.supermap.processingService = processingService;