]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lexer.ll
release: 1.3.92
[lilypond.git] / lily / lexer.ll
index a56f86aae95f00dab205662a5e93d1f95f48c64e..208e7034205c25f956e9ba673a80ba4486eba89a 100644 (file)
@@ -4,7 +4,8 @@
 
   source file of the LilyPond music typesetter
 
-  (c) 1996,1997 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+           Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 
 #include <stdio.h>
 #include <ctype.h>
 
+#include "lily-guile.hh"
 #include "string.hh"
 #include "string-convert.hh"
 #include "my-lily-lexer.hh"
 #include "array.hh"
 #include "interval.hh"
+#include "lily-guile.hh"
 #include "parser.hh"
 #include "debug.hh"
-#include "parseconstruct.hh"
 #include "main.hh"
 #include "musical-request.hh"
 #include "identifier.hh"
+#include "version.hh"
+#include "mudela-version.hh"
+#include "translator-def.hh"
+
+#define isatty HORRIBLEKLUDGE
+
 void strip_trailing_white (String&);
 void strip_leading_white (String&);
 
+
+bool
+valid_version_b (String s);
+
+
+
 #define start_quote()  \
        yy_push_state (quote);\
        yylval.string = new String
@@ -62,6 +76,7 @@ LYRICS                ({AA}|{TEX})[^0-9 \t\n\f]*
 %option never-interactive 
 %option warn
 
+%x version
 %x chords
 %x incl
 %x lyrics
@@ -92,10 +107,8 @@ RESTNAME    [rs]
 NOTECOMMAND    \\{A}+
 LYRICS         ({AA}|{TEX})[^0-9 \t\n\f]*
 ESCAPED                [nt\\'"]
-PLET           \\\[
-TELP           \\\]
-EXTENDER       [_][_]
-
+EXTENDER       __
+HYPHEN         --
 %%
 
 
@@ -120,6 +133,21 @@ EXTENDER   [_][_]
   }
 }
 
+<INITIAL,chords,lyrics,notes>\\version{WHITE}* {
+       yy_push_state (version);
+}
+<version>\"[^"]*\";?   { /* got the include file name */
+       String s (YYText ()+1);
+       s = s.left_str (s.index_last_i ('"'));
+       DEBUG_OUT << "#version `" << s << "'\n";
+       yy_pop_state ();
+       if (!valid_version_b (s))
+               return INVALID;
+}
+<version>.     {
+       LexerError ("No quoted string found after \\version");
+       yy_pop_state ();
+}
 <longcomment>{
        [^\%]*          {
        }
@@ -144,7 +172,7 @@ EXTENDER    [_][_]
                main_input_b_ = true;
        }
        else
-               error ("\\maininput disallowed outside init files.");
+               error (_ ("\\maininput disallowed outside init files"));
 }
 
 <INITIAL,chords,lyrics,notes>\\include           {
@@ -153,7 +181,7 @@ EXTENDER    [_][_]
 <incl>\"[^"]*\";?   { /* got the include file name */
        String s (YYText ()+1);
        s = s.left_str (s.index_last_i ('"'));
-       DOUT << "#include `" << s << "\'\n";
+       DEBUG_OUT << "#include `" << s << "'\n";
        new_input (s,source_global_l);
        yy_pop_state ();
 }
@@ -162,33 +190,26 @@ EXTENDER  [_][_]
        strip_trailing_white (s);
        if (s.length_i () && (s[s.length_i () - 1] == ';'))
          s = s.left_str (s.length_i () - 1);
-       DOUT << "#include `\\" << s << "'\n";
-       Identifier * id = lookup_identifier (s);
-       if (id) 
-         {
-           String* s_l = id->access_content_String (false);
-           DOUT << "#include `" << *s_l << "\'\n";
-           new_input (*s_l, source_global_l);
-
-           yy_pop_state ();
-         }
-       else
-         {
-           String msg (_f ("undefined identifier: `%s\'", s ));        
+       DEBUG_OUT << "#include `\\" << s << "'\n";
+       SCM sid = lookup_identifier (s);
+       if (gh_string_p (sid)) {
+               new_input (ly_scm2string (sid), source_global_l);
+               yy_pop_state ();
+       } else { 
+           String msg (_f ("wrong or undefined identifier: `%s'", s ));        
            LexerError (msg.ch_C ());
          }
 }
 <incl>\"[^"]*   { // backup rule
-       cerr << _ ("missing end quote") << endl;
+       cerr << _ ("Missing end quote") << endl;
        exit (1);
 }
-<notes>{RESTNAME}      {
+<chords,notes>{RESTNAME}       {
        const char *s = YYText ();
-       yylval.string = new String (s); 
-       DOUT << "rest:"<< yylval.string;
+       yylval.scm = ly_str02scm (s);
        return RESTNAME;
 }
-<notes>R               {
+<chords,notes>R                {
        return MEASURES;
 }
 <INITIAL,chords,lyrics,notes>\\\${BLACK}*{WHITE}       {
@@ -209,6 +230,28 @@ EXTENDER   [_][_]
        cerr << _ ("white expected") << endl;
        exit (1);
 }
+<INITIAL,chords,lyrics,notes># { //embedded scm
+       //char const* s = YYText () + 1;
+       char const* s = here_ch_C ();
+       int n = 0;
+       if (main_input_b_ && safe_global_b) {
+               error (_ ("Can't evaluate Scheme in safe mode"));
+               yylval.scm =  SCM_EOL;
+               return SCM_T;
+       }
+       yylval.scm = ly_parse_scm (s, &n);
+       DEBUG_OUT << "Scheme: ";
+       if (flower_dstream)
+               ly_display_scm (yylval.scm);
+       
+       for (int i=0; i < n; i++)
+       {
+               yyinput ();
+       }
+       char_count_stack_.top () += n;
+
+       return SCM_T;
+}
 <notes>{
        {ALPHAWORD}     {
                return scan_bare_word (YYText ());
@@ -222,7 +265,6 @@ EXTENDER    [_][_]
                yylval.i = String_convert::dec2_i (String (YYText ()));
                return DIGIT;
        }
-
        {UNSIGNED}              {
                yylval.i = String_convert::dec2_i (String (YYText ()));
                return UNSIGNED;
@@ -244,8 +286,13 @@ EXTENDER   [_][_]
                *yylval.string += YYText ();
        }
        \"      {
-               DOUT << "quoted string: `" << *yylval.string << "'\n";
+               DEBUG_OUT << "quoted string: `" << *yylval.string << "'\n";
                yy_pop_state ();
+
+               /* yylval is union. Must remember STRING before setting SCM*/
+               String *sp = yylval.string;
+               yylval.scm = ly_str02scm  (sp->ch_C ());
+               delete sp;
                return STRING;
        }
        .       {
@@ -269,6 +316,8 @@ EXTENDER    [_][_]
                String s (YYText ()); 
                if (s == "__")
                        return yylval.i = EXTENDER;
+               if (s == "--")
+                       return yylval.i = HYPHEN;
                int i = 0;
                        while ((i=s.index_i ("_")) != -1) // change word binding "_" to " "
                        *(s.ch_l () + i) = ' ';
@@ -277,12 +326,18 @@ EXTENDER  [_][_]
                        *(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);
-               DOUT << "lyric : `" << s << "'\n";
+
+               char c = s[s.length_i () - 1];
+               if (c == '{' ||  c == '}') // brace open is for not confusing dumb tools.
+                       here_input ().warning (
+                               "Brace found at end of lyric. Did you forget a space?");
+               yylval.scm = ly_str02scm (s.ch_C ());
+
+               DEBUG_OUT << "lyric : `" << s << "'\n";
                return STRING;
        }
        . {
-               return yylval.c = YYText ()[0];
+               return YYText ()[0];
        }
 }
 <chords>{
@@ -292,20 +347,32 @@ EXTENDER  [_][_]
        {NOTECOMMAND}   {
                return scan_escaped_word (YYText () + 1);
        }
-       {NOTECOMMAND}   {
-               return scan_escaped_word (YYText () + 1);
-       }
        {UNSIGNED}              {
                yylval.i = String_convert::dec2_i (String (YYText ()));
                return UNSIGNED;
        }
+       \" {
+               start_quote ();
+       }
+       -  {
+               return CHORD_MINUS;
+       }
+       :  {
+               return CHORD_COLON;
+       }
+       \/\+ {
+               return CHORD_BASS;
+       }
+       \^  {
+               return CHORD_CARET;
+       }
        . {
-               return yylval.c = YYText ()[0];
+               return YYText ()[0];
        }
 }
 
 <<EOF>> {
-       DOUT << "<<eof>>";
+       DEBUG_OUT << "<<eof>>";
 
        if (! close_input ()) { 
          yyterminate (); // can't move this, since it actually rets a YY_NULL
@@ -323,7 +390,7 @@ EXTENDER    [_][_]
        Real r;
        int cnv=sscanf (YYText (), "%lf", &r);
        assert (cnv == 1);
-       DOUT  << "REAL" << r<<'\n';
+       DEBUG_OUT  << "REAL" << r<<'\n';
        yylval.real = r;
        return REAL;
 }
@@ -335,30 +402,22 @@ EXTENDER  [_][_]
 
 [{}]   {
 
-       DOUT << "parens\n";
+       DEBUG_OUT << "parens\n";
        return YYText ()[0];
 }
 [*:=]          {
        char c = YYText ()[0];
-       DOUT << "misc char" <<c<<"\n";
+       DEBUG_OUT << "misc char" <<c<<"\n";
        return c;
 }
 
-<lyrics,notes>{PLET}   {
-       return yylval.i = PLET;
-}
-
-<lyrics,notes>{TELP}   {
-       return yylval.i = TELP;
-}
-
 <INITIAL,notes>.       {
-       return yylval.c = YYText ()[0];
+       return YYText ()[0];
 }
 
 <INITIAL,lyrics,notes>\\. {
     char c= YYText ()[1];
-    yylval.c = c;
+
     switch (c) {
     case '>':
        return E_BIGGER;
@@ -372,7 +431,7 @@ EXTENDER    [_][_]
 }
 
 <*>.           {
-       String msg = _f ("illegal character: `%c\'", YYText ()[0]);
+       String msg = _f ("invalid character: `%c'", YYText ()[0]);
        LexerError (msg.ch_C ());
        return YYText ()[0];
 }
@@ -405,58 +464,82 @@ My_lily_lexer::pop_state ()
 
 int
 My_lily_lexer::scan_escaped_word (String str)
-{      
-       DOUT << "\\word: `" << str<<"'\n";
+{
+       // use more SCM for this.
+
+       SCM sym = ly_symbol2scm (str.ch_C());
+
        int l = lookup_keyword (str);
        if (l != -1) {
-               DOUT << "(keyword)\n";
                return l;
        }
-       Identifier * id = lookup_identifier (str);
+       SCM sid = lookup_identifier (str);
+       if (gh_string_p (sid)) {
+               yylval.scm = sid; 
+               return STRING_IDENTIFIER;
+       } else if (gh_number_p (sid)) {
+               yylval.scm = sid;
+               return NUMBER_IDENTIFIER;
+       } else if (unsmob_translator_def (sid)) {
+               yylval.scm = sid;
+               return TRANSLATOR_IDENTIFIER;
+       } else if (Music * mus =unsmob_music (sid)) {
+               yylval.scm = sid;
+               
+               return dynamic_cast<Request*> (mus) ? REQUEST_IDENTIFIER : MUSIC_IDENTIFIER;
+       }
+
+
+
+       Identifier * id = unsmob_identifier (sid);
        if (id) {
-               DOUT << "(identifier)\n";
                yylval.id = id;
                return id->token_code_i_;
+       } else if (sid != SCM_UNDEFINED) {
+               yylval.scm = sid;
+               return SCM_IDENTIFIER;
        }
+
        if ((YYSTATE != notes) && (YYSTATE != chords)) {
-               if (notename_b (str)) {
-                       yylval.pitch = new Musical_pitch (lookup_notename (str));
+               SCM pitch = scm_hashq_ref (pitchname_tab_, sym, SCM_BOOL_F);
+               
+               if (pitch != SCM_BOOL_F)
+               {
+                       yylval.pitch = new Musical_pitch (pitch);
                        yylval.pitch->set_spot (Input (source_file_l (), 
                          here_ch_C ()));
                        return NOTENAME_PITCH;
                }
        }
-       if (check_debug)
-               print_declarations (true);
-       String msg (_f ("unknown escaped string: `\\%s\'", str));       
+       String msg (_f ("unknown escaped string: `\\%s'", str));        
        LexerError (msg.ch_C ());
-       DOUT << "(string)";
-       String *sp = new String (str);
-       yylval.string=sp;
+
+       yylval.scm = ly_str02scm(str.ch_C());
+
        return STRING;
 }
 
 int
 My_lily_lexer::scan_bare_word (String str)
 {
-       DOUT << "word: `" << str<< "'\n";       
+       SCM sym = ly_symbol2scm (str.ch_C ());
        if ((YYSTATE == notes) || (YYSTATE == chords)) {
-               if (notename_b (str)) {
-                   DOUT << "(notename)\n";
-                   yylval.pitch = new Musical_pitch (lookup_notename (str));
+               SCM pitch = scm_hashq_ref (pitchname_tab_, sym, SCM_BOOL_F);
+               if (pitch != SCM_BOOL_F) {
+                   yylval.pitch = new Musical_pitch (pitch);
                    yylval.pitch->set_spot (Input (source_file_l (), 
                      here_ch_C ()));
                     return (YYSTATE == notes) ? NOTENAME_PITCH : TONICNAME_PITCH;
-               } else if (chordmodifier_b (str)) {
-                   DOUT << "(chordmodifier)\n";
-                   yylval.pitch = new Musical_pitch (lookup_chordmodifier (str));
+               } else if ((pitch = scm_hashq_ref (chordmodifier_tab_, sym, SCM_BOOL_F))!= SCM_BOOL_F)
+               {
+                   yylval.pitch = new Musical_pitch (pitch);
                    yylval.pitch->set_spot (Input (source_file_l (), 
                      here_ch_C ()));
                    return CHORDMODIFIER_PITCH;
                }
        }
 
-       yylval.string=new String (str);
+       yylval.scm = ly_str02scm (str.ch_C());
        return STRING;
 }
 
@@ -504,3 +587,20 @@ strip_trailing_white (String&s)
        s = s.left_str (i+1);
 }
 
+
+
+
+bool
+valid_version_b (String s)
+{
+  Mudela_version current ( MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL );
+  Mudela_version ver (s);
+  if (!((ver >= oldest_version) && (ver <= current)))
+       {       
+               non_fatal_error (_f ("incorrect mudela version: %s (%s, %s)", ver.str (), oldest_version.str (), current.str ()));
+               non_fatal_error (_("Consider converting the input with the convert-mudela script")); 
+               return false;
+    }
+  return true;
+}
+