isl_tab.c: fix typos
[isl.git] / isl_stream.c
blob1267d24b0a647aca91af1ee11db034521276ab35
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #include <ctype.h>
11 #include <string.h>
12 #include <strings.h>
13 #include <isl_ctx.h>
14 #include "isl_stream.h"
16 struct isl_keyword {
17 char *name;
18 enum isl_token_type type;
21 static int same_name(const void *entry, const void *val)
23 const struct isl_keyword *keyword = (const struct isl_keyword *)entry;
25 return !strcmp(keyword->name, val);
28 enum isl_token_type isl_stream_register_keyword(struct isl_stream *s,
29 const char *name)
31 struct isl_hash_table_entry *entry;
32 struct isl_keyword *keyword;
33 uint32_t name_hash;
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;
42 name_hash = isl_hash_string(isl_hash_init(), name);
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;
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;
62 entry->data = keyword;
64 return keyword->type;
67 static struct isl_token *isl_token_new(struct isl_ctx *ctx,
68 int line, int col, unsigned on_new_line)
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;
79 void isl_token_free(struct isl_token *tok)
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 || tok->type == ISL_TOKEN_STRING)
86 free(tok->u.s);
87 free(tok);
90 void isl_stream_error(struct isl_stream *s, struct isl_token *tok, char *msg)
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);
103 static struct isl_stream* isl_stream_new(struct isl_ctx *ctx)
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;
132 struct isl_stream* isl_stream_new_file(struct isl_ctx *ctx, FILE *file)
134 struct isl_stream *s = isl_stream_new(ctx);
135 if (!s)
136 return NULL;
137 s->file = file;
138 return s;
141 struct isl_stream* isl_stream_new_str(struct isl_ctx *ctx, const char *str)
143 struct isl_stream *s = isl_stream_new(ctx);
144 s->str = str;
145 return s;
148 static int isl_stream_getc(struct isl_stream *s)
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;
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++;
169 s->c = c;
170 return c;
173 static void isl_stream_ungetc(struct isl_stream *s, int c)
175 if (s->file)
176 ungetc(c, s->file);
177 else
178 --s->str;
179 s->c = -1;
182 static int isl_stream_push_char(struct isl_stream *s, int c)
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;
190 s->buffer[s->len++] = c;
191 return 0;
194 void isl_stream_push_token(struct isl_stream *s, struct isl_token *tok)
196 isl_assert(s->ctx, s->n_token < 5, return);
197 s->tokens[s->n_token++] = tok;
200 static enum isl_token_type check_keywords(struct isl_stream *s)
202 struct isl_hash_table_entry *entry;
203 struct isl_keyword *keyword;
204 uint32_t name_hash;
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 if (!strcasecmp(s->buffer, "infty"))
213 return ISL_TOKEN_INFTY;
214 if (!strcasecmp(s->buffer, "infinity"))
215 return ISL_TOKEN_INFTY;
216 if (!strcasecmp(s->buffer, "NaN"))
217 return ISL_TOKEN_NAN;
219 if (!s->keywords)
220 return ISL_TOKEN_IDENT;
222 name_hash = isl_hash_string(isl_hash_init(), s->buffer);
223 entry = isl_hash_table_find(s->ctx, s->keywords, name_hash, same_name,
224 s->buffer, 0);
225 if (entry) {
226 keyword = entry->data;
227 return keyword->type;
230 return ISL_TOKEN_IDENT;
233 int isl_stream_skip_line(struct isl_stream *s)
235 int c;
237 while ((c = isl_stream_getc(s)) != -1 && c != '\n')
238 /* nothing */
241 return c == -1 ? -1 : 0;
244 static struct isl_token *next_token(struct isl_stream *s, int same_line)
246 int c;
247 struct isl_token *tok = NULL;
248 int line, col;
249 int old_line = s->line;
251 if (s->n_token) {
252 if (same_line && s->tokens[s->n_token - 1]->on_new_line)
253 return NULL;
254 return s->tokens[--s->n_token];
257 if (same_line && s->c == '\n')
258 return NULL;
260 s->len = 0;
262 /* skip spaces and comment lines */
263 while ((c = isl_stream_getc(s)) != -1) {
264 if (c == '#') {
265 if (isl_stream_skip_line(s) < 0)
266 break;
267 c = '\n';
268 if (same_line)
269 break;
270 } else if (!isspace(c) || (same_line && c == '\n'))
271 break;
274 line = s->line;
275 col = s->col;
277 if (c == -1 || (same_line && c == '\n'))
278 return NULL;
279 if (c == '(' ||
280 c == ')' ||
281 c == '+' ||
282 c == '/' ||
283 c == '*' ||
284 c == '%' ||
285 c == '^' ||
286 c == '=' ||
287 c == '@' ||
288 c == ',' ||
289 c == '.' ||
290 c == ';' ||
291 c == '[' ||
292 c == ']' ||
293 c == '{' ||
294 c == '}') {
295 tok = isl_token_new(s->ctx, line, col, old_line != line);
296 if (!tok)
297 return NULL;
298 tok->type = (enum isl_token_type)c;
299 return tok;
301 if (c == '-') {
302 int c;
303 if ((c = isl_stream_getc(s)) == '>') {
304 tok = isl_token_new(s->ctx, line, col, old_line != line);
305 if (!tok)
306 return NULL;
307 tok->type = ISL_TOKEN_TO;
308 return tok;
310 if (c != -1)
311 isl_stream_ungetc(s, c);
312 if (!isdigit(c)) {
313 tok = isl_token_new(s->ctx, line, col, old_line != line);
314 if (!tok)
315 return NULL;
316 tok->type = (enum isl_token_type) '-';
317 return tok;
320 if (c == '-' || isdigit(c)) {
321 tok = isl_token_new(s->ctx, line, col, old_line != line);
322 if (!tok)
323 return NULL;
324 tok->type = ISL_TOKEN_VALUE;
325 isl_int_init(tok->u.v);
326 if (isl_stream_push_char(s, c))
327 goto error;
328 while ((c = isl_stream_getc(s)) != -1 && isdigit(c))
329 if (isl_stream_push_char(s, c))
330 goto error;
331 if (c != -1)
332 isl_stream_ungetc(s, c);
333 isl_stream_push_char(s, '\0');
334 isl_int_read(tok->u.v, s->buffer);
335 return tok;
337 if (isalpha(c)) {
338 tok = isl_token_new(s->ctx, line, col, old_line != line);
339 if (!tok)
340 return NULL;
341 isl_stream_push_char(s, c);
342 while ((c = isl_stream_getc(s)) != -1 &&
343 (isalnum(c) || c == '_'))
344 isl_stream_push_char(s, c);
345 if (c != -1)
346 isl_stream_ungetc(s, c);
347 while ((c = isl_stream_getc(s)) != -1 && c == '\'')
348 isl_stream_push_char(s, c);
349 if (c != -1)
350 isl_stream_ungetc(s, c);
351 isl_stream_push_char(s, '\0');
352 tok->type = check_keywords(s);
353 if (tok->type == ISL_TOKEN_IDENT)
354 tok->u.s = strdup(s->buffer);
355 return tok;
357 if (c == '"') {
358 tok = isl_token_new(s->ctx, line, col, old_line != line);
359 if (!tok)
360 return NULL;
361 tok->type = ISL_TOKEN_STRING;
362 tok->u.s = NULL;
363 while ((c = isl_stream_getc(s)) != -1 && c != '"' && c != '\n')
364 isl_stream_push_char(s, c);
365 if (c != '"') {
366 isl_stream_error(s, NULL, "unterminated string");
367 goto error;
369 isl_stream_push_char(s, '\0');
370 tok->u.s = strdup(s->buffer);
371 return tok;
373 if (c == ':') {
374 int c;
375 tok = isl_token_new(s->ctx, line, col, old_line != line);
376 if (!tok)
377 return NULL;
378 if ((c = isl_stream_getc(s)) == '=') {
379 tok->type = ISL_TOKEN_DEF;
380 return tok;
382 if (c != -1)
383 isl_stream_ungetc(s, c);
384 tok->type = (enum isl_token_type) ':';
385 return tok;
387 if (c == '>') {
388 int c;
389 tok = isl_token_new(s->ctx, line, col, old_line != line);
390 if (!tok)
391 return NULL;
392 if ((c = isl_stream_getc(s)) == '=') {
393 tok->type = ISL_TOKEN_GE;
394 return tok;
395 } else if (c == '>') {
396 if ((c = isl_stream_getc(s)) == '=') {
397 tok->type = ISL_TOKEN_LEX_GE;
398 return tok;
400 tok->type = ISL_TOKEN_LEX_GT;
401 } else
402 tok->type = ISL_TOKEN_GT;
403 if (c != -1)
404 isl_stream_ungetc(s, c);
405 return tok;
407 if (c == '<') {
408 int c;
409 tok = isl_token_new(s->ctx, line, col, old_line != line);
410 if (!tok)
411 return NULL;
412 if ((c = isl_stream_getc(s)) == '=') {
413 tok->type = ISL_TOKEN_LE;
414 return tok;
415 } else if (c == '<') {
416 if ((c = isl_stream_getc(s)) == '=') {
417 tok->type = ISL_TOKEN_LEX_LE;
418 return tok;
420 tok->type = ISL_TOKEN_LEX_LT;
421 } else
422 tok->type = ISL_TOKEN_LT;
423 if (c != -1)
424 isl_stream_ungetc(s, c);
425 return tok;
427 if (c == '&') {
428 tok = isl_token_new(s->ctx, line, col, old_line != line);
429 if (!tok)
430 return NULL;
431 tok->type = ISL_TOKEN_AND;
432 if ((c = isl_stream_getc(s)) != '&' && c != -1)
433 isl_stream_ungetc(s, c);
434 return tok;
436 if (c == '|') {
437 tok = isl_token_new(s->ctx, line, col, old_line != line);
438 if (!tok)
439 return NULL;
440 tok->type = ISL_TOKEN_OR;
441 if ((c = isl_stream_getc(s)) != '|' && c != -1)
442 isl_stream_ungetc(s, c);
443 return tok;
446 tok = isl_token_new(s->ctx, line, col, old_line != line);
447 if (!tok)
448 return NULL;
449 tok->type = ISL_TOKEN_UNKNOWN;
450 return tok;
451 error:
452 isl_token_free(tok);
453 return NULL;
456 struct isl_token *isl_stream_next_token(struct isl_stream *s)
458 return next_token(s, 0);
461 struct isl_token *isl_stream_next_token_on_same_line(struct isl_stream *s)
463 return next_token(s, 1);
466 int isl_stream_eat_if_available(struct isl_stream *s, int type)
468 struct isl_token *tok;
470 tok = isl_stream_next_token(s);
471 if (!tok)
472 return 0;
473 if (tok->type == type) {
474 isl_token_free(tok);
475 return 1;
477 isl_stream_push_token(s, tok);
478 return 0;
481 int isl_stream_next_token_is(struct isl_stream *s, int type)
483 struct isl_token *tok;
484 int r;
486 tok = isl_stream_next_token(s);
487 if (!tok)
488 return 0;
489 r = tok->type == type;
490 isl_stream_push_token(s, tok);
491 return r;
494 char *isl_stream_read_ident_if_available(struct isl_stream *s)
496 struct isl_token *tok;
498 tok = isl_stream_next_token(s);
499 if (!tok)
500 return NULL;
501 if (tok->type == ISL_TOKEN_IDENT) {
502 char *ident = strdup(tok->u.s);
503 isl_token_free(tok);
504 return ident;
506 isl_stream_push_token(s, tok);
507 return NULL;
510 int isl_stream_eat(struct isl_stream *s, int type)
512 struct isl_token *tok;
514 tok = isl_stream_next_token(s);
515 if (!tok)
516 return -1;
517 if (tok->type == type) {
518 isl_token_free(tok);
519 return 0;
521 isl_stream_error(s, tok, "expecting other token");
522 isl_stream_push_token(s, tok);
523 return -1;
526 int isl_stream_is_empty(struct isl_stream *s)
528 struct isl_token *tok;
530 tok = isl_stream_next_token(s);
532 if (!tok)
533 return 1;
535 isl_stream_push_token(s, tok);
536 return 0;
539 static int free_keyword(void *p)
541 struct isl_keyword *keyword = p;
543 free(keyword->name);
544 free(keyword);
546 return 0;
549 void isl_stream_flush_tokens(struct isl_stream *s)
551 int i;
553 if (!s)
554 return;
555 for (i = 0; i < s->n_token; ++i)
556 isl_token_free(s->tokens[i]);
557 s->n_token = 0;
560 void isl_stream_free(struct isl_stream *s)
562 if (!s)
563 return;
564 free(s->buffer);
565 if (s->n_token != 0) {
566 struct isl_token *tok = isl_stream_next_token(s);
567 isl_stream_error(s, tok, "unexpected token");
568 isl_token_free(tok);
570 if (s->keywords) {
571 isl_hash_table_foreach(s->ctx, s->keywords, free_keyword);
572 isl_hash_table_free(s->ctx, s->keywords);
574 isl_ctx_deref(s->ctx);
575 free(s);