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