isl_stream: allow user specified keywords
[platform/upstream/isl.git] / isl_stream.c
1 /*
2  * Copyright 2008-2009 Katholieke Universiteit Leuven
3  *
4  * Use of this software is governed by the GNU LGPLv2.1 license
5  *
6  * Written by Sven Verdoolaege, K.U.Leuven, Departement
7  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8  */
9
10 #include <ctype.h>
11 #include <string.h>
12 #include <strings.h>
13 #include <isl_ctx.h>
14 #include "isl_stream.h"
15
16 struct isl_keyword {
17         char                    *name;
18         enum isl_token_type     type;
19 };
20
21 static int same_name(const void *entry, const void *val)
22 {
23         const struct isl_keyword *keyword = (const struct isl_keyword *)entry;
24
25         return !strcmp(keyword->name, val);
26 }
27
28 enum isl_token_type isl_stream_register_keyword(struct isl_stream *s,
29         const char *name)
30 {
31         struct isl_hash_table_entry *entry;
32         struct isl_keyword *keyword;
33         uint32_t name_hash;
34
35         if (!s->keywords) {
36                 s->keywords = isl_hash_table_alloc(s->ctx, 10);
37                 if (!s->keywords)
38                         return ISL_TOKEN_ERROR;
39                 s->next_type = ISL_TOKEN_LAST;
40         }
41
42         name_hash = isl_hash_string(isl_hash_init(), name);
43
44         entry = isl_hash_table_find(s->ctx, s->keywords, name_hash,
45                                         same_name, name, 1);
46         if (!entry)
47                 return ISL_TOKEN_ERROR;
48         if (entry->data) {
49                 keyword = entry->data;
50                 return keyword->type;
51         }
52
53         keyword = isl_calloc_type(s->ctx, struct isl_keyword);
54         if (!keyword)
55                 return ISL_TOKEN_ERROR;
56         keyword->type = s->next_type++;
57         keyword->name = strdup(name);
58         if (!keyword->name) {
59                 free(keyword);
60                 return ISL_TOKEN_ERROR;
61         }
62         entry->data = keyword;
63
64         return keyword->type;
65 }
66
67 static struct isl_token *isl_token_new(struct isl_ctx *ctx,
68         int line, int col, unsigned on_new_line)
69 {
70         struct isl_token *tok = isl_alloc_type(ctx, struct isl_token);
71         if (!tok)
72                 return NULL;
73         tok->line = line;
74         tok->col = col;
75         tok->on_new_line = on_new_line;
76         return tok;
77 }
78
79 void isl_token_free(struct isl_token *tok)
80 {
81         if (!tok)
82                 return;
83         if (tok->type == ISL_TOKEN_VALUE)
84                 isl_int_clear(tok->u.v);
85         else if (tok->type == ISL_TOKEN_IDENT)
86                 free(tok->u.s);
87         free(tok);
88 }
89
90 void isl_stream_error(struct isl_stream *s, struct isl_token *tok, char *msg)
91 {
92         int line = tok ? tok->line : s->line;
93         int col = tok ? tok->col : s->col;
94         fprintf(stderr, "syntax error (%d, %d): %s\n", line, col, msg);
95         if (tok) {
96                 if (tok->type < 256)
97                         fprintf(stderr, "got '%c'\n", tok->type);
98                 else
99                         fprintf(stderr, "got token type %d\n", tok->type);
100         }
101 }
102
103 static struct isl_stream* isl_stream_new(struct isl_ctx *ctx)
104 {
105         int i;
106         struct isl_stream *s = isl_alloc_type(ctx, struct isl_stream);
107         if (!s)
108                 return NULL;
109         s->ctx = ctx;
110         isl_ctx_ref(s->ctx);
111         s->size = 256;
112         s->file = NULL;
113         s->str = NULL;
114         s->buffer = isl_alloc_array(ctx, char, s->size);
115         if (!s->buffer)
116                 goto error;
117         s->len = 0;
118         s->line = 1;
119         s->col = 0;
120         s->eof = 0;
121         s->c = -1;
122         for (i = 0; i < 5; ++i)
123                 s->tokens[i] = NULL;
124         s->n_token = 0;
125         s->keywords = NULL;
126         return s;
127 error:
128         isl_stream_free(s);
129         return NULL;
130 }
131
132 struct isl_stream* isl_stream_new_file(struct isl_ctx *ctx, FILE *file)
133 {
134         struct isl_stream *s = isl_stream_new(ctx);
135         if (!s)
136                 return NULL;
137         s->file = file;
138         return s;
139 }
140
141 struct isl_stream* isl_stream_new_str(struct isl_ctx *ctx, const char *str)
142 {
143     struct isl_stream *s = isl_stream_new(ctx);
144     s->str = str;
145     return s;
146 }
147
148 static int isl_stream_getc(struct isl_stream *s)
149 {
150         int c;
151         if (s->eof)
152                 return -1;
153         if (s->file)
154                 c = fgetc(s->file);
155         else {
156                 c = *s->str++;
157                 if (c == '\0')
158                         c = -1;
159         }
160         if (c == -1)
161                 s->eof = 1;
162         if (!s->eof) {
163                 if (s->c == '\n') {
164                         s->line++;
165                         s->col = 0;
166                 } else
167                         s->col++;
168         }
169         s->c = c;
170         return c;
171 }
172
173 static void isl_stream_ungetc(struct isl_stream *s, int c)
174 {
175         if (s->file)
176                 ungetc(c, s->file);
177         else
178                 --s->str;
179         s->c = -1;
180 }
181
182 static int isl_stream_push_char(struct isl_stream *s, int c)
183 {
184         if (s->len >= s->size) {
185                 s->size = (3*s->size)/2;
186                 s->buffer = isl_realloc_array(ctx, s->buffer, char, s->size);
187                 if (!s->buffer)
188                         return -1;
189         }
190         s->buffer[s->len++] = c;
191         return 0;
192 }
193
194 void isl_stream_push_token(struct isl_stream *s, struct isl_token *tok)
195 {
196         isl_assert(s->ctx, s->n_token < 5, return);
197         s->tokens[s->n_token++] = tok;
198 }
199
200 static enum isl_token_type check_keywords(struct isl_stream *s)
201 {
202         struct isl_hash_table_entry *entry;
203         struct isl_keyword *keyword;
204         uint32_t name_hash;
205
206         if (!strcasecmp(s->buffer, "exists"))
207                 return ISL_TOKEN_EXISTS;
208         if (!strcasecmp(s->buffer, "and"))
209                 return ISL_TOKEN_AND;
210         if (!strcasecmp(s->buffer, "or"))
211                 return ISL_TOKEN_OR;
212
213         if (!s->keywords)
214                 return ISL_TOKEN_IDENT;
215
216         name_hash = isl_hash_string(isl_hash_init(), s->buffer);
217         entry = isl_hash_table_find(s->ctx, s->keywords, name_hash, same_name,
218                                         s->buffer, 0);
219         if (entry) {
220                 keyword = entry->data;
221                 return keyword->type;
222         }
223
224         return ISL_TOKEN_IDENT;
225 }
226
227 static struct isl_token *next_token(struct isl_stream *s, int same_line)
228 {
229         int c;
230         struct isl_token *tok = NULL;
231         int line, col;
232         int old_line = s->line;
233
234         if (s->n_token) {
235                 if (same_line && s->tokens[s->n_token - 1]->on_new_line)
236                         return NULL;
237                 return s->tokens[--s->n_token];
238         }
239
240         if (same_line && s->c == '\n')
241                 return NULL;
242
243         s->len = 0;
244
245         /* skip spaces and comment lines */
246         while ((c = isl_stream_getc(s)) != -1) {
247                 if (c == '#') {
248                         while ((c = isl_stream_getc(s)) != -1 && c != '\n')
249                                 /* nothing */
250                                 ;
251                         if (c == -1 || (same_line && c == '\n'))
252                                 break;
253                 } else if (!isspace(c) || (same_line && c == '\n'))
254                         break;
255         }
256
257         line = s->line;
258         col = s->col;
259
260         if (c == -1 || (same_line && c == '\n'))
261                 return NULL;
262         if (c == '(' ||
263             c == ')' ||
264             c == '+' ||
265             c == '/' ||
266             c == '*' ||
267             c == '^' ||
268             c == '=' ||
269             c == ',' ||
270             c == ';' ||
271             c == '[' ||
272             c == ']' ||
273             c == '{' ||
274             c == '}') {
275                 tok = isl_token_new(s->ctx, line, col, old_line != line);
276                 if (!tok)
277                         return NULL;
278                 tok->type = (enum isl_token_type)c;
279                 return tok;
280         }
281         if (c == '-') {
282                 int c;
283                 if ((c = isl_stream_getc(s)) == '>') {
284                         tok = isl_token_new(s->ctx, line, col, old_line != line);
285                         if (!tok)
286                                 return NULL;
287                         tok->type = ISL_TOKEN_TO;
288                         return tok;
289                 }
290                 if (c != -1)
291                         isl_stream_ungetc(s, c);
292                 if (!isdigit(c)) {
293                         tok = isl_token_new(s->ctx, line, col, old_line != line);
294                         if (!tok)
295                                 return NULL;
296                         tok->type = (enum isl_token_type) '-';
297                         return tok;
298                 }
299         }
300         if (c == '-' || isdigit(c)) {
301                 tok = isl_token_new(s->ctx, line, col, old_line != line);
302                 if (!tok)
303                         return NULL;
304                 tok->type = ISL_TOKEN_VALUE;
305                 isl_int_init(tok->u.v);
306                 if (isl_stream_push_char(s, c))
307                         goto error;
308                 while ((c = isl_stream_getc(s)) != -1 && isdigit(c))
309                         if (isl_stream_push_char(s, c))
310                                 goto error;
311                 if (c != -1)
312                         isl_stream_ungetc(s, c);
313                 isl_stream_push_char(s, '\0');
314                 isl_int_read(tok->u.v, s->buffer);
315                 return tok;
316         }
317         if (isalpha(c)) {
318                 tok = isl_token_new(s->ctx, line, col, old_line != line);
319                 if (!tok)
320                         return NULL;
321                 isl_stream_push_char(s, c);
322                 while ((c = isl_stream_getc(s)) != -1 && isalnum(c))
323                         isl_stream_push_char(s, c);
324                 if (c != -1)
325                         isl_stream_ungetc(s, c);
326                 while ((c = isl_stream_getc(s)) != -1 && c == '\'')
327                         isl_stream_push_char(s, c);
328                 if (c != -1)
329                         isl_stream_ungetc(s, c);
330                 isl_stream_push_char(s, '\0');
331                 tok->type = check_keywords(s);
332                 if (tok->type == ISL_TOKEN_IDENT)
333                         tok->u.s = strdup(s->buffer);
334                 return tok;
335         }
336         if (c == ':') {
337                 int c;
338                 tok = isl_token_new(s->ctx, line, col, old_line != line);
339                 if (!tok)
340                         return NULL;
341                 if ((c = isl_stream_getc(s)) == '=') {
342                         tok->type = ISL_TOKEN_DEF;
343                         return tok;
344                 }
345                 if (c != -1)
346                         isl_stream_ungetc(s, c);
347                 tok->type = ':';
348                 return tok;
349         }
350         if (c == '>') {
351                 int c;
352                 tok = isl_token_new(s->ctx, line, col, old_line != line);
353                 if (!tok)
354                         return NULL;
355                 if ((c = isl_stream_getc(s)) == '=') {
356                         tok->type = ISL_TOKEN_GE;
357                         return tok;
358                 }
359                 if (c != -1)
360                         isl_stream_ungetc(s, c);
361                 tok->type = ISL_TOKEN_GT;
362                 return tok;
363         }
364         if (c == '<') {
365                 int c;
366                 tok = isl_token_new(s->ctx, line, col, old_line != line);
367                 if (!tok)
368                         return NULL;
369                 if ((c = isl_stream_getc(s)) == '=') {
370                         tok->type = ISL_TOKEN_LE;
371                         return tok;
372                 }
373                 if (c != -1)
374                         isl_stream_ungetc(s, c);
375                 tok->type = ISL_TOKEN_LT;
376                 return tok;
377         }
378         if (c == '&') {
379                 tok = isl_token_new(s->ctx, line, col, old_line != line);
380                 if (!tok)
381                         return NULL;
382                 tok->type = ISL_TOKEN_AND;
383                 if ((c = isl_stream_getc(s)) != '&' && c != -1)
384                         isl_stream_ungetc(s, c);
385                 return tok;
386         }
387         if (c == '|') {
388                 tok = isl_token_new(s->ctx, line, col, old_line != line);
389                 if (!tok)
390                         return NULL;
391                 tok->type = ISL_TOKEN_OR;
392                 if ((c = isl_stream_getc(s)) != '|' && c != -1)
393                         isl_stream_ungetc(s, c);
394                 return tok;
395         }
396
397         tok = isl_token_new(s->ctx, line, col, old_line != line);
398         if (!tok)
399                 return NULL;
400         tok->type = ISL_TOKEN_UNKNOWN;
401         return tok;
402 error:
403         isl_token_free(tok);
404         return NULL;
405 }
406
407 struct isl_token *isl_stream_next_token(struct isl_stream *s)
408 {
409         return next_token(s, 0);
410 }
411
412 struct isl_token *isl_stream_next_token_on_same_line(struct isl_stream *s)
413 {
414         return next_token(s, 1);
415 }
416
417 int isl_stream_eat_if_available(struct isl_stream *s, int type)
418 {
419         struct isl_token *tok;
420
421         tok = isl_stream_next_token(s);
422         if (!tok)
423                 return 0;
424         if (tok->type == type) {
425                 isl_token_free(tok);
426                 return 1;
427         }
428         isl_stream_push_token(s, tok);
429         return 0;
430 }
431
432 int isl_stream_next_token_is(struct isl_stream *s, int type)
433 {
434         struct isl_token *tok;
435         int r;
436
437         tok = isl_stream_next_token(s);
438         if (!tok)
439                 return 0;
440         r = tok->type == type;
441         isl_stream_push_token(s, tok);
442         return r;
443 }
444
445 char *isl_stream_read_ident_if_available(struct isl_stream *s)
446 {
447         struct isl_token *tok;
448
449         tok = isl_stream_next_token(s);
450         if (!tok)
451                 return NULL;
452         if (tok->type == ISL_TOKEN_IDENT) {
453                 char *ident = strdup(tok->u.s);
454                 isl_token_free(tok);
455                 return ident;
456         }
457         isl_stream_push_token(s, tok);
458         return NULL;
459 }
460
461 int isl_stream_eat(struct isl_stream *s, int type)
462 {
463         struct isl_token *tok;
464
465         tok = isl_stream_next_token(s);
466         if (!tok)
467                 return -1;
468         if (tok->type == type) {
469                 isl_token_free(tok);
470                 return 0;
471         }
472         isl_stream_error(s, tok, "expecting other token");
473         isl_stream_push_token(s, tok);
474         return -1;
475 }
476
477 int isl_stream_is_empty(struct isl_stream *s)
478 {
479         struct isl_token *tok;
480
481         tok = isl_stream_next_token(s);
482
483         if (!tok)
484                 return 1;
485
486         isl_stream_push_token(s, tok);
487         return 0;
488 }
489
490 static int free_keyword(void *p)
491 {
492         struct isl_keyword *keyword = p;
493
494         free(keyword->name);
495         free(keyword);
496
497         return 0;
498 }
499
500 void isl_stream_free(struct isl_stream *s)
501 {
502         if (!s)
503                 return;
504         free(s->buffer);
505         if (s->n_token != 0) {
506                 struct isl_token *tok = isl_stream_next_token(s);
507                 isl_stream_error(s, tok, "unexpected token");
508                 isl_token_free(tok);
509         }
510         if (s->keywords) {
511                 isl_hash_table_foreach(s->ctx, s->keywords, free_keyword);
512                 isl_hash_table_free(s->ctx, s->keywords);
513         }
514         isl_ctx_deref(s->ctx);
515         free(s);
516 }