summaryrefslogtreecommitdiff
path: root/test/condition_14.csif.re
blob: fbb87ebca7d10c048a94cdaaf5a6a3501544e41c (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define	BSIZE	8192

/*!types:re2c */

typedef struct Scanner
{
	FILE			    *fp;
	unsigned char	    *cur, *tok, *lim, *eof;
	unsigned char 	    buffer[BSIZE];
	unsigned char       yych;
	enum ScanContition  cond;
	int                 state;
} Scanner;

size_t fill(Scanner *s, size_t len)
{
	size_t got = ~0, cnt;

	if (!s->eof && s->lim - s->tok < len)
	{
		if (s->tok > s->buffer)
		{
			cnt = s->tok - s->buffer;
			memcpy(s->buffer, s->tok, s->lim - s->tok);
			s->tok -= cnt;
			s->cur -= cnt;
			s->lim -= cnt;
			cnt = &s->buffer[BSIZE] - s->lim;
		}
		else
		{
			cnt = BSIZE;
		}
		if ((got = fread(s->lim, 1, cnt, s->fp)) != cnt)
		{
			s->eof = &s->lim[got];
		}
		s->lim += got;
	}
	if (s->eof && s->cur + len > s->eof)
	{
		return ~0; /* not enough input data */
	}
	return got;
}

size_t init(Scanner *s)
{
	s->cur = s->tok = s->lim = s->buffer;
	s->eof = 0;
	s->cond = EStateNormal;
	s->state = -1;

	return fill(s, 0);
}

void fputl(const char *s, size_t len, FILE *stream)
{
	while(len-- > 0)
	{
		fputc(*s++, stream);
	}
}

void scan(Scanner *s)
{
	s->tok = s->cur;
/*!re2c
re2c:define:YYGETSTATE       = "s->state";
re2c:define:YYGETSTATE:naked = 1;
re2c:define:YYCONDTYPE       = ScanContition;
re2c:indent:top              = 1;
re2c:cond:goto               = "continue;";
*/
/*!getstate:re2c */
	for(;;)
	{
		s->tok = s->cur;
/*!re2c

re2c:define:YYCTYPE          = "unsigned char";
re2c:define:YYCURSOR         = s->cur;
re2c:define:YYLIMIT          = s->lim;
re2c:define:YYMARKER         = s->tok;
re2c:define:YYFILL@len       = #;
re2c:define:YYFILL:naked     = 1;
re2c:define:YYFILL           = "if (fill(s, #) == ~0) break;";
re2c:define:YYSETSTATE@state = #;
re2c:define:YYSETSTATE       = "s->state = #;";
re2c:define:YYSETCONDITION       = "s->cond = #;";
re2c:define:YYSETCONDITION@cond  = #;
re2c:define:YYGETCONDITION       = s->cond;
re2c:define:YYGETCONDITION:naked = 1;
re2c:variable:yych           = s->yych;
re2c:yych:emit               = 0;
re2c:indent:top              = 2;
re2c:condenumprefix          = EState;

<Normal>	"??(" :=
		fputc('[', stdout);
		continue;
<Normal>	"??)" :=
		fputc(']', stdout);
		continue;
<Normal>	"??<" :=
		fputc('{', stdout);
		continue;
<Normal>	"??>" :=
		fputc('}', stdout);
		continue;
<Normal>	"??=" :=
		fputc('#', stdout);
		continue;
<Normal>	"??/" :=
		fputc('\\', stdout);
		continue;
<Normal>	"??'" :=
		fputc('^', stdout);
		continue;
<Normal>	"??!" :=
		fputc('|', stdout);
		continue;
<Normal>	"??-" :=
		fputc('~', stdout);
		continue;
<Normal>	"/*" :=> Comment
<Normal>	"//" :=> Skiptoeol
<Normal>	"'\\\"'"|"'\"'" :=
		fputl("'\"'", 3, stdout);
		continue;
<Normal>	'"' => String :=
		fputc(s->cur[-1], stdout);
		continue;
<Normal>	[^] :=
		fputc(s->cur[-1], stdout);
		continue;
<Comment>	"*" "/" :=> Normal
<Comment>	[^] :=> Comment
<Skiptoeol>	"??/" "\r"? "\n" :=> Skiptoeol
<Skiptoeol>	"\\" "\r"? "\n" :=> Skiptoeol
<Skiptoeol>	"\r" "\n" => Normal :=
		fputc('\r', stdout);
		fputc('\n', stdout);
		continue;
<Skiptoeol>	"\n" => Normal :=
		fputc('\n', stdout);
		continue;
<Skiptoeol>	[^] :=> Skiptoeol
<String>	'\\' . :=
		fputl((const char*)s->cur-2, 2, stdout);
		continue;
<String>	'"' => Normal :=
		fputc(s->cur[-1], stdout);
		continue;
<String>	[^] :=
		fputc(s->cur[-1], stdout);
		continue;
*/
	}
}

int main(int argc, char **argv)
{
	Scanner in;

	if (argc != 2)
	{
		fprintf(stderr, "%s <file>\n", argv[0]);
		return 1;;
	}

	memset((char*) &in, 0, sizeof(in));

	if (!strcmp(argv[1], "-"))
	{
		in.fp = stdin;
	}
	else if ((in.fp = fopen(argv[1], "r")) == NULL)
	{
		fprintf(stderr, "Cannot open file '%s'\n", argv[1]);
		return 1;
	}

	if (init(&in) > 0)
	{
 		scan(&in);
 	}

	if (in.fp != stdin)
	{
		fclose(in.fp);
	}
	return 0;
}