]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-lexer.cc
*** empty log message ***
[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
25 static Keyword_ent the_key_tab[]
26 = {
27   {"accepts", ACCEPTS},
28   {"addlyrics", ADDLYRICS},
29   {"addquote", ADDQUOTE},
30   {"alias", ALIAS},
31   {"alternative", ALTERNATIVE},
32   {"book", BOOK},
33   {"change", CHANGE},
34   {"chordmode", CHORDMODE},
35   {"chords", CHORDS},
36   {"consists", CONSISTS},
37   {"context", CONTEXT},
38   {"default", DEFAULT},
39   {"defaultchild", DEFAULTCHILD},
40   {"denies", DENIES},
41   {"description", DESCRIPTION},
42   {"drummode", DRUMMODE},
43   {"drums", DRUMS},
44   {"figuremode", FIGUREMODE},
45   {"figures", FIGURES},
46   {"grobdescriptions", GROBDESCRIPTIONS},
47   {"header", HEADER},
48   {"key", KEY},
49   {"layout", LAYOUT},
50   {"lyricmode", LYRICMODE},
51   {"lyrics", LYRICS},
52   {"lyricsto", LYRICSTO},
53   {"mark", MARK},
54   {"markup", MARKUP},
55   {"midi", MIDI},
56   {"name", NAME},
57   {"new", NEWCONTEXT},
58   {"notemode", NOTEMODE},
59   {"objectid", OBJECTID},
60   {"octave", OCTAVE},
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   {"transposition", TRANSPOSITION},
80   {"type", TYPE},
81   {"unset", UNSET},
82   {"with", WITH},
83   {0, 0}
84 };
85
86 Lily_lexer::Lily_lexer (Sources *sources)
87 {
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)
104   : Includable_lexer ()
105 {
106   keytable_ = (src.keytable_) ? new Keyword_table (*src.keytable_) : 0;
107   chordmodifier_tab_ = src.chordmodifier_tab_;
108   pitchname_tab_stack_ = src.pitchname_tab_stack_;
109   sources_ = src.sources_;
110   start_module_ = SCM_EOL;
111
112   error_level_ = src.error_level_;
113   is_main_input_ = src.is_main_input_;
114
115   scopes_ = SCM_EOL;
116
117   smobify_self ();
118
119   SCM scopes = SCM_EOL;
120   SCM *tail = &scopes;
121   for (SCM s = src.scopes_; scm_is_pair (s); s = scm_cdr (s))
122     {
123       SCM newmod = ly_make_anonymous_module (false);
124       ly_module_copy (newmod, scm_car (s));
125       *tail = scm_cons (newmod, SCM_EOL);
126       tail = SCM_CDRLOC (*tail);
127     }
128
129   scopes_ = scopes;
130   push_note_state (scm_c_make_hash_table (0));
131 }
132
133 Lily_lexer::~Lily_lexer ()
134 {
135   delete keytable_;
136 }
137
138 void
139 Lily_lexer::add_scope (SCM module)
140 {
141   ly_reexport_module (scm_current_module ());
142   if (!scm_is_pair (scopes_))
143     start_module_ = scm_current_module ();
144
145   for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
146     ly_use_module (module, scm_car (s));
147   scopes_ = scm_cons (module, scopes_);
148
149   set_current_scope ();
150 }
151
152 SCM
153 Lily_lexer::remove_scope ()
154 {
155   SCM sc = scm_car (scopes_);
156   scopes_ = scm_cdr (scopes_);
157   set_current_scope ();
158   return sc;
159 }
160
161 SCM
162 Lily_lexer::set_current_scope ()
163 {
164   SCM old = scm_current_module ();
165
166   if (scm_is_pair (scopes_))
167     scm_set_current_module (scm_car (scopes_));
168   else
169     scm_set_current_module (start_module_);
170
171   return old;
172 }
173
174 int
175 Lily_lexer::lookup_keyword (std::string s)
176 {
177   return keytable_->lookup (s.c_str ());
178 }
179
180 SCM
181 Lily_lexer::lookup_identifier_symbol (SCM sym)
182 {
183   for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
184     {
185       SCM var = ly_module_lookup (scm_car (s), sym);
186       if (var != SCM_BOOL_F)
187         return scm_variable_ref (var);
188     }
189
190   return SCM_UNDEFINED;
191 }
192
193 SCM
194 Lily_lexer::lookup_identifier (std::string name)
195 {
196   return lookup_identifier_symbol (ly_symbol2scm (name.c_str ()));
197 }
198
199 void
200 Lily_lexer::start_main_input ()
201 {
202   // yy_flex_debug = 1;
203   new_input (main_input_name_, sources_);
204
205   /* Do not allow \include in --safe-mode */
206   allow_includes_b_ = allow_includes_b_ && !be_safe_global;
207
208   scm_module_define (scm_car (scopes_),
209                      ly_symbol2scm ("input-file-name"),
210                      scm_makfrom0str (main_input_name_.c_str ()));
211 }
212
213 void
214 Lily_lexer::set_identifier (SCM name, SCM s)
215 {
216   SCM sym = name;
217   if (scm_is_string (name))
218     sym = scm_string_to_symbol (name);
219
220   if (scm_is_symbol (sym))
221     {
222       if (lookup_keyword (ly_symbol2string (sym)) >= 0)
223         {
224           std::string symstr = ly_symbol2string (sym);
225           warning (_f ("identifier name is a keyword: `%s'", symstr.c_str ()));
226         }
227
228       SCM mod = scm_car (scopes_);
229
230       scm_module_define (mod, sym, s);
231     }
232   else
233     programming_error ("identifier is not a symbol");
234 }
235
236 void
237 Lily_lexer::LexerError (char const *s)
238 {
239   if (include_stack_.is_empty ())
240     message (_f ("error at EOF: %s", s) + "\n");
241   else
242     {
243       error_level_ |= 1;
244       Input spot (*lexloc);
245       spot.error (s);
246     }
247 }
248
249 char
250 Lily_lexer::escaped_char (char c) const
251 {
252   switch (c)
253     {
254     case 'n':
255       return '\n';
256     case 't':
257       return '\t';
258     case '\'':
259     case '\"':
260     case '\\':
261       return c;
262     }
263   return 0;
264 }
265
266 Input
267 Lily_lexer::here_input () const
268 {
269   return Input (*lexloc);
270 }
271
272 void
273 Lily_lexer::prepare_for_next_token ()
274 {
275   last_input_ = here_input ();
276 }
277
278 /**
279    Since we don't create the buffer state from the bytes directly, we
280    don't know about the location of the lexer. Add this as a
281    YY_USER_ACTION */
282 void
283 Lily_lexer::add_lexed_char (int count)
284 {
285   char const *start = here_str0 ();
286   lexloc->set (get_source_file (),
287                start, start + count);
288   char_count_stack_.top () += count;
289 }
290
291 #include "ly-smobs.icc"
292
293 IMPLEMENT_SMOBS (Lily_lexer);
294 IMPLEMENT_TYPE_P (Lily_lexer, "ly:lily-lexer?");
295 IMPLEMENT_DEFAULT_EQUAL_P (Lily_lexer);
296
297 SCM
298 Lily_lexer::mark_smob (SCM s)
299 {
300   Lily_lexer *lexer = (Lily_lexer *) SCM_CELL_WORD_1 (s);
301
302   scm_gc_mark (lexer->chordmodifier_tab_);
303   scm_gc_mark (lexer->pitchname_tab_stack_);
304   scm_gc_mark (lexer->start_module_);
305   return lexer->scopes_;
306 }
307
308 int
309 Lily_lexer::print_smob (SCM s, SCM port, scm_print_state*)
310 {
311   Lily_lexer *lexer = Lily_lexer::unsmob (s);
312
313   scm_puts ("#<Lily_lexer ", port);
314   scm_display (lexer->scopes_, port);
315   scm_puts (" >", port);
316   return 1;
317 }