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