2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2009 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 "international.hh"
27 #include "interval.hh"
32 #include "scm-hash.hh"
33 #include "source-file.hh"
35 #include "program-option.hh"
36 #include "lily-parser.hh"
38 static Keyword_ent the_key_tab
[]
41 {"addlyrics", ADDLYRICS
},
43 {"alternative", ALTERNATIVE
},
45 {"bookpart", BOOKPART
},
47 {"chordmode", CHORDMODE
},
49 {"consists", CONSISTS
},
52 {"defaultchild", DEFAULTCHILD
},
54 {"description", DESCRIPTION
},
55 {"drummode", DRUMMODE
},
57 {"figuremode", FIGUREMODE
},
59 {"grobdescriptions", GROBDESCRIPTIONS
},
63 {"lyricmode", LYRICMODE
},
65 {"lyricsto", LYRICSTO
},
68 {"markuplines", MARKUPLINES
},
72 {"notemode", NOTEMODE
},
73 {"objectid", OBJECTID
},
75 {"override", OVERRIDE
},
78 {"relative", RELATIVE
},
84 {"sequential", SEQUENTIAL
},
86 {"simultaneous", SIMULTANEOUS
},
91 {"transpose", TRANSPOSE
},
98 Lily_lexer::Lily_lexer (Sources
*sources
, Lily_parser
*parser
)
101 keytable_
= new Keyword_table (the_key_tab
);
102 chordmodifier_tab_
= SCM_EOL
;
103 pitchname_tab_stack_
= SCM_EOL
;
107 is_main_input_
= false;
108 start_module_
= SCM_EOL
;
109 chord_repetition_
= Chord_repetition ();
112 add_scope (ly_make_anonymous_module (false));
113 push_note_state (scm_c_make_hash_table (0));
114 chordmodifier_tab_
= scm_make_vector (scm_from_int (1), SCM_EOL
);
117 Lily_lexer::Lily_lexer (Lily_lexer
const &src
, Lily_parser
*parser
)
118 : Includable_lexer ()
121 keytable_
= (src
.keytable_
) ? new Keyword_table (*src
.keytable_
) : 0;
122 chordmodifier_tab_
= src
.chordmodifier_tab_
;
123 pitchname_tab_stack_
= src
.pitchname_tab_stack_
;
124 sources_
= src
.sources_
;
125 start_module_
= SCM_EOL
;
126 chord_repetition_
= src
.chord_repetition_
;
128 error_level_
= src
.error_level_
;
129 is_main_input_
= src
.is_main_input_
;
135 SCM scopes
= SCM_EOL
;
137 for (SCM s
= src
.scopes_
; scm_is_pair (s
); s
= scm_cdr (s
))
139 SCM newmod
= ly_make_anonymous_module (false);
140 ly_module_copy (newmod
, scm_car (s
));
141 *tail
= scm_cons (newmod
, SCM_EOL
);
142 tail
= SCM_CDRLOC (*tail
);
146 push_note_state (scm_c_make_hash_table (0));
149 Lily_lexer::~Lily_lexer ()
155 Lily_lexer::add_scope (SCM module
)
157 ly_reexport_module (scm_current_module ());
158 if (!scm_is_pair (scopes_
))
159 start_module_
= scm_current_module ();
161 for (SCM s
= scopes_
; scm_is_pair (s
); s
= scm_cdr (s
))
162 ly_use_module (module
, scm_car (s
));
163 scopes_
= scm_cons (module
, scopes_
);
165 set_current_scope ();
168 Lily_lexer::has_scope () const
170 return scm_is_pair (scopes_
);
174 Lily_lexer::remove_scope ()
176 SCM sc
= scm_car (scopes_
);
177 scopes_
= scm_cdr (scopes_
);
178 set_current_scope ();
183 Lily_lexer::set_current_scope ()
185 SCM old
= scm_current_module ();
187 if (scm_is_pair (scopes_
))
188 scm_set_current_module (scm_car (scopes_
));
190 scm_set_current_module (start_module_
);
196 Lily_lexer::lookup_keyword (string s
)
198 return keytable_
->lookup (s
.c_str ());
202 Lily_lexer::keyword_list () const
209 for (vsize i
= 0; i
< keytable_
->table_
.size (); i
++)
211 *tail
= scm_acons (scm_from_locale_string (keytable_
->table_
[i
].name_
),
212 scm_from_int (keytable_
->table_
[i
].tokcode_
),
215 tail
= SCM_CDRLOC (*tail
);
222 Lily_lexer::lookup_identifier_symbol (SCM sym
)
224 for (SCM s
= scopes_
; scm_is_pair (s
); s
= scm_cdr (s
))
226 SCM var
= ly_module_lookup (scm_car (s
), sym
);
227 if (var
!= SCM_BOOL_F
)
228 return scm_variable_ref (var
);
231 return SCM_UNDEFINED
;
235 Lily_lexer::lookup_identifier (string name
)
237 return lookup_identifier_symbol (ly_symbol2scm (name
.c_str ()));
241 Lily_lexer::start_main_input ()
243 yy_flex_debug
= get_program_option ("debug-lexer");
244 parser_
->set_yydebug (get_program_option ("debug-parser"));
247 new_input (main_input_name_
, sources_
);
249 scm_module_define (scm_car (scopes_
),
250 ly_symbol2scm ("input-file-name"),
251 ly_string2scm (main_input_name_
));
255 Lily_lexer::new_input (string str
, string d
, Sources
*ss
)
257 Includable_lexer::new_input (str
, d
, ss
);
261 Lily_lexer::new_input (string str
, Sources
*ss
)
263 if (is_main_input_
&& be_safe_global
)
265 LexerError (_ ("include files are not allowed in safe mode").c_str ());
269 Includable_lexer::new_input (str
, ss
);
273 Lily_lexer::set_identifier (SCM name
, SCM s
)
276 if (scm_is_string (name
))
277 sym
= scm_string_to_symbol (name
);
279 if (scm_is_symbol (sym
))
281 if (lookup_keyword (ly_symbol2string (sym
)) >= 0)
283 string symstr
= ly_symbol2string (sym
);
284 warning (_f ("identifier name is a keyword: `%s'", symstr
.c_str ()));
287 SCM mod
= scm_car (scopes_
);
289 scm_module_define (mod
, sym
, s
);
292 programming_error ("identifier is not a symbol");
296 Lily_lexer::LexerError (char const *s
)
298 if (include_stack_
.empty ())
299 message (_f ("error at EOF: %s", s
) + "\n");
303 Input
spot (*lexloc
);
309 Lily_lexer::escaped_char (char c
) const
326 Lily_lexer::here_input () const
328 return Input (*lexloc
);
332 Lily_lexer::prepare_for_next_token ()
334 last_input_
= here_input ();
338 Since we don't create the buffer state from the bytes directly, we
339 don't know about the location of the lexer. Add this as a
342 Lily_lexer::add_lexed_char (int count
)
344 char const *start
= here_str0 ();
345 lexloc
->set (get_source_file (),
346 start
, start
+ count
);
347 char_count_stack_
.back () += count
;
350 #include "ly-smobs.icc"
352 IMPLEMENT_SMOBS (Lily_lexer
);
353 IMPLEMENT_TYPE_P (Lily_lexer
, "ly:lily-lexer?");
354 IMPLEMENT_DEFAULT_EQUAL_P (Lily_lexer
);
357 Lily_lexer::mark_smob (SCM s
)
359 ASSERT_LIVE_IS_ALLOWED ();
361 Lily_lexer
*lexer
= (Lily_lexer
*) SCM_CELL_WORD_1 (s
);
363 scm_gc_mark (lexer
->chordmodifier_tab_
);
365 scm_gc_mark (lexer
->parser_
->self_scm ());
366 scm_gc_mark (lexer
->pitchname_tab_stack_
);
367 scm_gc_mark (lexer
->start_module_
);
368 return lexer
->scopes_
;
372 Lily_lexer::print_smob (SCM s
, SCM port
, scm_print_state
*)
374 Lily_lexer
*lexer
= Lily_lexer::unsmob (s
);
376 scm_puts ("#<Lily_lexer ", port
);
377 scm_display (lexer
->scopes_
, port
);
378 scm_puts (" >", port
);