Scheduler: adding/removing resources enforce warnings and recount number of unconfigu...
[myslice.git] / manifoldapi / static / js / manifold.js
1 // utilities 
2 function debug_dict_keys (msg, o) {
3     var keys=[];
4     for (var k in o) keys.push(k);
5     messages.debug ("debug_dict_keys: " + msg + " keys= " + keys);
6 }
7 function debug_dict (msg, o) {
8     for (var k in o) messages.debug ("debug_dict: " + msg + " [" + k + "]=" + o[k]);
9 }
10 function debug_value (msg, value) {
11     messages.debug ("debug_value: " + msg + " " + value);
12 }
13 function debug_query (msg, query) {
14     if (query === undefined) messages.debug ("debug_query: " + msg + " -> undefined");
15     else if (query == null) messages.debug ("debug_query: " + msg + " -> null");
16     else if ('query_uuid' in query) messages.debug ("debug_query: " + msg + query.__repr());
17     else messages.debug ("debug_query: " + msg + " query= " + query);
18 }
19
20 // http://stackoverflow.com/questions/7837456/comparing-two-arrays-in-javascript
21 // attach the .equals method to Array's prototype to call it on any array
22 Array.prototype.equals = function (array) {
23     // if the other array is a falsy value, return
24     if (!array)
25         return false;
26
27     // compare lengths - can save a lot of time 
28     if (this.length != array.length)
29         return false;
30
31     for (var i = 0, l=this.length; i < l; i++) {
32         // Check if we have nested arrays
33         if (this[i] instanceof Array && array[i] instanceof Array) {
34             // recurse into the nested arrays
35             if (!this[i].equals(array[i]))
36                 return false;
37         }
38         else if (this[i] != array[i]) {
39             // Warning - two different object instances will never be equal: {x:20} != {x:20}
40             return false;
41         }
42     }
43     return true;
44 }
45
46 // http://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/
47 Object.toType = (function toType(global) {
48   return function(obj) {
49     if (obj === global) {
50       return "global";
51     }
52     return ({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase();
53   }
54 })(this);
55
56 /* ------------------------------------------------------------ */
57
58 // Constants that should be somehow moved to a plugin.js file
59 var FILTER_ADDED   = 1;
60 var FILTER_REMOVED = 2;
61 var CLEAR_FILTERS  = 3;
62 var FIELD_ADDED    = 4;
63 var FIELD_REMOVED  = 5;
64 var CLEAR_FIELDS   = 6;
65 var NEW_RECORD     = 7;
66 var CLEAR_RECORDS  = 8;
67
68 /**
69  * event: FIELD_STATE_CHANGED
70  *
71  * Parameters:
72  *   dict :
73  *      .state      : ???? used to be FIELD_REQUEST_ADD / FIELD_REQUEST_REMOVE
74  *      .key        : ??? the key fields of the record
75  *      .op         : the key of the record who has received an update
76  *      .value      : the new state of the record
77  */
78 var FIELD_STATE_CHANGED = 9;
79
80 var IN_PROGRESS    = 101;
81 var DONE           = 102; //XXX Should be harmonized with query state
82
83 /* Update requests related to subqueries */
84
85 /*
86 var SET_ADD        = 201;
87 var SET_REMOVED    = 202;
88 */
89
90 // request
91 /*
92 var FIELD_REQUEST_CHANGE  = 301;
93 var FIELD_REQUEST_ADD     = 302;
94 var FIELD_REQUEST_REMOVE  = 303;
95 var FIELD_REQUEST_ADD_RESET = 304;
96 var FIELD_REQUEST_REMOVE_RESET = 305;
97 */
98 // status (XXX Should be deprecated)
99 var FIELD_REQUEST_PENDING = 401;
100 var FIELD_REQUEST_SUCCESS = 402;
101 var FIELD_REQUEST_FAILURE = 403;
102 var STATUS_OKAY           = 404;
103 var STATUS_SET_WARNING    = 405;
104 var STATUS_ADD_WARNING    = 406;
105 var STATUS_REMOVE_WARNING = 407;
106 var STATUS_RESET          = 408;
107
108 /* Requests for query cycle */
109 var RUN_UPDATE     = 601;
110
111 /* MANIFOLD types */
112 var TYPE_VALUE  = 1;
113 var TYPE_RECORD = 2;
114 var TYPE_LIST_OF_VALUES = 3;
115 var TYPE_LIST_OF_RECORDS = 4;
116
117 /******************************************************************************
118  * QUERY STATUS (for manifold events)
119  ******************************************************************************/
120
121 var STATUS_NONE               = 500; // Query has not been started yet
122 var STATUS_GET_IN_PROGRESS    = 501; // Query has been sent, no result has been received
123 var STATUS_GET_RECEIVED       = 502; // Success
124 var STATUS_GET_ERROR          = 503; // Error
125 var STATUS_UPDATE_PENDING     = 504;
126 var STATUS_UPDATE_IN_PROGRESS = 505;
127 var STATUS_UPDATE_RECEIVED    = 506;
128 var STATUS_UPDATE_ERROR       = 507;
129
130 /******************************************************************************
131  * QUERY STATE (for query_store)
132  ******************************************************************************/
133
134 // XXX Rendundant with query status ?
135
136 var QUERY_STATE_INIT        = 0;
137 var QUERY_STATE_INPROGRESS  = 1;
138 var QUERY_STATE_DONE        = 2;
139
140 /******************************************************************************
141  * RECORD STATES (for query_store)
142  ******************************************************************************/
143
144 var STATE_SET       = 20;
145 var STATE_VALUE     = 21;
146 var STATE_WARNINGS  = 22;
147 var STATE_VISIBLE   = 23;
148
149 // ACTIONS
150 var STATE_SET_CHANGE = 0;
151 var STATE_SET_ADD    = 1;
152 var STATE_SET_REMOVE = 2;
153 var STATE_SET_CLEAR  = 3;
154
155 // STATE_SET : enum
156 var STATE_SET_IN            = 0;
157 var STATE_SET_OUT           = 1;
158 var STATE_SET_IN_PENDING    = 2;
159 var STATE_SET_OUT_PENDING   = 3;
160 var STATE_SET_IN_SUCCESS    = 4;
161 var STATE_SET_OUT_SUCCESS   = 5;
162 var STATE_SET_IN_FAILURE    = 6;
163 var STATE_SET_OUT_FAILURE   = 7;
164 var STATE_VALUE_CHANGE_PENDING    = 8;
165 var STATE_VALUE_CHANGE_SUCCESS    = 9;
166 var STATE_VALUE_CHANGE_FAILURE    = 10;
167
168 // STATE_WARNINGS : dict
169
170 // STATE_VISIBLE : boolean
171
172 /******************************************************************************
173  * CONSTRAINTS
174  ******************************************************************************/
175
176 var CONSTRAINT_RESERVABLE_LEASE     = 0;
177
178 var CONSTRAINT_RESERVABLE_LEASE_MSG = "Configuration required: this resource needs to be scheduled";
179
180 // A structure for storing queries
181
182 function QueryExt(query, parent_query_ext, main_query_ext, update_query_ext, disabled, domain_query_ext) {
183
184     /* Constructor */
185     if (typeof query == "undefined")
186         throw "Must pass a query in QueryExt constructor";
187     this.query                 = query;
188     this.parent_query_ext      = (typeof parent_query_ext      == "undefined") ? null  : parent_query_ext;
189     this.main_query_ext        = (typeof main_query_ext        == "undefined") ? null  : main_query_ext;
190     this.update_query_ext      = (typeof update_query_ext      == "undefined") ? null  : update_query_ext;
191     this.update_query_orig_ext = (typeof update_query_orig_ext == "undefined") ? null  : update_query_orig_ext;
192     this.disabled              = (typeof disabled              == "undefined") ? false : disabled;
193
194     // A domain query is a query that is issued to retrieve all possible values for a set
195     // eg. all resources that can be attached to a slice
196     // It is null unless we are a subquery for which a domain query has been issued
197     this.domain_query_ext      = (typeof domain_query_ext      == "undefined") ? null  : domain_query_ext;
198
199     // Set members to buffer until the domain query is completed
200     // A list of keys
201     this.set_members = [];
202
203     // The set query is the query for which the domain query has been issued.
204     // It is null unless the query is a domain query
205     this.set_query_ext         = (typeof set_query_ext         == "undefined") ? null  : domain_query_ext;
206     
207     this.query_state = QUERY_STATE_INIT;
208
209     // Results from a query consists in a dict that maps keys to records
210     this.records = new Hashtable();
211
212     // Status is a dict that maps keys to record status
213     this.state = new Hashtable();
214
215     // Filters that impact visibility in the local interface
216     this.filters = [];
217
218     // XXX Until we find a better solution
219     this.num_pending = 0;
220     this.num_unconfigured = 0;
221
222     // update_query null unless we are a main_query (aka parent_query == null); only main_query_fields can be updated...
223 }
224
225 function QueryStore() {
226
227     this.main_queries     = {};
228     this.analyzed_queries = {};
229
230     /* Insertion */
231
232     this.insert = function(query) {
233         // We expect only main_queries are inserted
234         
235         /* If the query has not been analyzed, then we analyze it */
236         if (query.analyzed_query == null) {
237             query.analyze_subqueries();
238         }
239
240         /* We prepare the update query corresponding to the main query and store both */
241         /* Note: they have the same UUID */
242
243         // XXX query.change_action() should become deprecated
244         update_query = query.clone();
245         update_query.action = 'update';
246         update_query.fields = [];
247         update_query.analyzed_query.action = 'update';
248         update_query.params = {};
249         update_query_ext = new QueryExt(update_query);
250
251         /* We remember the original query to be able to reset it */
252         update_query_orig_ext = new QueryExt(update_query.clone());
253
254
255         /* We store the main query */
256         query_ext = new QueryExt(query, null, null, update_query_ext, update_query_orig_ext, false);
257         manifold.query_store.main_queries[query.query_uuid] = query_ext;
258         /* Note: the update query does not have an entry! */
259
260
261         // The query is disabled; since it is incomplete until we know the content of the set of subqueries
262         // XXX unless we have no subqueries ???
263         // we will complete with params when records are received... this has to be done by the manager
264         // SET_ADD, SET_REMOVE will change the status of the elements of the set
265         // UPDATE will change also, etc.
266         // XXX We need a proper structure to store this information...
267
268         // We also need to insert all queries and subqueries from the analyzed_query
269         // XXX We need the root of all subqueries
270         query.iter_subqueries(function(sq, data, parent_query) {
271             var parent_query_ext;
272             if (parent_query) {
273                 parent_query_ext = manifold.query_store.find_analyzed_query_ext(parent_query.query_uuid);
274             } else {
275                 parent_query_ext = null;
276             }
277             // XXX parent_query_ext == false
278             // XXX main.subqueries = {} # Normal, we need analyzed_query
279             sq_ext = new QueryExt(sq, parent_query_ext, query_ext)
280
281             if (parent_query) {
282                 /* Let's issue a query for the subquery domain. This query will not need any update etc.
283                    eg. for resources in a slice, we also query all resources */
284                 var all_fields = manifold.metadata.get_field_names(sq.object);
285                 var domain_query = new ManifoldQuery('get', sq.object, 'now', [], {}, all_fields); 
286                 //var domain_query = new ManifoldQuery('get', sq.object); 
287
288                 console.log("Created domain query", domain_query);
289                 var domain_query_ext = new QueryExt(domain_query);
290
291                 domain_query_ext.set_query_ext = sq_ext;
292                 sq_ext.domain_query_ext = domain_query_ext;
293
294                 // One of these two is useless ?
295                 manifold.query_store.main_queries[domain_query.query_uuid] = domain_query_ext;
296                 manifold.query_store.analyzed_queries[domain_query.query_uuid] = domain_query_ext;
297
298                 // XXX This query is run before the plugins are initialized and listening
299                 manifold.run_query(domain_query);
300             }
301
302             manifold.query_store.analyzed_queries[sq.query_uuid] = sq_ext;
303         });
304
305         // XXX We have spurious update queries...
306     }
307
308     /* Searching */
309
310     this.find_query_ext = function(query_uuid)
311     {
312         return this.main_queries[query_uuid];
313     }
314
315     this.find_query = function(query_uuid) 
316     {
317         return this.find_query_ext(query_uuid).query;
318     }
319
320     this.find_analyzed_query_ext = function(query_uuid)
321     {
322         return this.analyzed_queries[query_uuid];
323     }
324
325     this.find_analyzed_query = function(query_uuid) 
326     {
327         return this.find_analyzed_query_ext(query_uuid).query;
328     }
329
330     this.state_dict_create = function(default_set)
331     {
332         default_set = (default_set === undefined) ? STATE_SET_OUT : default_set;
333         var state_dict = {};
334         // We cannot use constants in literal definition, so...
335         state_dict[STATE_WARNINGS] = {};
336         state_dict[STATE_SET] = default_set;
337         state_dict[STATE_VISIBLE] = true;
338         return state_dict;
339     }
340
341     // RECORDS
342
343     this.set_records = function(query_uuid, records, default_set)
344     {
345         default_set = (default_set === undefined) ? STATE_SET_OUT : default_set;
346
347         var self = this;
348         var key, object, query_ext, record_key;
349
350         query_ext = this.find_analyzed_query_ext(query_uuid);
351         object = query_ext.query.object;
352         if (object.indexOf(':') != -1) {
353             object = object.split(':')[1];
354         }
355         record_key = manifold.metadata.get_key(object);
356
357         // ["start_time", "resource", "end_time"]
358         // ["urn"]
359         
360         $.each(records, function(i, record) {
361             //var key = manifold.metadata.get_key(query_ext.query.object);
362             
363             var record_key_value = manifold.record_get_value(record, record_key);
364             query_ext.records.put(record_key_value, record);
365
366             if (!(query_ext.state.get(record_key_value)))
367                 query_ext.state.put(record_key_value, self.state_dict_create(default_set));
368         });
369     }
370
371     this.get_records = function(query_uuid)
372     {
373         var query_ext = this.find_analyzed_query_ext(query_uuid);
374         return query_ext.records.values();
375     }
376
377     this.get_record = function(query_uuid, record_key)
378     {
379         var query_ext = this.find_analyzed_query_ext(query_uuid);
380         return query_ext.records.get(record_key);
381     }
382
383     this.del_record = function(query_uuid, record_key)
384     {
385         var query_ext = this.find_analyzed_query_ext(query_uuid);
386         return query_ext.records.remove(record_key);
387     }
388
389     this.del_state = function(query_uuid, record_key)
390     {
391         var query_ext = this.find_analyzed_query_ext(query_uuid);
392         return query_ext.state.remove(record_key);
393     }
394
395     this.add_record = function(query_uuid, record, new_state)
396     {
397         var query_ext, key, record_key;
398         query_ext = this.find_analyzed_query_ext(query_uuid);
399         
400         if (typeof(record) == 'object') {
401             key = manifold.metadata.get_key(query_ext.query.object);
402             record_key = manifold.record_get_value(record, key);
403         } else {
404             record_key = record;
405         }
406
407         var record_entry = query_ext.records.get(record_key);
408         if (!record_entry)
409             query_ext.records.put(record_key, record);
410
411         manifold.query_store.set_record_state(query_uuid, record_key, STATE_SET, new_state);
412     }
413
414     this.remove_record = function(query_uuid, record, new_state)
415     {
416         var query_ext, key, record_key;
417         query_ext = this.find_analyzed_query_ext(query_uuid);
418         
419         if (typeof(record) == 'object') {
420             key = manifold.metadata.get_key(query_ext.query.object);
421             record_key = manifold.record_get_value(record, key);
422         } else {
423             record_key = record;
424         }
425         
426         if ((query_ext.query.object == 'lease') && (new_state == STATE_SET_OUT)) {
427             // Leases that are marked out are in fact leases from other slices
428             // We need to _remove_ leases that we mark as OUT
429             manifold.query_store.del_record(query_uuid, record_key);
430             manifold.query_store.del_state(query_uuid, record_key);
431         } else {
432             manifold.query_store.set_record_state(query_uuid, record_key, STATE_SET, new_state);
433         }
434     }
435
436     this.iter_records = function(query_uuid, callback)
437     {
438         var query_ext = this.find_analyzed_query_ext(query_uuid);
439         query_ext.records.each(callback);
440         //callback = function(record_key, record)
441     }
442
443     this.iter_visible_records = function(query_uuid, callback)
444     {
445         var query_ext = this.find_analyzed_query_ext(query_uuid);
446         query_ext.records.each(function(record_key, record) {
447             if (query_ext.state.get(record_key)[STATE_VISIBLE]) // .STATE_VISIBLE would be for the string key
448                 callback(record_key, record);
449         });
450         //callback = function(record_key, record)
451
452     }
453
454     // STATE
455
456     this.set_record_state = function(query_uuid, result_key, state, value)
457     {
458         var query_ext = this.find_analyzed_query_ext(query_uuid);
459         var state_dict = query_ext.state.get(result_key);
460         if (!state_dict)
461             state_dict = this.state_dict_create();
462
463         state_dict[state] = value;
464
465         query_ext.state.put(result_key, state_dict);
466     }
467
468     this.get_record_state = function(query_uuid, result_key, state)
469     {
470         var query_ext = this.find_analyzed_query_ext(query_uuid);
471         var state_dict = query_ext.state.get(result_key);
472         if (!state_dict)
473             return null;
474         return state_dict[state];
475     }
476
477     // FILTERS
478
479     this.add_filter = function(query_uuid, filter)
480     {
481         var query_ext = this.find_analyzed_query_ext(query_uuid);
482         // XXX When we update a filter
483         query_ext.filters.push(filter);
484
485         this.apply_filters(query_uuid);
486
487     }
488
489     this.update_filter = function(query_uuid, filter)
490     {
491         // XXX
492
493         this.apply_filters(query_uuid);
494     }
495
496     this.remove_filter = function(query_uuid, filter)
497     {
498         var query_ext = this.find_analyzed_query_ext(query_uuid);
499         query_ext.filters = $.grep(query_ext.filters, function(x) {
500             return !(x.equals(filter));
501         });
502
503         this.apply_filters(query_uuid);
504     }
505
506     this.get_filters = function(query_uuid)
507     {
508         var query_ext = this.find_analyzed_query_ext(query_uuid);
509         return query_ext.filters;
510     }
511
512     this.recount = function(query_uuid)
513     {
514         var query_ext;
515         var is_reserved, is_pending, in_set,  is_unconfigured;
516
517         query_ext = manifold.query_store.find_analyzed_query_ext(query_uuid);
518         query_ext.num_pending = 0;
519         query_ext.num_unconfigured = 0;
520
521         this.iter_records(query_uuid, function(record_key, record) {
522             var record_state = manifold.query_store.get_record_state(query_uuid, record_key, STATE_SET);
523             var record_warnings = manifold.query_store.get_record_state(query_uuid, record_key, STATE_WARNINGS);
524
525             is_reserved = (record_state == STATE_SET_IN) 
526                        || (record_state == STATE_SET_OUT_PENDING)
527                        || (record_state == STATE_SET_IN_SUCCESS)
528                        || (record_state == STATE_SET_OUT_FAILURE);
529
530             is_pending = (record_state == STATE_SET_IN_PENDING) 
531                       || (record_state == STATE_SET_OUT_PENDING);
532
533             in_set = (record_state == STATE_SET_IN) // should not have warnings
534                   || (record_state == STATE_SET_IN_PENDING)
535                   || (record_state == STATE_SET_IN_SUCCESS)
536                   || (record_state == STATE_SET_OUT_FAILURE); // should not have warnings
537
538             is_unconfigured = (in_set && !$.isEmptyObject(record_warnings));
539
540             /* Let's update num_pending and num_unconfigured at this stage */
541             if (is_pending)
542                 query_ext.num_pending++;
543             if (is_unconfigured)
544                 query_ext.num_unconfigured++;
545         });
546
547     }
548
549     this.apply_filters = function(query_uuid)
550     {
551         var start = new Date().getTime();
552
553         // Toggle visibility of records according to the different filters.
554
555         var self = this;
556         var filters = this.get_filters(query_uuid);
557         var col_value;
558         /* Let's update num_pending and num_unconfigured at this stage */
559
560         // Adapted from querytable._querytable_filter()
561
562         this.iter_records(query_uuid, function(record_key, record) {
563             var is_reserved, is_pending, in_set,  is_unconfigured;
564
565             /* By default, a record is visible unless a filter says the opposite */
566             var visible = true;
567
568             var record_state = manifold.query_store.get_record_state(query_uuid, record_key, STATE_SET);
569             var record_warnings = manifold.query_store.get_record_state(query_uuid, record_key, STATE_WARNINGS);
570
571             is_reserved = (record_state == STATE_SET_IN) 
572                        || (record_state == STATE_SET_OUT_PENDING)
573                        || (record_state == STATE_SET_IN_SUCCESS)
574                        || (record_state == STATE_SET_OUT_FAILURE);
575
576             is_pending = (record_state == STATE_SET_IN_PENDING) 
577                       || (record_state == STATE_SET_OUT_PENDING);
578
579             in_set = (record_state == STATE_SET_IN) // should not have warnings
580                   || (record_state == STATE_SET_IN_PENDING)
581                   || (record_state == STATE_SET_IN_SUCCESS)
582                   || (record_state == STATE_SET_OUT_FAILURE); // should not have warnings
583
584             is_unconfigured = (in_set && !$.isEmptyObject(record_warnings));
585
586             // We go through each filter and decide whether it affects the visibility of the record
587             $.each(filters, function(index, filter) {
588                 var key = filter[0];
589                 var op = filter[1];
590                 var value = filter[2];
591
592
593                 /* We do some special handling for the manifold:status filter
594                  * predicates. */
595
596                 if (key == 'manifold:status') {
597                     if (op != '=' && op != '==') {
598                         // Unsupported filter, let's ignore it
599                         console.log("Unsupported filter on manifold:status. Should be EQUAL only.");
600                         return true; // ~ continue
601                     }
602
603                     switch (value) {
604                         case 'reserved':
605                             // true  => ~ continue
606                             // false => ~ break
607                             visible = is_reserved;
608                             return visible;
609                         case 'unconfigured':
610                             visible = is_unconfigured;
611                             return visible;
612                         case 'pending':
613                             visible = is_pending;
614                             return visible;
615                     }
616                     return false; // ~ break
617                 }
618
619                 /* Normal filtering behaviour (according to the record content) follows... */
620                 col_value = manifold.record_get_value(record, key);
621
622                 // When the filter does not match, we hide the column by default
623                 if (col_value === 'undefined') {
624                     visible = false;
625                     return false; // ~ break
626                 }
627
628                 // XXX This should accept pluggable filtering functions.
629
630
631                 /* Test whether current filter is compatible with the column */
632                 if (op == '=' || op == '==') {
633                     if ( col_value != value || col_value==null || col_value=="" || col_value=="n/a")
634                         visible = false;
635
636                 }else if (op == 'included') {
637                     /* By default, the filter returns false unless the record
638                      * field match at least one value of the included statement
639                      */
640                     visible = false;
641                     $.each(value, function(i,x) {
642                       if(x == col_value){
643                           visible = true;
644                           return false; // ~ break
645                       }
646                     });
647                 }else if (op == '!=') {
648                     if ( col_value == value || col_value==null || col_value=="" || col_value=="n/a")
649                         visible = false;
650                 } else if(op=='<') {
651                     if ( parseFloat(col_value) >= value || col_value==null || col_value=="" || col_value=="n/a")
652                         visible = false;
653                 } else if(op=='>') {
654                     if ( parseFloat(col_value) <= value || col_value==null || col_value=="" || col_value=="n/a")
655                         visible = false;
656                 } else if(op=='<=' || op=='≤') {
657                     if ( parseFloat(col_value) > value || col_value==null || col_value=="" || col_value=="n/a")
658                         visible = false;
659                 } else if(op=='>=' || op=='≥') {
660                     if ( parseFloat(col_value) < value || col_value==null || col_value=="" || col_value=="n/a")
661                         visible = false;
662                 }else{
663                     // How to break out of a loop ?
664                     alert("filter not supported");
665                     return false; // break
666                 }
667
668             });
669
670             // Set the visibility status in the query store
671             self.set_record_state(query_uuid, record_key, STATE_VISIBLE, visible);
672         });
673
674         var end = new Date().getTime();
675         console.log("APPLY FILTERS [", filters, "] took", end - start, "ms");
676
677     }
678
679 }
680
681 /*!
682  * This namespace holds functions for globally managing query objects
683  * \Class Manifold
684  */
685 var manifold = {
686
687     /************************************************************************** 
688      * Helper functions
689      **************************************************************************/ 
690
691     separator: '__',
692
693     get_type: function(variable) {
694         switch(Object.toType(variable)) {
695             case 'number':
696             case 'string':
697                 return TYPE_VALUE;
698             case 'object':
699                 return TYPE_RECORD;
700             case 'array':
701                 if ((variable.length > 0) && (Object.toType(variable[0]) === 'object'))
702                     return TYPE_LIST_OF_RECORDS;
703                 else
704                     return TYPE_LIST_OF_VALUES;
705         }
706     },
707
708     /**
709      *  Args:
710      *      fields: A String instance (field name), or a set of String instances
711      *          (field names) # XXX tuple !!
712      *  Returns:
713      *      If fields is a String,  return the corresponding value.
714      *      If fields is a set, return a tuple of corresponding value.
715      *
716      *  Raises:
717      *      KeyError if at least one of the fields is not found
718      */
719     record_get_value: function(record, fields) 
720     {
721         if (typeof(fields) === 'string') {
722             if (fields.indexOf('.') != -1) {
723                 key_subkey = key.split('.', 2);
724                 key     = key_subkey[0]; 
725                 subkey  = key_subkey[1];
726
727                 if (record.indexOf(key) == -1) {
728                     return null;
729                 }
730                 // Tests if the following is an array (typeof would give object)
731                 if (Object.prototype.toString.call(record[key]) === '[object Array]') {
732                     // Records
733                     return $.map(record[key], function(subrecord) { return manifold.record_get_value(subrecord, subkey) });
734                 } else if (typeof(record) == 'object') {
735                     // Record
736                     return manifold.record_get_value(record[key], subkey);
737                 } else {
738                     console.log('Unknown field');
739                 }
740             // FIX if the record contains a string instead of a key:value 
741             // example: select resource, slice_hrn from slice where slice_hrn=='xxx'
742             // Result will be {slice_hrn:'xxx', resource:'urn+zzz'}
743             // We don't have this resource:{urn:'urn+zzz'}
744             } else if(typeof(record) === 'string'){
745                 return record;
746             } else {
747                 return record[fields];
748             }
749         } else {
750             // see. get_map_entries
751             if (fields.length == 1)
752                 return manifold.record_get_value(record, fields[0])
753
754             // Build a new record
755             var ret = {};
756             $.each(fields, function(i, field) {
757                 ret[field] = manifold.record_get_value(record, field);
758             });
759             ret.hashCode = record.hashCode;
760             ret.equals = record.equals;
761             return ret;
762             // this was an array, we want a dictionary
763             //return $.map(fields, function(x) { manifold.record_get_value(record, x) });
764                 
765         }
766     },
767
768     record_hashcode: function(key_fields)
769     {
770         return function() {
771             ret = "";
772             for (var i=0; i < key_fields.length; i++)
773                 ret += "@@" + this[key_fields[i]];
774             return ret;
775         };
776     },
777
778     _record_equals: function(self, other, key_fields)
779     {
780         if ((typeof self === "string") && (typeof other === "string")) {
781             return self == other;
782         }
783         for (var i=0; i < key_fields.length; i++) {
784             var this_value  = self[key_fields[i]];
785             var other_value = other[key_fields[i]];
786
787             var this_type = manifold.get_type(this_value);
788             var other_type = manifold.get_type(other_value);
789             if (this_type != other_type)
790                 return false;
791
792             switch (this_type) {
793                 case TYPE_VALUE:
794                 case TYPE_LIST_OF_VALUES:
795                 case TYPE_LIST_OF_RECORDS:
796                     if (this_value != other_value)
797                         return false;
798                     break;
799                 case TYPE_RECORD:
800                     if (!(_record_equals(this_value, other_value, key_fields)))
801                         return false;
802                     break;
803                 /*
804                 XXX WARNING = disabled for OpenFlow plugin !!!
805
806                 case TYPE_LIST_OF_RECORDS:
807                     if (this_value.length != other_value.length)
808                         return false;
809                     for (var j = 0; j < this_value.length; j++)
810                         if (!(_record_equals(this_value[j], other_value[j], key_fields)))
811                             return false;
812                     break;
813                 */
814             }
815         }
816         return true;
817     },
818
819     record_equals: function(key_fields)
820     {
821         return function(other) { 
822             return manifold._record_equals(this, other, key_fields); 
823         };
824     },
825
826     _in_array: function(element, array, key_fields)
827     {
828         if (key_fields.length > 1) {
829             for (var i = 0; i < array.length; i++) {
830                 if (manifold._record_equals(element, array[i], key_fields))
831                     return true;
832             }
833             return false;
834         } else {
835             // XXX TODO If we have a dict, extract the key first
836             return ($.inArray(element, array) != -1);
837         }
838     },
839
840     /************************************************************************** 
841      * Metadata management
842      **************************************************************************/ 
843
844      metadata: {
845
846         get_table: function(method) {
847             var table = MANIFOLD_METADATA[method];
848             return (typeof table === 'undefined') ? null : table;
849         },
850
851         get_columns: function(method) {
852             var table = this.get_table(method);
853             if (!table) {
854                 return null;
855             }
856
857             return (typeof table.column === 'undefined') ? null : table.column;
858         },
859
860         get_field_names: function(method)
861         {
862             var columns = this.get_columns(method);
863             if (!columns)
864                 return null;
865             return $.map(columns, function (x) { return x.name });
866         },
867
868         get_key: function(method) {
869             var table = this.get_table(method);
870             if (!table)
871                 return null;
872
873             return (typeof table.key === 'undefined') ? null : table.key;
874         },
875
876
877         get_column: function(method, name) {
878             var columns = this.get_columns(method);
879             if (!columns)
880                 return null;
881
882             $.each(columns, function(i, c) {
883                 if (c.name == name)
884                     return c
885             });
886             return null;
887         },
888
889         get_type: function(method, name) {
890             var table = this.get_table(method);
891             if (!table)
892                 return null;
893
894             var match = $.grep(table.column, function(x) { return x.name == name });
895             if (match.length == 0) {
896                 return undefined;
897             } else {
898                 return match[0].type;
899             }
900             return (typeof table.type === 'undefined') ? null : table.type;
901         }
902
903      },
904
905     /************************************************************************** 
906      * Query management
907      **************************************************************************/ 
908
909     query_store: new QueryStore(),
910
911     // XXX Remaining functions are deprecated since they are replaced by the query store
912
913     /*!
914      * Associative array storing the set of queries active on the page
915      * \memberof Manifold
916      */
917     all_queries: {},
918
919     /*!
920      * Insert a query in the global hash table associating uuids to queries.
921      * If the query has no been analyzed yet, let's do it.
922      * \fn insert_query(query)
923      * \memberof Manifold
924      * \param ManifoldQuery query Query to be added
925      */
926     insert_query : function (query) { 
927         // NEW API
928         manifold.query_store.insert(query);
929
930         // Run
931         $(document).ready(function() {
932         manifold.run_query(query);
933         });
934
935         // FORMER API
936         if (query.analyzed_query == null) {
937             query.analyze_subqueries();
938         }
939         manifold.all_queries[query.query_uuid]=query;
940     },
941
942     /*!
943      * Returns the query associated to a UUID
944      * \fn find_query(query_uuid)
945      * \memberof Manifold
946      * \param string query_uuid The UUID of the query to be returned
947      */
948     find_query : function (query_uuid) { 
949         return manifold.all_queries[query_uuid];
950     },
951
952     /************************************************************************** 
953      * Query execution
954      **************************************************************************/ 
955
956     // trigger a query asynchroneously
957     proxy_url : '/manifold/proxy/json/',
958
959     // reasonably low-noise, shows manifold requests coming in and out
960     asynchroneous_debug : true,
961     // print our more details on result publication and related callbacks
962     pubsub_debug : false,
963
964     /**
965      * \brief We use js function closure to be able to pass the query (array)
966      * to the callback function used when data is received
967      */
968     success_closure: function(query, publish_uuid, callback) {
969         return function(data, textStatus) {
970             manifold.asynchroneous_success(data, query, publish_uuid, callback);
971         }
972     },
973
974     run_query: function(query, callback)
975         {
976         // default value for callback = null
977         if (typeof callback === 'undefined')
978             callback = null; 
979
980         var query_ext = manifold.query_store.find_query_ext(query.query_uuid);
981         query_ext.query_state = QUERY_STATE_INPROGRESS;
982
983         /*
984             If the Query object concerns SFA AM objects, iterate on each AM platform
985             Loop per platform, allows a progressive loading per AM platform
986             Update is run on all platforms at the same time to get a final answer, we don't manage partial answers yet...
987         */
988         // Removed slice from the per platform query - it's quick enough...
989         if((query.object == 'resource' || query.object == 'lease') && query.action != "update"){
990             var obj = query.object;
991             $.post("/rest/platform/", function( data ) {
992                 $.each(data, function(index, p) {
993                     query.object = p.platform+":"+obj;
994                     var query_json = JSON.stringify(query);
995
996                     // Inform plugins about the progress
997                     query.iter_subqueries(function (sq) {
998                         var sq_query_ext = manifold.query_store.find_analyzed_query_ext(sq.query_uuid);
999                         sq_query_ext.query_state = QUERY_STATE_INPROGRESS;
1000                         manifold.raise_record_event(sq.query_uuid, IN_PROGRESS);
1001                     });
1002
1003                     $.post(manifold.proxy_url, {'json': query_json} , manifold.success_closure(query, null, callback));
1004
1005                 });
1006             });
1007
1008         }else{
1009             var query_json = JSON.stringify(query);
1010
1011             // Inform plugins about the progress
1012             query.iter_subqueries(function (sq) {
1013                 var sq_query_ext = manifold.query_store.find_analyzed_query_ext(sq.query_uuid);
1014                 sq_query_ext.query_state = QUERY_STATE_INPROGRESS;
1015                 manifold.raise_record_event(sq.query_uuid, IN_PROGRESS);
1016             });
1017
1018             $.post(manifold.proxy_url, {'json': query_json} , manifold.success_closure(query, null, callback));
1019
1020         }
1021     },
1022
1023     // XXX DEPRECATED
1024     // Executes all async. queries - intended for the javascript header to initialize queries
1025     // input queries are specified as a list of {'query_uuid': <query_uuid> }
1026     // each plugin is responsible for managing its spinner through on_query_in_progress
1027     asynchroneous_exec : function (query_exec_tuples) {
1028         
1029         // Loop through input array, and use publish_uuid to publish back results
1030         $.each(query_exec_tuples, function(index, tuple) {
1031             var query=manifold.find_query(tuple.query_uuid);
1032             var query_json=JSON.stringify (query);
1033             var publish_uuid=tuple.publish_uuid;
1034             // by default we publish using the same uuid of course
1035             if (publish_uuid==undefined) publish_uuid=query.query_uuid;
1036             if (manifold.pubsub_debug) {
1037                 messages.debug("sending POST on " + manifold.proxy_url + query.__repr());
1038             }
1039
1040             query.iter_subqueries(function (sq) {
1041                 manifold.raise_record_event(sq.query_uuid, IN_PROGRESS);
1042             });
1043
1044             // not quite sure what happens if we send a string directly, as POST data is named..
1045             // this gets reconstructed on the proxy side with ManifoldQuery.fill_from_POST
1046             $.post(manifold.proxy_url, {'json':query_json}, 
1047                    manifold.success_closure(query, publish_uuid, tuple.callback));
1048         })
1049     },
1050
1051     /**
1052      * \brief Forward a query to the manifold backend
1053      * \param query (dict) the query to be executed asynchronously
1054      * \param callback (function) the function to be called when the query terminates
1055      */
1056     forward: function(query, callback) {
1057         var query_json = JSON.stringify(query);
1058         $.post(manifold.proxy_url, {'json': query_json} , 
1059                manifold.success_closure(query, query.query_uuid, callback));
1060     },
1061
1062     /*!
1063      * Returns whether a query expects a unique results.
1064      * This is the case when the filters contain a key of the object
1065      * \fn query_expects_unique_result(query)
1066      * \memberof Manifold
1067      * \param ManifoldQuery query Query for which we are testing whether it expects a unique result
1068      */
1069     query_expects_unique_result: function(query) {
1070         /* XXX we need functions to query metadata */
1071         //var keys = MANIFOLD_METADATA[query.object]['keys']; /* array of array of field names */
1072         /* TODO requires keys in metadata */
1073         return true;
1074     },
1075
1076     /*!
1077      * Publish result
1078      * \fn publish_result(query, results)
1079      * \memberof Manifold
1080      * \param ManifoldQuery query Query which has received results
1081      * \param array results results corresponding to query
1082      */
1083     publish_result: function(query, result) {
1084         if (typeof result === 'undefined')
1085             result = [];
1086
1087         // NEW PLUGIN API
1088         manifold.raise_record_event(query.query_uuid, CLEAR_RECORDS);
1089         if (manifold.pubsub_debug)
1090             messages.debug(".. publish_result (1) ");
1091         var count=0;
1092         $.each(result, function(i, record) {
1093             manifold.raise_record_event(query.query_uuid, NEW_RECORD, record);
1094             count += 1;
1095         });
1096         if (manifold.pubsub_debug) 
1097             messages.debug(".. publish_result (2) has used NEW API on " + count + " records");
1098         manifold.raise_record_event(query.query_uuid, DONE);
1099         if (manifold.pubsub_debug) 
1100             messages.debug(".. publish_result (3) has used NEW API to say DONE");
1101
1102         // OLD PLUGIN API BELOW
1103         /* Publish an update announce */
1104         var channel="/results/" + query.query_uuid + "/changed";
1105         if (manifold.pubsub_debug) 
1106             messages.debug(".. publish_result (4) OLD API on channel" + channel);
1107
1108         $.publish(channel, [result, query]);
1109
1110         if (manifold.pubsub_debug) 
1111             messages.debug(".. publish_result (5) END q=" + query.__repr());
1112     },
1113
1114     store_records: function(query, records) {
1115         // Store records
1116         var query_ext = manifold.query_store.find_analyzed_query_ext(query.query_uuid);
1117         if (query_ext.set_query_ext) {
1118             // We have a domain query
1119             // The results are stored in the corresponding set_query
1120             manifold.query_store.set_records(query_ext.set_query_ext.query.query_uuid, records);
1121             
1122         } else if (query_ext.domain_query_ext) {
1123             // We have a set query, it is only used to determine which objects are in the set, we should only retrieve the key
1124             // Has it a domain query, and has it completed ?
1125             $.each(records, function(i, record) {
1126                 var key = manifold.metadata.get_key(query.object);
1127                 if ( typeof record === "string" ){
1128                     var record_key = record;
1129                 }else{
1130                     var record_key = manifold.record_get_value(record, key);
1131                 }
1132                 manifold.query_store.set_record_state(query.query_uuid, record_key, STATE_SET, STATE_SET_IN);
1133             });
1134
1135         } else {
1136             // We have a normal query
1137             manifold.query_store.set_records(query.query_uuid, records, STATE_SET_IN);
1138         }
1139     },
1140
1141     /*!
1142      * Recursively publish result
1143      * \fn publish_result_rec(query, result)
1144      * \memberof Manifold
1145      * \param ManifoldQuery query Query which has received result
1146      * \param array result result corresponding to query
1147      *
1148      * Note: this function works on the analyzed query
1149      */
1150     publish_result_rec: function(query, records) {
1151         /* If the result is not unique, only publish the top query;
1152          * otherwise, publish the main object as well as subqueries
1153          * XXX how much recursive are we ?
1154          */
1155         if (manifold.pubsub_debug)
1156              messages.debug (">>>>> publish_result_rec " + query.object);
1157         if (manifold.query_expects_unique_result(query)) {
1158             /* Also publish subqueries */
1159             $.each(query.subqueries, function(object, subquery) {
1160                 manifold.publish_result_rec(subquery, records[0][object]);
1161                 /* TODO remove object from result */
1162             });
1163         }
1164         if (manifold.pubsub_debug) 
1165             messages.debug ("===== publish_result_rec " + query.object);
1166
1167         var query_ext = manifold.query_store.find_analyzed_query_ext(query.query_uuid);
1168         query_ext.query_state = QUERY_STATE_DONE;
1169
1170         this.store_records(query, records);
1171
1172         var pub_query;
1173
1174         if (query_ext.set_query_ext) {
1175             if (query_ext.set_query_ext.query_state != QUERY_STATE_DONE)
1176                 return;
1177             pub_query = query_ext.set_query_ext.query;
1178         } else if (query_ext.domain_query_ext) {
1179             if (query_ext.domain_query_ext.query_state != QUERY_STATE_DONE)
1180                 return;
1181             pub_query = query;
1182         } else {
1183             pub_query = query;
1184         }
1185         // We can only publish results if the query (and its related domain query) is complete
1186         manifold.publish_result(pub_query, records);
1187
1188         if (manifold.pubsub_debug) 
1189             messages.debug ("<<<<< publish_result_rec " + query.object);
1190     },
1191
1192     setup_update_query: function(query, records) 
1193     {
1194         // We don't prepare an update query if the result has more than 1 entry
1195         if (records.length != 1)
1196             return;
1197         var query_ext = manifold.query_store.find_query_ext(query.query_uuid);
1198
1199         var record = records[0];
1200
1201         var update_query_ext = query_ext.update_query_ext;
1202
1203         if (!update_query_ext)
1204             return;
1205
1206         var update_query = update_query_ext.query;
1207         var update_query_ext = query_ext.update_query_ext;
1208         var update_query_orig = query_ext.update_query_orig_ext.query;
1209
1210         // Testing whether the result has subqueries (one level deep only)
1211         // iif the query has subqueries
1212         var count = 0;
1213         var obj = query.analyzed_query.subqueries;
1214         for (method in obj) {
1215             if (obj.hasOwnProperty(method)) {
1216                 var key = manifold.metadata.get_key(method);
1217                 if (!key)
1218                     continue;
1219                 var sq_keys = [];
1220                 var subrecords = record[method];
1221                 if (!subrecords)
1222                     continue
1223                 $.each(subrecords, function (i, subrecord) {
1224                     sq_keys.push(manifold.record_get_value(subrecord, key));
1225                 });
1226                 update_query.params[method] = sq_keys;
1227                 update_query_orig.params[method] = sq_keys.slice();
1228                 count++;
1229             }
1230         }
1231
1232         if (count > 0) {
1233             update_query_ext.disabled = false;
1234             update_query_orig_ext.disabled = false;
1235         }
1236     },
1237
1238     process_get_query_records: function(query, records) {
1239         this.setup_update_query(query, records);
1240         
1241         var query_ext = manifold.query_store.find_query_ext(query.query_uuid);
1242         query_ext.query_state = QUERY_STATE_DONE;
1243
1244         /* Publish full results */
1245         var tmp_query = manifold.query_store.find_analyzed_query(query.query_uuid);
1246         manifold.publish_result_rec(tmp_query, records);
1247     },
1248
1249     make_records: function(object, records)
1250     {
1251         $.each(records, function(i, record) {
1252             manifold.make_record(object, record);
1253         });
1254     },
1255
1256     make_record: function(object, record)
1257     {
1258         // To make an object a record, we just add the hash function
1259         var key, new_object;
1260
1261         if (object.indexOf(':') != -1) {
1262             new_object = object.split(':')[1];
1263         } else {
1264             new_object = object;
1265         }
1266
1267         key = manifold.metadata.get_key(new_object);
1268         if (!key){
1269             console.log("object type: " + new_object + " has no key");
1270             console.log(record);
1271             return;
1272         }
1273         record.hashCode = manifold.record_hashcode(key.sort());
1274         record.equals   = manifold.record_equals(key);
1275
1276         // Looking after subrecords
1277         for (var field in record) {
1278             var result_value = record[field];
1279
1280             switch (this.get_type(result_value)) {
1281                 case TYPE_RECORD:
1282                     var subobject = manifold.metadata.get_type(object, field);
1283                     // if (subobject) XXX Bugs with fields declared string while they are not : network.version is a dict in fact
1284                     if (subobject && subobject != 'string')
1285                         manifold.make_record(subobject, result_value);
1286                     break;
1287                 case TYPE_LIST_OF_RECORDS:
1288                     var subobject = manifold.metadata.get_type(object, field);
1289                     if (subobject)
1290                         manifold.make_records(subobject, result_value);
1291                     break;
1292             }
1293         }
1294     },
1295
1296     /**
1297      * 
1298      * What we need to do when receiving results from an update query:
1299      * - differences between what we had, what we requested, and what we obtained
1300      *    . what we had : update_query_orig (simple fields and set fields managed differently)
1301      *    . what we requested : update_query
1302      *    . what we received : records
1303      * - raise appropriate events
1304      *
1305      * The normal process is that results similar to Get will be pushed in the
1306      * pubsub mechanism, thus repopulating everything while we only need
1307      * diff's. This means we need to move the publish functionalities in the
1308      * previous 'process_get_query_records' function.
1309      */
1310     process_update_query_records: function(query, records) {
1311         // First issue: we request everything, and not only what we modify, so will will have to ignore some fields
1312         var query_uuid        = query.query_uuid;
1313         var query_ext         = manifold.query_store.find_analyzed_query_ext(query_uuid);
1314         var update_query      = query_ext.main_query_ext.update_query_ext.query;
1315         var update_query_orig = query_ext.main_query_ext.update_query_orig_ext.query;
1316         
1317         // Since we update objects one at a time, we can get the first record
1318         var record = records[0];
1319
1320         // Let's iterate over the object properties
1321         for (var field in record) {
1322             var result_value = record[field];
1323             switch (this.get_type(result_value)) {
1324                 case TYPE_VALUE:
1325                     // Did we ask for a change ?
1326                     var update_value = update_query[field];
1327                     if (!update_value)
1328                         // Not requested, if it has changed: OUT OF SYNC
1329                         // How we can know ?
1330                         // We assume it won't have changed
1331                         continue;
1332
1333                     if (!result_value)
1334                         throw "Internal error";
1335
1336                     data = {
1337                         state : STATE_SET,
1338                         key   : field,
1339                         op    : update_value,
1340                         value : (update_value == result_value) ? STATE_VALUE_CHANGE_SUCCESS : STATE_VALUE_CHANGE_FAILURE,
1341                     }
1342                     manifold.raise_record_event(query_uuid, FIELD_STATE_CHANGED, data);
1343
1344                     break;
1345                 case TYPE_RECORD:
1346                     throw "Not implemented";
1347                     break;
1348
1349                 /*
1350 case TYPE_LIST_OF_VALUES:
1351                     // Same as list of records, but we don't have to extract keys
1352                     
1353                     // The rest of exactly the same (XXX factorize)
1354                     var update_keys  = update_query_orig.params[field];
1355                     var query_keys   = update_query.params[field];
1356                     var added_keys   = $.grep(query_keys, function (x) { return $.inArray(x, update_keys) == -1 });
1357                     var removed_keys = $.grep(update_keys, function (x) { return $.inArray(x, query_keys) == -1 });
1358
1359
1360                     $.each(added_keys, function(i, key) {
1361                         if ($.inArray(key, result_value) == -1) {
1362                             data = {
1363                                 request: FIELD_REQUEST_ADD,
1364                                 key   : field,
1365                                 value : key,
1366                                 status: FIELD_REQUEST_FAILURE,
1367                             }
1368                         } else {
1369                             data = {
1370                                 request: FIELD_REQUEST_ADD,
1371                                 key   : field,
1372                                 value : key,
1373                                 status: FIELD_REQUEST_SUCCESS,
1374                             }
1375                         }
1376                         manifold.raise_record_event(query_uuid, FIELD_STATE_CHANGED, data);
1377                     });
1378                     $.each(removed_keys, function(i, key) {
1379                         if ($.inArray(key, result_keys) == -1) {
1380                             data = {
1381                                 request: FIELD_REQUEST_REMOVE,
1382                                 key   : field,
1383                                 value : key,
1384                                 status: FIELD_REQUEST_SUCCESS,
1385                             }
1386                         } else {
1387                             data = {
1388                                 request: FIELD_REQUEST_REMOVE,
1389                                 key   : field,
1390                                 value : key,
1391                                 status: FIELD_REQUEST_FAILURE,
1392                             }
1393                         }
1394                         manifold.raise_record_event(query_uuid, FIELD_STATE_CHANGED, data);
1395                     });
1396
1397
1398                     break;
1399                 */
1400                 case TYPE_LIST_OF_VALUES: // XXX Until fixed
1401                 case TYPE_LIST_OF_RECORDS:
1402                     var key, new_state, cur_query_uuid;
1403                     if($.inArray(field,Object.keys(query.analyzed_query.subqueries)) > -1){
1404                         cur_query_uuid = query.analyzed_query.subqueries[field].query_uuid;
1405                     }
1406
1407                     // example: slice.resource
1408                     //  - update_query_orig.params.resource = resources in slice before update
1409                     //  - update_query.params.resource = resource requested in slice
1410                     //  - keys from field = resources obtained
1411                 
1412                     if (field == 'lease') {
1413                          // lease_id has been added to be repeated when
1414                          // constructing request rspec. We don't want it for
1415                          // comparisons
1416                         key = ['start_time', 'end_time', 'resource'];
1417                     } else {
1418                         key = manifold.metadata.get_key(field);
1419                     }
1420                     if (!key)
1421                         continue;
1422                     /*
1423                     if (key.length > 1) {
1424                         throw "Not implemented";
1425                         continue;
1426                     }
1427                     key = key[0];
1428                     */
1429
1430                     /* XXX should be modified for multiple keys */
1431                     var result_keys  = $.map(record[field], function(x) { return manifold.record_get_value(x, key); });
1432
1433                     // XXX All this could be deduced from record state : STATE_IN_PENDING and STATE_OUT_PENDING
1434                     // what we had at the begining
1435                     var update_keys  = update_query_orig.params[field];
1436                     // what we asked
1437                     var query_keys   = update_query.params[field];
1438                     // what we added and removed
1439                     var added_keys   = $.grep(query_keys,  function (x) { return (!(manifold._in_array(x, update_keys, key))); });
1440                     var removed_keys = $.grep(update_keys, function (x) { return (!(manifold._in_array(x, query_keys,  key))); });
1441
1442                     // Send events related to parent query
1443                     $.each(added_keys, function(i, added_key) {
1444                         new_state = (manifold._in_array(added_key, result_keys, key)) ? STATE_SET_IN_SUCCESS : STATE_SET_IN_FAILURE;
1445
1446                         // Update record state for children queries
1447                         manifold.query_store.set_record_state(cur_query_uuid, added_key, STATE_SET, new_state);
1448
1449                         // XXX This could be optimized
1450                         manifold.query_store.recount(cur_query_uuid); 
1451
1452                         data = { state: STATE_SET, key  : field, op   : new_state, value: added_key }
1453                         manifold.raise_record_event(query_uuid, FIELD_STATE_CHANGED, data);
1454
1455                         // Inform subquery also
1456                         data.key = '';
1457                         manifold.raise_record_event(cur_query_uuid, FIELD_STATE_CHANGED, data);
1458                         // XXX Passing no parameters so that they can redraw everything would
1459                         // be more efficient but is currently not supported
1460                         // XXX We could also need to inform plugins about nodes IN (not pending) that are no more, etc.
1461                         // XXX refactor all this when suppressing update_queries, and relying on state instead !
1462                     });
1463                     $.each(removed_keys, function(i, removed_key) {
1464                         new_state = (manifold._in_array(removed_key, result_keys, key)) ? STATE_SET_OUT_FAILURE : STATE_SET_OUT_SUCCESS;
1465
1466                         // Update record state for children queries
1467                         manifold.query_store.set_record_state(cur_query_uuid, removed_key, STATE_SET, new_state);
1468
1469                         // XXX This could be optimized
1470                         manifold.query_store.recount(cur_query_uuid); 
1471
1472                         data = { state: STATE_SET, key  : field, op   : new_state, value: removed_key }
1473                         manifold.raise_record_event(query_uuid, FIELD_STATE_CHANGED, data);
1474
1475                         // Inform subquery also
1476                         data.key = '';
1477                         manifold.raise_record_event(cur_query_uuid, FIELD_STATE_CHANGED, data);
1478                     });
1479
1480                     break;
1481             }
1482         }
1483         
1484         // XXX Now we need to adapt 'update' and 'update_orig' queries as if we had done a get
1485         this.setup_update_query(query, records);
1486
1487         var query_ext = manifold.query_store.find_query_ext(query.query_uuid);
1488         query_ext.query_state = QUERY_STATE_DONE;
1489
1490         var tmp_query = manifold.query_store.find_analyzed_query(query.query_uuid);
1491         manifold.publish_result_rec(tmp_query, records);
1492
1493         // Send DONE message to plugins
1494         query.iter_subqueries(function(sq, data, parent_query) {
1495             manifold.raise_record_event(sq.query_uuid, DONE);
1496         });
1497
1498     },
1499
1500     process_query_records: function(query, records) {
1501         if (query.action == 'get') {
1502             this.process_get_query_records(query, records);
1503         } else if (query.action == 'update') {
1504             this.process_update_query_records(query, records);
1505         }
1506     },
1507
1508     // if set callback is provided it is called
1509     // most of the time publish_uuid will be query.query_uuid
1510     // however in some cases we wish to publish the result under a different uuid
1511     // e.g. an updater wants to publish its result as if from the original (get) query
1512     asynchroneous_success : function (data, query, publish_uuid, callback) {
1513         // xxx should have a nicer declaration of that enum in sync with the python code somehow
1514         
1515         var start = new Date();
1516         if (manifold.asynchroneous_debug)
1517             messages.debug(">>>>>>>>>> asynchroneous_success query.object=" + query.object);
1518
1519         if (data.code == 2) { // ERROR
1520             // We need to make sense of error codes here
1521             alert("Your session has expired, please log in again");
1522             localStorage.removeItem('user');
1523             window.location="/logout/";
1524             if (manifold.asynchroneous_debug) {
1525                 duration=new Date()-start;
1526                 messages.debug ("<<<<<<<<<< asynchroneous_success " + query.object + " -- error returned - logging out " + duration + " ms");
1527             }
1528             return;
1529         }
1530         if (data.code == 1) { // WARNING
1531             messages.error("Some errors have been received from the manifold backend at " + MANIFOLD_URL + " [" + data.description + "]");
1532             // publish error code and text message on a separate channel for whoever is interested
1533             if (publish_uuid)
1534                 $.publish("/results/" + publish_uuid + "/failed", [data.code, data.description] );
1535
1536         }
1537
1538         // If a callback has been specified, we redirect results to it 
1539         if (!!callback) { 
1540             callback(data); 
1541             if (manifold.asynchroneous_debug) {
1542                 duration=new Date()-start;
1543                 messages.debug ("<<<<<<<<<< asynchroneous_success " + query.object + " -- callback ended " + duration + " ms");
1544             }
1545             return; 
1546         }
1547
1548         if (manifold.asynchroneous_debug) 
1549             messages.debug ("========== asynchroneous_success " + query.object + " -- before process_query_records [" + query.query_uuid +"]");
1550
1551         // once everything is checked we can use the 'value' part of the manifoldresult
1552         var result=data.value;
1553         if (result) {
1554             /* Eventually update the content of related queries (update, etc) */
1555             manifold.make_records(query.object, result);
1556             this.process_query_records(query, result);
1557
1558             /* Publish results: disabled here, done in the previous call */
1559             //tmp_query = manifold.find_query(query.query_uuid);
1560             //manifold.publish_result_rec(tmp_query.analyzed_query, result);
1561         }
1562         if (manifold.asynchroneous_debug) {
1563             duration=new Date()-start;
1564             messages.debug ("<<<<<<<<<< asynchroneous_success " + query.object + " -- done " + duration + " ms");
1565         }
1566
1567     },
1568
1569     /************************************************************************** 
1570      * Plugin API helpers
1571      **************************************************************************/ 
1572
1573     raise_event_handler: function(type, query_uuid, event_type, value) {
1574         if (manifold.pubsub_debug)
1575             messages.debug("raise_event_handler, quuid="+query_uuid+" type="+type+" event_type="+event_type);
1576         if ((type != 'query') && (type != 'record'))
1577             throw 'Incorrect type for manifold.raise_event()';
1578         // xxx we observe quite a lot of incoming calls with an undefined query_uuid
1579         // this should be fixed upstream in manifold I expect
1580         if (query_uuid === undefined) {
1581             messages.warning("undefined query in raise_event_handler");
1582             return;
1583         }
1584
1585         // notify the change to objects that either listen to this channel specifically,
1586         // or to the wildcard channel
1587         var channels = [ manifold.get_channel(type, query_uuid), manifold.get_channel(type, '*') ];
1588
1589         $.each(channels, function(i, channel) {
1590             if (value === undefined) {
1591                 if (manifold.pubsub_debug) messages.debug("triggering [no value] on channel="+channel+" and event_type="+event_type);
1592                 $('.pubsub').trigger(channel, [event_type]);
1593             } else {
1594                 if (manifold.pubsub_debug) messages.debug("triggering [value="+value+"] on channel="+channel+" and event_type="+event_type);
1595                 $('.pubsub').trigger(channel, [event_type, value]);
1596             }
1597         });
1598     },
1599
1600     raise_query_event: function(query_uuid, event_type, value) {
1601         manifold.raise_event_handler('query', query_uuid, event_type, value);
1602     },
1603
1604     raise_record_event: function(query_uuid, event_type, value) {
1605         manifold.raise_event_handler('record', query_uuid, event_type, value);
1606     },
1607
1608     /**
1609      * Event handler helpers
1610      */
1611     _get_next_state_add: function(prev_state)
1612     {
1613         switch (prev_state) {
1614             case STATE_SET_OUT:
1615             case STATE_SET_OUT_SUCCESS:
1616             case STATE_SET_IN_FAILURE:
1617                 new_state = STATE_SET_IN_PENDING;
1618                 break;
1619
1620             case STATE_SET_OUT_PENDING:
1621                 new_state = STATE_SET_IN;
1622                 break;
1623
1624             case STATE_SET_IN:
1625             case STATE_SET_IN_PENDING:
1626             case STATE_SET_IN_SUCCESS:
1627             case STATE_SET_OUT_FAILURE:
1628                 console.log("Inconsistent state: already in");
1629                 return;
1630         }
1631         return new_state;
1632     },
1633
1634     _get_next_state_remove: function(prev_state)
1635     {
1636         switch (prev_state) {
1637             case STATE_SET_IN:
1638             case STATE_SET_IN_SUCCESS:
1639             case STATE_SET_OUT_FAILURE:
1640                 new_state = STATE_SET_OUT_PENDING;
1641                 break;
1642
1643             case STATE_SET_IN_PENDING:
1644                 new_state = STATE_SET_OUT;
1645                 break;  
1646
1647             case STATE_SET_OUT:
1648             case STATE_SET_OUT_PENDING:
1649             case STATE_SET_OUT_SUCCESS:
1650             case STATE_SET_IN_FAILURE:
1651                 console.log("Inconsistent state: already out");
1652                 return;
1653         }
1654         return new_state;
1655     },
1656
1657     _grep_active_lease_callback: function(lease_query, resource_key) {
1658         return function(lease_key_lease) {
1659             var state, lease_key, lease;
1660
1661             lease_key = lease_key_lease[0];
1662             lease = lease_key_lease[1];
1663
1664             if (lease['resource'] != resource_key)
1665                 return false;
1666
1667             state = manifold.query_store.get_record_state(lease_query.query_uuid, lease_key, STATE_SET);;
1668             switch(state) {
1669                 case STATE_SET_IN:
1670                 case STATE_SET_IN_PENDING:
1671                 case STATE_SET_IN_SUCCESS:
1672                 case STATE_SET_OUT_FAILURE:
1673                     return true;
1674                 case STATE_SET_OUT:
1675                 case STATE_SET_OUT_PENDING:
1676                 case STATE_SET_OUT_SUCCESS:
1677                 case STATE_SET_IN_FAILURE:
1678                     return false;
1679             }
1680         }
1681     },
1682
1683     _enforce_constraints: function(query_ext, record, record_key, event_type)
1684     {
1685         var query, data;
1686
1687         query = query_ext.query;
1688
1689         switch(query.object) {
1690
1691             case 'resource':
1692                 // CONSTRAINT_RESERVABLE_LEASE
1693                 // 
1694                 // +) If a reservable node is added to the slice, then it should have a corresponding lease
1695                 // XXX Not always a resource
1696                 var is_reservable = (record.exclusive == true);
1697                 if (is_reservable) {
1698                     var warnings = manifold.query_store.get_record_state(query.query_uuid, record_key, STATE_WARNINGS);
1699
1700                     if (event_type == STATE_SET_ADD) {
1701                         // We should have a lease_query associated
1702                         var lease_query = query_ext.parent_query_ext.query.subqueries['lease']; // in  options
1703                         var lease_query_ext = manifold.query_store.find_analyzed_query_ext(lease_query.query_uuid);
1704                         // Do we have lease records (in) with this resource
1705                         var lease_records = $.grep(lease_query_ext.records.entries(), this._grep_active_lease_callback(lease_query, record_key));
1706                         if (lease_records.length == 0) {
1707                             // Sets a warning
1708                             // XXX Need for a better function to manage warnings
1709                             var warn = CONSTRAINT_RESERVABLE_LEASE_MSG;
1710                             warnings[CONSTRAINT_RESERVABLE_LEASE] = warn;
1711
1712                             manifold.query_store.set_record_state(query.query_uuid, record_key, STATE_WARNINGS, warnings);
1713                             // Signal the change to plugins (even if the constraint does not apply, so that the plugin can display a checkmark)
1714                             data = {
1715                                 state:  STATE_WARNINGS,
1716                                 key   : record_key,
1717                                 op    : null,
1718                                 value : warnings
1719                             }
1720                             manifold.raise_record_event(query.query_uuid, FIELD_STATE_CHANGED, data);
1721
1722                         } else {
1723                             // Lease are defined, delete the warning in case it was set previously
1724                             delete warnings[CONSTRAINT_RESERVABLE_LEASE];
1725                         }
1726                     } else {
1727                         // Remove warnings attached to this resource
1728                         delete warnings[CONSTRAINT_RESERVABLE_LEASE];
1729                     }
1730                 }
1731
1732                 /* This was redundant */
1733                 // manifold.query_store.recount(query.query_uuid); 
1734
1735                 break;
1736
1737             case 'lease':
1738                 var resource_key = record_key.resource;
1739                 var resource_query = query_ext.parent_query_ext.query.subqueries['resource'];
1740                 var warnings = manifold.query_store.get_record_state(resource_query.query_uuid, resource_key, STATE_WARNINGS);
1741
1742                 if (event_type == STATE_SET_ADD || event_type == STATE_SET_IN_PENDING) {
1743                      // A lease is added, it removes the constraint
1744                     delete warnings[CONSTRAINT_RESERVABLE_LEASE];
1745                 } else {
1746                     // A lease is removed, it might trigger the warning
1747                     var lease_records = $.grep(query_ext.records.entries(), this._grep_active_lease_callback(query, resource_key));
1748                     if (lease_records.length == 0) { // XXX redundant cases
1749                         // Sets a warning
1750                         // XXX Need for a better function to manage warnings
1751                         var warn = CONSTRAINT_RESERVABLE_LEASE_MSG;
1752                         warnings[CONSTRAINT_RESERVABLE_LEASE] = warn;
1753
1754                         // Signal the change to plugins (even if the constraint does not apply, so that the plugin can display a checkmark)
1755                         data = {
1756                             state:  STATE_WARNINGS,
1757                             key   : resource_key,
1758                             op    : null,
1759                             value : warnings
1760                         }
1761                         manifold.raise_record_event(resource_query.query_uuid, FIELD_STATE_CHANGED, data);
1762                     } else {
1763                         // Lease are defined, delete the warning in case it was set previously
1764                         delete warnings[CONSTRAINT_RESERVABLE_LEASE];
1765                     }
1766                 }
1767                 /* Adding a lease can remove a warning and reduce the unconfigured resources  */
1768                 manifold.query_store.recount(resource_query.query_uuid); 
1769                 break;
1770         }
1771
1772         // -) When a lease is added, it might remove the warning associated to a reservable node
1773
1774         // If a NITOS node is reserved, then at least a NITOS channel should be reserved
1775         // - When a NITOS channel is added, it might remove a warning associated to all NITOS nodes
1776
1777         // If a NITOS channel is reserved, then at least a NITOS node should be reserved
1778         // - When a NITOS node is added, it might remove a warning associated to all NITOS channels
1779
1780         // A lease is present while the resource has been removed => Require warnings on nodes not in set !
1781
1782     },
1783
1784     _get_query_path: function(query_ext) {
1785         var path = "";
1786         var sq = query_ext;
1787         while (sq.parent_query_ext) {
1788             if (path != "")
1789                 path = '.' + path;
1790             path = sq.query.object + path;
1791             sq = sq.parent_query_ext;
1792         }
1793         return path;
1794     },
1795
1796
1797     /**
1798      * Handling events raised by plugins
1799      */
1800     raise_event: function(query_uuid, event_type, data) 
1801     {
1802         var query, query_ext;
1803
1804         // Query uuid has been updated with the key of a new element
1805         query_ext    = manifold.query_store.find_analyzed_query_ext(query_uuid);
1806         query = query_ext.query;
1807
1808         switch(event_type) {
1809             case STATUS_REMOVE_WARNING:
1810                 record = manifold.query_store.get_record(query_uuid, data.value);
1811                 this._enforce_constraints(query_ext, record, data.value, STATE_SET_ADD);
1812
1813             // XXX At some point, should be renamed to RECORD_STATE_CHANGED
1814             case FIELD_STATE_CHANGED:
1815
1816                 // value is an object (request, key, value, status)
1817                 // update is only possible is the query is not pending, etc
1818                 // SET_ADD is on a subquery, FIELD_STATE_CHANGED on the query itself
1819                 // we should map SET_ADD on this...
1820
1821                 // 1. Update internal query store about the change in status
1822
1823                 // 2. Update the update query
1824                 update_query      = query_ext.main_query_ext.update_query_ext.query;
1825                 update_query_orig = query_ext.main_query_ext.update_query_orig_ext.query;
1826
1827                 switch(data.state) {
1828             
1829                     case STATE_VALUE:
1830                         switch(data.op) {
1831                             case STATE_CHANGE:
1832                                 /* Set parameter data.key in the update_query to VALUE */
1833                                 if (update_query.params[data.key] === undefined)
1834                                     update_query.params[data.key] = Array();
1835                                 update_query.params[data.key] = value.value;
1836                                 break;
1837
1838                         }
1839                         break;
1840
1841                     case STATE_SET:
1842                         var prev_state, new_state;
1843                         var main_query, record, new_data, path;
1844         
1845                         // We only track state in the analyzed query
1846                         prev_state = manifold.query_store.get_record_state(query_uuid, data.value, STATE_SET);
1847                         if (prev_state === null)
1848                             prev_state = STATE_SET_OUT;
1849
1850                         switch(data.op) {
1851                             case STATE_SET_ADD:
1852                                 new_state = this._get_next_state_add(prev_state);
1853
1854                                 /* data.value containts the resource key */
1855                                 manifold.query_store.add_record(query_uuid, data.value, new_state);
1856                                 record = manifold.query_store.get_record(query_uuid, data.value);
1857                                 this._enforce_constraints(query_ext, record, data.value, STATE_SET_ADD);
1858                 
1859                                 /* Process update query in parent */
1860                                 path =  this._get_query_path(query_ext);
1861                                 if (update_query.params[path] === undefined)
1862                                     update_query.params[path] = Array();
1863                                 update_query.params[path].push(data.value);
1864
1865                                 break;
1866
1867                             case STATE_SET_REMOVE:
1868                                 new_state = this._get_next_state_remove(prev_state);
1869
1870                                 /* data.value contains the resource key */
1871                                 manifold.query_store.remove_record(query_uuid, data.value, new_state);
1872                                 record = manifold.query_store.get_record(query_uuid, data.value);
1873                                 this._enforce_constraints(query_ext, record, data.value, STATE_SET_REMOVE);
1874                     
1875                                 /* Process update query in parent */
1876                                 path =  this._get_query_path(query_ext);
1877                                 arr = update_query.params[path];
1878                                 
1879                                 var key = manifold.metadata.get_key(query.object);
1880                                 arr = $.grep(arr, function(x) { return (!(manifold._record_equals(x, data.value, key))); });
1881                                 if (update_query.params[path] === undefined)
1882                                     update_query.params[path] = Array();
1883                                 update_query.params[path] = arr;
1884                                 break;
1885                         }
1886
1887                         /* Inform the parent query: important for update */
1888                         new_data = {
1889                             state : STATE_SET,
1890                             key   : path,
1891                             op    : new_state,
1892                             value : data.value,
1893                         };
1894                         main_query = query_ext.main_query_ext.query;
1895                         manifold.raise_record_event(main_query.query_uuid, event_type, new_data);
1896                         /* Propagate the event to other plugins subscribed to the query */
1897                         manifold.query_store.recount(query_uuid);
1898                         new_data.key = ''
1899                         manifold.raise_record_event(query_uuid, event_type, new_data);
1900
1901                         break;
1902                 }
1903 /*
1904                 // 3. Inform others about the change
1905                 // a) the main query...
1906                 manifold.raise_record_event(query_uuid, event_type, data);
1907
1908                 // b) subqueries eventually (dot in the key)
1909                 // Let's unfold 
1910
1911                 var cur_query = query;
1912                 if (cur_query.analyzed_query)
1913                     cur_query = cur_query.analyzed_query;
1914
1915                 if (data.key) {
1916                     var path_array = data.key.split('.');
1917                     var value_key = data.key.split('.');
1918                     $.each(path_array, function(i, method) {
1919                         cur_query = cur_query.subqueries[method];
1920                         value_key.shift(); // XXX check that method is indeed shifted
1921                     });
1922                     data.key = value_key;
1923                 }
1924                 manifold.raise_record_event(cur_query.query_uuid, event_type, data);
1925 */
1926
1927                 break;
1928
1929             case RUN_UPDATE:
1930                 query_ext.main_query_ext.update_query_ext.query.fields = [];
1931                 manifold.run_query(query_ext.main_query_ext.update_query_ext.query);
1932                 break;
1933
1934             /* QUERY STATE CHANGED */
1935             
1936             // FILTERS
1937
1938             case FILTER_ADDED: 
1939                 console.log("FILTER ADDED", data);
1940                 /* Update internal record state */
1941                 manifold.query_store.add_filter(query_uuid, data);
1942
1943                 /* Propagate the message to plugins */
1944                 manifold.raise_query_event(query_uuid, event_type, data);
1945
1946                 break;
1947
1948             case FILTER_REMOVED:
1949                 console.log("FILTER REMOVED", data);
1950                 /* Update internal record state */
1951                 manifold.query_store.remove_filter(query_uuid, data);
1952
1953                 /* Propagate the message to plugins */
1954                 manifold.raise_query_event(query_uuid, event_type, data);
1955
1956                 break;
1957
1958             case FIELD_ADDED:
1959                 main_query = query_ext.main_query_ext.query;
1960                 main_update_query = query_ext.main_query_ext.update_query;
1961                 query.select(data);
1962
1963                 // Here we need the full path through all subqueries
1964                 path = ""
1965                 // XXX We might need the query name in the QueryExt structure
1966                 main_query.select(data);
1967
1968                 // XXX When is an update query associated ?
1969                 // XXX main_update_query.select(value);
1970
1971                 manifold.raise_query_event(query_uuid, event_type, data);
1972                 break;
1973
1974             case FIELD_REMOVED:
1975                 query = query_ext.query;
1976                 main_query = query_ext.main_query_ext.query;
1977                 main_update_query = query_ext.main_query_ext.update_query;
1978                 query.unselect(data);
1979                 main_query.unselect(data);
1980
1981                 // We need to inform about changes in these queries to the respective plugins
1982                 // Note: query & main_query have the same UUID
1983                 manifold.raise_query_event(query_uuid, event_type, data);
1984                 break;
1985         }
1986         // We need to inform about changes in these queries to the respective plugins
1987         // Note: query, main_query & update_query have the same UUID
1988
1989         // http://trac.myslice.info/ticket/32
1990         // Avoid multiple calls to the same event
1991         //manifold.raise_query_event(query_uuid, event_type, value);
1992
1993         // We are targeting the same object with get and update
1994         // The notion of query is bad, we should have a notion of destination, and issue queries on the destination
1995         // NOTE: Editing a subquery == editing a local view on the destination
1996
1997         // XXX We might need to run the new query again and manage the plugins in the meantime with spinners...
1998         // For the time being, we will collect all columns during the first query
1999     },
2000
2001     /* Publish/subscribe channels for internal use */
2002     get_channel: function(type, query_uuid) {
2003         if ((type !== 'query') && (type != 'record'))
2004             return null;
2005         return '/' + type + '/' + query_uuid;
2006     },
2007
2008 }; // manifold object
2009 /* ------------------------------------------------------------ */
2010
2011 (function($) {
2012
2013     // OLD PLUGIN API: extend jQuery/$ with pubsub capabilities
2014     // https://gist.github.com/661855
2015     var o = $({});
2016     $.subscribe = function( channel, selector, data, fn) {
2017       /* borrowed from jQuery */
2018       if ( data == null && fn == null ) {
2019           // ( channel, fn )
2020           fn = selector;
2021           data = selector = undefined;
2022       } else if ( fn == null ) {
2023           if ( typeof selector === "string" ) {
2024               // ( channel, selector, fn )
2025               fn = data;
2026               data = undefined;
2027           } else {
2028               // ( channel, data, fn )
2029               fn = data;
2030               data = selector;
2031               selector = undefined;
2032           }
2033       }
2034       /* </ugly> */
2035   
2036       /* We use an indirection function that will clone the object passed in
2037        * parameter to the subscribe callback 
2038        * 
2039        * FIXME currently we only clone query objects which are the only ones
2040        * supported and editable, we might have the same issue with results but
2041        * the page load time will be severely affected...
2042        */
2043       o.on.apply(o, [channel, selector, data, function() { 
2044           for(i = 1; i < arguments.length; i++) {
2045               if ( arguments[i].constructor.name == 'ManifoldQuery' )
2046                   arguments[i] = arguments[i].clone();
2047           }
2048           fn.apply(o, arguments);
2049       }]);
2050     };
2051   
2052     $.unsubscribe = function() {
2053       o.off.apply(o, arguments);
2054     };
2055   
2056     $.publish = function() {
2057       o.trigger.apply(o, arguments);
2058     };
2059   
2060 }(jQuery));
2061
2062 /* ------------------------------------------------------------ */
2063
2064 //http://stackoverflow.com/questions/5100539/django-csrf-check-failing-with-an-ajax-post-request
2065 //make sure to expose csrf in our outcoming ajax/post requests
2066 $.ajaxSetup({ 
2067      beforeSend: function(xhr, settings) {
2068          function getCookie(name) {
2069              var cookieValue = null;
2070              if (document.cookie && document.cookie != '') {
2071                  var cookies = document.cookie.split(';');
2072                  for (var i = 0; i < cookies.length; i++) {
2073                      var cookie = jQuery.trim(cookies[i]);
2074                      // Does this cookie string begin with the name we want?
2075                  if (cookie.substring(0, name.length + 1) == (name + '=')) {
2076                      cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
2077                      break;
2078                  }
2079              }
2080          }
2081          return cookieValue;
2082          }
2083          if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
2084              // Only send the token to relative URLs i.e. locally.
2085              xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
2086          }
2087      } 
2088 });