isl_map_print: add primes to duplicate names
[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 static struct isl_token *isl_token_new(struct isl_ctx *ctx,
17         int line, int col, unsigned on_new_line)
18 {
19         struct isl_token *tok = isl_alloc_type(ctx, struct isl_token);
20         if (!tok)
21                 return NULL;
22         tok->line = line;
23         tok->col = col;
24         tok->on_new_line = on_new_line;
25         return tok;
26 }
27
28 void isl_token_free(struct isl_token *tok)
29 {
30         if (!tok)
31                 return;
32         if (tok->type == ISL_TOKEN_VALUE)
33                 isl_int_clear(tok->u.v);
34         else if (tok->type == ISL_TOKEN_IDENT)
35                 free(tok->u.s);
36         free(tok);
37 }
38
39 void isl_stream_error(struct isl_stream *s, struct isl_token *tok, char *msg)
40 {
41         int line = tok ? tok->line : s->line;
42         int col = tok ? tok->col : s->col;
43         fprintf(stderr, "syntax error (%d, %d): %s\n", line, col, msg);
44         if (tok) {
45                 if (tok->type < 256)
46                         fprintf(stderr, "got '%c'\n", tok->type);
47                 else
48                         fprintf(stderr, "got token type %d\n", tok->type);
49         }
50 }
51
52 static struct isl_stream* isl_stream_new(struct isl_ctx *ctx)
53 {
54         int i;
55         struct isl_stream *s = isl_alloc_type(ctx, struct isl_stream);
56         if (!s)
57                 return NULL;
58         s->ctx = ctx;
59         isl_ctx_ref(s->ctx);
60         s->size = 256;
61         s->file = NULL;
62         s->str = NULL;
63         s->buffer = isl_alloc_array(ctx, char, s->size);
64         if (!s->buffer)
65                 goto error;
66         s->len = 0;
67         s->line = 1;
68         s->col = 0;
69         s->eof = 0;
70         s->c = -1;
71         for (i = 0; i < 5; ++i)
72                 s->tokens[i] = NULL;
73         s->n_token = 0;
74         return s;
75 error:
76         isl_stream_free(s);
77         return NULL;
78 }
79
80 struct isl_stream* isl_stream_new_file(struct isl_ctx *ctx, FILE *file)
81 {
82         struct isl_stream *s = isl_stream_new(ctx);
83         if (!s)
84                 return NULL;
85         s->file = file;
86         return s;
87 }
88
89 struct isl_stream* isl_stream_new_str(struct isl_ctx *ctx, const char *str)
90 {
91     struct isl_stream *s = isl_stream_new(ctx);
92     s->str = str;
93     return s;
94 }
95
96 static int isl_stream_getc(struct isl_stream *s)
97 {
98         int c;
99         if (s->eof)
100                 return -1;
101         if (s->file)
102                 c = fgetc(s->file);
103         else {
104                 c = *s->str++;
105                 if (c == '\0')
106                         c = -1;
107         }
108         if (c == -1)
109                 s->eof = 1;
110         if (!s->eof) {
111                 if (s->c == '\n') {
112                         s->line++;
113                         s->col = 0;
114                 } else
115                         s->col++;
116         }
117         s->c = c;
118         return c;
119 }
120
121 static void isl_stream_ungetc(struct isl_stream *s, int c)
122 {
123         if (s->file)
124                 ungetc(c, s->file);
125         else
126                 --s->str;
127         s->c = -1;
128 }
129
130 static int isl_stream_push_char(struct isl_stream *s, int c)
131 {
132         if (s->len >= s->size) {
133                 s->size = (3*s->size)/2;
134                 s->buffer = isl_realloc_array(ctx, s->buffer, char, s->size);
135                 if (!s->buffer)
136                         return -1;
137         }
138         s->buffer[s->len++] = c;
139         return 0;
140 }
141
142 void isl_stream_push_token(struct isl_stream *s, struct isl_token *tok)
143 {
144         isl_assert(s->ctx, s->n_token < 5, return);
145         s->tokens[s->n_token++] = tok;
146 }
147
148 static struct isl_token *next_token(struct isl_stream *s, int same_line)
149 {
150         int c;
151         struct isl_token *tok = NULL;
152         int line, col;
153         int old_line = s->line;
154
155         if (s->n_token) {
156                 if (same_line && s->tokens[s->n_token - 1]->on_new_line)
157                         return NULL;
158                 return s->tokens[--s->n_token];
159         }
160
161         s->len = 0;
162
163         /* skip spaces and comment lines */
164         while ((c = isl_stream_getc(s)) != -1) {
165                 if (c == '#') {
166                         while ((c = isl_stream_getc(s)) != -1 && c != '\n')
167                                 /* nothing */
168                                 ;
169                         if (c == -1 || (same_line && c == '\n'))
170                                 break;
171                 } else if (!isspace(c) || (same_line && c == '\n'))
172                         break;
173         }
174
175         line = s->line;
176         col = s->col;
177
178         if (c == -1 || (same_line && c == '\n'))
179                 return NULL;
180         if (c == '(' ||
181             c == ')' ||
182             c == '+' ||
183             c == '/' ||
184             c == '*' ||
185             c == '^' ||
186             c == '=' ||
187             c == ',' ||
188             c == ':' ||
189             c == '[' ||
190             c == ']' ||
191             c == '{' ||
192             c == '}') {
193                 tok = isl_token_new(s->ctx, line, col, old_line != line);
194                 if (!tok)
195                         return NULL;
196                 tok->type = (enum isl_token_type)c;
197                 return tok;
198         }
199         if (c == '-') {
200                 int c;
201                 if ((c = isl_stream_getc(s)) == '>') {
202                         tok = isl_token_new(s->ctx, line, col, old_line != line);
203                         if (!tok)
204                                 return NULL;
205                         tok->type = ISL_TOKEN_TO;
206                         return tok;
207                 }
208                 if (c != -1)
209                         isl_stream_ungetc(s, c);
210                 if (!isdigit(c)) {
211                         tok = isl_token_new(s->ctx, line, col, old_line != line);
212                         if (!tok)
213                                 return NULL;
214                         tok->type = (enum isl_token_type) '-';
215                         return tok;
216                 }
217         }
218         if (c == '-' || isdigit(c)) {
219                 tok = isl_token_new(s->ctx, line, col, old_line != line);
220                 if (!tok)
221                         return NULL;
222                 tok->type = ISL_TOKEN_VALUE;
223                 isl_int_init(tok->u.v);
224                 if (isl_stream_push_char(s, c))
225                         goto error;
226                 while ((c = isl_stream_getc(s)) != -1 && isdigit(c))
227                         if (isl_stream_push_char(s, c))
228                                 goto error;
229                 if (c != -1)
230                         isl_stream_ungetc(s, c);
231                 isl_stream_push_char(s, '\0');
232                 isl_int_read(tok->u.v, s->buffer);
233                 return tok;
234         }
235         if (isalpha(c)) {
236                 tok = isl_token_new(s->ctx, line, col, old_line != line);
237                 if (!tok)
238                         return NULL;
239                 isl_stream_push_char(s, c);
240                 while ((c = isl_stream_getc(s)) != -1 && isalnum(c))
241                         isl_stream_push_char(s, c);
242                 if (c != -1)
243                         isl_stream_ungetc(s, c);
244                 while ((c = isl_stream_getc(s)) != -1 && c == '\'')
245                         isl_stream_push_char(s, c);
246                 if (c != -1)
247                         isl_stream_ungetc(s, c);
248                 isl_stream_push_char(s, '\0');
249                 if (!strcasecmp(s->buffer, "exists"))
250                         tok->type = ISL_TOKEN_EXISTS;
251                 else if (!strcasecmp(s->buffer, "and"))
252                         tok->type = ISL_TOKEN_AND;
253                 else if (!strcasecmp(s->buffer, "or"))
254                         tok->type = ISL_TOKEN_OR;
255                 else {
256                         tok->type = ISL_TOKEN_IDENT;
257                         tok->u.s = strdup(s->buffer);
258                 }
259                 return tok;
260         }
261         if (c == '>') {
262                 int c;
263                 tok = isl_token_new(s->ctx, line, col, old_line != line);
264                 if (!tok)
265                         return NULL;
266                 if ((c = isl_stream_getc(s)) == '=') {
267                         tok->type = ISL_TOKEN_GE;
268                         return tok;
269                 }
270                 if (c != -1)
271                         isl_stream_ungetc(s, c);
272                 tok->type = ISL_TOKEN_GT;
273                 return tok;
274         }
275         if (c == '<') {
276                 int c;
277                 tok = isl_token_new(s->ctx, line, col, old_line != line);
278                 if (!tok)
279                         return NULL;
280                 if ((c = isl_stream_getc(s)) == '=') {
281                         tok->type = ISL_TOKEN_LE;
282                         return tok;
283                 }
284                 if (c != -1)
285                         isl_stream_ungetc(s, c);
286                 tok->type = ISL_TOKEN_LT;
287                 return tok;
288         }
289         if (c == '&') {
290                 tok = isl_token_new(s->ctx, line, col, old_line != line);
291                 if (!tok)
292                         return NULL;
293                 tok->type = ISL_TOKEN_AND;
294                 if ((c = isl_stream_getc(s)) != '&' && c != -1)
295                         isl_stream_ungetc(s, c);
296                 return tok;
297         }
298         if (c == '|') {
299                 tok = isl_token_new(s->ctx, line, col, old_line != line);
300                 if (!tok)
301                         return NULL;
302                 tok->type = ISL_TOKEN_OR;
303                 if ((c = isl_stream_getc(s)) != '|' && c != -1)
304                         isl_stream_ungetc(s, c);
305                 return tok;
306         }
307
308         tok = isl_token_new(s->ctx, line, col, old_line != line);
309         if (!tok)
310                 return NULL;
311         tok->type = ISL_TOKEN_UNKNOWN;
312         return tok;
313 error:
314         isl_token_free(tok);
315         return NULL;
316 }
317
318 struct isl_token *isl_stream_next_token(struct isl_stream *s)
319 {
320         return next_token(s, 0);
321 }
322
323 struct isl_token *isl_stream_next_token_on_same_line(struct isl_stream *s)
324 {
325         return next_token(s, 1);
326 }
327
328 int isl_stream_eat(struct isl_stream *s, int type)
329 {
330         struct isl_token *tok;
331
332         tok = isl_stream_next_token(s);
333         if (!tok)
334                 return -1;
335         if (tok->type == type) {
336                 isl_token_free(tok);
337                 return 0;
338         }
339         isl_stream_error(s, tok, "expecting other token");
340         isl_stream_push_token(s, tok);
341         return -1;
342 }
343
344 void isl_stream_free(struct isl_stream *s)
345 {
346         if (!s)
347                 return;
348         free(s->buffer);
349         if (s->n_token != 0) {
350                 struct isl_token *tok = isl_stream_next_token(s);
351                 isl_stream_error(s, tok, "unexpected token");
352                 isl_token_free(tok);
353         }
354         isl_ctx_deref(s->ctx);
355         free(s);
356 }