JSDOC/RooFile.js
[gnome.introspection-doc-generator] / JSDOC / RooFile.js
1 //<script type="text/javscript">
2
3 XObject = imports.XObject.XObject;
4 console     = imports.console.console;
5 Collapse = imports.Collapse.Collapse;
6 /**
7  * 
8  * this takes our collased file, and turns it into the config array..
9  * 
10  * @see rconv.js (our tester file)
11  * 
12  * STATUS:
13  *
14  *  - Pman.Tab.* appears to work.
15  * .. next up ..Dialog...
16  * 
17  */
18
19 RooFile  =  XObject.define(
20     function (ar)
21     {
22         RooFile.superclass.constructor.call(this, ar);
23        // console.log("STARTING OUTPUT");
24         
25          
26
27     },
28     Collapse, 
29     {
30         
31         cfg : { },
32
33         parse: function()
34         {
35             // standard pman dialog
36             if (this.tokens[0].data == 'Pman.on') {
37                 this.parsePmanLayout();
38                 return;
39             }
40          
41             
42             // Standard Pman Dialog - 
43             if (this.tokens[2].props && typeof(this.tokens[2].props.create) != 'undefined') {
44                 this.parsePmanDialog();
45                 return;
46             }
47             
48             
49             // Seed Gtk XObject application. 
50             if (this.tokens.length > 2 && this.tokens[2].data.match(/^imports\./)) {
51                 this.parseXObject();
52                 return;
53             }
54             
55             Seed.print("Unknown format");
56             Seed.print(JSON.stringify(this.tokens,null,4));
57             Seed.quit();
58             
59             
60             
61             // perfect for dialogs...
62             
63             
64             var pos = this.lookFor( 'function');
65             
66             // XXXXX = function(
67             var cfg = {};
68             
69             if (pos > -1 && (this.tokens[pos-1].data == '=') && (this.tokens[pos-2].type == 'NAME')) {
70                 
71                 this.cfg = {
72                     '*class' : this.tokens[pos-2].data,
73                     '*extends' : '',
74                     '//constructor' :  this.tokens[pos-2].prefix,
75                     '|constructor' : 'function ' + this.tokens[pos+1].toRaw() + 
76                             this.tokens[pos+2].toRaw()
77                     
78                 };
79                 this.cursor = pos+2;
80                 
81             }
82             
83             if (pos < 0) {
84                 // no function - we have a static one...
85                 pos = this.lookFor( '=');
86                 if (pos > 1 && 
87                     (this.tokens[pos-1].type == 'NAME') &&
88                     (this.tokens[pos+1].data == '{')
89                 ) {
90                     this.cfg = {
91                         '*class' : this.tokens[pos-1].data,
92                         '//*class' :  this.tokens[pos-1].prefix
93                         
94                         
95                     };
96                     XObject.extend(this.cfg, this.parseProps(this.tokens[pos+1].props));
97                     return;
98                     
99                 }
100                 
101                 
102                 
103             }
104             
105             
106               // Roo.apply (l
107             var pos = this.lookFor( 'Roo.apply');
108             //console.dump(this.tokens);
109             
110             
111             if (
112                 (pos > -1) &&
113                 (this.tokens[pos+1].items[0][0].data  == this.cfg['*class'] + '.prototype')
114             ) {
115                 // XXXXXx.prototype = {
116                 
117                 
118                     
119                 XObject.extend(this.cfg, this.parseProps(this.tokens[pos+1].items[1][0].props));
120                 return;
121                 
122             }
123             
124             
125             var pos = this.lookFor('new');
126             
127             if (pos > -1 && 
128                 (this.tokens[pos-2].type == 'NAME') &&
129                 (this.tokens[pos-1].data == '=') && 
130                 (this.tokens[pos+1].type == 'NAME') &&
131                 (this.tokens[pos+2].data == '(') 
132             ) {
133                 
134                 this.cfg = {
135                     '//*class' : this.tokens[pos-2].prefix,
136                     '*class' : this.tokens[pos-2].data,
137                     '*extends' : this.tokens[pos+1].data
138                 };
139                     
140                 XObject.extend(this.cfg, this.parseProps(this.tokens[pos+2].items[0][0].props));
141                 
142                 return;
143                 
144             }
145             
146             ///Builder.Provider.ProjectManager = new Roo.Observable({
147                 
148             
149             
150             var pos = this.lookFor( 'Roo.extend');
151             if (pos > -1) {
152                 
153                 this.cfg['*extends'] = this.tokens[pos+1].items[1][0].data;
154                 XObject.extend(this.cfg, this.parseProps(this.tokens[pos+1].items[2][0].props));
155                 
156                 // no more..
157                 return;
158             }
159             
160              
161                 
162             var pos = this.lookFor( 'Roo.extend');
163             if (pos > -1) {
164                 
165                 this.cfg['*extends'] = this.tokens[pos+1].items[1][0].data;
166                 XObject.extend(this.cfg, this.parseProps(this.tokens[pos+1].items[2][0].props));
167                 
168                 // no more..
169                 return;
170             }
171             
172             
173             
174             //console.dump(cfg);
175             //Seed.quit();
176             
177             
178             
179             // other type of layout
180           //  console.dump(this.tokens);
181             
182             // this type of file..
183             // xxxx.xxx = function
184             // -> into |constructor..
185             // -> extend + prototype
186              
187             
188             
189                 
190         },
191         
192         
193         parsePmanLayout : function()
194         {
195                 // then it's a layout style..
196             
197             //Seed.quit();
198             
199             
200             //console.dump(this.tokens);
201             //              the list of statements inside of function..?
202             
203             
204             var stmts =  this.tokens[1].items[1][2].items;
205             
206             // look for register..
207             var topp = false;
208             stmts.map( function(s, i) {
209                 if (s[0].data == 'Pman.register') {
210                     topp = brace = s[1].items[0][0].props;
211                 }
212             });
213             if (!topp) {
214                 console.dump(this.tokens);
215                 throw "could not find top props...";
216                 
217             }
218             
219             this.cfg = this.parseProps(topp);
220             this.cfg.name = this.tokens[3].data;
221             
222             
223             //                  (            {          add    { this.panel (  {
224             var cfg = this.tokens[7].items[0][0].props.add.val[2].items[2][3].items[0][0].props;
225             this.cfg.items = [ this.parseProps(cfg) ];
226             //console.dump(this.cfg); 
227         },
228         
229         
230         parsePmanDialog : function() {
231             
232             //console.dump(this.tokens);
233             this.cfg.name = this.tokens[0].data;
234             
235             
236             
237             var cfg = this.tokens[2].props.create.val[2].items[1][3].items[0][0].props;
238             //console.dump(this.tokens);
239             //print(JSON.stringify(cfg,null,4)); Seed.quit();
240             
241            // print("Trying standard dialog");Seed.quit();;
242             
243             this.cfg.items = [ this.parseProps(cfg) ];
244             return;
245             
246         },
247         
248         // Seed xobject file.
249         parseXObject : function() {
250             
251             this.parseImports();
252             print(JSON.stringify(this.imports,null,4));
253             print(JSON.stringify(this.giImports,null,4));
254              
255             var pos = this.lookFor('XObject');
256             if (pos < 0)  {
257                 throw "Can not find XObject";
258             }
259             print(JSON.stringify(this.tokens,null,4)); Seed.quit();
260             Seed.quit();
261             
262         },
263         
264         
265         
266         /**
267          *  parse Imports lines.
268          *
269          */
270         
271         parseImports : function()
272         {
273            // console.dump(this.tokens);
274             this.giImports = [];
275             this.imports= [];
276             while (true) {
277                 var pos = this.lookFor('=');
278                 if (pos < 0)  {
279                     break;
280                 }
281                 this.cursor = pos;
282                 var k = this.look(-1, true);
283                 var v = this.look(1, true);
284                // Seed.print(k.data + " => " + v.data);
285                
286                 /// finish!!! - not an import ...
287                
288                 if (!v.data.match(/^imports/)) {
289                     return; ///
290                     
291                     this.cursor++;
292                     continue;
293                 }
294                 if (v.data.match(/^imports\.gi/)) {
295                     // gi import..
296                     this.giImports.push(v.data.replace(/imports\.gi\./, ''));
297                     
298                     this.cursor++;
299                     continue;
300                 }
301                   
302                 // two types of import left
303                 // imports.xnew
304                 if (v.data.match(/^imports\./)) {
305                     this.imports[k.data] = v.data.replace(/imports\./, '') + '.js';
306                     this.cursor++;
307                     continue;
308                 }
309                 // imports[.....]
310                 this.cursor++;
311                 if (this.lookFor('[') > this.lookFor('=')) {
312                     continue;
313                 }
314                 var bpos = this.lookFor('[');
315                // console.dump(this.tokens[bpos]);
316                 
317                 this.imports[k.data] = this.tokens[bpos].items[0][0].toJS();
318                 
319                 this.cursor++;
320                 
321             }
322         //    console.dump(this.giImports);
323           //  console.dump(this.imports);
324             //Seed.quit();
325             
326         },
327         
328         ///------------------- GENERIC PARSING ------------------
329         
330         
331         
332         
333         
334         
335         parseProps:  function(o)
336         {
337             //print(JSON.stringify(o,null,4));
338             
339             var ret = { };
340             var fakeItems =  [];
341             for(var k in o) {
342                 
343                 //print( "parsing prop: " + k);
344                 if (o[k].key.data == '}') {
345                     // typo trailing comma in object def.
346                     continue;
347                 }
348                 
349                 var kv = k;
350                 if (o[k].key.type == 'STRN') {
351                     kv = o[k].key.toJS();
352                 }
353                 if (!o[k].val.length) {
354                     console.dump(o[k]);
355                 }
356                 
357                 //console.dump(o[k]);
358                 if (o[k].val[0].data == "function") {
359                     // add comments..
360                   //   console.dump(o[k].key.prefix); 
361                     var pr = typeof(o[k].key.prefix) == 'undefined' ? '' : o[k].key.prefix ;
362                     pr = this.clean_prefix( pr) ;
363                     if (pr.length) {
364                         ret['//' +kv ] =  pr;
365                     }
366                     //print("running expand");
367                     ret['|' +kv ] =  this.clean_body( this.expand(o[k].val));
368                     continue;
369                 }
370                 
371                 
372                 if (o[k].val[0].data == "[") {
373                     
374                     if (o[k].val[0].items[0][0].data == '{') {
375                         // array of objects..
376                         
377                         // this works for items..
378                         
379                         // used elsewhere for buttons: -> in which case we have a fake xtype
380                         
381                         
382                         
383                         // if K is not ITEMS - we need to add '*prop' -> and add it to the items array..
384                         var add = this.parseArray(o[k].val[0].items);
385                         if (kv == 'items') {
386                             ret[kv] = add;
387                             continue;
388                         }
389                         var fake_array = {
390                             xtype : 'Array.' + kv,
391                             '*prop' : kv,
392                             items : add
393                         }
394                         fakeItems.push(fake_array);
395                         continue;
396                     } 
397                     // raw array 
398                     
399                     
400                     ret['|' +kv ] =  this.clean_body(this.expand(o[k].val)); // remove ','...
401                     continue;
402                 }
403                 if (o[k].val[0].data == "(") {
404                     ret['|' +kv ] =  this.expand(o[k].val);
405                     continue;
406                 }
407                 // value is an object..
408                 
409                 if (o[k].val[0].data == "{") {
410                     
411                     // things that can be property of object type:
412                     // listeners, set, 
413                     var add = this.parseProps(o[k].val[0].props);
414                     
415                     
416                     
417                     if (kv == 'set' || kv =='listeners') {
418                         ret[kv ] = add;
419                         continue;
420                     }
421                     if ((typeof(add.xtype) != 'undefined') ||  ['sortInfo', 'center', 'east', 'west', 'north', 'south'].indexOf(kv) > -1) {
422                         add['*prop'] =  kv;
423                         fakeItems.push(add);
424                         continue;
425                     }
426                     
427                     
428                     ret[ '|' + kv ] =  this.expand(o[k].val);
429                     
430                     
431                     // this hsould be added to 'items', with a *prop element..
432                     continue;
433                 }
434                 //console.dump(o[k].val);
435                 
436                 if (o[k].val[1].data == ',' || o[k].val[1].data == '}') {
437                     // single item piece of data...
438                     var t1= o[k].val[0];
439                     switch(o[k].val[0].type) {
440                         case 'STRN':
441                         case 'NUMB':
442                         case 'KEYW':
443                             ret[  kv ]  = t1.toJS();
444                             continue;
445                         case 'NAME':
446                             ret[ '|' + kv ] =  t1.data;
447                             continue;
448                         
449                     }
450                 }
451                
452                 ret[ '|' + kv ] =  this.expand(o[k].val);
453                 
454             }
455             if (!ret.items && fakeItems.length) {
456                 ret.items = [];
457             }
458             fakeItems.forEach(  function(e) {
459                 ret.items.push(e);
460             });
461             // merge fakeItems;
462             //console.dump(ret);
463             
464             return ret;
465         },
466         parseArray: function(ar) {
467           // console.dump(ar);
468            // Seed.quit();
469             var ret = [];
470             ar.map(function (e) {
471                 // has no props...
472                 if (typeof(e[0].props) == 'undefined') {
473                     return;
474                 }
475                
476                 
477                 ret.push( this.parseProps(e[0].props));
478                      
479             },this);
480              
481             return ret;
482           
483         },
484         
485         
486         expand: function(ar)
487         {
488             var ret = '';
489             //print(JSON.stringify(ar,null,4));
490             
491             for(var i =0 ; i < ar.length -1; i++) {
492                 ret += ar[i].toRaw();
493             }
494             
495             return ret;
496             
497             
498         },
499         clean_body : function(str)
500         {
501             var lns = str.split("\n");
502             var mindent = -1;
503             lns.map( function(l, i) {
504                 if (!i || !l.length || l.match(/^\s+$/)) {
505                     return;
506                 }
507                 
508                 var spc = l.match(/\s+/);
509                 if (!spc || !spc[0].length) {
510                     return;
511                 }
512                 mindent = mindent < 0 ? spc[0].length : Math.min(spc[0].length, mindent);
513                 
514             });
515             //console.log(mindent + ":" + lns[0]);
516             var ar = [];
517             if (mindent < 0) {
518                 return str;
519             }
520             lns.map( function(l,i) {
521                 if (!i) {
522                     ar.push(l.replace(/^\s+/, ''));
523                     return;
524                 }
525                 ar.push(l.substring(mindent));
526             });
527             return ar.join("\n");
528         },
529         clean_prefix: function(str) {
530             
531             
532             
533             if (!str.length) {
534                 return '';
535             }
536             var ret = str.replace(/^\s+/gm, "\n").replace(/\n+/gm, "\n");
537             return ret == "\n" ? '' : ret;
538             
539         }    
540              
541     
542 });