]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-lexer.cc
abc2ly new tempo syntax
[lilypond.git] / lily / lily-lexer.cc
1 /*
2   lily-lexer.cc -- implement Lily_lexer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "lily-lexer.hh"
10
11 #include <cctype>
12 #include <sstream>
13 using namespace std;
14
15 #include "international.hh"
16 #include "interval.hh"
17 #include "keyword.hh"
18 #include "main.hh"
19 #include "moment.hh"
20 #include "parser.hh"
21 #include "scm-hash.hh"
22 #include "source-file.hh"
23 #include "warn.hh"
24 #include "program-option.hh"
25 #include "lily-parser.hh"
26
27 static Keyword_ent the_key_tab[]
28 = {
29   {"accepts", ACCEPTS},
30   {"addlyrics", ADDLYRICS},
31   {"alias", ALIAS},
32   {"alternative", ALTERNATIVE},
33   {"book", BOOK},
34   {"change", CHANGE},
35   {"chordmode", CHORDMODE},
36   {"chords", CHORDS},
37   {"consists", CONSISTS},
38   {"context", CONTEXT},
39   {"default", DEFAULT},
40   {"defaultchild", DEFAULTCHILD},
41   {"denies", DENIES},
42   {"description", DESCRIPTION},
43   {"drummode", DRUMMODE},
44   {"drums", DRUMS},
45   {"figuremode", FIGUREMODE},
46   {"figures", FIGURES},
47   {"grobdescriptions", GROBDESCRIPTIONS},
48   {"header", HEADER},
49   {"key", KEY},
50   {"layout", LAYOUT},
51   {"lyricmode", LYRICMODE},
52   {"lyrics", LYRICS},
53   {"lyricsto", LYRICSTO},
54   {"mark", MARK},
55   {"markup", MARKUP},
56   {"midi", MIDI},
57   {"name", NAME},
58   {"new", NEWCONTEXT},
59   {"notemode", NOTEMODE},
60   {"objectid", OBJECTID},
61   {"once", ONCE},
62   {"override", OVERRIDE},
63   {"paper", PAPER},
64   {"partial", PARTIAL},
65   {"relative", RELATIVE},
66   {"remove", REMOVE},
67   {"repeat", REPEAT},
68   {"rest", REST},
69   {"revert", REVERT},
70   {"score", SCORE},
71   {"sequential", SEQUENTIAL},
72   {"set", SET},
73   {"simultaneous", SIMULTANEOUS},
74   {"skip", SKIP},
75   {"tempo", TEMPO},
76   {"time", TIME_T},
77   {"times", TIMES},
78   {"transpose", TRANSPOSE},
79   {"type", TYPE},
80   {"unset", UNSET},
81   {"with", WITH},
82   {0, 0}
83 };
84
85 Lily_lexer::Lily_lexer (Sources *sources, Lily_parser *parser)
86 {
87   parser_ = parser;
88   keytable_ = new Keyword_table (the_key_tab);
89   chordmodifier_tab_ = SCM_EOL;
90   pitchname_tab_stack_ = SCM_EOL;
91   sources_ = sources;
92   scopes_ = SCM_EOL;
93   error_level_ = 0;
94   is_main_input_ = false;
95   start_module_ = SCM_EOL;
96   smobify_self ();
97
98   add_scope (ly_make_anonymous_module (false));
99   push_note_state (scm_c_make_hash_table (0));
100   chordmodifier_tab_ = scm_make_vector (scm_from_int (1), SCM_EOL);
101 }
102
103 Lily_lexer::Lily_lexer (Lily_lexer const &src, Lily_parser *parser)
104   : Includable_lexer ()
105 {
106   parser_ = parser; 
107   keytable_ = (src.keytable_) ? new Keyword_table (*src.keytable_) : 0;
108   chordmodifier_tab_ = src.chordmodifier_tab_;
109   pitchname_tab_stack_ = src.pitchname_tab_stack_;
110   sources_ = src.sources_;
111   start_module_ = SCM_EOL;
112
113   error_level_ = src.error_level_;
114   is_main_input_ = src.is_main_input_;
115
116   scopes_ = SCM_EOL;
117
118   smobify_self ();
119
120   SCM scopes = SCM_EOL;
121   SCM *tail = &scopes;
122   for (SCM s = src.scopes_; scm_is_pair (s); s = scm_cdr (s))
123     {
124       SCM newmod = ly_make_anonymous_module (false);
125       ly_module_copy (newmod, scm_car (s));
126       *tail = scm_cons (newmod, SCM_EOL);
127       tail = SCM_CDRLOC (*tail);
128     }
129
130   scopes_ = scopes;
131   push_note_state (scm_c_make_hash_table (0));
132 }
133
134 Lily_lexer::~Lily_lexer ()
135 {
136   delete keytable_;
137 }
138
139 void
140 Lily_lexer::add_scope (SCM module)
141 {
142   ly_reexport_module (scm_current_module ());
143   if (!scm_is_pair (scopes_))
144     start_module_ = scm_current_module ();
145
146   for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
147     ly_use_module (module, scm_car (s));
148   scopes_ = scm_cons (module, scopes_);
149
150   set_current_scope ();
151 }
152 bool
153 Lily_lexer::has_scope () const
154 {
155   return scm_is_pair (scopes_);
156 }
157
158 SCM
159 Lily_lexer::remove_scope ()
160 {
161   SCM sc = scm_car (scopes_);
162   scopes_ = scm_cdr (scopes_);
163   set_current_scope ();
164   return sc;
165 }
166
167 SCM
168 Lily_lexer::set_current_scope ()
169 {
170   SCM old = scm_current_module ();
171
172   if (scm_is_pair (scopes_))
173     scm_set_current_module (scm_car (scopes_));
174   else
175     scm_set_current_module (start_module_);
176
177   return old;
178 }
179
180 int
181 Lily_lexer::lookup_keyword (string s)
182 {
183   return keytable_->lookup (s.c_str ());
184 }
185
186 SCM
187 Lily_lexer::lookup_identifier_symbol (SCM sym)
188 {
189   for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
190     {
191       SCM var = ly_module_lookup (scm_car (s), sym);
192       if (var != SCM_BOOL_F)
193         return scm_variable_ref (var);
194     }
195
196   return SCM_UNDEFINED;
197 }
198
199 SCM
200 Lily_lexer::lookup_identifier (string name)
201 {
202   return lookup_identifier_symbol (ly_symbol2scm (name.c_str ()));
203 }
204
205 void
206 Lily_lexer::start_main_input ()
207 {
208   yy_flex_debug = get_program_option ("debug-lexer");
209   parser_->set_yydebug (get_program_option ("debug-parser"));
210
211   
212   new_input (main_input_name_, sources_);
213
214   /* Do not allow \include in --safe-mode */
215   allow_includes_b_ = allow_includes_b_ && !be_safe_global;
216
217   scm_module_define (scm_car (scopes_),
218                      ly_symbol2scm ("input-file-name"),
219                      scm_makfrom0str (main_input_name_.c_str ()));
220 }
221
222 void
223 Lily_lexer::set_identifier (SCM name, SCM s)
224 {
225   SCM sym = name;
226   if (scm_is_string (name))
227     sym = scm_string_to_symbol (name);
228
229   if (scm_is_symbol (sym))
230     {
231       if (lookup_keyword (ly_symbol2string (sym)) >= 0)
232         {
233           string symstr = ly_symbol2string (sym);
234           warning (_f ("identifier name is a keyword: `%s'", symstr.c_str ()));
235         }
236
237       SCM mod = scm_car (scopes_);
238
239       scm_module_define (mod, sym, s);
240     }
241   else
242     programming_error ("identifier is not a symbol");
243 }
244
245 void
246 Lily_lexer::LexerError (char const *s)
247 {
248   if (include_stack_.empty ())
249     message (_f ("error at EOF: %s", s) + "\n");
250   else
251     {
252       error_level_ |= 1;
253       Input spot (*lexloc);
254       spot.error (s);
255     }
256 }
257
258 char
259 Lily_lexer::escaped_char (char c) const
260 {
261   switch (c)
262     {
263     case 'n':
264       return '\n';
265     case 't':
266       return '\t';
267     case '\'':
268     case '\"':
269     case '\\':
270       return c;
271     }
272   return 0;
273 }
274
275 Input
276 Lily_lexer::here_input () const
277 {
278   return Input (*lexloc);
279 }
280
281 void
282 Lily_lexer::prepare_for_next_token ()
283 {
284   last_input_ = here_input ();
285 }
286
287 /**
288    Since we don't create the buffer state from the bytes directly, we
289    don't know about the location of the lexer. Add this as a
290    YY_USER_ACTION */
291 void
292 Lily_lexer::add_lexed_char (int count)
293 {
294   char const *start = here_str0 ();
295   lexloc->set (get_source_file (),
296                start, start + count);
297   char_count_stack_.back () += count;
298 }
299
300 #include "ly-smobs.icc"
301
302 IMPLEMENT_SMOBS (Lily_lexer);
303 IMPLEMENT_TYPE_P (Lily_lexer, "ly:lily-lexer?");
304 IMPLEMENT_DEFAULT_EQUAL_P (Lily_lexer);
305
306 SCM
307 Lily_lexer::mark_smob (SCM s)
308 {
309   ASSERT_LIVE_IS_ALLOWED();
310   
311   Lily_lexer *lexer = (Lily_lexer *) SCM_CELL_WORD_1 (s);
312
313   scm_gc_mark (lexer->chordmodifier_tab_);
314   if (lexer->parser_)
315     scm_gc_mark (lexer->parser_->self_scm ());
316   scm_gc_mark (lexer->pitchname_tab_stack_);
317   scm_gc_mark (lexer->start_module_);
318   return lexer->scopes_;
319 }
320
321 int
322 Lily_lexer::print_smob (SCM s, SCM port, scm_print_state*)
323 {
324   Lily_lexer *lexer = Lily_lexer::unsmob (s);
325
326   scm_puts ("#<Lily_lexer ", port);
327   scm_display (lexer->scopes_, port);
328   scm_puts (" >", port);
329   return 1;
330 }