Blame view

js/app/controllers/InteropModule.js 10.3 KB
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
1
/**
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
2
3
4
 * Project  : AMDA-NG
 * Name	 : InteropModule.js
 * @class	amdaDesktop.InteropModule
ce570000   Elena.Budnik   typo
5
 * @extends  amdaDesktop.AmdaModule
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
6
 * @brief	Interop Module controller definition
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
7
 * @extends  amdaDesktop.InteractiveModule
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
8
 * @brief	Interop Module controller definition
16035364   Benjamin Renard   First commit
9
10
11
 * @author   Benjamin RENARD
 * $Id: InteropModule.js 1870 2013-11-22 13:43:34Z elena $
 *****************************************************************************
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
12
 *	FT Id	:   Date  : Name - Description
16035364   Benjamin Renard   First commit
13
14
15
16
17
18
19
 *******************************************************************************
 *  			 23/04/2012: BRE  - file creation
 */


Ext.define('amdaDesktop.InteropModule', {
	extend: 'amdaDesktop.AmdaModule',
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
20

16035364   Benjamin Renard   First commit
21
	requires: [
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
22
23
		'amdaUI.InteropUI',
		'amdaDesktop.SampModule',
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
24
		'amdaDesktop.EpnTapModule'
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
25
	],
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
26

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
27
	contentId: 'interopUI',
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
28

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
29
30
31
32
33
34
35
	/**
	 * @cfg {String} window definitions
	 * @required
	 */
	height:	650,
	width:	 1050,
	uiType :	'panelInterop',
16035364   Benjamin Renard   First commit
36
	helpTitle :'Help on Interop Module',
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
37

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
38
	samp: null,
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
39

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
40
	sampclientsStore: new Ext.data.SimpleStore({
16035364   Benjamin Renard   First commit
41
		idProperty: 'id',
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
		fields: [
			{name: 'id'},
			{name: 'name'},
			{name: 'descriptionText'},
			{name: 'iconUrl'},
			{name: 'acceptVOTable', type: 'boolean'},
			{name: 'acceptFITS', type: 'boolean'}
		]
	}),

	init: function() {
		this.launcher = {
			text: this.title,
			iconCls: this.icon,
			handler: this.createWindow,
			scope: this
16035364   Benjamin Renard   First commit
58
		};
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
59
	},
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
60

a8794c12   Nathanael Jourdane   Big refactoring (...
61
62
63
64
65
	loadEpnTap: function(icon_id) {
		if(!this.epntap) {
			this.epntap = Ext.create('amdaDesktop.EpnTapModule');
		}
		var icons_dic = {
8a0f1e9e   Nathanael Jourdane   Add autocompletio...
66
67
68
69
70
71
72
73
74
			'icon-mercury': ['mercury', 'ts'],
			'icon-venus': ['venus', 'ts'],
			'icon-earth': ['earth', 'ts'],
			'icon-mars': ['mars', 'ts'],
			'icon-jupiter': ['jupiter', 'ts'],
			'icon-saturn': ['saturn', 'ts'],
			'icon-comet': ['comet', 'ts'],
			'icon-sw': ['all', 'ts'],
			'icon-solarsystem': ['all', 'ts']
a8794c12   Nathanael Jourdane   Big refactoring (...
75
		}
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
76
		this.epntap.loadTarget(icon_id ? icons_dic[icon_id]: false);
a8794c12   Nathanael Jourdane   Big refactoring (...
77
78
	},

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
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
	initSampConnector: function(successfn) {
		var me = this;
		if(!this.samp) {
			this.samp = Ext.create('amdaDesktop.SampModule', {
				listeners: {
					connected: function(o,success) {
						if(!success) {
							Ext.Msg.show( {
								title: 'SAMP',
								msg: 'Cannot connect AMDA to a hub',
								modal: false,
								icon: Ext.Msg.ERROR,
								buttons: Ext.Msg.OK
							});
						}
						me.updateStatus();
						me.updateClients();
					},
					disconnected: function(o,success) {
						me.updateStatus();
						me.sampclientsStore.removeAll();
						me.updateClients();
					},
					clientregister: function(o,id) {
						me.updateClients();
					},
					clientunregister: function(o,id) {
						var record = me.sampclientsStore.getById(id);
						if(record)
						{
							me.sampclientsStore.remove(record);
							me.updateClients();
						}
					},
					clientmetachange: function(o,id,data,subs) {
						var record = me.sampclientsStore.getById(id);

						if(!record) {
							me.sampclientsStore.add({id: id});
							record = me.sampclientsStore.getById(id);
						}

						if(record) {
							record.set('descriptionText',data['samp.description.text']);
							record.set('iconUrl',data['samp.icon.url']);
							record.set('name',data['samp.name']);
							if(subs) {
								record.set('acceptVOTable', me.samp.isSubscribed(subs,"table.load.votable"));
								record.set('acceptFITS', me.samp.isSubscribed(subs,"image.load.fits"));
							}
						}

						me.updateClients();
					},
					clientsubs: function(o,id,data) {
						var record = me.sampclientsStore.getById(id);

						if(!record) {
							return;
						} else {
							record.set('acceptVOTable', me.samp.isSubscribed(data,"table.load.votable"));
							record.set('acceptFITS', me.samp.isSubscribed(data,"image.load.fits"));
						}
						me.updateClients();
					},
					uploadfile: function(o,clientName,url,format) {
						myDesktopApp.getLoadedModule(myDesktopApp.dynamicModules.upload.id, true, function (module) {
							module.uploadNotification(url,format);
						});
					}
				}
			});
			this.samp.loadScript(function (s) {
				if(successfn)
					successfn.call(me.samp);
			});
		}
		else {
			this.samp.loadScript(function(s) {
				if(successfn)
					successfn.call(me.samp);
			});
		}
	},

	updateStatus: function() {
		if(this.app && this.samp) {
			var desktop = this.app.getDesktop();
			var isConnected = this.samp.isConnected();

			if(desktop) {
				var win = desktop.getWindow(this.id);
				if(win && win.isVisible)
					win.items.items[0].updateStatus(isConnected);

				var taskbar = desktop.taskbar;

				if(taskbar) {
					var samptb = taskbar.getComponent('samptb');
					if(samptb)
						samptb.updateStatus(isConnected);
				}
			}
		}
	},

	updateClients: function() {
		if(this.app && this.samp) {
			var desktop = this.app.getDesktop();
			var isConnected = this.samp.isConnected();

			if(desktop) {
				var win = desktop.getWindow(this.id);
				var taskbar = desktop.taskbar;

				if(taskbar) {
					var samptb = taskbar.getComponent('samptb');
					if(samptb)
						samptb.updateClients(this.sampclientsStore);
				}
			}
		}
	},

	sampConnected: function() {
		if(!this.samp)
			return false;
		return this.samp.isConnected();
	},

	sendVOTable: function(file,clientId) {
		if(!this.samp)
			return false;
		var href = window.location.href;
		var baseurl = href.replace('desktop.php','');
		this.samp.sendVOTable(baseurl+file,clientId);
	},

	sendAladinScript: function(script) {
		if(!this.samp)
			return false;
		this.samp.sendAladinScript(script);
	},

	sendFITS: function(url,name) {
		if(!this.samp)
			return false;
		this.samp.sendFITS(url,name);
	},

	generateAladinScript: function(urlList, scriptType) {
16035364   Benjamin Renard   First commit
230
		/*var script="reset;"; //reset all views & all planes
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
231
232
233
234
235
		// first get files
		var scriptHead='';
		//var script="#AJS;\n";
		//scriptHead+="trace 3;"; //
		for( var i=0; i < urlList.length; i++)
16035364   Benjamin Renard   First commit
236
237
238
		{
			var url = urlList[i].url;
			var name = urlList[i].name;
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
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
			scriptHead += 'get File(' + url +','+name+');';
			scriptHead += 'sync;';
		}*/

		//scriptHead += 'sync;';

		/*for( var i=0; i < urlList.length; i++)
		{
			//then modify some fits values
			var name = urlList[i].name;
			scriptHead += 'set '+name+' FITS:CRVAL1=0;';
			scriptHead += 'set '+name+' FITS:CRVAL2=0;';
		}*/

		//scriptHead += 'sync;';

		// add som method specific lines
		/*switch( scriptType )
		{
			case( 'mosaic' ):
				// first insert the modeview
				script += "mview 16;";
				// then download the files
				script += scriptHead;
				//for( var i=0; i < urlList.length; i++){
				//	// we also shall position each image in the grid
				//	var gridCols = ["A", "B", "C", "D"];
				//	var colIndex = i%4;
				//	var lineIndex = 1+Math.floor(i/4);
				//	script += "cview "+i+" "+gridCols[colIndex]+lineIndex+";\n";
				//}
				break;

			case( 'movie' ):
				// download first
				script += scriptHead;
				script += 'blink ';
				for( var i=1; i < urlList.length; i++){
					script += urlList[i].name+" ";
				}
				script += ';';
				break;

			case( 'diff' ):
				// download first
				script += scriptHead;
				for( var i=1; i < urlList.length; i++){
					var diffName = 'diff' + i;
					var currRawName = urlList[i].name;
					var prevRawNum = i-1;
					var prevRawName = urlList[prevRawNum].name;
					script += diffName + ' = ' + currRawName + ' - ' + prevRawName + ';\n';
				}
				script += 'sync;';
				script += 'diff_movie = blink ';
				for( var i=1; i < urlList.length; i++){
					script += 'diff'+i+' ';
				}
				script += ';';
				break;
		}
		//script += 'sync;';*/

		var script = 'reset;';

		for( var i=0; i < urlList.length; i++) {
			var url = urlList[i].url;
			var name = urlList[i].name;
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
307
			script += 'get File(' + url +','+name+');';
16035364   Benjamin Renard   First commit
308
		}
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
309

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
310
		script += 'sync;';
b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
311

db3a6e4b   Nathanael Jourdane   fix tabs on inter...
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
		/*for( var i=0; i < urlList.length; i++)
		{
			//then modify some fits values
			var name = urlList[i].name;
			script += 'set '+name+' FITS:CRPIX1=100;';
			script += 'set '+name+' FITS:CRPIX2=0;';
		}*/

		switch( scriptType ) {
			case('mosaic'):
				{
					script += 'sync;mview 16';
				}
				break;
			case('movie'):
				{
					script += 'blink ';
					for( var i=1; i < urlList.length; i++) {
						script += urlList[i].name+" ";
					}
					script += ';';
a8794c12   Nathanael Jourdane   Big refactoring (...
333
				}
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
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
			break;
		}

		return script;
	},

	switchSampConnect: function() {
		var me = this;
		//loadMask.show();
		this.initSampConnector(function(s) {
			if(me.samp.isConnected())
			{
				me.samp.disconnect();
			}
			else
			{
				me.samp.connect();
				//	loadMask.hide();
			}
		});
	},

	forceSampDisconnect: function() {
		if(!this.samp)
			return;

		if(!this.samp.isConnected())
			return;

		this.samp.disconnect();
	},

	getVOTableClients: function() {
		//return list of all clients that can receive a VOTable
		if(!this.samp)
			return [];
		var result = new Array();
		this.sampclientsStore.each(function (client){
			if(client.get('acceptVOTable'))
				result.push({id: client.get('id'), name: client.get('name'), icon: client.get('iconUrl')});

		}, this);
		return result;
	},

	getFITSClients: function() {
		//return list of all clients that can receive a FITS image
		if(!this.samp)
			return [];
		var result = new Array();
		this.sampclientsStore.each(function (client){
			if(client.get('acceptFITS'))
				result.push({id: client.get('id'), name: client.get('name'), icon: client.get('iconUrl')});

		}, this);
		return result;
	},
	// arguments from launcher: CONFIG (OBJECT!!!)
	createWindow: function(config) {
		var me = this;
		var baseId = null;

		if(!Ext.isObject(config)) {
			baseId = config;
		}
		var desktop = this.app.getDesktop();
		var win = desktop.getWindow(this.id);
		var activeTab = (config && 'activeTab' in config) ? config['activeTab']: 1;

		if(!win) {
			win = desktop.createWindow({
				id: this.id,
				title: this.title,
				layout: 'anchor',
				width: 800,
				height: 600,
33db0a91   Nathanael Jourdane   Add Get button (wip)
410
				minWidth: 650,
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
				modal: true,
				minimizable: false,
				iconCls: this.icon,
				animCollapse: false,
				constrainHeader: true,
				bodyPadding: 5,
				stateful: true,
				stateId: this.id,
				stateEvents: ['move','show','resize'],
				items: [{
					xtype: 'panelInterop',
					clientsStore: this.sampclientsStore,
					activeTab: activeTab,
					baseId: baseId,
					loadTab: function(tab) {
24fcdbc7   Nathanael Jourdane   Fix crash when ep...
426
						if(tab['id'] === 'epntapTab') {
db3a6e4b   Nathanael Jourdane   fix tabs on inter...
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
							me.loadEpnTap(config && 'epntapTarget' in config ? config['epntapTarget']: false);
						}
					},
					onSwitchConnect: function() {
						me.switchSampConnect();
					}
				}]
			});
		}

		if(me.samp && me.samp.ready)
			this.updateStatus();

		win.show();
		return win;
16035364   Benjamin Renard   First commit
442
443
	}

b034ce89   Nathanael Jourdane   Move EPN-TAP modu...
444
});