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             print(JSON.stringify(symbol, null,4));
87             
88             if (!symbol) continue;
89             
90             if (symbol.is("FILE") || symbol.is("GLOBAL")) {
91                 continue;
92             }
93             //else if (!Options.a && !symbol.comment.isUserComment) {
94                 //print("Deleting Symbols (no a / user comment): " + symbol.alias);
95                 //this.symbols.deleteSymbol(symbol.alias);
96                 //this.filesSymbols[Symbol.srcFile].deleteSymbol(symbol.alias);
97             //}
98             
99             if (/#$/.test(symbol.alias)) { // we don't document prototypes - this should not happen..
100                 // rename the symbol ??
101                 /*if (!this.symbols.getSymbol(symbol.alias.substring(0,symbol.alias.length-1))) {
102                     // rename it..
103                     print("Renaming Symbol (got  a #): " + symbol.alias);
104                     var n = '' + symbol.alias;
105                     this.symbols.renameSymbol( n ,n.substring(0,n-1));
106                     this.filesSymbols[Symbol.srcFile].renameSymbol( n ,n.substring(0,n-1));
107                     continue;
108                 }
109                 */
110                 print("Deleting Symbols (got  a #): " + symbol.alias);
111                 
112                 this.symbols.deleteSymbol(symbol.alias);
113                 this.filesSymbols[Symbol.srcFile].deleteSymbol(symbol.alias);
114             
115             }
116         }
117         //print(prettyDump(toQDump(this.filesSymbols[Symbol.srcFile]._index,'{','}')));
118         //print("AfterParse: " + this.symbols.keys().toSource().split(",").join(",\n   "));
119         return this.symbols.toArray();
120     },
121
122         
123         addSymbol: function(symbol) 
124     {
125          print("PARSER addSYMBOL : " + symbol.alias);
126         
127                 // if a symbol alias is documented more than once the last one with the user docs wins
128                 if (this.symbols.hasSymbol(symbol.alias)) {
129                         var oldSymbol = this.symbols.getSymbol(symbol.alias);
130             
131                         if (oldSymbol.comment.isUserComment && !oldSymbol.comment.hasTags) {
132                                 if (symbol.comment.isUserComment) { // old and new are both documented
133                                         Options.LOG.warn("The symbol '"+symbol.alias+"' is documented more than once.");
134                                 }
135                                 else { // old is documented but new isn't
136                                         return;
137                                 }
138                         }
139                 }
140                 
141                 // we don't document anonymous things
142                 if (this.conf.ignoreAnonymous && symbol.name.match(/\$anonymous\b/)) return;
143
144                 // uderscored things may be treated as if they were marked private, this cascades
145                 if (this.conf.treatUnderscoredAsPrivate && symbol.name.match(/[.#-]_[^.#-]+$/)) {
146                         symbol.isPrivate = true;
147                 }
148                 
149                 // -p flag is required to document private things
150                 if ((symbol.isInner || symbol.isPrivate) && !Options.p) return;
151                 
152                 // ignored things are not documented, this doesn't cascade
153                 if (symbol.isIgnored) return;
154         // add it to the file's list... (for dumping later..)
155         if (Symbol.srcFile) {
156             this.filesSymbols[Symbol.srcFile].addSymbol(symbol);
157         }
158                 
159                 this.symbols.addSymbol(symbol);
160         },
161         
162         addBuiltin: function(name) {
163   
164                 var builtin = new Symbol(name, [], "CONSTRUCTOR", new DocComment(""));
165                 builtin.isNamespace = false;
166                 builtin.srcFile = "";
167                 builtin.isPrivate = false;
168         this.addSymbol(builtin);
169                 return builtin;
170         },
171         
172                 
173         finish: function() {
174                 this.symbols.relate();          
175                 
176                 // make a litle report about what was found
177                 if (this.conf.explain) {
178                         var symbols = this.symbols.toArray();
179                         var srcFile = "";
180                         for (var i = 0, l = symbols.length; i < l; i++) {
181                                 var symbol = symbols[i];
182                                 if (srcFile != symbol.srcFile) {
183                                         srcFile = symbol.srcFile;
184                                         print("\n"+srcFile+"\n-------------------");
185                                 }
186                                 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);
187                         }
188                         print("-------------------\n");
189                 }
190         }
191     
192     
193     
194
195 }