JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
1 //<Script type="text/javascript">
2
3 /**
4 * Scope stuff
5
6 * // FIXME - I need this to do next() without doccomments..
7 */
8
9 Identifier = imports['JSDOC/Identifier.js'].Identifier
10 XObject = imports.XObject.XObject; 
11
12
13 function Scope(braceN, parent, startTokN, lastIdent)
14 {
15     if (lastIdent.length) {
16        //  println("NEW SCOPE: " + lastIdent);
17     }
18     
19     this.braceN = braceN
20     this.parent = parent;
21     this.id = startTokN;
22     this.identifiers = { };
23     this.subScopes = [];
24     this.hints = { };
25     this.ident = lastIdent;
26     
27     
28     //println("ADD SCOPE(" + this.id + ") TO "+ (parent ? this.parent.id : 'TOP') + "<BR/>");
29     
30     if (parent) {
31         this.parent.subScopes.push(this);
32     } 
33     
34 }
35
36
37
38
39
40
41
42 Scope.prototype = {
43     
44     id : 0,
45     braceN : -1,
46     parent : false,
47     subScopes : false,
48     identifiers : false,  // map of identifiers to {Identifier} objects
49     hints: false, 
50     mungeM : true, 
51     ident: '',
52     
53     munged : false,
54     protectedVars : {}, // only used by to parent..
55     declareIdentifier : function(symbol, token) {
56         
57         //println("ADD IDENT(" + this.id + "):<B>" + symbol+"</B><BR/>");
58         
59         if (typeof(this.identifiers[symbol])== 'undefined') {
60             
61             this.identifiers[symbol] =  new Identifier(symbol, this);
62             
63         }
64         if (typeof(token) != 'undefined') { // shoudl this happen?
65             token.identifier = this.identifiers[symbol];
66             
67         }
68         if (this.braceN < 0) {
69                 // then it's global... 
70                 this.identifiers[symbol].toMunge  = false;
71         }
72         this.addToParentScope(symbol);
73         return this.identifiers[symbol];
74     },
75     getIdentifier : function(symbol) {
76         return (typeof(this.identifiers[symbol])== 'undefined') ? false : this.identifiers[symbol];
77     },
78     
79     addHint : function(varName, varType) {
80         this.hint[varName] = varType;
81     },
82     preventMunging : function() {
83         this.mungeM = false;
84     },
85
86     usedsymcache : false,
87     
88     getUsedSymbols : function() {
89         
90         var result = [];
91        // if (this.usedsymcache !== false) {
92         //    return this.usedsymcache;
93         //}
94         
95         var idents = this.identifiers;
96         for(var i in idents) { 
97             //println('<b>'+i+'</b>='+typeof(idents[i]) +'<br/>');
98             var identifier = this.identifiers[i];
99             var mungedValue = identifier.mungedValue
100             if (!mungedValue.length) {
101                 //println(identifier.toSource());
102                 mungedValue = identifier.name;
103             }
104             result.push(mungedValue);
105         }
106         //println("Symbols for ("+ this.id +"): <B>" + result.join(',') + "</B><BR/>");
107         //this.usedsymcache = result;
108         return result;
109     },
110
111     getAllUsedSymbols :function() {
112         var result = this.getUsedSymbols();
113         var scope = this.parent;
114         while (scope !== false) {
115             //println("addused:"+scope.id);
116             result = result.concat(scope.getUsedSymbols());
117             scope = scope.parent;
118         }
119          //println("Done - addused");
120         return result;
121     },
122     /** - we need to register short vairalbes so they never get munged into.. */
123     addToParentScope: function(ident) 
124     {
125         if (ident.length > 2) {
126             return;
127         }
128         var scope = this.parent;
129         while (scope !== false) {
130             //println("addused:"+scope.id);
131             if (!scope.parent) {
132                 scope.protectedVars[ident] = true;
133             }
134             scope = scope.parent;
135         }
136         
137     },
138     isProtectedVar: function(ident)
139     {
140         if (ident.length > 2) {
141             return false;
142         }
143         var scope = this.parent;
144         while (scope !== false) {
145             //println("addused:"+scope.id);
146             if (!scope.parent) {
147                 if (typeof(scope.protectedVars[ident])  != 'undefined') return true;
148             }
149             scope = scope.parent;
150         }
151         return false;
152     },
153     
154     /**
155      * set's all the munged values on the identifiers.
156      * 
157      * 
158      */
159
160     munge :function() 
161     {
162
163         if (!this.mungeM) {
164             // Stop right here if this scope was flagged as unsafe for munging.
165            // println("MUNGE: SKIP -  Scope" + this.id+"</BR>");
166             return;
167         }
168         if (this.munged) {
169             return;
170         }
171         
172
173         
174         
175         var pickFromSet = 1;
176
177         // Do not munge symbols in the global scope!
178         if (this.parent) {
179             
180             var all = [];
181             for (var ii in this.identifiers) {
182                 all.push(ii);
183             }
184             //print("MUNGE: " + all.join(', '));
185             
186             //println("MUNGE: Building FreeSyms:" + this.id+"</BR>");
187             
188             var freeSymbols = [];
189             var sy = this.getAllUsedSymbols();
190             
191             var addSyms=function(batch)
192             {
193                 for(var i =0;i<batch.length;i++) {
194                     if (sy.indexOf(batch[i]) > -1) {
195                         continue;
196                     }
197                     freeSymbols.push(batch[i]);
198                 }
199             }
200              
201             addSyms(Scope.ones); 
202              
203             var repsym = '';
204             //println(freeSymbols.toSource());
205             
206             //println("MUNGE: Replacing " + this.id+"</BR>");
207             for (var i in  this.identifiers) {
208                 
209                 // is the identifer in the global scope!?!!?
210                 
211                 
212                 if (!this.identifiers[i].toMunge) {
213                     //print("SKIP toMunge==false : " + i)
214                     continue;
215                 }
216                 
217                 if (this.isProtectedVar(i)) {
218                     //print("SKIP PROTECTED: " + i)
219                     continue; // 
220                 }
221                 
222                 
223                 
224                 //if (this.identifiers[i].constructor !=  Identifier) {
225                 //    print("SKIP NOT IDENTIFIER : " + i)
226                 //    continue;
227                // }
228                // println("IDENT:" +i+'</BR>');
229                 
230                 if (!repsym.length) {
231                     if (!freeSymbols.length) {
232                         addSyms(JSDOC.Scope.twos); 
233                     }
234                     repsym = freeSymbols.shift(); // pop off beginngin???
235                 }
236                 
237                 var identifier = this.identifiers[i]; 
238                 //println(typeof(identifier.name));
239                 var mungedValue = identifier.name; 
240                 
241                 //println([     repsym,mungedValue ]);
242                 
243                 if (this.mungeM && repsym.length < mungedValue.length) {
244                     //print("REPLACE:"+ mungedValue +" with " + repsym );    
245                     mungedValue = repsym;
246                     repsym = '';
247                 }
248                 
249                 identifier.mungedValue =  mungedValue;
250             }
251             //println("MUNGE: Done " + this.id+"</BR>");
252         }
253         this.munged = true;
254         //println("Doing sub scopes");
255         for (var i = 0; i < this.subScopes.length; i++) {
256             var ss = this.subScopes[i];
257             ss.munge();
258         }
259     }
260  
261
262 };
263
264
265
266
267
268 XObject.extend(Scope, {
269     
270     builtin : ["NaN","top"],
271     skips : [  'as', 'is', 'do', 'if', 'in', 'for', 'int', 'new', 'try', 'use', 'var', "NaN","top"],
272      
273     ones : [],
274     twos : [],
275     threes : [],
276     init : function () {
277         /* cache it later?
278         if (File.exists('/tmp/var_list_ones.js')) {
279             eval("JSDOC.Scope.ones = " + File.read('/tmp/var_list_ones.js'));
280             eval("JSDOC.Scope.twos = " + File.read('/tmp/var_twos_ones.js'));
281             eval("JSDOC.Scope.threes = " + File.read('/tmp/var_threes_ones.js'));
282         }
283         */
284         this.ones = 'A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z'.split(',');
285         var a = this.ones;
286         var n = a.concat( '0,1,2,3,4,5,6,7,8,9'.split(','));
287         for(var i = 0; i < a.length; i++) {
288             for(var j = 0; j < n.length; j++) {
289                 var tw = a[i] + n[j];
290                 if (this.skips.indexOf(tw) < 0) {
291                     this.twos.push(tw);
292                 }
293                     
294                 /*
295                 for(var k = 0; k < n.length; k++) {
296                     var thr = a[i] + n[j] + n[k];
297                     //println("thr="+ thr + ":iOf="+this.skips.indexOf(thr) );
298                     if (this.skips.indexOf(thr)  < 0) {
299                         //println("+"+thr);
300                         this.threes.push(thr);
301                        }
302                     
303                 }
304                 */
305             }
306         }
307         //println("done creating var list");
308         //println("threes="+ this.threes.toSource());
309         //throw "DONE";
310         
311        
312     }
313 })
314 // init the scope constants..
315 Scope.init();
316