JSDOC/Parser.js
[gnome.introspection-doc-generator] / JSDOC / Parser.js
1 //<script type="text/javascript">
2
3 Walker2      = imports.Walker2.Walker2;
4 Symbol      = imports.Symbol.Symbol;
5 SymbolSet      = imports.SymbolSet.SymbolSet;
6 DocComment  = imports.DocComment.DocComment;
7 Options     = imports.BuildDocs.Options;
8 /**
9  * Parser is a static  instance..
10  * 
11  * 
12  */
13  
14  
15 Parser = {
16         conf: { 
17         loaded: false 
18     },
19     
20     walker : false, // will be JSDOC.Walker()
21     symbols : false, //will be JSDOC.SymbolSet()
22     
23     filesSymbols : { },
24     
25     /** 
26     * global init once 
27     * 
28     */
29          
30     init: function() {
31         if (this.conf.loaded) {
32             return;
33         }
34         print("init parser conf!?");
35         this.conf = {
36             loaded : true,
37             //ignoreCode:                 Options.n,
38             ignoreAnonymous:           true, // factory: true
39             treatUnderscoredAsPrivate: true, // factory: true
40             explain:                   false // factory: false
41         };
42          
43                 this.symbols = new  SymbolSet();
44                 //this.walker = new JSDOC.Walker();
45         //JSDOC.Parser.filesSymbols = {};
46         },
47
48
49
50     /**
51      * Parse a token stream.
52      * @param {JSDOC.TokenStream} token stream
53      * @param {String} filename 
54          
55      */
56     
57     
58     parse : function(ts, srcFile) 
59     {
60         this.init();
61         
62         
63         // not a nice way to set stuff...
64         
65         Symbol.srcFile = (srcFile || "");
66         DocComment.shared = ""; // shared comments don't cross file boundaries
67         
68        
69         
70         
71         
72         this.filesSymbols[Symbol.srcFile] = new SymbolSet();
73         
74         this.walker = new  Walker2(ts);
75         this.walker.buildSymbolTree();
76         
77         
78         
79         //this.walker.walk(ts); // adds to our symbols
80        // throw "done sym tree";
81         
82         // filter symbols by option
83         for (p in this.symbols._index) {
84             var symbol = this.symbols.getSymbol(p);
85             
86             if (!symbol) continue;
87             
88             if (symbol.is("FILE") || symbol.is("GLOBAL")) {
89                 continue;
90             }
91             //else if (!Options.a && !symbol.comment.isUserComment) {
92                 //print("Deleting Symbols (no a / user comment): " + symbol.alias);
93                 //this.symbols.deleteSymbol(symbol.alias);
94                 //this.filesSymbols[Symbol.srcFile].deleteSymbol(symbol.alias);
95             //}
96             
97             if (/#$/.test(symbol.alias)) { // we don't document prototypes - this should not happen..
98                 // rename the symbol ??
99                 /*if (!this.symbols.getSymbol(symbol.alias.substring(0,symbol.alias.length-1))) {
100                     // rename it..
101                     print("Renaming Symbol (got  a #): " + symbol.alias);
102                     var n = '' + symbol.alias;
103                     this.symbols.renameSymbol( n ,n.substring(0,n-1));
104                     this.filesSymbols[Symbol.srcFile].renameSymbol( n ,n.substring(0,n-1));
105                     continue;
106                 }
107                 */
108                 print("Deleting Symbols (got  a #): " + symbol.alias);
109                 
110                 this.symbols.deleteSymbol(symbol.alias);
111                 this.filesSymbols[Symbol.srcFile].deleteSymbol(symbol.alias);
112             
113             }
114         }
115         //print(prettyDump(toQDump(this.filesSymbols[Symbol.srcFile]._index,'{','}')));
116         //print("AfterParse: " + this.symbols.keys().toSource().split(",").join(",\n   "));
117         return this.symbols.toArray();
118     },
119
120         
121         addSymbol: function(symbol) 
122     {
123          print("PARSER addSYMBOL : " + symbol.alias);
124         
125                 // if a symbol alias is documented more than once the last one with the user docs wins
126                 if (this.symbols.hasSymbol(symbol.alias)) {
127                         var oldSymbol = this.symbols.getSymbol(symbol.alias);
128             
129                         if (oldSymbol.comment.isUserComment && !oldSymbol.comment.hasTags) {
130                                 if (symbol.comment.isUserComment) { // old and new are both documented
131                                         Options.LOG.warn("The symbol '"+symbol.alias+"' is documented more than once.");
132                                 }
133                                 else { // old is documented but new isn't
134                                         return;
135                                 }
136                         }
137                 }
138                 
139                 // we don't document anonymous things
140                 if (this.conf.ignoreAnonymous && symbol.name.match(/\$anonymous\b/)) return;
141
142                 // uderscored things may be treated as if they were marked private, this cascades
143                 if (this.conf.treatUnderscoredAsPrivate && symbol.name.match(/[.#-]_[^.#-]+$/)) {
144                         symbol.isPrivate = true;
145                 }
146                 
147                 // -p flag is required to document private things
148                 if ((symbol.isInner || symbol.isPrivate) && !Options.p) return;
149                 
150                 // ignored things are not documented, this doesn't cascade
151                 if (symbol.isIgnored) return;
152         // add it to the file's list... (for dumping later..)
153         if (Symbol.srcFile) {
154             this.filesSymbols[Symbol.srcFile].addSymbol(symbol);
155         }
156                 
157                 this.symbols.addSymbol(symbol);
158         },
159         
160         addBuiltin: function(name) {
161   
162                 var builtin = new Symbol(name, [], "CONSTRUCTOR", new DocComment(""));
163                 builtin.isNamespace = false;
164                 builtin.srcFile = "";
165                 builtin.isPrivate = false;
166         this.addSymbol(builtin);
167                 return builtin;
168         },
169         
170                 
171         finish: function() {
172                 this.symbols.relate();          
173                 
174                 // make a litle report about what was found
175                 if (this.conf.explain) {
176                         var symbols = this.symbols.toArray();
177                         var srcFile = "";
178                         for (var i = 0, l = symbols.length; i < l; i++) {
179                                 var symbol = symbols[i];
180                                 if (srcFile != symbol.srcFile) {
181                                         srcFile = symbol.srcFile;
182                                         print("\n"+srcFile+"\n-------------------");
183                                 }
184                                 print(i+":\n  alias => "+symbol.alias + "\n  name => "+symbol.name+ "\n  isa => "+symbol.isa + "\n  memberOf => " + symbol.memberOf + "\n  isStatic => " + symbol.isStatic + ",  isInner => " + symbol.isInner);
185                         }
186                         print("-------------------\n");
187                 }
188         }
189     
190     
191     
192
193 }