blob: 3bdb7f038bcf2498db7287f9769c3066d284ffb7 (
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
|
/* flex -o cparse_lex.c cparse_lex.l */
/* definitions */
%x sComment
%x sID
%x sValue
%x sQStr
%option noyywrap
ID ([-[:alnum:]_]+)
SPACE ([[:space:]]{-}[\n])
%{
#include <string.h>
#include "cparse_def.h"
#include "cparse.h"
#define STR_BUF_INC 4096
int line_number = 0;
int node_deactivated = 0;
char *str_buf = NULL;
char *out_buf = NULL;
char *str_ptr = NULL;
size_t str_buf_len = 0;
void
append_str(char *text)
{
size_t tlen = strlen(text);
size_t slen = str_ptr - str_buf;
if (!str_buf || (slen + tlen) >= str_buf_len) {
str_buf_len += STR_BUF_INC;
str_buf = realloc(str_buf, str_buf_len);
out_buf = realloc(out_buf, str_buf_len);
if (!str_buf || !out_buf) {
printf("realloc failed\n");
exit(1);
}
str_ptr = str_buf + slen;
}
strcpy(str_ptr, text);
str_ptr += tlen;
}
void
set_ret_str()
{
*str_ptr = 0;
strcpy(out_buf, str_buf);
str_ptr = str_buf;
}
%}
%%
<INITIAL>"/*" {
BEGIN(sComment);
}
<sComment>[^*\n]* {
append_str(yytext);
}
<sComment>\*[^/] {
append_str(yytext);
}
<sComment>\n {
append_str(yytext);
++line_number;
}
<sComment>"*/" {
set_ret_str();
yylval.str = strdup(out_buf);
BEGIN(INITIAL);
return COMMENT;
}
<INITIAL>! {
node_deactivated = 1;
}
<INITIAL>[[:space:]]+ {
}
<INITIAL>\} {
node_deactivated = 0;
return RIGHTB;
}
<INITIAL>{ID} {
yylval.str = strdup(yytext);
yylval.deactivated = node_deactivated;
node_deactivated = 0;
BEGIN(sID);
return NODE;
}
<sID>:?{SPACE}+[^{\n] {
unput(yytext[yyleng - 1]);
BEGIN(sValue);
}
<sID>{SPACE}+ {
}
<sID>\{ {
BEGIN(INITIAL);
return LEFTB;
}
<sID>\n {
++line_number;
BEGIN(INITIAL);
}
<sValue>{SPACE}+ {
/* ignore spaces */
}
<sValue>\" {
/* quoted string */
BEGIN(sQStr);
}
<sQStr>[^\"\\\n]+ {
append_str(yytext);
}
<sQStr>\\. {
char tmp[2] = { yytext[1], 0 };
append_str(tmp);
}
<sQStr>\n {
append_str(yytext);
++line_number;
}
<sQStr>\" {
set_ret_str();
yylval.str = strdup(out_buf);
BEGIN(sValue);
return VALUE;
}
<sValue>[^{"[:space:]][^{[:space:]]+ {
/* unquoted string */
yylval.str = strdup(yytext);
return VALUE;
}
<sValue>\{ {
BEGIN(INITIAL);
return LEFTB;
}
<sValue>\n {
++line_number;
BEGIN(INITIAL);
}
%%
/* code */
|