isl_convex_hull.c: is_bound: any inequality is a bound on an empty set
[isl.git] / isl_stream.c
blob88670cb2b9d831dc046bc6df5488303c17446af2
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 static struct isl_token *next_token(struct isl_stream *s, int same_line)
235 int c;
236 struct isl_token *tok = NULL;
237 int line, col;
238 int old_line = s->line;
240 if (s->n_token) {
241 if (same_line && s->tokens[s->n_token - 1]->on_new_line)
242 return NULL;
243 return s->tokens[--s->n_token];
246 if (same_line && s->c == '\n')
247 return NULL;
249 s->len = 0;
251 /* skip spaces and comment lines */
252 while ((c = isl_stream_getc(s)) != -1) {
253 if (c == '#') {
254 while ((c = isl_stream_getc(s)) != -1 && c != '\n')
255 /* nothing */
257 if (c == -1 || (same_line && c == '\n'))
258 break;
259 } else if (!isspace(c) || (same_line && c == '\n'))
260 break;
263 line = s->line;
264 col = s->col;
266 if (c == -1 || (same_line && c == '\n'))
267 return NULL;
268 if (c == '(' ||
269 c == ')' ||
270 c == '+' ||
271 c == '/' ||
272 c == '*' ||
273 c == '%' ||
274 c == '^' ||
275 c == '=' ||
276 c == '@' ||
277 c == ',' ||
278 c == '.' ||
279 c == ';' ||
280 c == '[' ||
281 c == ']' ||
282 c == '{' ||
283 c == '}') {
284 tok = isl_token_new(s->ctx, line, col, old_line != line);
285 if (!tok)
286 return NULL;
287 tok->type = (enum isl_token_type)c;
288 return tok;
290 if (c == '-') {
291 int c;
292 if ((c = isl_stream_getc(s)) == '>') {
293 tok = isl_token_new(s->ctx, line, col, old_line != line);
294 if (!tok)
295 return NULL;
296 tok->type = ISL_TOKEN_TO;
297 return tok;
299 if (c != -1)
300 isl_stream_ungetc(s, c);
301 if (!isdigit(c)) {
302 tok = isl_token_new(s->ctx, line, col, old_line != line);
303 if (!tok)
304 return NULL;
305 tok->type = (enum isl_token_type) '-';
306 return tok;
309 if (c == '-' || isdigit(c)) {
310 tok = isl_token_new(s->ctx, line, col, old_line != line);
311 if (!tok)
312 return NULL;
313 tok->type = ISL_TOKEN_VALUE;
314 isl_int_init(tok->u.v);
315 if (isl_stream_push_char(s, c))
316 goto error;
317 while ((c = isl_stream_getc(s)) != -1 && isdigit(c))
318 if (isl_stream_push_char(s, c))
319 goto error;
320 if (c != -1)
321 isl_stream_ungetc(s, c);
322 isl_stream_push_char(s, '\0');
323 isl_int_read(tok->u.v, s->buffer);
324 return tok;
326 if (isalpha(c)) {
327 tok = isl_token_new(s->ctx, line, col, old_line != line);
328 if (!tok)
329 return NULL;
330 isl_stream_push_char(s, c);
331 while ((c = isl_stream_getc(s)) != -1 &&
332 (isalnum(c) || c == '_'))
333 isl_stream_push_char(s, c);
334 if (c != -1)
335 isl_stream_ungetc(s, c);
336 while ((c = isl_stream_getc(s)) != -1 && c == '\'')
337 isl_stream_push_char(s, c);
338 if (c != -1)
339 isl_stream_ungetc(s, c);
340 isl_stream_push_char(s, '\0');
341 tok->type = check_keywords(s);
342 if (tok->type == ISL_TOKEN_IDENT)
343 tok->u.s = strdup(s->buffer);
344 return tok;
346 if (c == '"') {
347 tok = isl_token_new(s->ctx, line, col, old_line != line);
348 if (!tok)
349 return NULL;
350 tok->type = ISL_TOKEN_STRING;
351 tok->u.s = NULL;
352 while ((c = isl_stream_getc(s)) != -1 && c != '"' && c != '\n')
353 isl_stream_push_char(s, c);
354 if (c != '"') {
355 isl_stream_error(s, NULL, "unterminated string");
356 goto error;
358 isl_stream_push_char(s, '\0');
359 tok->u.s = strdup(s->buffer);
360 return tok;
362 if (c == ':') {
363 int c;
364 tok = isl_token_new(s->ctx, line, col, old_line != line);
365 if (!tok)
366 return NULL;
367 if ((c = isl_stream_getc(s)) == '=') {
368 tok->type = ISL_TOKEN_DEF;
369 return tok;
371 if (c != -1)
372 isl_stream_ungetc(s, c);
373 tok->type = ':';
374 return tok;
376 if (c == '>') {
377 int c;
378 tok = isl_token_new(s->ctx, line, col, old_line != line);
379 if (!tok)
380 return NULL;
381 if ((c = isl_stream_getc(s)) == '=') {
382 tok->type = ISL_TOKEN_GE;
383 return tok;
385 if (c != -1)
386 isl_stream_ungetc(s, c);
387 tok->type = ISL_TOKEN_GT;
388 return tok;
390 if (c == '<') {
391 int c;
392 tok = isl_token_new(s->ctx, line, col, old_line != line);
393 if (!tok)
394 return NULL;
395 if ((c = isl_stream_getc(s)) == '=') {
396 tok->type = ISL_TOKEN_LE;
397 return tok;
399 if (c != -1)
400 isl_stream_ungetc(s, c);
401 tok->type = ISL_TOKEN_LT;
402 return tok;
404 if (c == '&') {
405 tok = isl_token_new(s->ctx, line, col, old_line != line);
406 if (!tok)
407 return NULL;
408 tok->type = ISL_TOKEN_AND;
409 if ((c = isl_stream_getc(s)) != '&' && c != -1)
410 isl_stream_ungetc(s, c);
411 return tok;
413 if (c == '|') {
414 tok = isl_token_new(s->ctx, line, col, old_line != line);
415 if (!tok)
416 return NULL;
417 tok->type = ISL_TOKEN_OR;
418 if ((c = isl_stream_getc(s)) != '|' && c != -1)
419 isl_stream_ungetc(s, c);
420 return tok;
423 tok = isl_token_new(s->ctx, line, col, old_line != line);
424 if (!tok)
425 return NULL;
426 tok->type = ISL_TOKEN_UNKNOWN;
427 return tok;
428 error:
429 isl_token_free(tok);
430 return NULL;
433 struct isl_token *isl_stream_next_token(struct isl_stream *s)
435 return next_token(s, 0);
438 struct isl_token *isl_stream_next_token_on_same_line(struct isl_stream *s)
440 return next_token(s, 1);
443 int isl_stream_eat_if_available(struct isl_stream *s, int type)
445 struct isl_token *tok;
447 tok = isl_stream_next_token(s);
448 if (!tok)
449 return 0;
450 if (tok->type == type) {
451 isl_token_free(tok);
452 return 1;
454 isl_stream_push_token(s, tok);
455 return 0;
458 int isl_stream_next_token_is(struct isl_stream *s, int type)
460 struct isl_token *tok;
461 int r;
463 tok = isl_stream_next_token(s);
464 if (!tok)
465 return 0;
466 r = tok->type == type;
467 isl_stream_push_token(s, tok);
468 return r;
471 char *isl_stream_read_ident_if_available(struct isl_stream *s)
473 struct isl_token *tok;
475 tok = isl_stream_next_token(s);
476 if (!tok)
477 return NULL;
478 if (tok->type == ISL_TOKEN_IDENT) {
479 char *ident = strdup(tok->u.s);
480 isl_token_free(tok);
481 return ident;
483 isl_stream_push_token(s, tok);
484 return NULL;
487 int isl_stream_eat(struct isl_stream *s, int type)
489 struct isl_token *tok;
491 tok = isl_stream_next_token(s);
492 if (!tok)
493 return -1;
494 if (tok->type == type) {
495 isl_token_free(tok);
496 return 0;
498 isl_stream_error(s, tok, "expecting other token");
499 isl_stream_push_token(s, tok);
500 return -1;
503 int isl_stream_is_empty(struct isl_stream *s)
505 struct isl_token *tok;
507 tok = isl_stream_next_token(s);
509 if (!tok)
510 return 1;
512 isl_stream_push_token(s, tok);
513 return 0;
516 static int free_keyword(void *p)
518 struct isl_keyword *keyword = p;
520 free(keyword->name);
521 free(keyword);
523 return 0;
526 void isl_stream_free(struct isl_stream *s)
528 if (!s)
529 return;
530 free(s->buffer);
531 if (s->n_token != 0) {
532 struct isl_token *tok = isl_stream_next_token(s);
533 isl_stream_error(s, tok, "unexpected token");
534 isl_token_free(tok);
536 if (s->keywords) {
537 isl_hash_table_foreach(s->ctx, s->keywords, free_keyword);
538 isl_hash_table_free(s->ctx, s->keywords);
540 isl_ctx_deref(s->ctx);
541 free(s);