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                 var child = false;
362         
363                 if (xid.indexOf('.') > -1) {
364                     child = xid.split('.');
365                     var nxid = child.shift();
366                     
367                     child = child.join('.');
368                     if (typeof(XObject.cache[nxid]) != 'undefined') {
369                         return XObject.cache[nxid].get(child);
370                     }
371                 }
372                 
373                 
374             }
375             var e = this;
376             while (e.parent) {
377                 e = e.parent;
378             }
379             
380             try {
381                 ret = e.get(xid.substring(1));
382             } catch (ex) { }
383             
384             if (!ret) {
385                 throw {
386                     name: "ArgumentError", 
387                     message : "ID not found : " + oid
388                 }
389             }
390             XObject.cache[xid] = ret;
391             return XObject.cache[xid];
392         }
393         var child = false;
394         
395         if (xid.indexOf('.') > -1) {
396             child = xid.split('.');
397             xid = child.shift();
398             
399             child = child.join('.');
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 : false,
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             if (XObject.debug) print("CALL: " + obj.id + ':'+ method.id);
628             
629             var callArgs = args || arguments;
630             if(appendArgs === true){
631                 callArgs = Array.prototype.slice.call(arguments, 0);
632                 callArgs = callArgs.concat(args);
633             }else if(typeof appendArgs == "number"){
634                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
635                     var applyArgs = [appendArgs, 0].concat(args); // create method call params
636                     Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
637                 }
638                 return method.apply(obj || window, callArgs);
639             };
640     }
641     
642 });