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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
|
%{ // -*-Fundamental-*-
#include <stdio.h>
#include "string.hh"
#include "string-convert.hh"
#include "my-lily-lexer.hh"
#include "varray.hh"
#include "parser.hh"
#include "debug.hh"
#include "input-score.hh"
#include "parseconstruct.hh"
#include "main.hh"
#include "identifier.hh"
#define start_quote() \
yy_push_state(quote);\
yylval.string = new String
#define yylval (*(YYSTYPE*)lexval_l)
#define YY_USER_ACTION add_lexed_char(YYLeng());
%}
%option c++
%option noyywrap
%option nodefault
%option debug
%option yyclass="My_lily_lexer"
%option stack
%option never-interactive
%option warn
%x incl
%x lyrics
%x notes
%x quote
A [a-zA-Z]
AA {A}|_
N [0-9]
AN {AA}|{N}
PUNCT [?!,.:;']
ACCENT \\[`'"^]
NATIONAL [\241-\377]
TEX {AA}|-|{PUNCT}|{ACCENT}|{NATIONAL}
WORD {A}{AN}*
ALPHAWORD {A}+
INT -?{N}+
REAL {INT}?(\.{N}*)?
KEYWORD \\{WORD}
WHITE [ \n\t\f]
BLACK [^ \n\t\f]
RESTNAME r
NOTECOMMAND \\{WORD}
DOTS \.+
LYRICS {AA}[^0-9 \t\n\f]*
COMMENT %.*\n
%%
<lyrics,INITIAL,notes>{COMMENT} {
}
<notes,INITIAL,lyrics>
include {
yy_push_state(incl);
}
<incl>{WHITE}* { /* eat the whitespace */ }
<incl>\"[^"]*\" { /* got the include file name */
String s (YYText()+1);
s = s.left_str(s.length_i()-1);
mtor << "#include `" << s << "\'\n";
new_input(s,source_l_g);
yy_pop_state();
}
<notes>{RESTNAME} {
const char *s = YYText();
yylval.string = new String (s);
mtor << "rest:"<< yylval.string;
return RESTNAME;
}
<INITIAL,lyrics,notes>\\\${BLACK}*{WHITE} {
String s=YYText() + 2;
s=s.left_str(s.length_i() - 1);
return scan_escaped_word(s);
}
<INITIAL,lyrics,notes>\${BLACK}*{WHITE} {
String s=YYText() + 1;
s=s.left_str(s.length_i() - 1);
return scan_bare_word(s);
}
<notes>{ALPHAWORD}/\' {
post_quotes_b_ = true;
return scan_bare_word(YYText());
}
<notes>\'+ {
yylval.i = YYLeng();
if (post_quotes_b_) {
post_quotes_b_ = false;
return POST_QUOTES;
} else
return PRE_QUOTES;
}
<notes>{ALPHAWORD} {
return scan_bare_word(YYText());
}
<notes>{NOTECOMMAND} {
return scan_escaped_word(YYText()+1);
}
<notes>{DOTS} {
yylval.i = strlen(YYText());
return DOTS;
}
<notes>{INT} {
yylval.i = String_convert::dec2_i( String( YYText() ) );
return INT;
}
<notes>\+\+ {
return CONCAT;
}
<notes>\" {
start_quote();
}
\" {
start_quote();
}
<quote>\\\\ {
*yylval.string += '\\';
}
<quote>\\\" {
*yylval.string +='\"';
}
<quote>[^"]+ {
*yylval.string += YYText();
}
<quote>\" {
mtor << "quoted string: `" << *yylval.string << "'\n";
yy_pop_state();
return STRING;
}
<lyrics>\" {
start_quote();
}
<lyrics>{DOTS} {
yylval.i = strlen(YYText());
return DOTS;
}
<lyrics>{INT} {
yylval.i = String_convert::dec2_i( String( YYText() ) );
return INT;
}
<lyrics>{NOTECOMMAND} {
return scan_escaped_word(YYText()+1);
}
<lyrics>{LYRICS} {
/* ugr. This sux. */
String s (YYText());
int i = 0;
while ((i=s.index_i("_")) != -1) // change word binding "_" to " "
*(s.ch_l() + i) = ' ';
if ((i=s.index_i("\\,")) != -1) // change "\," to TeX's "\c "
{
*(s.ch_l() + i + 1) = 'c';
s = s.left_str(i+2) + " " + s.right_str(s.length_i()-i-2);
}
yylval.string = new String(s);
mtor << "lyric : `" << s << "'\n";
return STRING;
}
<lyrics>\| {
return YYText()[0];
}
<lyrics>[{}] {
return YYText()[0];
}
<lyrics>[()\[\]|/.^>;_-] {
return yylval.c = YYText()[0];
}
<<EOF>> {
mtor << "<<eof>>";
if (! close_input()) {
yyterminate(); // can't move this, since it actually rets a YY_NULL
}
}
{WORD} {
return scan_bare_word(YYText());
}
{KEYWORD} {
return scan_escaped_word(YYText()+1);
}
{REAL} {
Real r;
int cnv=sscanf (YYText(), "%lf", &r);
assert(cnv == 1);
mtor << "REAL" << r<<'\n';
yylval.real = r;
return REAL;
}
[{}] {
mtor << "parens\n";
return YYText()[0];
}
[*:=] {
char c = YYText()[0];
mtor << "misc char" <<c<<"\n";
return c;
}
<*>{WHITE}+ {
}
<INITIAL,notes>. {
return yylval.c = YYText()[0];
}
<INITIAL,lyrics,notes>\\. {
char c= YYText()[1];
yylval.c = c;
switch (c) {
case '>':
return E_BIGGER;
case '<':
return E_SMALLER;
case '!':
return E_EXCLAMATION;
default:
return E_CHAR;
}
}
<*>. {
LexerError( String( "illegal character: " ) +String( YYText()[0] ));
return YYText()[0];
}
%%
void
My_lily_lexer::push_note_state()
{
yy_push_state(notes);
}
void
My_lily_lexer::push_lyric_state()
{
yy_push_state(lyrics);
}
void
My_lily_lexer::pop_state()
{
yy_pop_state();
}
int
My_lily_lexer::scan_escaped_word(String str)
{
mtor << "\\word: `" << str<<"'\n";
int l = lookup_keyword(str);
if (l != -1) {
mtor << "(keyword)\n";
return l;
}
Identifier * id = lookup_identifier(str);
if (id) {
mtor << "(identifier)\n";
yylval.id = id;
return id->token_code_i_;
}
String *sp = new String( str);
yylval.string=sp;
return STRING;
}
int
My_lily_lexer::scan_bare_word(String str)
{
mtor << "word: `" << str<< "'\n";
if (YYSTATE == notes){
Melodic_req * mel_l = lookup_melodic_req_l(str);
if (mel_l) {
mtor << "(notename)\n";
yylval.melreq = mel_l;
return NOTENAME_ID;
}
}
if (YYSTATE != notes) {
// ugr. Should do this in note mode?
Identifier * id = lookup_identifier(str);
if (id) {
mtor << "(identifier)\n";
yylval.id = id;
return id->token_code_i_;
}
}
yylval.string=new String( str );
return STRING;
}
bool
My_lily_lexer::note_state_b() const
{
return YY_START == notes;
}
bool
My_lily_lexer::lyric_state_b() const
{
return YY_START == lyrics;
}
|