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             string found = "";
246             var name;
247             while (!stream.lookEOF() && Lang.punc(found + stream.look()).length > 0) {
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         public bool read_space  (TokenStream stream, TokenArray tokens)
281         {
282             var found = "";
283             
284             while (!stream.lookEOF() && Lang.isSpace(stream.look()) && !Lang.isNewline(stream.look())) {
285                 found += stream.next();
286             }
287             
288             if (found === "") {
289                 return false;
290             }
291             //print("WHITE = " + JSON.stringify(found)); 
292             if (this.collapseWhite) {
293                 found = " "; // this might work better if it was a ';' ???
294             }
295             if (this.keepWhite) tokens.push(new Token(found, "WHIT", "SPACE", this.line));
296             return true;
297         
298         },
299
300         /**
301             @returns {Boolean} Was the token found?
302          */
303         public bool read_newline  (TokenStream stream, TokenArray tokens)
304             var found = "";
305             var line = this.line;
306             while (!stream.look().eof && Lang.isNewline(stream.look())) {
307                 this.line++;
308                 found += stream.next();
309             }
310             
311             if (found === "") {
312                 return false;
313             }
314             //this.line++;
315             if (this.collapseWhite) {
316                 found = "\n";
317             }
318              if (this.keepWhite) {
319                 var last = tokens ? tokens.pop() : false;
320                 if (last && last.name != "WHIT") {
321                     tokens.push(last);
322                 }
323                 
324                 tokens.push(new Token(found, "WHIT", "NEWLINE", line));
325             }
326             return true;
327         },
328
329         /**
330             @returns {Boolean} Was the token found?
331          */
332         read_mlcomment : function(/**JSDOC.TokenStream*/stream, tokens) {
333             if (stream.look() == "/" && stream.look(1) == "*") {
334                 var found = stream.next(2);
335                 var c = '';
336                 var line = this.line;
337                 while (!stream.look().eof && !(stream.look(-1) == "/" && stream.look(-2) == "*")) {
338                     c = stream.next();
339                     if (c == "\n") this.line++;
340                     found += c;
341                 }
342                 
343                 // to start doclet we allow /** or /*** but not /**/ or /****
344                 if (/^\/\*\*([^\/]|\*[^*])/.test(found) && this.keepDocs) tokens.push(new Token(found, "COMM", "JSDOC", this.line));
345                 else if (this.keepComments) tokens.push(new Token(found, "COMM", "MULTI_LINE_COMM", line));
346                 return true;
347             }
348             return false;
349         },
350
351         /**
352             @returns {Boolean} Was the token found?
353          */
354         read_slcomment : function(/**JSDOC.TokenStream*/stream, tokens) {
355             var found;
356             if (
357                 (stream.look() == "/" && stream.look(1) == "/" && (found=stream.next(2)))
358                 || 
359                 (stream.look() == "<" && stream.look(1) == "!" && stream.look(2) == "-" && stream.look(3) == "-" && (found=stream.next(4)))
360             ) {
361                 var line = this.line;
362                 while (!stream.look().eof && !Lang.isNewline(stream.look())) {
363                     found += stream.next();
364                 }
365                 if (!stream.look().eof) {
366                     found += stream.next();
367                 }
368                 if (this.keepComments) {
369                     tokens.push(new Token(found, "COMM", "SINGLE_LINE_COMM", line));
370                 }
371                 this.line++;
372                 return true;
373             }
374             return false;
375         },
376
377         /**
378             @returns {Boolean} Was the token found?
379          */
380         read_dbquote : function(/**JSDOC.TokenStream*/stream, tokens) {
381             if (stream.look() == "\"") {
382                 // find terminator
383                 var string = stream.next();
384                 
385                 while (!stream.look().eof) {
386                     if (stream.look() == "\\") {
387                         if (Lang.isNewline(stream.look(1))) {
388                             do {
389                                 stream.next();
390                             } while (!stream.look().eof && Lang.isNewline(stream.look()));
391                             string += "\\\n";
392                         }
393                         else {
394                             string += stream.next(2);
395                         }
396                     }
397                     else if (stream.look() == "\"") {
398                         string += stream.next();
399                         tokens.push(new Token(string, "STRN", "DOUBLE_QUOTE", this.line));
400                         return true;
401                     }
402                     else {
403                         string += stream.next();
404                     }
405                 }
406             }
407             return false; // error! unterminated string
408         },
409
410         /**
411             @returns {Boolean} Was the token found?
412          */
413         read_snquote : function(/**JSDOC.TokenStream*/stream, tokens) {
414             if (stream.look() == "'") {
415                 // find terminator
416                 var string = stream.next();
417                 
418                 while (!stream.look().eof) {
419                     if (stream.look() == "\\") { // escape sequence
420                         string += stream.next(2);
421                     }
422                     else if (stream.look() == "'") {
423                         string += stream.next();
424                         tokens.push(new Token(string, "STRN", "SINGLE_QUOTE", this.line));
425                         return true;
426                     }
427                     else {
428                         string += stream.next();
429                     }
430                 }
431             }
432             return false; // error! unterminated string
433         },
434
435         /**
436             @returns {Boolean} Was the token found?
437          */
438         read_numb : function(/**JSDOC.TokenStream*/stream, tokens) {
439             if (stream.look() === "0" && stream.look(1) == "x") {
440                 return this.read_hex(stream, tokens);
441             }
442             
443             var found = "";
444             
445             while (!stream.look().eof && Lang.isNumber(found+stream.look())){
446                 found += stream.next();
447             }
448             
449             if (found === "") {
450                 return false;
451             }
452             else {
453                 if (/^0[0-7]/.test(found)) tokens.push(new Token(found, "NUMB", "OCTAL", this.line));
454                 else tokens.push(new Token(found, "NUMB", "DECIMAL", this.line));
455                 return true;
456             }
457         },
458         /*t:
459             requires("../lib/JSDOC/TextStream.js");
460             requires("../lib/JSDOC/Token.js");
461             requires("../lib/JSDOC/Lang.js");
462             
463             plan(3, "testing read_numb");
464             
465             //// setup
466             var src = "function foo(num){while (num+8.0 >= 0x20 && num < 0777){}}";
467             var tr = new TokenReader();
468             var tokens = tr.tokenize(new TextStream(src));
469             
470             var hexToken, octToken, decToken;
471             for (var i = 0; i < tokens.length; i++) {
472                 if (tokens[i].name == "HEX_DEC") hexToken = tokens[i];
473                 if (tokens[i].name == "OCTAL") octToken = tokens[i];
474                 if (tokens[i].name == "DECIMAL") decToken = tokens[i];
475             }
476             ////
477             
478             is(decToken.data, "8.0", "decimal number is found in source.");
479             is(hexToken.data, "0x20", "hexdec number is found in source (issue #99).");
480             is(octToken.data, "0777", "octal number is found in source.");
481         */
482
483         /**
484             @returns {Boolean} Was the token found?
485          */
486         read_hex : function(/**JSDOC.TokenStream*/stream, tokens) {
487             var found = stream.next(2);
488             
489             while (!stream.look().eof) {
490                 if (Lang.isHexDec(found) && !Lang.isHexDec(found+stream.look())) { // done
491                     tokens.push(new Token(found, "NUMB", "HEX_DEC", this.line));
492                     return true;
493                 }
494                 else {
495                     found += stream.next();
496                 }
497             }
498             return false;
499         },
500
501         /**
502             @returns {Boolean} Was the token found?
503          */
504         read_regx : function(/**JSDOC.TokenStream*/stream, tokens) {
505             var last;
506             if (
507                 stream.look() == "/"
508                 && 
509                 (
510                     
511                     (
512                         !(last = tokens.lastSym()) // there is no last, the regex is the first symbol
513                         || 
514                         (
515                                !last.is("NUMB")
516                             && !last.is("NAME")
517                             && !last.is("RIGHT_PAREN")
518                             && !last.is("RIGHT_BRACKET")
519                         )
520                     )
521                 )
522             ) {
523                 var regex = stream.next();
524                 
525                 while (!stream.look().eof) {
526                     if (stream.look() == "\\") { // escape sequence
527                         regex += stream.next(2);
528                     }
529                     else if (stream.look() == "/") {
530                         regex += stream.next();
531                         
532                         while (/[gmi]/.test(stream.look())) {
533                             regex += stream.next();
534                         }
535                         
536                         tokens.push(new Token(regex, "REGX", "REGX", this.line));
537                         return true;
538                     }
539                     else {
540                         regex += stream.next();
541                     }
542                 }
543                 // error: unterminated regex
544             }
545             return false;
546         }
547 });