]> git.donarmstrong.com Git - lilypond.git/blob - lily/my-lily-lexer.cc
patch::: 1.3.77.jcn3
[lilypond.git] / lily / my-lily-lexer.cc
1 /*
2   my-lily-lexer.cc -- implement My_lily_lexer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <strstream.h>
10 #include <ctype.h>
11
12 #include "interval.hh"
13 #include "identifier.hh"
14 #include "lily-guile.hh"
15 #include "parser.hh"
16 #include "keyword.hh"
17 #include "my-lily-lexer.hh"
18 #include "debug.hh"
19 #include "source-file.hh"
20 #include "main.hh"
21 #include "scope.hh"
22 #include "input.hh"
23 #include "moment.hh"
24
25 static Keyword_ent the_key_tab[]={
26   {"autochange", AUTOCHANGE},
27   {"spanrequest", SPANREQUEST},
28   {"commandspanrequest", COMMANDSPANREQUEST},  
29   {"simultaneous", SIMULTANEOUS},
30   {"sequential", SEQUENTIAL},
31   {"accepts", ACCEPTS},
32   {"alternative", ALTERNATIVE},
33   {"bar", BAR},
34   {"breathe", BREATHE},
35   {"char", CHAR_T},
36   {"chordmodifiers", CHORDMODIFIERS},
37   {"chords", CHORDS},
38   {"clef", CLEF},
39   {"cm", CM_T},
40   {"consists", CONSISTS},
41   {"consistsend", CONSISTSEND},
42   {"context", CONTEXT},
43   {"duration", DURATION},
44   {"font", FONT},
45   {"grace", GRACE},
46   {"header", HEADER},
47   {"in", IN_T},
48   {"lyrics", LYRICS},
49   {"key", KEY},
50   {"mark", MARK},
51   {"musicalpitch", MUSICAL_PITCH},
52   {"time", TIME_T},
53   {"times", TIMES},
54   {"midi", MIDI},
55   {"mm", MM_T},
56   {"name", NAME},
57   {"notenames", NOTENAMES},
58   {"notes", NOTES},
59   {"outputproperty", OUTPUTPROPERTY},
60   {"partial", PARTIAL},
61   {"paper", PAPER},
62   {"penalty", PENALTY},
63   {"property", PROPERTY},
64   {"pt", PT_T},
65   {"relative", RELATIVE},
66   {"remove", REMOVE},
67   {"repeat", REPEAT},
68   {"addlyrics", ADDLYRICS},
69   {"partcombine", PARTCOMBINE},
70   {"score", SCORE},
71   {"script", SCRIPT},
72   {"skip", SKIP},
73   {"textscript", TEXTSCRIPT},
74   {"tempo", TEMPO},
75   {"translator", TRANSLATOR},
76   {"transpose", TRANSPOSE},
77   {"type", TYPE},
78   {0,0}
79 };
80
81 My_lily_lexer::My_lily_lexer()
82 {
83   keytable_p_ = new Keyword_table (the_key_tab);
84   toplevel_scope_p_ = new Scope;
85   scope_l_arr_.push (toplevel_scope_p_);
86   errorlevel_i_ = 0;
87   main_input_b_ = false;
88 }
89
90 int
91 My_lily_lexer::lookup_keyword (String s)
92 {
93   return keytable_p_->lookup (s.ch_C ());
94 }
95
96 SCM
97 My_lily_lexer::lookup_identifier (String s)
98 {
99   SCM sym = ly_symbol2scm (s.ch_C());
100   
101   for (int i = scope_l_arr_.size (); i--; )
102     if (scope_l_arr_[i]->elem_b (sym))
103       return scope_l_arr_[i]->scm_elem(sym);
104   return SCM_UNSPECIFIED;
105 }
106
107 void
108 My_lily_lexer::start_main_input ()
109 {  
110   new_input (main_input_str_, source_global_l);
111   allow_includes_b_ = allow_includes_b_ &&  !(safe_global_b);
112 }
113
114 void
115 My_lily_lexer::set_identifier (String name_str, SCM s)
116 {
117   if (lookup_keyword (name_str) >= 0)
118     {
119       warning (  _f ("Identifier name is a keyword: `%s'", name_str));
120     }
121   
122   scope_l_arr_.top ()->set (name_str, s);
123 }
124
125 My_lily_lexer::~My_lily_lexer()
126 {
127   delete keytable_p_;
128   delete toplevel_scope_p_ ;
129 }
130
131
132
133 void
134 My_lily_lexer::LexerError (char const *s)
135 {
136   if (include_stack_.empty())
137     {
138       progress_indication (_f ("error at EOF: %s", s)+ String ("\n"));
139     }
140   else
141     {
142       errorlevel_i_ |= 1;
143       Input spot (source_file_l(),here_ch_C());
144       spot.error (s);
145     }
146 }
147
148 char
149 My_lily_lexer::escaped_char(char c) const
150 {
151   switch(c)
152     {
153     case 'n':
154       return '\n';
155     case 't':
156       return '\t';
157
158     case '\'':
159     case '\"':
160     case '\\':
161       return c;
162     }
163   return 0;
164 }
165
166 Input
167 My_lily_lexer::here_input () const
168 {
169   Source_file * f_l= source_file_l ();
170   return Input (f_l, (char*)here_ch_C ());
171 }