XObject.js
[app.Builder.js] / XObject.js
1 //<script type="text/javascript">
2 GIRepository = imports.gi.GIRepository;
3 GObject = imports.gi.GObject;
4 /**
5  * XObject
6  * Yet another attempt to create a usable object construction library for seed..
7  * 
8  * Why is this useful?
9  * A) It turns rather messy code into a tree structure, making it easy to find code relating to 
10  *    an interface element
11  * B) In theory it should be gjs/Seed compatible..
12  * C) It provides getElementById style lookups for elements.
13  * D) It provides classic OO constructors for Javascript (extend/define)
14  * E) It does not modify any buildin prototypes.. 
15  *
16  * Extend this.. to use it's wonderful features..
17  * 
18  * normal usage:
19  * XObject = imports.XObject.XObject;
20  * 
21  * Xyz = new XObject({
22  *     xtype: Gtk.Window,
23  *     id : 'window',
24  *     items : [
25  *     
26  *     ]
27  *  });
28  *  Xyz.init(); // create and show.
29  * 
30  * 
31  * 
32  * @arg xtype {String|Function} constructor or string.
33  * @arg id {String}  (optional) id for registry
34  * @arg xns {String|Object}   (optional) namespace eg. Gtk or 'Gtk' - used with xtype.
35  * @arg items {Array}   (optional) list of child elements which will be constructed.. using XObject
36  * @arg listeners {Object}   (optional) map Gobject signals to functions
37  * @arg pack {Function|String|Array}   (optional) how this object gets added to it's parent
38  * @arg el {Object}   (optional) premade GObject
39  * 
40  *  --- needs a xdebug option!
41  * 
42  * 
43  * He's some questions.
44  * - should we generate ID's for all elements? (if so we probably need to garbage collect)
45  * - should we have a special property to use as the constructor / gobject.properties rather
46  *   than sending all basic types to this?
47  * 
48  * 
49  */
50
51 function XObject (cfg) {
52     // first apply cfg if set.
53       //print("new XOBJECT!!!");
54     this.config = {};
55     this.constructor = XObject;
56     
57     // copy down all elements into self..
58     
59     for (var i in cfg) {
60         this[i] = cfg[i];
61         if (typeof(cfg[i]) == 'function') { // do we skip objects.
62             continue;
63         }
64         // these properties are not copied to cfg.
65         if (    i == 'pack' ||
66                 i == 'items' ||
67                 i == 'id' ||
68                 i == 'xtype' ||
69                 i == 'xdebug' ||
70                 i == 'xns') {
71             continue;
72         }
73         
74         
75         this.config[i] = cfg[i];
76     }
77     this.items = this.items || [];
78     // pack can be false!
79     if (typeof(this.pack) == 'undefined') {
80         
81         this.pack = [ 'add' ]
82         /*
83         var Gtk  = imports.gi.Gtk;
84         switch (true) {
85             // any others!!
86             case (this.xtype == Gtk.MenuItem):  this.pack = [ 'append' ]; break;
87             
88         }
89         */
90         
91     }
92     
93     
94     
95 }
96
97
98
99 XObject.prototype = {
100     /**
101      * @property el {GObject} the Gtk / etc. element.
102      */
103     el : false, 
104     /*
105      * @property items {Array} list of sub elements
106      */
107     /**
108      * @property parent {XObject} parent Element
109      */
110      
111      /**
112      * @property config {Object} the construction configuration.
113      */
114      /**
115       * @method init
116       * Initializes the Element (el) hooks up all the listeners
117       * and packs the children.
118       * you can override this, in child objects, then 
119       * do this to do thi initaliztion.
120       * 
121       * XObject.prototype.init.call(this); 
122       * 
123       */ 
124     init : function()
125     {
126          
127         var items = [];
128         this.items.forEach(function(i) {
129             items.push(i);
130         });
131         // remove items.
132         this.listeners = this.listeners || {}; 
133         this.items = [];
134          
135         // do we need to call 'beforeInit here?'
136          
137         // handle include?
138         //if ((this.xtype == 'Include')) {
139         //    o = this.pre_registry[cls];
140         //}
141         var isSeed = typeof(Seed) != 'undefined';
142          
143         // xtype= Gtk.Menu ?? what about c_new stuff?
144         if (XObject.debug) print("init: ID:"+ this.id +" typeof(xtype): "  + typeof(this.xtype));
145         if (!this.el && typeof(this.xtype) == 'function') {
146             if (XObject.debug) print("func?"  + XObject.keys(this.config).join(','));
147             this.el = this.xtype(this.config);
148            
149         }
150         if (!this.el && typeof(this.xtype) == 'object') {
151             if (XObject.debug) print("obj?"  + XObject.keys(this.config).join(','));
152             this.el = new (this.xtype)(this.config);
153       
154         }
155         //print(this.el);
156         if (!this.el && this.xns) {
157             
158             var NS = imports.gi[this.xns];
159             if (!NS) {
160                 Seed.print('Invalid xns: ' + this.xns);
161             }
162             constructor = NS[this.xtype];
163             if (!constructor) {
164                 Seed.print('Invalid xtype: ' + this.xns + '.' + this.xtype);
165             }
166             this.el  =   isSeed ? new constructor(this.config) : new constructor();
167             
168         }
169         if (XObject.debug) print("init: ID:"+ this.id +" typeof(el):" + this.el);
170         
171         // always overlay props..
172         // check for 'write' on object..
173         /*
174         if (typeof(XObject.writeablePropsCache[this.xtype.type]) == 'undefined') {
175                 
176             var gi = GIRepository.IRepository.get_default();
177             var ty = gi.find_by_gtype(this.xtype.type);
178             var write = [];
179             for (var i =0; i < GIRepository.object_info_get_n_properties(ty);i++) {
180                 var p =   GIRepository.object_info_get_property(ty,i);
181                 if (GIRepository.property_info_get_flags(p) & 2) {
182                     write.push(GIRepository.base_info_get_name(p));
183                 }
184             }
185             XObject.writeablePropsCache[this.xtype.type] = write;
186             print(write.join(", "));
187         }
188         
189         */
190         
191          
192         for (var i in this.config) {
193             if (i == 'type') { // problem with Gtk.Window... - not decided on a better way to handle this.
194                 continue;
195             }
196             if (i == 'buttons') { // problem with Gtk.MessageDialog..
197                 continue;
198             }
199             this.el[i] = this.config[i];
200         }
201         
202         // register it!
203         //if (o.xnsid  && o.id) {
204          //   XObject.registry = XObject.registry || { };
205          //   XObject.registry[o.xnsid] = XObject.registry[o.xnsid] || {}; 
206          //   XObject.registry[o.xnsid][o.id] = this;
207         //}
208         var _this=this;
209         items.forEach(function(i) {
210             _this.addItem(i);
211         })
212             
213         
214         for (var i in this.listeners) {
215             this.addListener(i, this.listeners[i]);
216         }
217         // delete this.listeners ?
218         
219         
220         // do we need to call 'init here?'
221     },
222       
223      
224      /**
225       * @method addItem
226       * Adds an item to the object using a new XObject
227       * uses pack property to determine how to add it.
228       * @arg cfg {Object} same as XObject constructor.
229       */
230     addItem : function(o) {
231         if (typeof(o) == 'undefined') {
232             print("Invalid Item added to this!");
233             imports.console.dump(this);
234             Seed.quit();
235         }
236         // what about extended items!?!?!?
237         var item = (o.constructor == XObject) ? o : new XObject(o);
238         item.parent = this;
239         this.items.push(item);
240         item.init();
241         //print("CTR:PROTO:" + ( item.id ? item.id : '??'));
242        // print("addItem - call init [" + item.pack.join(',') + ']');
243         if (!item.el) {
244             print("NO EL!");
245             imports.console.dump(item);
246             Seed.quit();
247         }
248          
249         
250         if (item.pack===false) {  // no 
251             return;
252         }
253         if (typeof(item.pack) == 'function') {
254             // parent, child
255             item.pack.apply(item, [ this , item  ]);
256             item.parent = this;
257             return;
258         }
259         var args = [];
260         var pack_m  = false;
261         if (typeof(item.pack) == 'string') {
262              
263             item.pack.split(',').forEach(function(e, i) {
264                 
265                 if (e == 'false') { args.push( false); return; }
266                 if (e == 'true') {  args.push( true);  return; }
267                 if (!isNaN(parseInt(e))) { args.push( parseInt(e)); return; }
268                 args.push(e);
269             });
270             //print(args.join(","));
271             
272             pack_m = args.shift();
273         } else {
274             pack_m = item.pack.shift();
275             args = item.pack;
276         }
277         
278         // handle error.
279         if (pack_m && typeof(this.el[pack_m]) == 'undefined') {
280             
281             throw {
282                 name: "ArgumentError", 
283                 message : 'pack method not available : ' + this.id + " : " + this.xtype + '.' +  pack_m + " ADDING " + item.el
284                     
285             }
286            
287             
288             
289             
290             return;
291         }
292         
293         
294         //Seed.print('Pack ' + this.el + '.'+ pack_m + '(' + item.el + ')');
295
296         args.unshift(item.el);
297         if (XObject.debug) print(pack_m + '[' + args.join(',') +']');
298         //Seed.print('args: ' + args.length);
299         if (pack_m) {
300             this.el[pack_m].apply(this.el, args);
301         }
302         
303        
304         
305     },
306     /**
307       * @method addListener
308       * Connects a method to a signal. (gjs/Seed aware)
309       * 
310       * @arg sig  {String} name of signal
311       * @arg fn  {Function} handler.
312       */
313     addListener  : function(sig, fn) 
314     {
315  
316         if (XObject.debug) Seed.print("Add signal " + sig);
317         fn.id= sig;
318         var _li = XObject.createDelegate(fn,this);
319         // private listeners that are not copied to GTk.
320         
321         if (typeof(Seed) != 'undefined') {
322           //   Seed.print(typeof(_li));
323             this.el.signal[sig].connect(_li);
324         } else {
325             this.el.connect( sig, _li);
326         }
327              
328         
329     },
330      /**
331       * @method get
332       * Finds an object in the child elements using xid of object.
333       * prefix with '.' to look up the tree.. 
334       * prefix with multiple '..' to look further up..
335       * prefix with '/' to look from the top, eg. '^LeftTree.model'
336       * 
337       * @arg name  {String} name of signal
338       * @return   {XObject|false} the object if found.
339       */
340     get : function(xid)
341     {
342         if (XObject.debug) print("SEARCH FOR " + xid + " in " + this.id);
343         var ret=  false;
344         var oid = '' + xid;
345         if (!xid.length) {
346             throw {
347                 name: "ArgumentError", 
348                 message : "ID not found : empty id"
349             }
350         }
351         
352         if (xid[0] == '.') {
353             return this.parent.get(xid.substring(1));
354         }
355         if (xid[0] == '/') {
356             
357             if (typeof(XObject.cache[xid]) != 'undefined') {
358                 return XObject.cache[xid]; 
359             }
360             if (xid.indexOf('.') > -1) {
361                 
362                 var child = xid.split('.');
363                 var nxid = child.shift();
364                     
365                 child = child.join('.');
366                 if (typeof(XObject.cache[nxid]) != 'undefined') {
367                     return XObject.cache[nxid].get(child);
368                 }
369                 
370                 
371             }
372             var e = this;
373             while (e.parent) {
374                 e = e.parent;
375             }
376             
377             try {
378                 ret = e.get(xid.substring(1));
379             } catch (ex) { }
380             
381             if (!ret) {
382                 throw {
383                     name: "ArgumentError", 
384                     message : "ID not found : " + oid
385                 }
386             }
387             XObject.cache[xid] = ret;
388             return XObject.cache[xid];
389         }
390         var child = false;
391         
392         if (xid.indexOf('.') > -1) {
393             child = xid.split('.');
394             xid = child.shift();
395             
396             child = child.join('.');
397             
398         }
399         if (xid == this.id) {
400             try {
401                 return child === false ? this : this.get(child);
402             } catch (ex) {
403                 throw {
404                     name: "ArgumentError", 
405                     message : "ID not found : " + oid
406                 }
407             }
408             
409         }
410         
411         
412         this.items.forEach(function(ch) {
413             if (ret) {
414                 return;
415             }
416             if (ch.id == xid) {
417                 ret = ch;
418             }
419         })
420         if (ret) {
421             try {
422                 return child === false ? ret : ret.get(child);
423             } catch (ex) {
424                 throw {
425                     name: "ArgumentError", 
426                     message : "ID not found : " + oid
427                 }
428             }
429             
430         }
431         // iterate children.
432         var _this = this;
433         this.items.forEach(function(ch) {
434             if (ret) {
435                 return;
436             }
437             if (!ch.get) {
438                 print("invalid item...");
439                 imports.console.dump(_this);
440                 Seed.quit();
441             }
442             try {
443                 ret = ch.get(xid);
444             } catch (ex) { }
445             
446             
447         });
448         if (!ret) {
449             throw {
450                 name: "ArgumentError", 
451                 message : "ID not found : " + oid
452             }
453         }
454         try {
455             return child === false ? ret : ret.get(child);
456         } catch (ex) {
457             throw {
458                 name: "ArgumentError", 
459                 message : "ID not found : " + oid
460             }
461         }
462     }
463       
464       
465
466          
467      
468 /**
469  * Copies all the properties of config to obj.
470  *
471  * Pretty much the same as JQuery/Prototype..
472  * @param {Object} obj The receiver of the properties
473  * @param {Object} config The source of the properties
474  * @param {Object} defaults A different object that will also be applied for default values
475  * @return {Object} returns obj
476  * @member XObject extend
477  */
478
479
480 XObject.extend = function(o, c, defaults){
481     if(defaults){
482         // no "this" reference for friendly out of scope calls
483         XObject.extend(o, defaults);
484     }
485     if(o && c && typeof c == 'object'){
486         for(var p in c){
487             o[p] = c[p];
488         }
489     }
490     return o;
491 };
492
493 XObject.extend(XObject,
494 {
495      
496     /**
497      * @property {Boolean} debug XObject  debugging.  - set to true to debug.
498      * 
499      */
500     debug : false,
501     /**
502      * @property {Object} cache - cache of object ids
503      * 
504      */
505     cache: { },
506     
507     /**
508      * Copies all the properties of config to obj, if the do not exist.
509      * @param {Object} obj The receiver of the properties
510      * @param {Object} config The source of the properties
511      * @return {Object} returns obj
512      * @member Object extendIf
513      */
514
515
516     extendIf : function(o, c){
517
518         if(!o || !c || typeof c != 'object'){
519             return o;
520         }
521         for(var p in c){
522             if (typeof(o[p]) != 'undefined') {
523                 continue;
524             }
525             o[p] = c[p];
526         }
527         return o;
528     },
529
530  
531
532     /**
533      * Extends one class with another class and optionally overrides members with the passed literal. This class
534      * also adds the function "override()" to the class that can be used to override
535      * members on an instance.
536      *
537      * usage:
538      * MyObject = Object.define(
539      *     function(...) {
540      *          ....
541      *     },
542      *     parentClass, // or Object
543      *     {
544      *        ... methods and properties.
545      *     }
546      * });
547      * @param {Function} constructor The class inheriting the functionality
548      * @param {Object} superclass The class being extended
549      * @param {Object} overrides (optional) A literal with members
550      * @return {Function} constructor (eg. class
551      * @method define
552      */
553     define : function(){
554         // inline overrides
555         var io = function(o){
556             for(var m in o){
557                 this[m] = o[m];
558             }
559         };
560         return function(constructor, parentClass, overrides) {
561             if (typeof(parentClass) == 'undefined') {
562                 print("XObject.define: Missing parentClass: when applying: " );
563                 print(new String(constructor));
564                 Seed.quit(); 
565             }
566             if (typeof(parentClass.prototype) == 'undefined') {
567                 print("Missing protype: when applying: " );
568                 print(new String(constructor));
569                 print(new String(parentClass));
570                 Seed.quit(); 
571             }
572             var F = function(){};
573             var sbp;
574             var spp = parentClass.prototype;
575             
576             F.prototype = spp;
577             sbp = constructor.prototype = new F();
578             sbp.constructor=constructor;
579             constructor.superclass=spp;
580
581             // extends Object.
582             if(spp.constructor == Object.prototype.constructor){
583                 spp.constructor=parentClass;
584             }
585             
586             constructor.override = function(o){
587                 Object.extend(constructor.prototype, o);
588             };
589             sbp.override = io;
590             XObject.extend(constructor.prototype, overrides);
591             return constructor;
592         };
593     }(),
594
595          
596     /**
597      * returns a list of keys of the object.
598      * @param {Object} obj object to inspect
599      * @return {Array} returns list of kyes
600      * @member XObject keys
601      */
602     keys : function(o)
603     {
604         var ret = [];
605         for(var i in o) {
606             ret.push(i);
607         }
608         return ret;
609     },
610       
611     /**
612      * @member XObject createDelegate
613      * creates a delage metdhod
614      * @param {Function} method to wrap
615      * @param {Object} scope 
616      * @param {Array} args to add
617      * @param {Boolean|Number} append arguments or replace after N arguments.
618      * @return {Function} returns the delegate
619      */
620
621     createDelegate : function(method, obj, args, appendArgs){
622         
623         return function() {
624             if (XObject.debug) print("CALL: " + obj.id + ':'+ method.id);
625             
626             var callArgs = args || arguments;
627             if(appendArgs === true){
628                 callArgs = Array.prototype.slice.call(arguments, 0);
629                 callArgs = callArgs.concat(args);
630             }else if(typeof appendArgs == "number"){
631                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
632                     var applyArgs = [appendArgs, 0].concat(args); // create method call params
633                     Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
634                 }
635                 return method.apply(obj || window, callArgs);
636             };
637     }
638     
639 });