summaryrefslogtreecommitdiff
path: root/isl_stream.h
blob: f445fc66c1d933dc792171e691b039f536ae7753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef ISL_STREAM_H
#define ISL_STREAM_H

#include <stdio.h>

#if defined(__cplusplus)
extern "C" {
#endif

enum isl_token_type { ISL_TOKEN_UNKNOWN = 256, ISL_TOKEN_VALUE,
			ISL_TOKEN_IDENT, ISL_TOKEN_GE,
			ISL_TOKEN_LE, ISL_TOKEN_TO, ISL_TOKEN_AND,
			ISL_TOKEN_EXISTS };

struct isl_token {
	enum isl_token_type  type;

	unsigned int on_new_line : 1;
	int line;
	int col;

	union {
		isl_int	v;
		char	*s;
	} u;
};

void isl_token_free(struct isl_token *tok);

struct isl_stream {
	struct isl_ctx	*ctx;
	FILE        	*file;
	const char  	*str;
	int	    	line;
	int	    	col;
	int	    	eof;

	char	    	*buffer;
	size_t	    	size;
	size_t	    	len;
	int	    	c;

	struct isl_token	*tokens[5];
	int	    	n_token;
};

struct isl_stream* isl_stream_new_file(struct isl_ctx *ctx, FILE *file);
struct isl_stream* isl_stream_new_str(struct isl_ctx *ctx, const char *str);
void isl_stream_free(struct isl_stream *s);

void isl_stream_error(struct isl_stream *s, struct isl_token *tok, char *msg);

struct isl_token *isl_stream_next_token(struct isl_stream *s);
void isl_stream_push_token(struct isl_stream *s, struct isl_token *tok);
int isl_stream_eat(struct isl_stream *s, int type);

#if defined(__cplusplus)
}
#endif

#endif