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             if (i[0] == '.') { // parent? - 
200                 continue;
201             }
202             this.el[i] = this.config[i];
203         }
204         
205         // register it!
206         //if (o.xnsid  && o.id) {
207          //   XObject.registry = XObject.registry || { };
208          //   XObject.registry[o.xnsid] = XObject.registry[o.xnsid] || {}; 
209          //   XObject.registry[o.xnsid][o.id] = this;
210         //}
211         
212         var type = GObject.type_name(this.xtype.type);
213         print("MAKE " + type);
214         
215         
216         var _this=this;
217         items.forEach(function(i) {
218             _this.addItem(i);
219         })
220             
221         
222         for (var i in this.listeners) {
223             this.addListener(i, this.listeners[i]);
224         }
225         
226         // delete this.listeners ?
227         // do again so child props work!
228         for (var i in this.config) {
229             if (i[0] != '.') { // problem with Gtk.Window... - not decided on a better way to handle this.
230                 continue;
231             }
232             this.parent.el.child_set_property(this.el, i.substring(1), this.config[i]);
233         }
234         // do we need to call 'init here?'
235     },
236       
237      
238      /**
239       * @method addItem
240       * Adds an item to the object using a new XObject
241       * uses pack property to determine how to add it.
242       * @arg cfg {Object} same as XObject constructor.
243       */
244     addItem : function(o) {
245         if (typeof(o) == 'undefined') {
246             print("Invalid Item added to this!");
247             imports.console.dump(this);
248             Seed.quit();
249         }
250         // what about extended items!?!?!?
251         var item = (o.constructor == XObject) ? o : new XObject(o);
252         item.parent = this;
253         this.items.push(item);
254         item.init();
255         //print("CTR:PROTO:" + ( item.id ? item.id : '??'));
256        // print("addItem - call init [" + item.pack.join(',') + ']');
257         if (!item.el) {
258             print("NO EL!");
259             imports.console.dump(item);
260             Seed.quit();
261         }
262          
263         
264         if (item.pack===false) {  // no 
265             return;
266         }
267         if (typeof(item.pack) == 'function') {
268             // parent, child
269             item.pack.apply(item, [ this , item  ]);
270             item.parent = this;
271             return;
272         }
273         var args = [];
274         var pack_m  = false;
275         if (typeof(item.pack) == 'string') {
276              
277             item.pack.split(',').forEach(function(e, i) {
278                 
279                 if (e == 'false') { args.push( false); return; }
280                 if (e == 'true') {  args.push( true);  return; }
281                 if (!isNaN(parseInt(e))) { args.push( parseInt(e)); return; }
282                 args.push(e);
283             });
284             //print(args.join(","));
285             
286             pack_m = args.shift();
287         } else {
288             pack_m = item.pack.shift();
289             args = item.pack;
290         }
291         
292         // handle error.
293         if (pack_m && typeof(this.el[pack_m]) == 'undefined') {
294             
295             throw {
296                 name: "ArgumentError", 
297                 message : 'pack method not available : ' + this.id + " : " + this.xtype + '.' +  pack_m + " ADDING " + item.el
298                     
299             }
300            
301             
302             
303             
304             return;
305         }
306         
307         
308         //Seed.print('Pack ' + this.el + '.'+ pack_m + '(' + item.el + ')');
309
310         args.unshift(item.el);
311         if (XObject.debug) print(pack_m + '[' + args.join(',') +']');
312         //Seed.print('args: ' + args.length);
313         if (pack_m) {
314             this.el[pack_m].apply(this.el, args);
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         fn.id= sig;
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             
371             if (typeof(XObject.cache[xid]) != 'undefined') {
372                 return XObject.cache[xid]; 
373             }
374             if (xid.indexOf('.') > -1) {
375                 
376                 var child = xid.split('.');
377                 var nxid = child.shift();
378                     
379                 child = child.join('.');
380                 if (typeof(XObject.cache[nxid]) != 'undefined') {
381                     return XObject.cache[nxid].get(child);
382                 }
383                 
384                 
385             }
386             var e = this;
387             while (e.parent) {
388                 e = e.parent;
389             }
390             
391             try {
392                 ret = e.get(xid.substring(1));
393             } catch (ex) { }
394             
395             if (!ret) {
396                 throw {
397                     name: "ArgumentError", 
398                     message : "ID not found : " + oid
399                 }
400             }
401             XObject.cache[xid] = ret;
402             return XObject.cache[xid];
403         }
404         var child = false;
405         
406         if (xid.indexOf('.') > -1) {
407             child = xid.split('.');
408             xid = child.shift();
409             
410             child = child.join('.');
411             
412         }
413         if (xid == this.id) {
414             try {
415                 return child === false ? this : this.get(child);
416             } catch (ex) {
417                 throw {
418                     name: "ArgumentError", 
419                     message : "ID not found : " + oid
420                 }
421             }
422             
423         }
424         
425         
426         this.items.forEach(function(ch) {
427             if (ret) {
428                 return;
429             }
430             if (ch.id == xid) {
431                 ret = ch;
432             }
433         })
434         if (ret) {
435             try {
436                 return child === false ? ret : ret.get(child);
437             } catch (ex) {
438                 throw {
439                     name: "ArgumentError", 
440                     message : "ID not found : " + oid
441                 }
442             }
443             
444         }
445         // iterate children.
446         var _this = this;
447         this.items.forEach(function(ch) {
448             if (ret) {
449                 return;
450             }
451             if (!ch.get) {
452                 print("invalid item...");
453                 imports.console.dump(_this);
454                 Seed.quit();
455             }
456             try {
457                 ret = ch.get(xid);
458             } catch (ex) { }
459             
460             
461         });
462         if (!ret) {
463             throw {
464                 name: "ArgumentError", 
465                 message : "ID not found : " + oid
466             }
467         }
468         try {
469             return child === false ? ret : ret.get(child);
470         } catch (ex) {
471             throw {
472                 name: "ArgumentError", 
473                 message : "ID not found : " + oid
474             }
475         }
476     }
477       
478       
479
480          
481      
482 /**
483  * Copies all the properties of config to obj.
484  *
485  * Pretty much the same as JQuery/Prototype..
486  * @param {Object} obj The receiver of the properties
487  * @param {Object} config The source of the properties
488  * @param {Object} defaults A different object that will also be applied for default values
489  * @return {Object} returns obj
490  * @member XObject extend
491  */
492
493
494 XObject.extend = function(o, c, defaults){
495     if(defaults){
496         // no "this" reference for friendly out of scope calls
497         XObject.extend(o, defaults);
498     }
499     if(o && c && typeof c == 'object'){
500         for(var p in c){
501             o[p] = c[p];
502         }
503     }
504     return o;
505 };
506
507 XObject.extend(XObject,
508 {
509      
510     /**
511      * @property {Boolean} debug XObject  debugging.  - set to true to debug.
512      * 
513      */
514     debug : false,
515     /**
516      * @property {Object} cache - cache of object ids
517      * 
518      */
519     cache: { },
520     
521     /**
522      * Copies all the properties of config to obj, if the do not exist.
523      * @param {Object} obj The receiver of the properties
524      * @param {Object} config The source of the properties
525      * @return {Object} returns obj
526      * @member Object extendIf
527      */
528
529
530     extendIf : function(o, c){
531
532         if(!o || !c || typeof c != 'object'){
533             return o;
534         }
535         for(var p in c){
536             if (typeof(o[p]) != 'undefined') {
537                 continue;
538             }
539             o[p] = c[p];
540         }
541         return o;
542     },
543
544  
545
546     /**
547      * Extends one class with another class and optionally overrides members with the passed literal. This class
548      * also adds the function "override()" to the class that can be used to override
549      * members on an instance.
550      *
551      * usage:
552      * MyObject = Object.define(
553      *     function(...) {
554      *          ....
555      *     },
556      *     parentClass, // or Object
557      *     {
558      *        ... methods and properties.
559      *     }
560      * });
561      * @param {Function} constructor The class inheriting the functionality
562      * @param {Object} superclass The class being extended
563      * @param {Object} overrides (optional) A literal with members
564      * @return {Function} constructor (eg. class
565      * @method define
566      */
567     define : function(){
568         // inline overrides
569         var io = function(o){
570             for(var m in o){
571                 this[m] = o[m];
572             }
573         };
574         return function(constructor, parentClass, overrides) {
575             if (typeof(parentClass) == 'undefined') {
576                 print("XObject.define: Missing parentClass: when applying: " );
577                 print(new String(constructor));
578                 Seed.quit(); 
579             }
580             if (typeof(parentClass.prototype) == 'undefined') {
581                 print("Missing protype: when applying: " );
582                 print(new String(constructor));
583                 print(new String(parentClass));
584                 Seed.quit(); 
585             }
586             var F = function(){};
587             var sbp;
588             var spp = parentClass.prototype;
589             
590             F.prototype = spp;
591             sbp = constructor.prototype = new F();
592             sbp.constructor=constructor;
593             constructor.superclass=spp;
594
595             // extends Object.
596             if(spp.constructor == Object.prototype.constructor){
597                 spp.constructor=parentClass;
598             }
599             
600             constructor.override = function(o){
601                 Object.extend(constructor.prototype, o);
602             };
603             sbp.override = io;
604             XObject.extend(constructor.prototype, overrides);
605             return constructor;
606         };
607     }(),
608
609          
610     /**
611      * returns a list of keys of the object.
612      * @param {Object} obj object to inspect
613      * @return {Array} returns list of kyes
614      * @member XObject keys
615      */
616     keys : function(o)
617     {
618         var ret = [];
619         for(var i in o) {
620             ret.push(i);
621         }
622         return ret;
623     },
624       
625     /**
626      * @member XObject createDelegate
627      * creates a delage metdhod
628      * @param {Function} method to wrap
629      * @param {Object} scope 
630      * @param {Array} args to add
631      * @param {Boolean|Number} append arguments or replace after N arguments.
632      * @return {Function} returns the delegate
633      */
634
635     createDelegate : function(method, obj, args, appendArgs){
636         
637         return function() {
638             if (XObject.debug) print("CALL: " + obj.id + ':'+ method.id);
639             
640             var callArgs = args || arguments;
641             if(appendArgs === true){
642                 callArgs = Array.prototype.slice.call(arguments, 0);
643                 callArgs = callArgs.concat(args);
644             }else if(typeof appendArgs == "number"){
645                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
646                     var applyArgs = [appendArgs, 0].concat(args); // create method call params
647                     Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
648                 }
649                 return method.apply(obj || window, callArgs);
650             };
651     }
652     
653 });