]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-lexer.cc
(ly_make_anonymous_module): call make-module
[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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "lily-lexer.hh"
10
11 #include <cctype>
12 #include <sstream>
13
14 #include "scm-hash.hh"
15 #include "interval.hh"
16 #include "parser.hh"
17 #include "keyword.hh"
18 #include "warn.hh"
19 #include "source-file.hh"
20 #include "main.hh"
21 #include "moment.hh"
22
23 static Keyword_ent the_key_tab[]
24 = {
25   {"accepts", ACCEPTS},
26   {"addlyrics", ADDLYRICS},
27   {"addquote", ADDQUOTE},
28   {"alias", ALIAS},
29   {"alternative", ALTERNATIVE},
30   {"bar", BAR},
31   {"book", BOOK},
32   {"change", CHANGE},
33   {"chordmode", CHORDMODE},
34   {"chords", CHORDS},
35   {"clef", CLEF},
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   {"tag", TAG},
76   {"tempo", TEMPO},
77   {"time", TIME_T},
78   {"times", TIMES},
79   {"transpose", TRANSPOSE},
80   {"transposition", TRANSPOSITION},
81   {"type", TYPE},
82   {"unset", UNSET},
83   {"with", WITH},
84   {0, 0}
85 };
86
87 Lily_lexer::Lily_lexer (Sources *sources)
88 {
89   keytable_ = new Keyword_table (the_key_tab);
90   chordmodifier_tab_ = SCM_EOL;
91   pitchname_tab_stack_ = SCM_EOL;
92   sources_ = sources;
93   scopes_ = SCM_EOL;
94   error_level_ = 0;
95   is_main_input_ = false;
96   start_module_ = SCM_EOL;
97   smobify_self ();
98
99   add_scope (ly_make_anonymous_module (false));
100   push_note_state (scm_c_make_hash_table (0));
101   chordmodifier_tab_ = scm_make_vector (scm_int2num (1), SCM_EOL);
102 }
103
104 Lily_lexer::Lily_lexer (Lily_lexer const &src)
105   : Includable_lexer ()
106 {
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   scm_set_current_module (module);
147   for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
148     {
149       ly_use_module (module, scm_car (s));
150     }
151   scopes_ = scm_cons (module, scopes_);
152 }
153
154
155 SCM
156 Lily_lexer::remove_scope ()
157 {
158   SCM sc = scm_car (scopes_);
159   scopes_ = scm_cdr (scopes_);
160   set_current_scope ();
161   return sc;
162 }
163
164 void
165 Lily_lexer::set_current_scope ()
166 {
167   if (scm_is_pair (scopes_))
168     scm_set_current_module (scm_car (scopes_));
169   else
170     scm_set_current_module (start_module_);
171 }
172
173 int
174 Lily_lexer::lookup_keyword (String s)
175 {
176   return keytable_->lookup (s.to_str0 ());
177 }
178
179 SCM
180 Lily_lexer::lookup_identifier_symbol (SCM sym)
181 {
182   for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
183     {
184       SCM var = ly_module_lookup (scm_car (s), sym);
185       if (var != SCM_BOOL_F)
186         return scm_variable_ref (var);
187     }
188
189   return SCM_UNDEFINED;
190 }
191
192 SCM
193 Lily_lexer::lookup_identifier (String name)
194 {
195   return lookup_identifier_symbol (ly_symbol2scm (name.to_str0 ()));
196 }
197
198 void
199 Lily_lexer::start_main_input ()
200 {
201   // yy_flex_debug = 1;
202   new_input (main_input_name_, sources_);
203
204   /* Do not allow \include in --safe-mode */
205   allow_includes_b_ = allow_includes_b_ && !be_safe_global;
206
207   scm_module_define (scm_car (scopes_),
208                      ly_symbol2scm ("input-file-name"),
209                      scm_makfrom0str (main_input_name_.to_str0 ()));
210 }
211
212 void
213 Lily_lexer::set_identifier (SCM name, SCM s)
214 {
215   SCM sym = name;
216   if (scm_is_string (name))
217     sym = scm_string_to_symbol (name);
218
219   if (scm_is_symbol (sym))
220     {
221       if (lookup_keyword (ly_symbol2string (sym)) >= 0)
222         {
223           String symstr = ly_symbol2string (sym);
224           warning (_f ("identifier name is a keyword: `%s'", symstr.to_str0 ()));
225         }
226
227       SCM mod = scm_car (scopes_);
228
229       scm_module_define (mod, sym, s);
230     }
231   else
232     programming_error ("identifier is not a symbol");
233 }
234
235 void
236 Lily_lexer::LexerError (char const *s)
237 {
238   if (include_stack_.is_empty ())
239     message (_f ("error at EOF: %s", s) + "\n");
240   else
241     {
242       error_level_ |= 1;
243       Input spot (*lexloc);
244       spot.error (s);
245     }
246 }
247
248 char
249 Lily_lexer::escaped_char (char c) const
250 {
251   switch (c)
252     {
253     case 'n':
254       return '\n';
255     case 't':
256       return '\t';
257     case '\'':
258     case '\"':
259     case '\\':
260       return c;
261     }
262   return 0;
263 }
264
265 Input
266 Lily_lexer::here_input () const
267 {
268   return Input(*lexloc);
269 }
270
271 void
272 Lily_lexer::prepare_for_next_token ()
273 {
274   last_input_ = here_input ();
275 }
276
277 /**
278    Since we don't create the buffer state from the bytes directly, we
279    don't know about the location of the lexer. Add this as a
280    YY_USER_ACTION */
281 void
282 Lily_lexer::add_lexed_char (int count)
283 {
284   char const * start = here_str0 ();
285   lexloc->set (get_source_file (),
286                start, start + count);
287   char_count_stack_.top () += count;
288 }
289
290 #include "ly-smobs.icc"
291
292 IMPLEMENT_SMOBS (Lily_lexer);
293 IMPLEMENT_TYPE_P (Lily_lexer, "ly:lily-lexer?");
294 IMPLEMENT_DEFAULT_EQUAL_P (Lily_lexer);
295
296 SCM
297 Lily_lexer::mark_smob (SCM s)
298 {
299   Lily_lexer *lexer = (Lily_lexer *) SCM_CELL_WORD_1 (s);
300
301   scm_gc_mark (lexer->chordmodifier_tab_);
302   scm_gc_mark (lexer->pitchname_tab_stack_);
303   return lexer->scopes_;
304 }
305
306 int
307 Lily_lexer::print_smob (SCM, SCM port, scm_print_state*)
308 {
309   scm_puts ("#<Lily_lexer ", port);
310   scm_puts (" >", port);
311   return 1;
312 }