]> git.donarmstrong.com Git - lilypond.git/blob - lily/my-lily-lexer.cc
51fda8586adf5e00c6da56a8d18b633a2dc25e6a
[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--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <ctype.h>
10 #include <sstream>
11
12 #include "lily-proto.hh"
13 #include "scm-hash.hh"
14 #include "interval.hh"
15 #include "lily-guile.hh"
16 #include "parser.hh"
17 #include "keyword.hh"
18 #include "my-lily-lexer.hh"
19 #include "warn.hh"
20 #include "source-file.hh"
21 #include "main.hh"
22 #include "input.hh"
23 #include "moment.hh"
24 #include "ly-module.hh"
25
26
27 static Keyword_ent the_key_tab[] = {
28   {"acciaccatura", ACCIACCATURA},
29   {"accepts", ACCEPTS},
30   {"addlyrics", ADDLYRICS},
31   {"addquote", ADDQUOTE},
32   {"alias", ALIAS},
33   {"alternative", ALTERNATIVE},
34   {"apply", APPLY},
35   {"applycontext", APPLYCONTEXT},
36   {"applyoutput", APPLYOUTPUT},
37   {"appoggiatura", APPOGGIATURA},
38   {"autochange", AUTOCHANGE},
39   {"bar", BAR},
40   {"book", BOOK},
41   {"breathe", BREATHE},
42   {"change", CHANGE},
43   {"chords", CHORDS},
44   {"clef", CLEF},
45   {"consists", CONSISTS},
46   {"consistsend", CONSISTSEND},
47   {"context", CONTEXT},
48   {"default", DEFAULT},
49   {"denies", DENIES},
50   {"drums", DRUMS},
51   {"description", DESCRIPTION},
52   {"figures",FIGURES},
53   {"grace", GRACE},
54   {"grobdescriptions", GROBDESCRIPTIONS},
55   {"header", HEADER},
56   {"key", KEY},
57   {"lyrics", LYRICS},
58   {"lyricsto", LYRICSTO},
59   {"mark", MARK},
60   {"markup", MARKUP},
61   {"midi", MIDI},
62   {"name", NAME},
63   {"new", NEWCONTEXT},
64   {"newlyrics", NEWLYRICS},
65   {"notes", NOTES},
66   {"octave", OCTAVE},
67   {"once", ONCE},
68   {"override", OVERRIDE},
69   {"paper", PAPER},
70   {"partcombine", PARTCOMBINE},
71   {"partial", PARTIAL},
72   {"quote", QUOTE},
73   {"relative", RELATIVE},
74   {"remove", REMOVE},
75   {"repeat", REPEAT},
76   {"rest", REST},
77   {"revert", REVERT},
78   {"score", SCORE},
79   {"sequential", SEQUENTIAL},
80   {"set", SET},
81   {"simultaneous", SIMULTANEOUS},
82   {"skip", SKIP},
83   {"tag", TAG},
84   {"tempo", TEMPO},
85   {"time", TIME_T},
86   {"times", TIMES},
87   {"transpose", TRANSPOSE},
88   {"transposition", TRANSPOSITION},
89   {"type", TYPE},
90   {"unset", UNSET},
91   {"with", WITH},
92   {0, 0}
93 };
94
95
96 My_lily_lexer::My_lily_lexer (Sources *sources)
97   
98 {
99   keytable_ = new Keyword_table (the_key_tab);
100   encoding_ = SCM_EOL;
101   chordmodifier_tab_ = scm_make_vector (scm_int2num (1), SCM_EOL);
102   pitchname_tab_stack_ = SCM_EOL; 
103   sources_ = sources;
104   scopes_ = SCM_EOL;
105   error_level_ = 0; 
106   main_input_b_ = false;
107   
108   add_scope (ly_make_anonymous_module ());
109 }
110
111 My_lily_lexer::My_lily_lexer (My_lily_lexer const &src)
112   : Includable_lexer ()
113 {
114   keytable_ = src.keytable_;
115   encoding_ = src.encoding_;
116   chordmodifier_tab_ = src.chordmodifier_tab_;
117   pitchname_tab_stack_ = src.pitchname_tab_stack_;
118   sources_ = src.sources_;
119   scopes_ = src.scopes_;
120   error_level_ = src.error_level_; 
121   //  main_input_b_ = false;
122   main_input_b_ = src.main_input_b_;
123 }
124
125 SCM
126 My_lily_lexer::encoding () const
127 {
128   return encoding_ ;
129 }
130
131 void
132 My_lily_lexer::add_scope (SCM module)
133 {
134   ly_reexport_module (scm_current_module ());
135   scm_set_current_module (module);
136   for (SCM s = scopes_; ly_c_pair_p (s); s = ly_cdr (s))
137     {
138       /* UGH. how to do this more neatly? */      
139       SCM expr
140         = scm_list_3 (ly_symbol2scm ("module-use!"),
141                       module,
142                       scm_list_2 (ly_symbol2scm ("module-public-interface"),
143                                   ly_car (s)));
144       scm_primitive_eval (expr);
145     }
146   scopes_ = scm_cons (module, scopes_);
147 }
148
149 SCM
150 My_lily_lexer::remove_scope ()
151 {
152   SCM sc = ly_car (scopes_);
153   scopes_ = ly_cdr (scopes_);
154   scm_set_current_module (ly_car (scopes_));
155
156   return sc;
157 }
158
159
160 int
161 My_lily_lexer::lookup_keyword (String s)
162 {
163   return keytable_->lookup (s.to_str0 ());
164 }
165
166 SCM
167 My_lily_lexer::lookup_identifier (String name)
168 {
169   SCM sym = ly_symbol2scm (name.to_str0 ());
170   for (SCM s = scopes_; ly_c_pair_p (s); s = ly_cdr (s))
171     {
172       SCM var = ly_module_lookup (ly_car (s), sym);
173       if (var != SCM_BOOL_F)
174         return scm_variable_ref (var);
175     }
176
177   return SCM_UNDEFINED;
178 }
179
180 void
181 My_lily_lexer::start_main_input ()
182 {
183   // yy_flex_debug = 1;
184   new_input (main_input_name_, sources_);
185   /* Do not allow \include in --safe-mode */
186   allow_includes_b_ = allow_includes_b_ && ! safe_global_b;
187
188   scm_module_define (ly_car (scopes_),
189                      ly_symbol2scm ("input-file-name"),
190                      scm_makfrom0str (main_input_name_.to_str0 ()));
191 }
192
193 void
194 My_lily_lexer::set_identifier (SCM name, SCM s)
195 {
196   assert (ly_c_string_p (name));
197   
198   if (lookup_keyword (ly_scm2string (name)) >= 0)
199     {
200       warning (_f ("Identifier name is a keyword: `%s'", SCM_STRING_CHARS (name)));
201     }
202
203   SCM sym = scm_string_to_symbol (name);
204   SCM mod = ly_car (scopes_);
205
206   scm_module_define (mod, sym, s);
207 }
208
209 My_lily_lexer::~My_lily_lexer ()
210 {
211   delete keytable_;
212 }
213
214
215
216 void
217 My_lily_lexer::LexerError (char const *s)
218 {
219   if (include_stack_.is_empty ())
220     progress_indication (_f ("error at EOF: %s", s) + String ("\n"));
221   else
222     {
223       error_level_ |= 1;
224       Input spot (get_source_file (), here_str0 ());
225       spot.error (s);
226     }
227 }
228
229 char
230 My_lily_lexer::escaped_char (char c) const
231 {
232   switch (c)
233     {
234     case 'n':
235       return '\n';
236     case 't':
237       return '\t';
238
239     case '\'':
240     case '\"':
241     case '\\':
242       return c;
243     }
244   return 0;
245 }
246
247 Input
248 My_lily_lexer::here_input () const
249 {
250   Source_file * f= get_source_file ();
251   return Input (f, (char*)here_str0 ());
252 }
253
254 void
255 My_lily_lexer::prepare_for_next_token ()
256 {
257   last_input_ = here_input ();
258 }
259
260 void
261 My_lily_lexer::set_encoding (String s)
262 {
263   if (s.length ())
264     encoding_ = ly_symbol2scm (s.to_str0 ());
265   else
266     encoding_ = SCM_EOL;
267 }