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