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
14 #include "isl_stream.h"
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
,
31 struct isl_hash_table_entry
*entry
;
32 struct isl_keyword
*keyword
;
36 s
->keywords
= isl_hash_table_alloc(s
->ctx
, 10);
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
,
47 return ISL_TOKEN_ERROR
;
49 keyword
= entry
->data
;
53 keyword
= isl_calloc_type(s
->ctx
, struct isl_keyword
);
55 return ISL_TOKEN_ERROR
;
56 keyword
->type
= s
->next_type
++;
57 keyword
->name
= strdup(name
);
60 return ISL_TOKEN_ERROR
;
62 entry
->data
= keyword
;
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
);
75 tok
->on_new_line
= on_new_line
;
79 void isl_token_free(struct isl_token
*tok
)
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
)
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
);
97 fprintf(stderr
, "got '%c'\n", tok
->type
);
99 fprintf(stderr
, "got token type %d\n", tok
->type
);
103 static struct isl_stream
* isl_stream_new(struct isl_ctx
*ctx
)
106 struct isl_stream
*s
= isl_alloc_type(ctx
, struct isl_stream
);
114 s
->buffer
= isl_alloc_array(ctx
, char, s
->size
);
122 for (i
= 0; i
< 5; ++i
)
132 struct isl_stream
* isl_stream_new_file(struct isl_ctx
*ctx
, FILE *file
)
134 struct isl_stream
*s
= isl_stream_new(ctx
);
141 struct isl_stream
* isl_stream_new_str(struct isl_ctx
*ctx
, const char *str
)
143 struct isl_stream
*s
= isl_stream_new(ctx
);
148 static int isl_stream_getc(struct isl_stream
*s
)
173 static void isl_stream_ungetc(struct isl_stream
*s
, int c
)
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
);
190 s
->buffer
[s
->len
++] = c
;
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
;
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"))
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
;
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
,
226 keyword
= entry
->data
;
227 return keyword
->type
;
230 return ISL_TOKEN_IDENT
;
233 int isl_stream_skip_line(struct isl_stream
*s
)
237 while ((c
= isl_stream_getc(s
)) != -1 && c
!= '\n')
241 return c
== -1 ? -1 : 0;
244 static struct isl_token
*next_token(struct isl_stream
*s
, int same_line
)
247 struct isl_token
*tok
= NULL
;
249 int old_line
= s
->line
;
252 if (same_line
&& s
->tokens
[s
->n_token
- 1]->on_new_line
)
254 return s
->tokens
[--s
->n_token
];
257 if (same_line
&& s
->c
== '\n')
262 /* skip spaces and comment lines */
263 while ((c
= isl_stream_getc(s
)) != -1) {
265 if (isl_stream_skip_line(s
) < 0)
270 } else if (!isspace(c
) || (same_line
&& c
== '\n'))
277 if (c
== -1 || (same_line
&& c
== '\n'))
295 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
298 tok
->type
= (enum isl_token_type
)c
;
303 if ((c
= isl_stream_getc(s
)) == '>') {
304 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
307 tok
->type
= ISL_TOKEN_TO
;
311 isl_stream_ungetc(s
, c
);
313 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
316 tok
->type
= (enum isl_token_type
) '-';
320 if (c
== '-' || isdigit(c
)) {
321 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
324 tok
->type
= ISL_TOKEN_VALUE
;
325 isl_int_init(tok
->u
.v
);
326 if (isl_stream_push_char(s
, c
))
328 while ((c
= isl_stream_getc(s
)) != -1 && isdigit(c
))
329 if (isl_stream_push_char(s
, c
))
332 isl_stream_ungetc(s
, c
);
333 isl_stream_push_char(s
, '\0');
334 isl_int_read(tok
->u
.v
, s
->buffer
);
338 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
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
);
346 isl_stream_ungetc(s
, c
);
347 while ((c
= isl_stream_getc(s
)) != -1 && c
== '\'')
348 isl_stream_push_char(s
, c
);
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
);
358 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
361 tok
->type
= ISL_TOKEN_STRING
;
363 while ((c
= isl_stream_getc(s
)) != -1 && c
!= '"' && c
!= '\n')
364 isl_stream_push_char(s
, c
);
366 isl_stream_error(s
, NULL
, "unterminated string");
369 isl_stream_push_char(s
, '\0');
370 tok
->u
.s
= strdup(s
->buffer
);
375 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
378 if ((c
= isl_stream_getc(s
)) == '=') {
379 tok
->type
= ISL_TOKEN_DEF
;
383 isl_stream_ungetc(s
, c
);
384 tok
->type
= (enum isl_token_type
) ':';
389 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
392 if ((c
= isl_stream_getc(s
)) == '=') {
393 tok
->type
= ISL_TOKEN_GE
;
395 } else if (c
== '>') {
396 if ((c
= isl_stream_getc(s
)) == '=') {
397 tok
->type
= ISL_TOKEN_LEX_GE
;
400 tok
->type
= ISL_TOKEN_LEX_GT
;
402 tok
->type
= ISL_TOKEN_GT
;
404 isl_stream_ungetc(s
, c
);
409 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
412 if ((c
= isl_stream_getc(s
)) == '=') {
413 tok
->type
= ISL_TOKEN_LE
;
415 } else if (c
== '<') {
416 if ((c
= isl_stream_getc(s
)) == '=') {
417 tok
->type
= ISL_TOKEN_LEX_LE
;
420 tok
->type
= ISL_TOKEN_LEX_LT
;
422 tok
->type
= ISL_TOKEN_LT
;
424 isl_stream_ungetc(s
, c
);
428 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
431 tok
->type
= ISL_TOKEN_AND
;
432 if ((c
= isl_stream_getc(s
)) != '&' && c
!= -1)
433 isl_stream_ungetc(s
, c
);
437 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
440 tok
->type
= ISL_TOKEN_OR
;
441 if ((c
= isl_stream_getc(s
)) != '|' && c
!= -1)
442 isl_stream_ungetc(s
, c
);
446 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
449 tok
->type
= ISL_TOKEN_UNKNOWN
;
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
);
473 if (tok
->type
== type
) {
477 isl_stream_push_token(s
, tok
);
481 int isl_stream_next_token_is(struct isl_stream
*s
, int type
)
483 struct isl_token
*tok
;
486 tok
= isl_stream_next_token(s
);
489 r
= tok
->type
== type
;
490 isl_stream_push_token(s
, tok
);
494 char *isl_stream_read_ident_if_available(struct isl_stream
*s
)
496 struct isl_token
*tok
;
498 tok
= isl_stream_next_token(s
);
501 if (tok
->type
== ISL_TOKEN_IDENT
) {
502 char *ident
= strdup(tok
->u
.s
);
506 isl_stream_push_token(s
, tok
);
510 int isl_stream_eat(struct isl_stream
*s
, int type
)
512 struct isl_token
*tok
;
514 tok
= isl_stream_next_token(s
);
517 if (tok
->type
== type
) {
521 isl_stream_error(s
, tok
, "expecting other token");
522 isl_stream_push_token(s
, tok
);
526 int isl_stream_is_empty(struct isl_stream
*s
)
528 struct isl_token
*tok
;
530 tok
= isl_stream_next_token(s
);
535 isl_stream_push_token(s
, tok
);
539 static int free_keyword(void *p
)
541 struct isl_keyword
*keyword
= p
;
549 void isl_stream_flush_tokens(struct isl_stream
*s
)
555 for (i
= 0; i
< s
->n_token
; ++i
)
556 isl_token_free(s
->tokens
[i
]);
560 void isl_stream_free(struct isl_stream
*s
)
565 if (s
->n_token
!= 0) {
566 struct isl_token
*tok
= isl_stream_next_token(s
);
567 isl_stream_error(s
, tok
, "unexpected token");
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
);