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
;
81 void isl_token_free(struct isl_token
*tok
)
85 if (tok
->type
== ISL_TOKEN_VALUE
)
86 isl_int_clear(tok
->u
.v
);
92 void isl_stream_error(struct isl_stream
*s
, struct isl_token
*tok
, char *msg
)
94 int line
= tok
? tok
->line
: s
->line
;
95 int col
= tok
? tok
->col
: s
->col
;
96 fprintf(stderr
, "syntax error (%d, %d): %s\n", line
, col
, msg
);
99 fprintf(stderr
, "got '%c'\n", tok
->type
);
100 else if (tok
->type
== ISL_TOKEN_IDENT
)
101 fprintf(stderr
, "got ident '%s'\n", tok
->u
.s
);
102 else if (tok
->is_keyword
)
103 fprintf(stderr
, "got keyword '%s'\n", tok
->u
.s
);
104 else if (tok
->type
== ISL_TOKEN_VALUE
) {
105 fprintf(stderr
, "got value '");
106 isl_int_print(stderr
, tok
->u
.v
, 0);
107 fprintf(stderr
, "'\n");
109 fprintf(stderr
, "got token '%s'\n", tok
->u
.s
);
111 fprintf(stderr
, "got token type %d\n", tok
->type
);
115 static struct isl_stream
* isl_stream_new(struct isl_ctx
*ctx
)
118 struct isl_stream
*s
= isl_alloc_type(ctx
, struct isl_stream
);
130 for (i
= 0; i
< 5; ++i
)
135 s
->buffer
= isl_alloc_array(ctx
, char, s
->size
);
144 struct isl_stream
* isl_stream_new_file(struct isl_ctx
*ctx
, FILE *file
)
146 struct isl_stream
*s
= isl_stream_new(ctx
);
153 struct isl_stream
* isl_stream_new_str(struct isl_ctx
*ctx
, const char *str
)
155 struct isl_stream
*s
= isl_stream_new(ctx
);
162 static int isl_stream_getc(struct isl_stream
*s
)
187 static void isl_stream_ungetc(struct isl_stream
*s
, int c
)
196 static int isl_stream_push_char(struct isl_stream
*s
, int c
)
198 if (s
->len
>= s
->size
) {
199 s
->size
= (3*s
->size
)/2;
200 s
->buffer
= isl_realloc_array(s
->ctx
, s
->buffer
, char, s
->size
);
204 s
->buffer
[s
->len
++] = c
;
208 void isl_stream_push_token(struct isl_stream
*s
, struct isl_token
*tok
)
210 isl_assert(s
->ctx
, s
->n_token
< 5, return);
211 s
->tokens
[s
->n_token
++] = tok
;
214 static enum isl_token_type
check_keywords(struct isl_stream
*s
)
216 struct isl_hash_table_entry
*entry
;
217 struct isl_keyword
*keyword
;
220 if (!strcasecmp(s
->buffer
, "exists"))
221 return ISL_TOKEN_EXISTS
;
222 if (!strcasecmp(s
->buffer
, "and"))
223 return ISL_TOKEN_AND
;
224 if (!strcasecmp(s
->buffer
, "or"))
226 if (!strcasecmp(s
->buffer
, "infty"))
227 return ISL_TOKEN_INFTY
;
228 if (!strcasecmp(s
->buffer
, "infinity"))
229 return ISL_TOKEN_INFTY
;
230 if (!strcasecmp(s
->buffer
, "NaN"))
231 return ISL_TOKEN_NAN
;
232 if (!strcasecmp(s
->buffer
, "max"))
233 return ISL_TOKEN_MAX
;
234 if (!strcasecmp(s
->buffer
, "rat"))
235 return ISL_TOKEN_RAT
;
238 return ISL_TOKEN_IDENT
;
240 name_hash
= isl_hash_string(isl_hash_init(), s
->buffer
);
241 entry
= isl_hash_table_find(s
->ctx
, s
->keywords
, name_hash
, same_name
,
244 keyword
= entry
->data
;
245 return keyword
->type
;
248 return ISL_TOKEN_IDENT
;
251 int isl_stream_skip_line(struct isl_stream
*s
)
255 while ((c
= isl_stream_getc(s
)) != -1 && c
!= '\n')
259 return c
== -1 ? -1 : 0;
262 static struct isl_token
*next_token(struct isl_stream
*s
, int same_line
)
265 struct isl_token
*tok
= NULL
;
267 int old_line
= s
->line
;
270 if (same_line
&& s
->tokens
[s
->n_token
- 1]->on_new_line
)
272 return s
->tokens
[--s
->n_token
];
275 if (same_line
&& s
->c
== '\n')
280 /* skip spaces and comment lines */
281 while ((c
= isl_stream_getc(s
)) != -1) {
283 if (isl_stream_skip_line(s
) < 0)
288 } else if (!isspace(c
) || (same_line
&& c
== '\n'))
295 if (c
== -1 || (same_line
&& c
== '\n'))
313 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
316 tok
->type
= (enum isl_token_type
)c
;
321 if ((c
= isl_stream_getc(s
)) == '>') {
322 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
325 tok
->u
.s
= strdup("->");
326 tok
->type
= ISL_TOKEN_TO
;
330 isl_stream_ungetc(s
, c
);
332 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
335 tok
->type
= (enum isl_token_type
) '-';
339 if (c
== '-' || isdigit(c
)) {
340 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
343 tok
->type
= ISL_TOKEN_VALUE
;
344 isl_int_init(tok
->u
.v
);
345 if (isl_stream_push_char(s
, c
))
347 while ((c
= isl_stream_getc(s
)) != -1 && isdigit(c
))
348 if (isl_stream_push_char(s
, c
))
351 isl_stream_ungetc(s
, c
);
352 isl_stream_push_char(s
, '\0');
353 isl_int_read(tok
->u
.v
, s
->buffer
);
356 if (isalpha(c
) || c
== '_') {
357 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
360 isl_stream_push_char(s
, c
);
361 while ((c
= isl_stream_getc(s
)) != -1 &&
362 (isalnum(c
) || c
== '_'))
363 isl_stream_push_char(s
, c
);
365 isl_stream_ungetc(s
, c
);
366 while ((c
= isl_stream_getc(s
)) != -1 && c
== '\'')
367 isl_stream_push_char(s
, c
);
369 isl_stream_ungetc(s
, c
);
370 isl_stream_push_char(s
, '\0');
371 tok
->type
= check_keywords(s
);
372 if (tok
->type
!= ISL_TOKEN_IDENT
)
374 tok
->u
.s
= strdup(s
->buffer
);
380 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
383 tok
->type
= ISL_TOKEN_STRING
;
385 while ((c
= isl_stream_getc(s
)) != -1 && c
!= '"' && c
!= '\n')
386 isl_stream_push_char(s
, c
);
388 isl_stream_error(s
, NULL
, "unterminated string");
391 isl_stream_push_char(s
, '\0');
392 tok
->u
.s
= strdup(s
->buffer
);
397 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
400 if ((c
= isl_stream_getc(s
)) == '=') {
401 tok
->u
.s
= strdup(":=");
402 tok
->type
= ISL_TOKEN_DEF
;
406 isl_stream_ungetc(s
, c
);
407 tok
->type
= (enum isl_token_type
) ':';
412 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
415 if ((c
= isl_stream_getc(s
)) == '=') {
416 tok
->u
.s
= strdup(">=");
417 tok
->type
= ISL_TOKEN_GE
;
419 } else if (c
== '>') {
420 if ((c
= isl_stream_getc(s
)) == '=') {
421 tok
->u
.s
= strdup(">>=");
422 tok
->type
= ISL_TOKEN_LEX_GE
;
425 tok
->u
.s
= strdup(">>");
426 tok
->type
= ISL_TOKEN_LEX_GT
;
428 tok
->u
.s
= strdup(">");
429 tok
->type
= ISL_TOKEN_GT
;
432 isl_stream_ungetc(s
, c
);
437 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
440 if ((c
= isl_stream_getc(s
)) == '=') {
441 tok
->u
.s
= strdup("<=");
442 tok
->type
= ISL_TOKEN_LE
;
444 } else if (c
== '<') {
445 if ((c
= isl_stream_getc(s
)) == '=') {
446 tok
->u
.s
= strdup("<<=");
447 tok
->type
= ISL_TOKEN_LEX_LE
;
450 tok
->u
.s
= strdup("<<");
451 tok
->type
= ISL_TOKEN_LEX_LT
;
453 tok
->u
.s
= strdup("<");
454 tok
->type
= ISL_TOKEN_LT
;
457 isl_stream_ungetc(s
, c
);
461 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
464 tok
->type
= ISL_TOKEN_AND
;
465 if ((c
= isl_stream_getc(s
)) != '&' && c
!= -1) {
466 tok
->u
.s
= strdup("&");
467 isl_stream_ungetc(s
, c
);
469 tok
->u
.s
= strdup("&&");
473 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
476 tok
->type
= ISL_TOKEN_OR
;
477 if ((c
= isl_stream_getc(s
)) != '|' && c
!= -1) {
478 tok
->u
.s
= strdup("|");
479 isl_stream_ungetc(s
, c
);
481 tok
->u
.s
= strdup("||");
485 tok
= isl_token_new(s
->ctx
, line
, col
, old_line
!= line
);
488 tok
->type
= ISL_TOKEN_UNKNOWN
;
495 struct isl_token
*isl_stream_next_token(struct isl_stream
*s
)
497 return next_token(s
, 0);
500 struct isl_token
*isl_stream_next_token_on_same_line(struct isl_stream
*s
)
502 return next_token(s
, 1);
505 int isl_stream_eat_if_available(struct isl_stream
*s
, int type
)
507 struct isl_token
*tok
;
509 tok
= isl_stream_next_token(s
);
512 if (tok
->type
== type
) {
516 isl_stream_push_token(s
, tok
);
520 int isl_stream_next_token_is(struct isl_stream
*s
, int type
)
522 struct isl_token
*tok
;
525 tok
= isl_stream_next_token(s
);
528 r
= tok
->type
== type
;
529 isl_stream_push_token(s
, tok
);
533 char *isl_stream_read_ident_if_available(struct isl_stream
*s
)
535 struct isl_token
*tok
;
537 tok
= isl_stream_next_token(s
);
540 if (tok
->type
== ISL_TOKEN_IDENT
) {
541 char *ident
= strdup(tok
->u
.s
);
545 isl_stream_push_token(s
, tok
);
549 int isl_stream_eat(struct isl_stream
*s
, int type
)
551 struct isl_token
*tok
;
553 tok
= isl_stream_next_token(s
);
556 if (tok
->type
== type
) {
560 isl_stream_error(s
, tok
, "expecting other token");
561 isl_stream_push_token(s
, tok
);
565 int isl_stream_is_empty(struct isl_stream
*s
)
567 struct isl_token
*tok
;
569 tok
= isl_stream_next_token(s
);
574 isl_stream_push_token(s
, tok
);
578 static int free_keyword(void **p
, void *user
)
580 struct isl_keyword
*keyword
= *p
;
588 void isl_stream_flush_tokens(struct isl_stream
*s
)
594 for (i
= 0; i
< s
->n_token
; ++i
)
595 isl_token_free(s
->tokens
[i
]);
599 void isl_stream_free(struct isl_stream
*s
)
604 if (s
->n_token
!= 0) {
605 struct isl_token
*tok
= isl_stream_next_token(s
);
606 isl_stream_error(s
, tok
, "unexpected token");
610 isl_hash_table_foreach(s
->ctx
, s
->keywords
, &free_keyword
, NULL
);
611 isl_hash_table_free(s
->ctx
, s
->keywords
);
613 isl_ctx_deref(s
->ctx
);