]> git.donarmstrong.com Git - lilypond.git/blob - lily/lexer.ll
Replace WORD token in parser and lexer with SYMBOL
[lilypond.git] / lily / lexer.ll
1 %{ // -*- mode: c++; c-file-style: "linux"; indent-tabs-mode: t -*-
2 /*
3   This file is part of LilyPond, the GNU music typesetter.
4
5   Copyright (C) 1996--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
6                  Jan Nieuwenhuizen <janneke@gnu.org>
7
8   LilyPond is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   LilyPond is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 /* Mode and indentation are at best a rough approximation based on TAB
23  * formatting (reasonable for compatibility with unspecific editor
24  * modes as Flex modes are hard to find) and need manual correction
25  * frequently.  Without a reasonably dependable way of formatting a
26  * Flex file sensibly, there is little point in trying to fix the
27  * inconsistent state of indentation.
28  */
29
30 /*
31   backup rules
32
33   after making a change to the lexer rules, run
34       flex -b <this lexer file>
35   and make sure that
36       lex.backup
37   contains no backup states, but only the reminder
38       Compressed tables always back up.
39  (don-t forget to rm lex.yy.cc :-)
40  */
41
42
43
44 #include <cstdio>
45 #include <cctype>
46 #include <cerrno>
47
48 /* Flex >= 2.5.29 fix; FlexLexer.h's multiple include bracing breaks
49    when building the actual lexer.  */
50
51 #define LEXER_CC
52
53 #include <iostream>
54 using namespace std;
55
56 #include "context-def.hh"
57 #include "duration.hh"
58 #include "international.hh"
59 #include "interval.hh"
60 #include "lily-guile.hh"
61 #include "lily-lexer.hh"
62 #include "lily-parser.hh"
63 #include "lilypond-version.hh"
64 #include "main.hh"
65 #include "music.hh"
66 #include "music-function.hh"
67 #include "parse-scm.hh"
68 #include "parser.hh"
69 #include "pitch.hh"
70 #include "source-file.hh"
71 #include "std-string.hh"
72 #include "version.hh"
73 #include "warn.hh"
74 #include "lily-imports.hh"
75
76 /*
77 RH 7 fix (?)
78 */
79 #define isatty HORRIBLEKLUDGE
80
81 void strip_trailing_white (string&);
82 void strip_leading_white (string&);
83 string lyric_fudge (string s);
84 SCM lookup_markup_command (string s);
85 SCM lookup_markup_list_command (string s);
86 bool is_valid_version (string s);
87
88
89 #define start_quote() do {                      \
90                 yy_push_state (quote);          \
91                 yylval = SCM_EOL;               \
92         } while (0)
93
94 /*
95   The inside of \"violin1" is marked by commandquote mode
96 */
97
98 #define start_command_quote() do {              \
99                 yy_push_state (commandquote);   \
100                 yylval = SCM_EOL;               \
101         } while (0)
102
103 #define yylval (*lexval_)
104
105 #define yylloc (*lexloc_)
106
107 #define YY_USER_ACTION  add_lexed_char (YYLeng ());
108
109
110 SCM scan_fraction (string);
111 SCM (* scm_parse_error_handler) (void *);
112
113
114
115 %}
116
117 %option c++
118 %option noyywrap
119 %option nodefault
120 %option debug
121 %option yyclass="Lily_lexer"
122 %option stack
123 %option never-interactive
124 %option warn
125
126 %x chords
127 %x figures
128 %x incl
129 %x lyrics
130 %x longcomment
131 %x maininput
132 %x markup
133 %x notes
134 %x quote
135 %x commandquote
136 %x sourcefileline
137 %x sourcefilename
138 %x version
139
140 /* The strategy concerning multibyte characters is to accept them but
141  * call YYText_utf8 for patterns that might contain them, in order to
142  * get a single code path responsible for flagging non-UTF-8 input:
143  * Patterns for accepting only valid UTF-8 without backing up are
144  * really hard to do and complex, and if nice error messages are
145  * wanted, one would need patterns catching the invalid input as well.
146  *
147  * Since editors and operating environments don't necessarily behave
148  * reasonably in the presence of mixed encodings, we flag encoding
149  * errors also in identifiers, comments, and strings where it would be
150  * conceivable to just transparently work with the byte string.  But
151  * the whole point of caring about UTF-8 in here at all is too avoid
152  * stranger errors later when input passes into backends or log files
153  * or console output or error messages.
154  */
155
156 A               [a-zA-Z\200-\377]
157 AA              {A}|_
158 N               [0-9]
159 ANY_CHAR        (.|\n)
160 SYMBOL          {A}([-_]{A}|{A})*
161 COMMAND         \\{SYMBOL}
162 /* SPECIAL category is for every letter that needs to get passed to
163  * the parser rather than being redefinable by the user */
164 SPECIAL         [-+*/=<>{}!?_^'',.:]
165 SHORTHAND       (.|\\.)
166 UNSIGNED        {N}+
167 E_UNSIGNED      \\{N}+
168 FRACTION        {N}+\/{N}+
169 INT             -?{UNSIGNED}
170 REAL            ({INT}\.{N}*)|(-?\.{N}+)
171 STRICTREAL      {UNSIGNED}\.{UNSIGNED}
172 WHITE           [ \n\t\f\r]
173 HORIZONTALWHITE         [ \t]
174 BLACK           [^ \n\t\f\r]
175 RESTNAME        [rs]
176 ESCAPED         [nt\\''""]
177 EXTENDER        __
178 HYPHEN          --
179 BOM_UTF8        \357\273\277
180
181 %%
182
183
184 <*>\r           {
185         // swallow and ignore carriage returns
186 }
187
188    /* Use the trailing context feature. Otherwise, the BOM will not be
189       found if the file starts with an identifier definition. */
190 <INITIAL,chords,lyrics,figures,notes>{BOM_UTF8}/.* {
191   if (lexloc_->line_number () != 1 || lexloc_->column_number () != 0)
192     {
193       LexerWarning (_ ("stray UTF-8 BOM encountered").c_str ());
194       // exit (1);
195     }
196   debug_output (_ ("Skipping UTF-8 BOM"));
197 }
198
199 <INITIAL,chords,figures,incl,lyrics,markup,notes>{
200   "%{"  {
201         yy_push_state (longcomment);
202   }
203   %[^{\n\r][^\n\r]*[\n\r]?      {
204           (void) YYText_utf8 ();
205   }
206   %[\n\r]?      {
207   }
208   {WHITE}+      {
209
210   }
211 }
212
213 <INITIAL,notes,figures,chords,markup>{
214         \"              {
215                 start_quote ();
216         }
217 }
218
219 <INITIAL,chords,lyrics,notes,figures>\\version{WHITE}*  {
220         yy_push_state (version);
221 }
222 <INITIAL,chords,lyrics,notes,figures>\\sourcefilename{WHITE}*   {
223         yy_push_state (sourcefilename);
224 }
225 <INITIAL,chords,lyrics,notes,figures>\\sourcefileline{WHITE}*   {
226         yy_push_state (sourcefileline);
227 }
228 <version>\"[^""]*\"     { /* got the version number */
229         string s (YYText_utf8 () + 1);
230         s = s.substr (0, s.rfind ('\"'));
231
232         yy_pop_state ();
233
234         SCM top_scope = scm_car (scm_last_pair (scopes_));
235         scm_module_define (top_scope, ly_symbol2scm ("version-seen"), SCM_BOOL_T);
236
237         if (!is_valid_version (s)) {
238                 yylval = SCM_UNSPECIFIED;
239                 return INVALID;
240         }
241 }
242 <sourcefilename>\"[^""]*\"     {
243         string s (YYText_utf8 () + 1);
244         s = s.substr (0, s.rfind ('\"'));
245
246         yy_pop_state ();
247         here_input().get_source_file ()->name_ = s;
248         message (_f ("Renaming input to: `%s'", s.c_str ()));
249         progress_indication ("\n");
250         scm_module_define (scm_car (scopes_),
251                      ly_symbol2scm ("input-file-name"),
252                      ly_string2scm (s));
253
254 }
255
256 <sourcefileline>{INT}   {
257         int i;
258         sscanf (YYText (), "%d", &i);
259
260         yy_pop_state ();
261         here_input ().get_source_file ()->set_line (here_input ().start (), i);
262 }
263
264 <version>{ANY_CHAR}     {
265         LexerError (_ ("quoted string expected after \\version").c_str ());
266         yy_pop_state ();
267 }
268 <sourcefilename>{ANY_CHAR}      {
269         LexerError (_ ("quoted string expected after \\sourcefilename").c_str ());
270         yy_pop_state ();
271 }
272 <sourcefileline>{ANY_CHAR}      {
273         LexerError (_ ("integer expected after \\sourcefileline").c_str ());
274         yy_pop_state ();
275 }
276 <longcomment>{
277         [^\%]*          {
278                 (void) YYText_utf8 ();
279         }
280         \%*[^}%]*               {
281                 (void) YYText_utf8 ();
282         }
283         "%"+"}"         {
284                 yy_pop_state ();
285         }
286 }
287
288
289 <INITIAL,chords,lyrics,notes,figures>\\maininput           {
290         if (!is_main_input_)
291         {
292                 start_main_input ();
293                 main_input_level_ = include_stack_.size ();
294                 is_main_input_ = true;
295                 int state = YYSTATE;
296                 yy_push_state (maininput);
297                 yy_push_state (state);
298         }
299         else
300                 LexerError (_ ("\\maininput not allowed outside init files").c_str ());
301 }
302
303 <INITIAL,chords,lyrics,figures,notes>\\include           {
304         yy_push_state (incl);
305 }
306 <incl>\"[^""]*\"   { /* got the include file name */
307         string s (YYText_utf8 ()+1);
308         s = s.substr (0, s.rfind ('"'));
309
310         new_input (s, sources_);
311         yy_pop_state ();
312 }
313 <incl>\\{BLACK}*{WHITE}? { /* got the include identifier */
314         string s = YYText_utf8 () + 1;
315         strip_trailing_white (s);
316         if (s.length () && (s[s.length () - 1] == ';'))
317           s = s.substr (0, s.length () - 1);
318
319         SCM sid = lookup_identifier (s);
320         if (scm_is_string (sid)) {
321                 new_input (ly_scm2string (sid), sources_);
322                 yy_pop_state ();
323         } else {
324             string msg (_f ("wrong or undefined identifier: `%s'", s ));
325
326             LexerError (msg.c_str ());
327             SCM err = scm_current_error_port ();
328             scm_puts ("This value was found in the table: ", err);
329             scm_display (sid, err);
330           }
331 }
332 <incl>(\$|#) { // scm for the filename
333         Input hi = here_input();
334         hi.step_forward ();
335         SCM sval = ly_parse_scm (hi, be_safe_global && is_main_input_, parser_);
336         sval = eval_scm (sval, hi);
337         int n = hi.end () - hi.start ();
338
339         for (int i = 0; i < n; i++)
340         {
341                 yyinput ();
342         }
343         char_count_stack_.back () += n;
344
345         if (scm_is_string (sval)) {
346                 new_input (ly_scm2string (sval), sources_);
347                 yy_pop_state ();
348         } else {
349                 LexerError (_ ("string expected after \\include").c_str ());
350                 if (!SCM_UNBNDP (sval)) {
351                         SCM err = scm_current_error_port ();
352                         scm_puts ("This value was found instead: ", err);
353                         scm_display (sval, err);
354                 }
355         }
356 }
357
358 <incl,version,sourcefilename>\"[^""]*   { // backup rule
359         LexerError (_ ("end quote missing").c_str ());
360         yy_pop_state ();
361 }
362
363     /* Flex picks the longest matching pattern including trailing
364      * contexts.  Without the backup pattern, r-. does not trigger the
365      * {RESTNAME} rule but rather the {SYMBOL}/[-_] rule coming later,
366      * needed for avoiding backup states.
367      */
368
369 <chords,notes,figures>{RESTNAME}/[-_]   |  // pseudo backup rule
370 <chords,notes,figures>{RESTNAME}        {
371         char const *s = YYText ();
372         yylval = scm_from_ascii_string (s);
373         return RESTNAME;
374 }
375 <chords,notes,figures>q/[-_]    | // pseudo backup rule
376 <chords,notes,figures>q {
377         yylval = SCM_UNSPECIFIED;
378         return CHORD_REPETITION;
379 }
380
381 <chords,notes,figures>R/[-_]    | // pseudo backup rule
382 <chords,notes,figures>R         {
383         yylval = SCM_UNSPECIFIED;
384         return MULTI_MEASURE_REST;
385 }
386 <INITIAL,chords,figures,lyrics,markup,notes>#   { //embedded scm
387         Input hi = here_input();
388         hi.step_forward ();
389         SCM sval = ly_parse_scm (hi, be_safe_global && is_main_input_, parser_);
390
391         if (SCM_UNBNDP (sval))
392                 error_level_ = 1;
393
394         int n = hi.end () - hi.start ();
395         for (int i = 0; i < n; i++)
396         {
397                 yyinput ();
398         }
399         char_count_stack_.back () += n;
400
401         yylval = sval;
402         return SCM_TOKEN;
403 }
404
405 <INITIAL,chords,figures,lyrics,markup,notes>\$  { //immediate scm
406         Input hi = here_input();
407         hi.step_forward ();
408         SCM sval = ly_parse_scm (hi, be_safe_global && is_main_input_, parser_);
409
410         int n = hi.end () - hi.start ();
411
412         for (int i = 0; i < n; i++)
413         {
414                 yyinput ();
415         }
416         char_count_stack_.back () += n;
417
418         sval = eval_scm (sval, hi, '$');
419
420         int token = scan_scm_id (sval);
421         if (!scm_is_eq (yylval, SCM_UNSPECIFIED))
422                 return token;
423 }
424
425 <INITIAL,notes,lyrics,chords>{
426         \<\<    {
427                 yylval = SCM_UNSPECIFIED;
428                 return DOUBLE_ANGLE_OPEN;
429         }
430         \>\>    {
431                 yylval = SCM_UNSPECIFIED;
432                 return DOUBLE_ANGLE_CLOSE;
433         }
434 }
435
436 <INITIAL,notes,chords>{
437         \<      {
438                 yylval = SCM_UNSPECIFIED;
439                 return ANGLE_OPEN;
440         }
441         \>      {
442                 yylval = SCM_UNSPECIFIED;
443                 return ANGLE_CLOSE;
444         }
445 }
446
447 <figures>{
448         _       {
449                 yylval = SCM_UNSPECIFIED;
450                 return FIGURE_SPACE;
451         }
452         \>              {
453                 yylval = SCM_UNSPECIFIED;
454                 return FIGURE_CLOSE;
455         }
456         \<      {
457                 yylval = SCM_UNSPECIFIED;
458                 return FIGURE_OPEN;
459         }
460         \\\+    {
461                 yylval = SCM_UNSPECIFIED;
462                 return E_PLUS;
463         }
464         \\!     {
465                 yylval = SCM_UNSPECIFIED;
466                 return E_EXCLAMATION;
467         }
468         \\\\    {
469                 yylval = SCM_UNSPECIFIED;
470                 return E_BACKSLASH;
471         }
472         [][]    {
473                 yylval = SCM_UNSPECIFIED;
474                 return  YYText ()[0];
475         }
476 }
477
478 <notes,figures>{
479         {SYMBOL}/[-_]   | // backup rule
480         {SYMBOL}        {
481                 return scan_bare_word (YYText_utf8 ());
482         }
483         \\\"    {
484                 start_command_quote ();
485         }
486         {COMMAND}/[-_]  | // backup rule
487         {COMMAND}       {
488                 return scan_escaped_word (YYText_utf8 () + 1); 
489         }
490         {FRACTION}      {
491                 yylval =  scan_fraction (YYText ());
492                 return FRACTION;
493         }
494         {STRICTREAL}    {
495                 yylval = scm_c_read_string (YYText ());
496                 return REAL;
497         }
498         {UNSIGNED}/[/.] | // backup rule
499         {UNSIGNED}      {
500                 yylval = scm_c_read_string (YYText ());
501                 return UNSIGNED;
502         }
503         {E_UNSIGNED}    {
504                 yylval = scm_c_read_string (YYText () + 1);
505                 return E_UNSIGNED;
506         }
507 }
508
509 <quote,commandquote>{
510         \\{ESCAPED}     {
511                 char c = escaped_char (YYText ()[1]);
512                 yylval = scm_cons (scm_from_ascii_stringn (&c, 1),
513                                    yylval);
514         }
515         [^\\""]+        {
516                 yylval = scm_cons (scm_from_utf8_string (YYText_utf8 ()),
517                                    yylval);
518         }
519         \"      {
520
521                 /* yylval is union. Must remember STRING before setting SCM*/
522
523                 yylval = scm_string_concatenate_reverse (yylval,
524                                                          SCM_UNDEFINED,
525                                                          SCM_UNDEFINED);
526
527                 if (get_state () == commandquote) {
528                         yy_pop_state ();
529                         return scan_escaped_word (ly_scm2string (yylval));
530                 }
531
532                 yy_pop_state ();
533
534                 return STRING;
535         }
536         \\      {
537                 yylval = scm_cons (scm_from_ascii_string (YYText ()),
538                                    yylval);
539         }
540 }
541
542 <lyrics>{
543         \" {
544                 start_quote ();
545         }
546         {FRACTION}      {
547                 yylval =  scan_fraction (YYText ());
548                 return FRACTION;
549         }
550         {STRICTREAL}    {
551                 yylval = scm_c_read_string (YYText ());
552                 return REAL;
553         }
554         {UNSIGNED}/[/.] | // backup rule
555         {UNSIGNED}              {
556                 yylval = scm_c_read_string (YYText ());
557                 return UNSIGNED;
558         }
559         \\\"    {
560                 start_command_quote ();
561         }
562         {COMMAND}/[-_]  | // backup rule
563         {COMMAND}       {
564                 return scan_escaped_word (YYText_utf8 () + 1);
565         }
566         \\.|\|  {
567                 // UTF-8 already covered by COMMAND
568                 return scan_shorthand (YYText ());
569         }
570         /* Characters needed to express durations, assignments */
571         [*.=]   {
572                 yylval = SCM_UNSPECIFIED;
573                 return YYText ()[0];
574         }
575         [^|*.=$#{}\"\\ \t\n\r\f0-9][^$#{}\"\\ \t\n\r\f0-9]* {
576                 /* ugr. This sux. */
577                 string s (YYText_utf8 ());
578                 yylval = SCM_UNSPECIFIED;
579                 if (s == "__")
580                         return EXTENDER;
581                 if (s == "--")
582                         return HYPHEN;
583                 s = lyric_fudge (s);
584                 yylval = ly_string2scm (s);
585
586                 return SYMBOL;
587         }
588         /* This should really just cover {} */
589         [{}] {
590                 yylval = SCM_UNSPECIFIED;
591                 return YYText ()[0];
592         }
593 }
594 <chords>{
595         {SYMBOL}/[-_]   | // backup rule
596         {SYMBOL}        {
597                 return scan_bare_word (YYText_utf8 ());
598         }
599         \\\"    {
600                 start_command_quote ();
601         }
602         {COMMAND}/[-_]  | // backup rule
603         {COMMAND}       {
604                 return scan_escaped_word (YYText_utf8 () + 1);
605         }
606         {FRACTION}      {
607                 yylval =  scan_fraction (YYText ());
608                 return FRACTION;
609         }
610         {UNSIGNED}/\/   | // backup rule
611         {UNSIGNED}              {
612                 yylval = scm_c_read_string (YYText ());
613                 return UNSIGNED;
614         }
615         -  {
616                 yylval = SCM_UNSPECIFIED;
617                 return CHORD_MINUS;
618         }
619         :  {
620                 yylval = SCM_UNSPECIFIED;
621                 return CHORD_COLON;
622         }
623         \/\+ {
624                 yylval = SCM_UNSPECIFIED;
625                 return CHORD_BASS;
626         }
627         \/  {
628                 yylval = SCM_UNSPECIFIED;
629                 return CHORD_SLASH;
630         }
631         \^  {
632                 yylval = SCM_UNSPECIFIED;
633                 return CHORD_CARET;
634         }
635 }
636
637
638 <markup>{
639         \\score {
640                 yylval = SCM_UNSPECIFIED;
641                 return SCORE;
642         }
643         \\score-lines {
644                 yylval = SCM_UNSPECIFIED;
645                 return SCORELINES;
646         }
647         \\\"    {
648                 start_command_quote ();
649         }
650         {COMMAND}/[-_]  | // backup rule
651         {COMMAND} {
652                 string str (YYText_utf8 () + 1);
653
654                 int token_type = MARKUP_FUNCTION;
655                 SCM s = lookup_markup_command (str);
656
657                 // lookup-markup-command returns a pair with the car
658                 // being the function to call, and the cdr being the
659                 // call signature specified to define-markup-command,
660                 // a list of predicates.
661
662                 if (!scm_is_pair (s)) {
663                   // If lookup-markup-command was not successful, we
664                   // try lookup-markup-list-command instead.
665                   // If this fails as well, we just scan and return
666                   // the escaped word.
667                   s = lookup_markup_list_command (str);
668                   if (scm_is_pair (s))
669                     token_type = MARKUP_LIST_FUNCTION;
670                   else
671                     return scan_escaped_word (str);
672                 }
673
674                 // If the list of predicates is, say,
675                 // (number? number? markup?), then tokens
676                 // EXPECT_MARKUP EXPECT_SCM EXPECT_SCM EXPECT_NO_MORE_ARGS
677                 // will be generated.  Note that we have to push them
678                 // in reverse order, so the first token pushed in the
679                 // loop will be EXPECT_NO_MORE_ARGS.
680
681                 yylval = scm_car(s);
682
683                 // yylval now contains the function to call as token
684                 // value (for token type MARKUP_FUNCTION or
685                 // MARKUP_LIST_FUNCTION).
686
687                 push_extra_token (here_input (), EXPECT_NO_MORE_ARGS);
688                 s = scm_cdr(s);
689                 for (; scm_is_pair(s); s = scm_cdr(s)) {
690                   SCM predicate = scm_car(s);
691
692                   if (scm_is_eq (predicate, SCM (Lily::markup_list_p)))
693                     push_extra_token (here_input (), EXPECT_MARKUP_LIST);
694                   else if (scm_is_eq (predicate, SCM (Lily::markup_p)))
695                     push_extra_token (here_input (), EXPECT_MARKUP);
696                   else
697                     push_extra_token (here_input (), EXPECT_SCM, predicate);
698                 }
699                 return token_type;
700         }
701         [^$#{}\"\\ \t\n\r\f]+ {
702                 string s (YYText_utf8 ()); 
703
704                 yylval = ly_string2scm (s);
705                 return SYMBOL;
706         }
707         [{}]  {
708                 yylval = SCM_UNSPECIFIED;
709                 return YYText ()[0];
710         }
711 }
712
713 <longcomment><<EOF>> {
714                 LexerError (_ ("EOF found inside a comment").c_str ());
715                 yy_pop_state ();
716         }
717
718 <quote,commandquote><<EOF>> {
719         LexerError (_ ("EOF found inside string").c_str ());
720         yy_pop_state ();
721 }
722
723 <<EOF>> {
724         yylval = SCM_UNSPECIFIED;
725         if (is_main_input_)
726         {
727                 is_main_input_ = include_stack_.size () > main_input_level_;
728                 if (!is_main_input_)
729                 {
730                         main_input_level_ = 0;
731                         pop_state ();
732                         if (YYSTATE != maininput)
733                         {
734                                 LexerError (_ ("Unfinished main input").c_str ());
735                                 do {
736                                         yy_pop_state ();
737                                 } while (YYSTATE != maininput);
738                         }
739                         extra_tokens_ = SCM_EOL;
740                         yy_pop_state ();
741                 }
742                 if (!close_input () || !is_main_input_)
743                 /* Returns YY_NULL */
744                         yyterminate ();
745         }
746         else if (!close_input ())
747                 /* Returns YY_NULL */
748                 yyterminate ();
749 }
750
751 <maininput>{ANY_CHAR} {
752         while (include_stack_.size () > main_input_level_
753                && close_input ())
754                 ;
755         yyterminate ();
756 }
757
758 <INITIAL>{
759         {SYMBOL}/[-_]   | // backup rule
760         {SYMBOL}        {
761                 return scan_bare_word (YYText_utf8 ());
762         }
763         \\\"    {
764                 start_command_quote ();
765         }
766         {COMMAND}/[-_]  | // backup rule
767         {COMMAND}       {
768                 return scan_escaped_word (YYText_utf8 () + 1);
769         }
770 }
771
772 {FRACTION}      {
773         yylval =  scan_fraction (YYText ());
774         return FRACTION;
775 }
776
777 -{UNSIGNED}     | // backup rule
778 {REAL}          {
779         yylval = scm_c_read_string (YYText ());
780         return REAL;
781 }
782
783 {UNSIGNED}/\/   | // backup rule
784 {UNSIGNED}      {
785         yylval = scm_c_read_string (YYText ());
786         return UNSIGNED;
787 }
788
789
790 -/\.    { // backup rule
791         yylval = SCM_UNSPECIFIED;
792         return YYText ()[0];
793 }
794
795 <INITIAL,chords,lyrics,figures,notes>{SPECIAL}  {
796         yylval = SCM_UNSPECIFIED;
797         return YYText ()[0];
798 }
799
800 <INITIAL,chords,lyrics,figures,notes>{SHORTHAND}        {
801         return scan_shorthand (YYText_utf8 ()); // should not be utf-8
802 }
803
804 <*>.[\200-\277]*        {
805         string msg = _f ("invalid character: `%s'", YYText_utf8 ());
806         LexerError (msg.c_str ());
807         yylval = SCM_UNSPECIFIED;
808         return '%';  // Better not return half a utf8 character.
809 }
810
811 %%
812
813 /* Make the lexer generate a token of the given type as the next token.
814  TODO: make it possible to define a value for the token as well */
815 void
816 Lily_lexer::push_extra_token (Input const &where, int token_type, SCM scm)
817 {
818         extra_tokens_ = scm_cons (scm_cons2 (where.smobbed_copy (),
819                                              scm_from_int (token_type),
820                                              scm), extra_tokens_);
821 }
822
823 int
824 Lily_lexer::pop_extra_token ()
825 {
826         if (scm_is_null (extra_tokens_))
827                 return -1;
828
829   /* produce requested token */
830         yylloc = *unsmob<Input> (scm_caar (extra_tokens_));
831         int type = scm_to_int (scm_cadar (extra_tokens_));
832         yylval = scm_cddar (extra_tokens_);
833         extra_tokens_ = scm_cdr (extra_tokens_);
834         return type;
835 }
836
837 void
838 Lily_lexer::push_chord_state (SCM alist)
839 {
840         SCM p = scm_assq (alist, pitchname_tab_stack_);
841
842         if (scm_is_false (p))
843                 p = scm_cons (alist, alist_to_hashq (alist));
844         pitchname_tab_stack_ = scm_cons (p, pitchname_tab_stack_);
845         yy_push_state (chords);
846 }
847
848 void
849 Lily_lexer::push_figuredbass_state ()
850 {
851         yy_push_state (figures);
852 }
853
854 void
855 Lily_lexer::push_initial_state ()
856 {
857         yy_push_state (INITIAL);
858 }
859
860 void
861 Lily_lexer::push_lyric_state ()
862 {
863         yy_push_state (lyrics);
864 }
865
866 void
867 Lily_lexer::push_markup_state ()
868 {
869         yy_push_state (markup);
870 }
871
872 void
873 Lily_lexer::push_note_state (SCM alist)
874 {
875         SCM p = scm_assq (alist, pitchname_tab_stack_);
876
877         if (scm_is_false (p))
878                 p = scm_cons (alist, alist_to_hashq (alist));
879         pitchname_tab_stack_ = scm_cons (p, pitchname_tab_stack_);
880         yy_push_state (notes);
881 }
882
883 void
884 Lily_lexer::pop_state ()
885 {
886         if (YYSTATE == notes || YYSTATE == chords)
887                 pitchname_tab_stack_ = scm_cdr (pitchname_tab_stack_);
888
889         // don't cross the maininput threshold
890         if (YYSTATE != maininput)
891                 yy_pop_state ();
892
893 }
894
895 int
896 Lily_lexer::identifier_type (SCM sid)
897 {
898         int k = try_special_identifiers (&yylval , sid);
899         return k >= 0  ? k : SCM_IDENTIFIER;
900 }
901
902
903 int
904 Lily_lexer::scan_escaped_word (const string &str)
905 {
906         // use more SCM for this.
907
908 //      SCM sym = ly_symbol2scm (str.c_str ());
909
910         yylval = SCM_UNSPECIFIED;
911         int i = lookup_keyword (str);
912
913         if (i != -1)
914                 return i;
915
916         SCM sid = lookup_identifier (str);
917         if (Music *m = unsmob<Music> (sid))
918         {
919                 m->set_spot (override_input (here_input ()));
920         }
921
922         if (!SCM_UNBNDP (sid))
923                 return scan_scm_id (sid);
924
925         string msg (_f ("unknown escaped string: `\\%s'", str));
926         LexerError (msg.c_str ());
927
928         yylval = ly_string2scm (str);
929
930         return STRING; // SYMBOL would cause additional processing
931 }
932
933 int
934 Lily_lexer::scan_shorthand (const string &str)
935 {
936         SCM sid = lookup_identifier (str);
937         if (Music *m = unsmob<Music> (sid))
938         {
939                 m->set_spot (override_input (here_input ()));
940         }
941
942         if (!SCM_UNBNDP (sid))
943                 return scan_scm_id (sid);
944
945         string msg (_f ("undefined character or shorthand: %s", str));
946         LexerError (msg.c_str ());
947
948         yylval = ly_string2scm (str);
949
950         return STRING;
951 }
952
953 int
954 Lily_lexer::scan_scm_id (SCM sid)
955 {
956         if (Music_function *fun = unsmob<Music_function> (sid))
957         {
958                 int funtype = SCM_FUNCTION;
959
960                 yylval = sid;
961
962                 SCM s = fun->get_signature ();
963                 SCM cs = scm_car (s);
964
965                 if (scm_is_pair (cs))
966                 {
967                         cs = SCM_CAR (cs);
968                 }
969
970                 if (scm_is_eq (cs, SCM (Lily::ly_music_p)))
971                         funtype = MUSIC_FUNCTION;
972                 else if (scm_is_eq (cs, SCM (Lily::ly_event_p)))
973                         funtype = EVENT_FUNCTION;
974                 else if (ly_is_procedure (cs))
975                         funtype = SCM_FUNCTION;
976                 else programming_error ("Bad syntax function predicate");
977
978                 push_extra_token (here_input (), EXPECT_NO_MORE_ARGS);
979                 for (s = scm_cdr (s); scm_is_pair (s); s = scm_cdr (s))
980                 {
981                         SCM optional = SCM_UNDEFINED;
982                         cs = scm_car (s);
983
984                         if (scm_is_pair (cs))
985                         {
986                                 optional = SCM_CDR (cs);
987                                 cs = SCM_CAR (cs);
988                         }
989
990                         if (ly_is_procedure (cs))
991                                 push_extra_token (here_input (), EXPECT_SCM, cs);
992                         else
993                         {
994                                 programming_error ("Function parameter without type-checking predicate");
995                                 continue;
996                         }
997                         if (!scm_is_eq (optional, SCM_UNDEFINED))
998                                 push_extra_token (here_input (), EXPECT_OPTIONAL, optional);
999                 }
1000                 return funtype;
1001         }
1002         yylval = sid;
1003         return identifier_type (sid);
1004 }
1005
1006 int
1007 Lily_lexer::scan_word (SCM & output, SCM sym)
1008 {
1009         if ((YYSTATE == notes) || (YYSTATE == chords)) {
1010                 SCM handle = SCM_BOOL_F;
1011                 if (scm_is_pair (pitchname_tab_stack_))
1012                         handle = scm_hashq_get_handle (scm_cdar (pitchname_tab_stack_), sym);
1013
1014                 if (scm_is_pair (handle)) {
1015                         output = scm_cdr (handle);
1016                         if (unsmob<Pitch> (yylval))
1017                             return (YYSTATE == notes) ? NOTENAME_PITCH : TONICNAME_PITCH;
1018                         else if (scm_is_symbol (yylval))
1019                             return DRUM_PITCH;
1020                 }
1021                 else if ((YYSTATE == chords)
1022                         && scm_is_true (handle = scm_hashq_get_handle (chordmodifier_tab_, sym)))
1023                 {
1024                     output = scm_cdr (handle);
1025                     return CHORD_MODIFIER;
1026                 }
1027         }
1028         output = SCM_UNDEFINED;
1029         return -1;
1030 }
1031
1032 int
1033 Lily_lexer::scan_bare_word (const string &str)
1034 {
1035         int state = scan_word (yylval, ly_symbol2scm (str.c_str ()));
1036         if (state >= 0)
1037         {
1038                 return state;
1039         }
1040         yylval = ly_string2scm (str);
1041         return SYMBOL;
1042 }
1043
1044 int
1045 Lily_lexer::get_state () const
1046 {
1047         return YY_START;
1048 }
1049
1050 bool
1051 Lily_lexer::is_note_state () const
1052 {
1053         return get_state () == notes;
1054 }
1055
1056 bool
1057 Lily_lexer::is_chord_state () const
1058 {
1059         return get_state () == chords;
1060 }
1061
1062 bool
1063 Lily_lexer::is_lyric_state () const
1064 {
1065         return get_state () == lyrics;
1066 }
1067
1068 bool
1069 Lily_lexer::is_figure_state () const
1070 {
1071         return get_state () == figures;
1072 }
1073
1074 // The extra_token parameter specifies how to convert multiple values
1075 // into additional tokens.  For '#', additional values get pushed as
1076 // SCM_IDENTIFIER.  For '$', they get checked for their type and get
1077 // pushed as a corresponding *_IDENTIFIER token.  Since the latter
1078 // tampers with yylval, it can only be done from the lexer itself, so
1079 // this function is private.
1080
1081 SCM
1082 Lily_lexer::eval_scm (SCM readerdata, Input hi, char extra_token)
1083 {
1084         SCM sval = SCM_UNDEFINED;
1085
1086         if (!SCM_UNBNDP (readerdata))
1087         {
1088                 sval = ly_eval_scm (readerdata,
1089                                     hi,
1090                                     be_safe_global && is_main_input_,
1091                                     parser_);
1092         }
1093
1094         if (SCM_UNBNDP (sval))
1095         {
1096                 error_level_ = 1;
1097                 return SCM_UNSPECIFIED;
1098         }
1099
1100         if (extra_token && SCM_VALUESP (sval))
1101         {
1102                 sval = scm_struct_ref (sval, SCM_INUM0);
1103
1104                 if (scm_is_pair (sval)) {
1105                         for (SCM p = scm_reverse (scm_cdr (sval));
1106                              scm_is_pair (p);
1107                              p = scm_cdr (p))
1108                         {
1109                                 SCM v = scm_car (p);
1110                                 if (Music *m = unsmob<Music> (v))
1111                                 {
1112                                         if (!unsmob<Input> (m->get_property ("origin")))
1113                                                 m->set_spot (override_input (here_input ()));
1114                                 }
1115
1116                                 int token;
1117                                 switch (extra_token) {
1118                                 case '$':
1119                                         token = scan_scm_id (v);
1120                                         if (!scm_is_eq (yylval, SCM_UNSPECIFIED))
1121                                                 push_extra_token (here_input (),
1122                                                                   token, yylval);
1123                                         break;
1124                                 case '#':
1125                                         push_extra_token (here_input (),
1126                                                           SCM_IDENTIFIER, v);
1127                                         break;
1128                                 }
1129                         }
1130                         sval = scm_car (sval);
1131                 } else
1132                         sval = SCM_UNSPECIFIED;
1133         }
1134
1135         if (Music *m = unsmob<Music> (sval))
1136         {
1137                 if (!unsmob<Input> (m->get_property ("origin")))
1138                         m->set_spot (override_input (here_input ()));
1139         }
1140
1141         return sval;
1142 }
1143
1144 /* Check for valid UTF-8 that has no overlong or surrogate codes and
1145    is in the range 0-0x10ffff */
1146
1147 const char *
1148 Lily_lexer::YYText_utf8 ()
1149 {
1150         const char * const p =  YYText ();
1151         for (int i=0; p[i];) {
1152                 if ((p[i] & 0xff) < 0x80) {
1153                         ++i;
1154                         continue;
1155                 }
1156                 int oldi = i; // start of character
1157                 int more = 0; // # of followup bytes, 0 if bad
1158                 switch (p[i++] & 0xff) {
1159                         // 0xc0 and 0xc1 are overlong prefixes for
1160                         // 0x00-0x3f and 0x40-0x7f respectively, bad.
1161                 case 0xc2:      // 0x80-0xbf
1162                 case 0xc3:      // 0xc0-0xff
1163                 case 0xc4:      // 0x100-0x13f
1164                 case 0xc5:      // 0x140-0x17f
1165                 case 0xc6:      // 0x180-0x1bf
1166                 case 0xc7:      // 0x1c0-0x1ff
1167                 case 0xc8:      // 0x200-0x23f
1168                 case 0xc9:      // 0x240-0x27f
1169                 case 0xca:      // 0x280-0x2bf
1170                 case 0xcb:      // 0x2c0-0x2ff
1171                 case 0xcc:      // 0x300-0x33f
1172                 case 0xcd:      // 0x340-0x37f
1173                 case 0xce:      // 0x380-0x3bf
1174                 case 0xcf:      // 0x3c0-0x3ff
1175                 case 0xd0:      // 0x400-0x43f
1176                 case 0xd1:      // 0x440-0x47f
1177                 case 0xd2:      // 0x480-0x4bf
1178                 case 0xd3:      // 0x4c0-0x4ff
1179                 case 0xd4:      // 0x500-0x53f
1180                 case 0xd5:      // 0x540-0x57f
1181                 case 0xd6:      // 0x580-0x5bf
1182                 case 0xd7:      // 0x5c0-0x5ff
1183                 case 0xd8:      // 0x600-0x63f
1184                 case 0xd9:      // 0x640-0x67f
1185                 case 0xda:      // 0x680-0x6bf
1186                 case 0xdb:      // 0x6c0-0x6ff
1187                 case 0xdc:      // 0x700-0x73f
1188                 case 0xdd:      // 0x740-0x77f
1189                 case 0xde:      // 0x780-0x7bf
1190                 case 0xdf:      // 0x7c0-0x7ff
1191                         more = 1; // 2-byte sequences, 0x80-0x7ff
1192                         break;
1193                 case 0xe0:
1194                         // don't allow overlong sequences for 0-0x7ff
1195                         if ((p[i] & 0xff) < 0xa0)
1196                                 break;
1197                 case 0xe1:      // 0x1000-0x1fff
1198                 case 0xe2:      // 0x2000-0x2fff
1199                 case 0xe3:      // 0x3000-0x3fff
1200                 case 0xe4:      // 0x4000-0x4fff
1201                 case 0xe5:      // 0x5000-0x5fff
1202                 case 0xe6:      // 0x6000-0x6fff
1203                 case 0xe7:      // 0x7000-0x7fff
1204                 case 0xe8:      // 0x8000-0x8fff
1205                 case 0xe9:      // 0x9000-0x9fff
1206                 case 0xea:      // 0xa000-0xafff
1207                 case 0xeb:      // 0xb000-0xbfff
1208                 case 0xec:      // 0xc000-0xcfff
1209                         more = 2; // 3-byte sequences, 0x7ff-0xcfff
1210                         break;
1211                 case 0xed:      // 0xd000-0xdfff
1212                         // Don't allow surrogate codes 0xd800-0xdfff
1213                         if ((p[i] & 0xff) >= 0xa0)
1214                                 break;
1215                 case 0xee:      // 0xe000-0xefff
1216                 case 0xef:      // 0xf000-0xffff
1217                         more = 2; // 3-byte sequences,
1218                                   // 0xd000-0xd7ff, 0xe000-0xffff
1219                         break;
1220                 case 0xf0:
1221                         // don't allow overlong sequences for 0-0xffff
1222                         if ((p[i] & 0xff) < 0x90)
1223                                 break;
1224                 case 0xf1:      // 0x40000-0x7ffff
1225                 case 0xf2:      // 0x80000-0xbffff
1226                 case 0xf3:      // 0xc0000-0xfffff
1227                         more = 3; // 4-byte sequences, 0x10000-0xfffff
1228                         break;
1229                 case 0xf4:
1230                         // don't allow more than 0x10ffff
1231                         if ((p[i] & 0xff) >= 0x90)
1232                                 break;
1233                         more = 3; // 4-byte sequence, 0x100000-0x10ffff
1234                         break;
1235                 }
1236                 if (more) {
1237                         // check that all continuation bytes are valid
1238                         do {
1239                                 if ((p[i++] & 0xc0) != 0x80)
1240                                         break;
1241                         } while (--more);
1242                         if (!more)
1243                                 continue;
1244                 }
1245                 Input h = here_input ();
1246                 h.set (h.get_source_file (), h.start () + oldi, h.start () + i);
1247                 h.warning (_ ("non-UTF-8 input").c_str ());
1248         }
1249         return p;
1250 }
1251
1252
1253 /*
1254  urg, belong to string (_convert)
1255  and should be generalised
1256  */
1257 void
1258 strip_leading_white (string&s)
1259 {
1260         ssize i = 0;
1261         for (;  i < s.length (); i++)
1262                 if (!isspace (s[i]))
1263                         break;
1264
1265         s = s.substr (i);
1266 }
1267
1268 void
1269 strip_trailing_white (string&s)
1270 {
1271         ssize i = s.length ();
1272         while (i--)
1273                 if (!isspace (s[i]))
1274                         break;
1275
1276         s = s.substr (0, i + 1);
1277 }
1278
1279
1280
1281 Lilypond_version oldest_version ("2.7.38");
1282
1283
1284 bool
1285 is_valid_version (string s)
1286 {
1287   Lilypond_version current ( MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL );
1288   Lilypond_version ver (s);
1289   if (!ver)
1290   {
1291           non_fatal_error (_f ("Invalid version string \"%s\"", s));
1292           return false;
1293   }
1294   if (ver < oldest_version)
1295         {
1296                 non_fatal_error (_f ("file too old: %s (oldest supported: %s)", ver.to_string (), oldest_version.to_string ()));
1297                 non_fatal_error (_ ("consider updating the input with the convert-ly script"));
1298                 return false;
1299         }
1300
1301   if (ver > current)
1302         {
1303                 non_fatal_error (_f ("program too old: %s (file requires: %s)",  current.to_string (), ver.to_string ()));
1304                 return false;
1305         }
1306   return true;
1307 }
1308
1309
1310 /*
1311   substitute _
1312 */
1313 string
1314 lyric_fudge (string s)
1315 {
1316         size_t i=0;
1317
1318         while ((i = s.find ('_', i)) != string::npos)
1319         {
1320                 s[i++] = ' ';
1321         }
1322         return s;
1323 }
1324
1325 /*
1326 Convert "NUM/DEN" into a '(NUM . DEN) cons.
1327 */
1328 SCM
1329 scan_fraction (string frac)
1330 {
1331         ssize i = frac.find ('/');
1332         string left = frac.substr (0, i);
1333         string right = frac.substr (i + 1, (frac.length () - i + 1));
1334
1335         return scm_cons (scm_c_read_string (left.c_str ()),
1336                          scm_c_read_string (right.c_str ()));
1337 }
1338
1339 SCM
1340 lookup_markup_command (string s)
1341 {
1342         return Lily::lookup_markup_command (ly_string2scm (s));
1343 }
1344
1345 SCM
1346 lookup_markup_list_command (string s)
1347 {
1348         return Lily::lookup_markup_list_command (ly_string2scm (s));
1349 }
1350
1351 /* Shut up lexer warnings.  */
1352 #if YY_STACK_USED
1353
1354 static void
1355 yy_push_state (int)
1356 {
1357 }
1358
1359 static void
1360 yy_pop_state ()
1361 {
1362 }
1363
1364 static int
1365 yy_top_state ()
1366 {
1367   return 0;
1368 }
1369
1370 static void
1371 silence_lexer_warnings ()
1372 {
1373    (void) yy_start_stack_ptr;
1374    (void) yy_start_stack_depth;
1375    (void) yy_start_stack;
1376    (void) yy_push_state;
1377    (void) yy_pop_state;
1378    (void) yy_top_state;
1379    (void) silence_lexer_warnings;
1380 }
1381 #endif