JSDOC/TokenReader.vala
[gnome.introspection-doc-generator] / JSDOC / TokenReader.vala
1 //<script type="text/javascript">
2
3  
4
5
6 //const Token   = imports.Token.Token;
7 //const Lang    = imports.Lang.Lang;
8
9 /**
10         @class Search a {@link JSDOC.TextStream} for language tokens.
11 */
12
13 namespace JSDOC {
14
15     public class TokenArray: Object {
16         
17         public Gee.ArrayList<Token> tokens;
18         public int length {
19             get { return this.tokens.size }
20         }
21         
22         public TokenArray()
23         {
24             this.items = new Gee.ArrayList<Token>();
25         }
26         
27         public Token? last() {
28             if (this.tokens > 0) {
29                 return this.tokens[this.tokens.length-1];
30             }
31             return null;
32         }
33         public Token? lastSym () {
34             for (var i = this.tokens.length-1; i >= 0; i--) {
35                 if (!(this.tokens.get(i).is("WHIT") || this.tokens.get(i).is("COMM")))  {
36                     return this.tokens.get(i);
37                 }
38             }
39             return null;
40         }
41         public void push (Token t) {
42             this.tokens.add(t);
43         }
44         public Token get(int i) {
45             return this.tokens.get(i);
46         }
47     }
48
49     errordomain TokenReader_Error {
50             ArgumentError
51     }
52     
53
54     public class TokenReader : Object
55     {
56         
57         
58         
59         /*
60          *
61          * I wonder if this will accept the prop: value, prop2 :value construxtor if we do not define one...
62          */
63         
64         /** @cfg {Boolean} collapseWhite merge multiple whitespace/comments into a single token **/
65         public bool collapseWhite = false, // only reduces white space...
66         /** @cfg {Boolean} keepDocs keep JSDOC comments **/
67         public bool keepDocs = true,
68         /** @cfg {Boolean} keepWhite keep White space **/
69         public bool keepWhite = false,
70         /** @cfg {Boolean} keepComments  keep all comments **/
71         public bool keepComments = false,
72         /** @cfg {Boolean} sepIdents seperate identifiers (eg. a.b.c into ['a', '.', 'b', '.', 'c'] ) **/
73         public bool sepIdents = false,
74         /** @cfg {String} filename name of file being parsed. **/
75         public string filename = "";
76         /** @config {Boolean} ignoreBadGrammer do not throw errors if we find stuff that might break compression **/
77         public bool ignoreBadGrammer = false,
78         
79         
80         int line = 0;
81         
82         /**
83          * tokenize a stream
84          * @return {Array} of tokens
85          * 
86          * ts = new TextStream(File.read(str));
87          * tr = TokenReader({ keepComments : true, keepWhite : true });
88          * tr.tokenize(ts)
89          * 
90          */
91         public TokenArray tokenize(TextStream stream)
92         {
93             this.line =1;
94             var tokens = new TokenArray();
95            
96             bool eof;
97             while (!stream.lookEOF()) {
98                 
99                 
100                 if (this.read_mlcomment(stream, tokens)) continue;
101                 if (this.read_slcomment(stream, tokens)) continue;
102                 if (this.read_dbquote(stream, tokens))   continue;
103                 if (this.read_snquote(stream, tokens))   continue;
104                 if (this.read_regx(stream, tokens))      continue;
105                 if (this.read_numb(stream, tokens))      continue;
106                 if (this.read_punc(stream, tokens))      continue;
107                 if (this.read_newline(stream, tokens))   continue;
108                 if (this.read_space(stream, tokens))     continue;
109                 if (this.read_word(stream, tokens))      continue;
110                 
111                 // if execution reaches here then an error has happened
112                 tokens.push(
113                         new Token(stream.next(), "TOKN", "UNKNOWN_TOKEN", this.line)
114                 );
115             }
116             
117             
118             
119             return tokens;
120         }
121
122         /**
123          * findPuncToken - find the id of a token (previous to current)
124          * need to back check syntax..
125          * 
126          * @arg {Array} tokens the array of tokens.
127          * @arg {String} token data (eg. '(')
128          * @arg {Number} offset where to start reading from
129          * @return {Number} position of token
130          */
131         public int findPuncToken(TokenArray tokens, string data, int n)
132         {
133             n = n || tokens.length -1;
134             var stack = 0;
135             while (n > -1) {
136                 
137                 if (!stack && tokens.get(n).data == data) {
138                     return n;
139                 }
140                 
141                 if (tokens.get(n).data  == ')' || tokens.get(n).data  == '}') {
142                     stack++;
143                     n--;
144                     continue;
145                 }
146                 if (stack && (tokens.get(n).data  == '{' || tokens.get(n).data  == '(')) {
147                     stack--;
148                     n--;
149                     continue;
150                 }
151                 
152                 
153                 n--;
154             }
155             return -1;
156         }
157         /**
158          * lastSym - find the last token symbol
159          * need to back check syntax..
160          * 
161          * @arg {Array} tokens the array of tokens.
162          * @arg {Number} offset where to start..
163          * @return {Token} the token
164          */
165         public Token lastSym(TokenArray tokens, int n)
166         {
167             for (var i = n-1; i >= 0; i--) {
168                 if (!(tokens.get(i).is("WHIT") || tokens.get(i).is("COMM"))) {
169                     return tokens.get(i);
170                 }
171             }
172             return null;
173         }
174         
175          
176         
177         /**
178             @returns {Boolean} Was the token found?
179          */
180         public bool read_word (TokenStream stream, TokenArray tokens)
181         {
182             string found = "";
183             while (!stream.lookEOF() && Lang.isWordChar(stream.look())) {
184                 found += stream.next();
185             }
186             
187             if (found == "") {
188                 return false;
189             }
190             
191             var name = Lang.keyword(found);
192             if (name != null) {
193                 
194                 // look for "()return" ?? why ???
195                 var ls = tokens.lastSym();
196                 if (found == "return" && ls != null && ls.data == ")") {
197                     //Seed.print('@' + tokens.length);
198                     var n = this.findPuncToken(tokens, ")");
199                     //Seed.print(')@' + n);
200                     n = this.findPuncToken(tokens, "(", n-1);
201                     //Seed.print('(@' + n);
202                     
203                     var lt = this.lastSym(tokens, n);
204                     
205                     //print(JSON.stringify(lt));
206                     if (lt.type != "KEYW" || ["IF", 'WHILE'].indexOf(lt.name) < -1) {
207                         if (!this.ignoreBadGrammer) {
208                             throw new TokenReader_Error.ArgumentError(
209                                 this.filename + ":" + this.line + " Error - return found after )"
210                             );
211                         }
212                     }
213                     
214                     
215                     
216                 }
217                 
218                 tokens.push(new Token(found, "KEYW", name, this.line));
219                 return true;
220             }
221             
222             if (!this.sepIdents || found.indexOf('.') < 0 ) {
223                 tokens.push(new Token(found, "NAME", "NAME", this.line));
224                 return true;
225             }
226             var n = found.split('.');
227             var p = false;
228             foreach (unowned string nm in n) {
229                 if (p) {
230                     tokens.push(new Token('.', "PUNC", "DOT", this.line));
231                 }
232                 p=true;
233                 tokens.push(new Token(nm, "NAME", "NAME", this.line));
234             }
235             return true;
236                 
237
238         }
239
240         /**
241             @returns {Boolean} Was the token found?
242          */
243         public bool read_punc (TokenStream stream, TokenArray tokens)
244         {
245             var found = "";
246             var name;
247             while (!stream.look().eof && Lang.punc(found + stream.look())) {
248                 found += stream.next();
249             }
250             
251             
252             if (found === "") {
253                 return false;
254             }
255             
256             var ls = tokens.lastSym();
257             
258             if ((found == "}" || found == "]") && ls != null && ls.data == ",") {
259                 //print("Error - comma found before " + found);
260                 //print(JSON.stringify(tokens.lastSym(), null,4));
261                 if (this.ignoreBadGrammer) {
262                     print("\n" + this.filename + ':' + this.line + " Error - comma found before " + found);
263                 } else {
264                     throw new TokenReader_Error.ArgumentError(
265                                 this.filename + ":" + this.line + "  comma found before " + found
266                   
267                     );
268                      
269                 }
270             }
271             
272             tokens.push(new Token(found, "PUNC", Lang.punc(found), this.line));
273             return true;
274             
275         },
276
277         /**
278             @returns {Boolean} Was the token found?
279          */
280         read_space : function(/**JSDOC.TokenStream*/stream, tokens) {
281             var found = "";
282             
283             while (!stream.look().eof && Lang.isSpace(stream.look()) && !Lang.isNewline(stream.look())) {
284                 found += stream.next();
285             }
286             
287             if (found === "") {
288                 return false;
289             }
290             //print("WHITE = " + JSON.stringify(found)); 
291             if (this.collapseWhite) found = " ";
292             if (this.keepWhite) tokens.push(new Token(found, "WHIT", "SPACE", this.line));
293             return true;
294         
295         },
296
297         /**
298             @returns {Boolean} Was the token found?
299          */
300         read_newline : function(/**JSDOC.TokenStream*/stream, tokens) {
301             var found = "";
302             var line = this.line;
303             while (!stream.look().eof && Lang.isNewline(stream.look())) {
304                 this.line++;
305                 found += stream.next();
306             }
307             
308             if (found === "") {
309                 return false;
310             }
311             //this.line++;
312             if (this.collapseWhite) {
313                 found = "\n";
314             }
315              if (this.keepWhite) {
316                 var last = tokens ? tokens.pop() : false;
317                 if (last && last.name != "WHIT") {
318                     tokens.push(last);
319                 }
320                 
321                 tokens.push(new Token(found, "WHIT", "NEWLINE", line));
322             }
323             return true;
324         },
325
326         /**
327             @returns {Boolean} Was the token found?
328          */
329         read_mlcomment : function(/**JSDOC.TokenStream*/stream, tokens) {
330             if (stream.look() == "/" && stream.look(1) == "*") {
331                 var found = stream.next(2);
332                 var c = '';
333                 var line = this.line;
334                 while (!stream.look().eof && !(stream.look(-1) == "/" && stream.look(-2) == "*")) {
335                     c = stream.next();
336                     if (c == "\n") this.line++;
337                     found += c;
338                 }
339                 
340                 // to start doclet we allow /** or /*** but not /**/ or /****
341                 if (/^\/\*\*([^\/]|\*[^*])/.test(found) && this.keepDocs) tokens.push(new Token(found, "COMM", "JSDOC", this.line));
342                 else if (this.keepComments) tokens.push(new Token(found, "COMM", "MULTI_LINE_COMM", line));
343                 return true;
344             }
345             return false;
346         },
347
348         /**
349             @returns {Boolean} Was the token found?
350          */
351         read_slcomment : function(/**JSDOC.TokenStream*/stream, tokens) {
352             var found;
353             if (
354                 (stream.look() == "/" && stream.look(1) == "/" && (found=stream.next(2)))
355                 || 
356                 (stream.look() == "<" && stream.look(1) == "!" && stream.look(2) == "-" && stream.look(3) == "-" && (found=stream.next(4)))
357             ) {
358                 var line = this.line;
359                 while (!stream.look().eof && !Lang.isNewline(stream.look())) {
360                     found += stream.next();
361                 }
362                 if (!stream.look().eof) {
363                     found += stream.next();
364                 }
365                 if (this.keepComments) {
366                     tokens.push(new Token(found, "COMM", "SINGLE_LINE_COMM", line));
367                 }
368                 this.line++;
369                 return true;
370             }
371             return false;
372         },
373
374         /**
375             @returns {Boolean} Was the token found?
376          */
377         read_dbquote : function(/**JSDOC.TokenStream*/stream, tokens) {
378             if (stream.look() == "\"") {
379                 // find terminator
380                 var string = stream.next();
381                 
382                 while (!stream.look().eof) {
383                     if (stream.look() == "\\") {
384                         if (Lang.isNewline(stream.look(1))) {
385                             do {
386                                 stream.next();
387                             } while (!stream.look().eof && Lang.isNewline(stream.look()));
388                             string += "\\\n";
389                         }
390                         else {
391                             string += stream.next(2);
392                         }
393                     }
394                     else if (stream.look() == "\"") {
395                         string += stream.next();
396                         tokens.push(new Token(string, "STRN", "DOUBLE_QUOTE", this.line));
397                         return true;
398                     }
399                     else {
400                         string += stream.next();
401                     }
402                 }
403             }
404             return false; // error! unterminated string
405         },
406
407         /**
408             @returns {Boolean} Was the token found?
409          */
410         read_snquote : function(/**JSDOC.TokenStream*/stream, tokens) {
411             if (stream.look() == "'") {
412                 // find terminator
413                 var string = stream.next();
414                 
415                 while (!stream.look().eof) {
416                     if (stream.look() == "\\") { // escape sequence
417                         string += stream.next(2);
418                     }
419                     else if (stream.look() == "'") {
420                         string += stream.next();
421                         tokens.push(new Token(string, "STRN", "SINGLE_QUOTE", this.line));
422                         return true;
423                     }
424                     else {
425                         string += stream.next();
426                     }
427                 }
428             }
429             return false; // error! unterminated string
430         },
431
432         /**
433             @returns {Boolean} Was the token found?
434          */
435         read_numb : function(/**JSDOC.TokenStream*/stream, tokens) {
436             if (stream.look() === "0" && stream.look(1) == "x") {
437                 return this.read_hex(stream, tokens);
438             }
439             
440             var found = "";
441             
442             while (!stream.look().eof && Lang.isNumber(found+stream.look())){
443                 found += stream.next();
444             }
445             
446             if (found === "") {
447                 return false;
448             }
449             else {
450                 if (/^0[0-7]/.test(found)) tokens.push(new Token(found, "NUMB", "OCTAL", this.line));
451                 else tokens.push(new Token(found, "NUMB", "DECIMAL", this.line));
452                 return true;
453             }
454         },
455         /*t:
456             requires("../lib/JSDOC/TextStream.js");
457             requires("../lib/JSDOC/Token.js");
458             requires("../lib/JSDOC/Lang.js");
459             
460             plan(3, "testing read_numb");
461             
462             //// setup
463             var src = "function foo(num){while (num+8.0 >= 0x20 && num < 0777){}}";
464             var tr = new TokenReader();
465             var tokens = tr.tokenize(new TextStream(src));
466             
467             var hexToken, octToken, decToken;
468             for (var i = 0; i < tokens.length; i++) {
469                 if (tokens[i].name == "HEX_DEC") hexToken = tokens[i];
470                 if (tokens[i].name == "OCTAL") octToken = tokens[i];
471                 if (tokens[i].name == "DECIMAL") decToken = tokens[i];
472             }
473             ////
474             
475             is(decToken.data, "8.0", "decimal number is found in source.");
476             is(hexToken.data, "0x20", "hexdec number is found in source (issue #99).");
477             is(octToken.data, "0777", "octal number is found in source.");
478         */
479
480         /**
481             @returns {Boolean} Was the token found?
482          */
483         read_hex : function(/**JSDOC.TokenStream*/stream, tokens) {
484             var found = stream.next(2);
485             
486             while (!stream.look().eof) {
487                 if (Lang.isHexDec(found) && !Lang.isHexDec(found+stream.look())) { // done
488                     tokens.push(new Token(found, "NUMB", "HEX_DEC", this.line));
489                     return true;
490                 }
491                 else {
492                     found += stream.next();
493                 }
494             }
495             return false;
496         },
497
498         /**
499             @returns {Boolean} Was the token found?
500          */
501         read_regx : function(/**JSDOC.TokenStream*/stream, tokens) {
502             var last;
503             if (
504                 stream.look() == "/"
505                 && 
506                 (
507                     
508                     (
509                         !(last = tokens.lastSym()) // there is no last, the regex is the first symbol
510                         || 
511                         (
512                                !last.is("NUMB")
513                             && !last.is("NAME")
514                             && !last.is("RIGHT_PAREN")
515                             && !last.is("RIGHT_BRACKET")
516                         )
517                     )
518                 )
519             ) {
520                 var regex = stream.next();
521                 
522                 while (!stream.look().eof) {
523                     if (stream.look() == "\\") { // escape sequence
524                         regex += stream.next(2);
525                     }
526                     else if (stream.look() == "/") {
527                         regex += stream.next();
528                         
529                         while (/[gmi]/.test(stream.look())) {
530                             regex += stream.next();
531                         }
532                         
533                         tokens.push(new Token(regex, "REGX", "REGX", this.line));
534                         return true;
535                     }
536                     else {
537                         regex += stream.next();
538                     }
539                 }
540                 // error: unterminated regex
541             }
542             return false;
543         }
544 });