2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "lily-lexer.hh"
26 #include "context.hh" // for nested_property_alist
27 #include "international.hh"
28 #include "interval.hh"
33 #include "scm-hash.hh"
34 #include "source-file.hh"
36 #include "program-option.hh"
37 #include "lily-parser.hh"
39 static Keyword_ent the_key_tab[]
43 {"addlyrics", ADDLYRICS},
45 {"alternative", ALTERNATIVE},
47 {"bookpart", BOOKPART},
49 {"chordmode", CHORDMODE},
51 {"consists", CONSISTS},
54 {"defaultchild", DEFAULTCHILD},
56 {"description", DESCRIPTION},
57 {"drummode", DRUMMODE},
59 {"figuremode", FIGUREMODE},
63 {"lyricmode", LYRICMODE},
65 {"lyricsto", LYRICSTO},
67 {"markuplist", MARKUPLIST},
71 {"notemode", NOTEMODE},
72 {"override", OVERRIDE},
79 {"sequential", SEQUENTIAL},
81 {"simultaneous", SIMULTANEOUS},
89 Lily_lexer::Lily_lexer (Sources *sources, Lily_parser *parser)
92 keytable_ = new Keyword_table (the_key_tab);
93 chordmodifier_tab_ = SCM_EOL;
94 pitchname_tab_stack_ = SCM_EOL;
98 is_main_input_ = false;
99 main_input_level_ = 0;
100 start_module_ = SCM_EOL;
101 extra_tokens_ = SCM_EOL;
104 add_scope (ly_make_module (false));
105 push_note_state (SCM_EOL);
106 chordmodifier_tab_ = scm_make_vector (scm_from_int (1), SCM_EOL);
109 Lily_lexer::Lily_lexer (Lily_lexer const &src, Lily_parser *parser,
111 : Includable_lexer ()
114 keytable_ = (src.keytable_) ? new Keyword_table (*src.keytable_) : 0;
115 chordmodifier_tab_ = src.chordmodifier_tab_;
116 pitchname_tab_stack_ = src.pitchname_tab_stack_;
117 sources_ = src.sources_;
118 scopes_ = src.scopes_;
119 start_module_ = SCM_EOL;
122 is_main_input_ = src.is_main_input_;
123 main_input_level_ = 0;
125 extra_tokens_ = SCM_EOL;
126 if (Input::unsmob (override_input))
127 override_input_ = *Input::unsmob (override_input);
131 push_note_state (SCM_EOL);
134 Lily_lexer::~Lily_lexer ()
140 Lily_lexer::add_scope (SCM module)
142 ly_reexport_module (scm_current_module ());
143 if (!scm_is_pair (scopes_))
144 start_module_ = scm_current_module ();
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_);
150 set_current_scope ();
153 Lily_lexer::has_scope () const
155 return scm_is_pair (scopes_);
159 Lily_lexer::remove_scope ()
161 SCM sc = scm_car (scopes_);
162 scopes_ = scm_cdr (scopes_);
163 set_current_scope ();
168 Lily_lexer::set_current_scope ()
170 SCM old = scm_current_module ();
172 if (scm_is_pair (scopes_))
173 scm_set_current_module (scm_car (scopes_));
175 scm_set_current_module (start_module_);
181 Lily_lexer::lookup_keyword (const string &s)
183 return keytable_->lookup (s.c_str ());
187 Lily_lexer::keyword_list () const
194 for (vsize i = 0; i < keytable_->table_.size (); i++)
196 *tail = scm_acons (scm_from_locale_string (keytable_->table_[i].name_),
197 scm_from_int (keytable_->table_[i].tokcode_),
200 tail = SCM_CDRLOC (*tail);
207 Lily_lexer::lookup_identifier_symbol (SCM sym)
209 for (SCM s = scopes_; scm_is_pair (s); s = scm_cdr (s))
211 SCM var = ly_module_lookup (scm_car (s), sym);
212 if (var != SCM_BOOL_F)
213 return scm_variable_ref (var);
216 return SCM_UNDEFINED;
220 Lily_lexer::lookup_identifier (const string &name)
222 return lookup_identifier_symbol (ly_symbol2scm (name.c_str ()));
226 Lily_lexer::start_main_input ()
228 yy_flex_debug = get_program_option ("debug-lexer");
229 parser_->set_yydebug (get_program_option ("debug-parser"));
231 new_input (main_input_name_, sources_);
233 scm_module_define (scm_car (scopes_),
234 ly_symbol2scm ("input-file-name"),
235 ly_string2scm (main_input_name_));
239 Lily_lexer::new_input (const string &str, string d, Sources *ss)
241 Includable_lexer::new_input (str, d, ss);
245 Lily_lexer::new_input (const string &str, Sources *ss)
247 if (is_main_input_ && be_safe_global)
249 LexerError (_ ("include files are not allowed in safe mode").c_str ());
253 Includable_lexer::new_input (str, ss);
256 // PATH is either a single symbol (or string) or a list of symbols
257 // giving the path to a nested property. A symbol is treated the same
258 // as a list of length 1.
260 Lily_lexer::set_identifier (SCM path, SCM val)
263 if (scm_is_string (path))
264 sym = scm_string_to_symbol (path);
265 else if (scm_is_pair (path))
267 sym = scm_car (path);
268 path = scm_cdr (path);
271 if (scm_is_symbol (sym))
273 if (lookup_keyword (ly_symbol2string (sym)) >= 0)
275 string symstr = ly_symbol2string (sym);
276 warning (_f ("identifier name is a keyword: `%s'", symstr.c_str ()));
279 SCM mod = scm_car (scopes_);
281 if (scm_is_pair (path))
283 SCM prev = ly_module_lookup (mod, sym);
284 if (prev != SCM_BOOL_F)
285 val = nested_property_alist (scm_variable_ref (prev), path, val);
287 scm_module_define (mod, sym, val);
290 programming_error ("identifier is not a symbol");
294 Lily_lexer::LexerError (char const *s)
296 if (include_stack_.empty ())
297 non_fatal_error (s, _f ("%s:EOF", s));
301 Input spot (*lexloc_);
307 Lily_lexer::LexerWarning (char const *s)
309 if (include_stack_.empty ())
310 warning (s, _f ("%s:EOF", s));
313 Input spot (*lexloc_);
319 Lily_lexer::escaped_char (char c) const
336 Lily_lexer::here_input () const
338 return Input (*lexloc_);
342 Lily_lexer::override_input (Input const &in) const
344 return override_input_.get_source_file ()
345 ? override_input_ : in;
349 Lily_lexer::prepare_for_next_token ()
351 last_input_ = here_input ();
355 Since we don't create the buffer state from the bytes directly, we
356 don't know about the location of the lexer. Add this as a
359 Lily_lexer::add_lexed_char (int count)
361 char const *start = here_str0 ();
362 lexloc_->set (get_source_file (),
363 start, start + count);
364 char_count_stack_.back () += count;
368 const char Lily_lexer::type_p_name_[] = "ly:lily-lexer?";
371 Lily_lexer::mark_smob (SCM s)
373 ASSERT_LIVE_IS_ALLOWED (s);
375 Lily_lexer *lexer = (Lily_lexer *) SCM_CELL_WORD_1 (s);
377 scm_gc_mark (lexer->chordmodifier_tab_);
379 scm_gc_mark (lexer->parser_->self_scm ());
380 scm_gc_mark (lexer->pitchname_tab_stack_);
381 scm_gc_mark (lexer->start_module_);
382 scm_gc_mark (lexer->extra_tokens_);
383 return lexer->scopes_;
387 Lily_lexer::print_smob (SCM s, SCM port, scm_print_state *)
389 Lily_lexer *lexer = Lily_lexer::unsmob (s);
391 scm_puts ("#<Lily_lexer ", port);
392 scm_display (lexer->scopes_, port);
393 scm_puts (" >", port);
398 Lily_lexer::is_clean () const
400 return include_stack_.empty ();