23f64421271e14a068ea7f79a5debdadd71a95a3
[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[pos]));
260             
261             print(JSON.stringify(this.tokens,null,4)); Seed.quit();
262             Seed.quit();
263             
264         },
265         
266         
267         
268         /**
269          *  parse Imports lines.
270          *
271          */
272         
273         parseImports : function()
274         {
275            // console.dump(this.tokens);
276             this.giImports = [];
277             this.imports= [];
278             while (true) {
279                 var pos = this.lookFor('=');
280                 if (pos < 0)  {
281                     break;
282                 }
283                 this.cursor = pos;
284                 var k = this.look(-1, true);
285                 var v = this.look(1, true);
286                // Seed.print(k.data + " => " + v.data);
287                
288                 /// finish!!! - not an import ...
289                
290                 if (!v.data.match(/^imports/)) {
291                     return; ///
292                     
293                     this.cursor++;
294                     continue;
295                 }
296                 if (v.data.match(/^imports\.gi/)) {
297                     // gi import..
298                     this.giImports.push(v.data.replace(/imports\.gi\./, ''));
299                     
300                     this.cursor++;
301                     continue;
302                 }
303                   
304                 // two types of import left
305                 // imports.xnew
306                 if (v.data.match(/^imports\./)) {
307                     this.imports[k.data] = v.data.replace(/imports\./, '') + '.js';
308                     this.cursor++;
309                     continue;
310                 }
311                 // imports[.....]
312                 this.cursor++;
313                 if (this.lookFor('[') > this.lookFor('=')) {
314                     continue;
315                 }
316                 var bpos = this.lookFor('[');
317                // console.dump(this.tokens[bpos]);
318                 
319                 this.imports[k.data] = this.tokens[bpos].items[0][0].toJS();
320                 
321                 this.cursor++;
322                 
323             }
324         //    console.dump(this.giImports);
325           //  console.dump(this.imports);
326             //Seed.quit();
327             
328         },
329         
330         ///------------------- GENERIC PARSING ------------------
331         
332         
333         
334         
335         
336         
337         parseProps:  function(o)
338         {
339             //print(JSON.stringify(o,null,4));
340             
341             var ret = { };
342             var fakeItems =  [];
343             for(var k in o) {
344                 
345                 //print( "parsing prop: " + k);
346                 if (o[k].key.data == '}') {
347                     // typo trailing comma in object def.
348                     continue;
349                 }
350                 
351                 var kv = k;
352                 if (o[k].key.type == 'STRN') {
353                     kv = o[k].key.toJS();
354                 }
355                 if (!o[k].val.length) {
356                     console.dump(o[k]);
357                 }
358                 
359                 //console.dump(o[k]);
360                 if (o[k].val[0].data == "function") {
361                     // add comments..
362                   //   console.dump(o[k].key.prefix); 
363                     var pr = typeof(o[k].key.prefix) == 'undefined' ? '' : o[k].key.prefix ;
364                     pr = this.clean_prefix( pr) ;
365                     if (pr.length) {
366                         ret['//' +kv ] =  pr;
367                     }
368                     //print("running expand");
369                     ret['|' +kv ] =  this.clean_body( this.expand(o[k].val));
370                     continue;
371                 }
372                 
373                 
374                 if (o[k].val[0].data == "[") {
375                     
376                     if (o[k].val[0].items[0][0].data == '{') {
377                         // array of objects..
378                         
379                         // this works for items..
380                         
381                         // used elsewhere for buttons: -> in which case we have a fake xtype
382                         
383                         
384                         
385                         // if K is not ITEMS - we need to add '*prop' -> and add it to the items array..
386                         var add = this.parseArray(o[k].val[0].items);
387                         if (kv == 'items') {
388                             ret[kv] = add;
389                             continue;
390                         }
391                         var fake_array = {
392                             xtype : 'Array.' + kv,
393                             '*prop' : kv,
394                             items : add
395                         }
396                         fakeItems.push(fake_array);
397                         continue;
398                     } 
399                     // raw array 
400                     
401                     
402                     ret['|' +kv ] =  this.clean_body(this.expand(o[k].val)); // remove ','...
403                     continue;
404                 }
405                 if (o[k].val[0].data == "(") {
406                     ret['|' +kv ] =  this.expand(o[k].val);
407                     continue;
408                 }
409                 // value is an object..
410                 
411                 if (o[k].val[0].data == "{") {
412                     
413                     // things that can be property of object type:
414                     // listeners, set, 
415                     var add = this.parseProps(o[k].val[0].props);
416                     
417                     
418                     
419                     if (kv == 'set' || kv =='listeners') {
420                         ret[kv ] = add;
421                         continue;
422                     }
423                     if ((typeof(add.xtype) != 'undefined') ||  ['sortInfo', 'center', 'east', 'west', 'north', 'south'].indexOf(kv) > -1) {
424                         add['*prop'] =  kv;
425                         fakeItems.push(add);
426                         continue;
427                     }
428                     
429                     
430                     ret[ '|' + kv ] =  this.expand(o[k].val);
431                     
432                     
433                     // this hsould be added to 'items', with a *prop element..
434                     continue;
435                 }
436                 //console.dump(o[k].val);
437                 
438                 if (o[k].val[1].data == ',' || o[k].val[1].data == '}') {
439                     // single item piece of data...
440                     var t1= o[k].val[0];
441                     switch(o[k].val[0].type) {
442                         case 'STRN':
443                         case 'NUMB':
444                         case 'KEYW':
445                             ret[  kv ]  = t1.toJS();
446                             continue;
447                         case 'NAME':
448                             ret[ '|' + kv ] =  t1.data;
449                             continue;
450                         
451                     }
452                 }
453                
454                 ret[ '|' + kv ] =  this.expand(o[k].val);
455                 
456             }
457             if (!ret.items && fakeItems.length) {
458                 ret.items = [];
459             }
460             fakeItems.forEach(  function(e) {
461                 ret.items.push(e);
462             });
463             // merge fakeItems;
464             //console.dump(ret);
465             
466             return ret;
467         },
468         parseArray: function(ar) {
469           // console.dump(ar);
470            // Seed.quit();
471             var ret = [];
472             ar.map(function (e) {
473                 // has no props...
474                 if (typeof(e[0].props) == 'undefined') {
475                     return;
476                 }
477                
478                 
479                 ret.push( this.parseProps(e[0].props));
480                      
481             },this);
482              
483             return ret;
484           
485         },
486         
487         
488         expand: function(ar)
489         {
490             var ret = '';
491             //print(JSON.stringify(ar,null,4));
492             
493             for(var i =0 ; i < ar.length -1; i++) {
494                 ret += ar[i].toRaw();
495             }
496             
497             return ret;
498             
499             
500         },
501         clean_body : function(str)
502         {
503             var lns = str.split("\n");
504             var mindent = -1;
505             lns.map( function(l, i) {
506                 if (!i || !l.length || l.match(/^\s+$/)) {
507                     return;
508                 }
509                 
510                 var spc = l.match(/\s+/);
511                 if (!spc || !spc[0].length) {
512                     return;
513                 }
514                 mindent = mindent < 0 ? spc[0].length : Math.min(spc[0].length, mindent);
515                 
516             });
517             //console.log(mindent + ":" + lns[0]);
518             var ar = [];
519             if (mindent < 0) {
520                 return str;
521             }
522             lns.map( function(l,i) {
523                 if (!i) {
524                     ar.push(l.replace(/^\s+/, ''));
525                     return;
526                 }
527                 ar.push(l.substring(mindent));
528             });
529             return ar.join("\n");
530         },
531         clean_prefix: function(str) {
532             
533             
534             
535             if (!str.length) {
536                 return '';
537             }
538             var ret = str.replace(/^\s+/gm, "\n").replace(/\n+/gm, "\n");
539             return ret == "\n" ? '' : ret;
540             
541         }    
542              
543     
544 });