JSDOC/TokenStream.vala
[gnome.introspection-doc-generator] / JSDOC / TokenStream.vala
1
2 /**
3  * @class TokenStream
4  * 
5  * BC notes:
6  * 
7  * nextT => nextTok
8  * lookT => lookTok
9  * 
10  */
11
12
13 namespace JSDOC {
14
15         public errordomain TokenStreamError {
16             ArgumentError
17     }
18         public class TokenStream : Object
19         {
20         
21                 Gee.ArrayList<Token> tokens;
22                 int cursor; // where are we in the stream.              
23         
24         
25                 public TokenStream(Gee.ArrayList<Token> tokens) {
26                  
27                         this.tokens = tokens;
28
29                         this.rewind();
30                 }
31         
32
33                 
34                 public void rewind() {
35                     this.cursor = -1;
36                 }
37
38                 /**
39                     @type JSDOC.Token
40                 */
41                 public Token? look (int n, bool considerWhitespace) 
42                 {
43
44
45                     if (considerWhitespace == true) {
46                     
47                         if (this.cursor+n < 0 || this.cursor+n > (this.tokens.size -1)) {
48                             return new Token("", "VOID", "START_OF_STREAM");
49                         }
50                         return this.tokens.get(this.cursor+n);
51                     }
52                     
53
54                 var count = 0;
55                 var i = this.cursor;
56
57                 while (true) {
58                     if (i < 0) {
59                                 return new Token("", "VOID", "START_OF_STREAM");
60                         }
61                     if (i > this.tokens.size) {
62                                 return new Token("", "VOID", "END_OF_STREAM");
63                         }
64
65                     if (i != this.cursor && this.tokens.get(i).is("WHIT")) {
66                                 i += (n < 0) ? -1 : 1;
67                         continue;
68                     }
69                     
70                     if (count == n) {
71                         return this.tokens.get(i);
72                     }
73                     count++;
74                     i += (n < 0) ? -1 : 1;
75                 }
76
77                 return new Token("", "VOID", "STREAM_ERROR"); // because null isn't an object and caller always expects an object
78                     
79                 }
80
81                 public int lookFor  (string data)
82                 {
83                     // non tree version..
84                     var i = this.cursor < 0 ? 0 : this.cursor ;
85                     
86                     while (true) {
87                         if (i >= this.tokens.size) {
88                                 return -1;
89                         }
90                         if (this.tokens.get(i).data == data) {
91                             return i;
92                         }
93                         i++;
94                         
95                     }
96                     // should not get here!
97                     return -1;
98
99                 }
100
101
102                 /**
103                  * look ahead (or back) x number of tokens (which are not comment or whitespace)
104                  * ?? used any more?
105                  */
106                 public Token lookTok (int n) {
107
108
109                     
110                     var count = 0;
111                     var i = this.cursor;
112
113                     while (true) {
114                        // print(i);
115                         if (i < 0) {
116                             if (n > -1) {
117                                 i = 0; 
118                                 count++;
119                                 continue;
120                                 
121                             }
122                             return  new Token("", "VOID", "END_OF_STREAM");
123                         }
124                         if (i > this.tokens.size) {
125                                 return  new Token("", "VOID", "END_OF_STREAM");
126                         }
127
128                         if (i != this.cursor && ( this.tokens.get(i).is("WHIT") || this.tokens.get(i).is("COMM"))) {
129                             i += (n < 0) ? -1 : 1;
130                             continue;
131                         }
132                         
133                         if (count == n) {
134                             return this.tokens.get(i);
135                         }
136                         count++;
137                         i += (n < 0) ? -1 : 1;
138                     }
139                 // should never get here..
140                     return  new Token("", "VOID", "END_OF_STREAM");; // because null isn't an object and caller always expects an object;
141                     
142                 }
143
144                 /**
145                  *  @return {Token|null}
146                  * next token (with white space)
147                  */
148                     
149                    
150                 public Token? next() {
151                 
152                 
153                     //if (typeof howMany == "undefined") howMany = 1;
154                     // if (howMany < 1) { return  null;                 }
155                     
156                     if (this.cursor+1 >= this.tokens.size) {
157                         return null;
158                 }
159                     this.cursor++;
160                     return this.tokens.get(this.cursor);
161
162                 }
163                 
164             public Gee.ArrayList<Token>? nextM(int howMany) throws TokenStreamError {
165                 
166                     //if (typeof howMany == "undefined") howMany = 1;
167                     if (howMany < 2) { 
168                                 throw new  TokenStreamError.ArgumentError("nextM called with wrong number : %d", howMany);
169                     }
170                     var got = new Gee.ArrayList<Token>();
171
172                     for (var i = 1; i <= howMany; i++) {
173                         if (this.cursor+i >= this.tokens.size) {
174                             return null;
175                         }
176                         got.add(this.tokens.get(this.cursor+i));
177                     }
178                     this.cursor += howMany;
179                     
180                         return got;
181                 }
182                 
183                 
184                 
185                 
186                 // what about comments after 'function'...
187                 // is this used ???
188                 public Token? nextTok() {
189                     return this.nextNonSpace();
190                 }
191                 
192                 public Token? nextNonSpace ()
193                 {
194                     
195                     while (true) {
196                         var tok = this.next();
197                         if (tok == null) {
198                             return null;
199                         }
200                         if (tok.is("WHIT") ||  tok.is("COMM")) {
201                             continue;
202                         }
203                         return tok;
204                     }
205                 }
206                 
207                 /**
208                  *  balance 
209                  * -- returns all the tokens betweeen and including stop token eg.. from {... to  }
210                  * @param start {String}  token name or data (eg. '{'
211                  * @param stop {String} (Optional) token name or data (eg. '}'
212                  */
213                 public Gee.ArrayList<Token> balance (string start, string stop = "") {
214                     
215                     // accepts names or "{" etc..
216                     
217                     start = Lang.punc(start) == null ? start : Lang.punc(start);
218                     
219                     if (stop=="") {
220                                 var newstop = Lang.matching(start);
221                                 stop = newstop;
222                         }
223                         if (stop == null) {
224                                 throw new JSDOC.TokenStreamError("balance called with invalid start/stop : %s",start);
225                         }
226                     
227                     var depth = 0;
228                     var got = new Gee.ArrayList<Token>();
229                     var started = false;
230                     //Seed.print("START:" + start);
231                     //Seed.print("STOP:" + stop);
232                     
233                     while ((token = this.look())) {
234                         if (token.is(start)) {
235                       //      Seed.print("balance: START : " + depth + " " + token.data);
236                             depth++;
237                             started = true;
238                         }
239                         
240                         if (started) {
241                             got.push(token);
242                         }
243                         
244                         if (token.is(stop)) {
245                             depth--;
246                         //    Seed.print("balance: STOP: "  + depth + " " + token.data);
247                             if (depth < 1) {
248                                         return got;
249                                 }
250                         }
251                         if (!this.next()) {
252                                 break;
253                         }
254                     }
255                     return new Gee.ArrayList<Token>();
256                 }
257
258                 public Token getMatchingToken(string start, string stop) {
259                     var depth = 0;
260                     var cursor = this.cursor;
261                     
262                     if (!start) {
263                         start = Lang.matching(stop);
264                         depth = 1;
265                     }
266                     if (!stop) stop = Lang.matching(start);
267                     
268                     while ((token = this.tokens[cursor])) {
269                         if (token.is(start)) {
270                             depth++;
271                         }
272                         
273                         if (token.is(stop) && cursor) {
274                             depth--;
275                             if (depth == 0) return this.tokens[cursor];
276                         }
277                         cursor++;
278                     }
279                     return false;
280                 }
281
282                 public Gee.ArrayList<Token> insertAhead(Token token) {
283                     this.tokens.splice(this.cursor+1, 0, token); // fixme...
284                 }
285                  
286                 public Gee.ArrayList<Token> remaining() {
287                     var ret = new Gee.ArrayList<Token>();
288                     while (true) {
289                         var tok = this.look(1,true);
290                         if (tok.is("VOID")) {
291                             return ret;
292                         }
293                         ret.push(this.next(1));
294                     }
295                 }
296                  
297                 /*
298                 arrayToString : function(ar) {
299                     console.log(typeof(ar));
300                     var ret = [];
301                     ar.forEach(function(e) {
302                         ret.push(e.data);
303                     })
304                     return ret.join('');
305                 },
306                 dump: function(start, end)
307                 {
308                     start = Math.max(start || 0, 0);
309                     end = Math.min(end || this.tokens.length, this.tokens.length);
310                     var out='';
311                     for (var i =start;i < end; i++) {
312                         
313                         out += (this.tokens[i].outData == false) ? this.tokens[i].data : this.tokens[i].outData;
314                     };
315                     print(out);
316                 }
317                 */
318         }
319 }
320