2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 Jan Nieuwenhuizen <janneke@gnu.org>
7 LilyPond is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 LilyPond is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
21 #include "lily-parser.hh"
24 #include "file-name.hh"
25 #include "file-path.hh"
26 #include "international.hh"
27 #include "lily-lexer.hh"
28 #include "lily-version.hh"
29 #include "ly-module.hh"
31 #include "output-def.hh"
32 #include "paper-book.hh"
35 #include "source-file.hh"
38 #include "program-option.hh"
40 #include "ly-smobs.icc"
42 Lily_parser::Lily_parser (Sources *sources)
46 default_duration_ = Duration (2, 0);
52 lexer_ = new Lily_lexer (sources_, this);
56 Lily_parser::Lily_parser (Lily_parser const &src, SCM closures)
59 sources_ = src.sources_;
60 default_duration_ = src.default_duration_;
62 output_basename_ = src.output_basename_;
68 lexer_ = new Lily_lexer (*src.lexer_, this);
74 Lily_parser::~Lily_parser ()
79 Lily_parser::mark_smob (SCM s)
81 Lily_parser *parser = (Lily_parser *) SCM_CELL_WORD_1 (s);
82 scm_gc_mark (parser->closures_);
83 return (parser->lexer_) ? parser->lexer_->self_scm () : SCM_EOL;
87 Lily_parser::print_smob (SCM s, SCM port, scm_print_state *)
89 scm_puts ("#<Lily_parser ", port);
90 Lily_parser *parser = (Lily_parser *) SCM_CELL_WORD_1 (s);
92 scm_display (parser->lexer_->self_scm (), port);
94 scm_puts ("(no lexer yet)", port);
95 scm_puts (" >", port);
99 /* Process one .ly file, or book. */
101 Lily_parser::parse_file (string init, string name, string out_name)
103 lexer_->set_identifier (ly_symbol2scm ("parser"), self_scm ());
104 output_basename_ = out_name;
106 lexer_->main_input_name_ = name;
108 message (_ ("Parsing..."));
112 lexer_->new_input (init, sources_);
115 string s = global_path.find (f.base_ + ".twy");
116 s = gulp_file_to_string (s, false, -1);
117 scm_eval_string (ly_string2scm (s));
119 /* Read .ly IN_FILE, lex, parse, write \score blocks from IN_FILE to
120 OUT_FILE (unless IN_FILE redefines output file name). */
122 SCM mod = lexer_->set_current_scope ();
127 while (!lexer_->is_clean ());
130 Don't mix cyclic pointers with weak tables.
132 lexer_->set_identifier (ly_symbol2scm ("parser"),
134 ly_reexport_module (scm_current_module ());
136 scm_set_current_module (mod);
138 error_level_ = error_level_ | lexer_->error_level_;
143 Lily_parser::parse_string (string ly_code)
145 lexer_->main_input_name_ = "<string>";
146 lexer_->is_main_input_ = true;
147 lexer_->new_input (lexer_->main_input_name_, ly_code, sources_);
149 SCM mod = lexer_->set_current_scope ();
150 SCM parser = lexer_->lookup_identifier_symbol (ly_symbol2scm ("parser"));
151 lexer_->set_identifier (ly_symbol2scm ("parser"), self_scm ());
153 lexer_->set_identifier (ly_symbol2scm ("parser"), parser);
154 scm_set_current_module (mod);
156 error_level_ = error_level_ | lexer_->error_level_;
160 Lily_parser::parse_string_expression (string ly_code, string filename,
163 lexer_->main_input_name_ = filename;
164 lexer_->is_main_input_ = true;
165 lexer_->new_input (lexer_->main_input_name_, ly_code, sources_);
168 lexer_->get_source_file ()->set_line (0, line);
170 SCM mod = lexer_->set_current_scope ();
171 SCM parser = lexer_->lookup_identifier_symbol (ly_symbol2scm ("parser"));
172 lexer_->set_identifier (ly_symbol2scm ("parser"), self_scm ());
173 lexer_->push_extra_token (EMBEDDED_LILY);
175 SCM result = lexer_->lookup_identifier_symbol (ly_symbol2scm ("parseStringResult"));
176 // parseStringResult is set in the grammar rule for embedded_lilypond
178 lexer_->set_identifier (ly_symbol2scm ("parser"), parser);
179 scm_set_current_module (mod);
181 error_level_ = error_level_ | lexer_->error_level_;
186 Lily_parser::include_string (string ly_code)
188 lexer_->new_input ("<included string>", ly_code, sources_);
192 Lily_parser::clear ()
196 while (lexer_->has_scope ())
197 lexer_->remove_scope ();
204 Lily_parser::here_str0 () const
206 return lexer_->here_str0 ();
210 Lily_parser::parser_error (string s)
212 lexer_->here_input ().error (_ (s.c_str ()));
217 Lily_parser::parser_error (Input const &i, string s)
223 IMPLEMENT_SMOBS (Lily_parser);
224 IMPLEMENT_TYPE_P (Lily_parser, "ly:lily-parser?");
225 IMPLEMENT_DEFAULT_EQUAL_P (Lily_parser);
227 /****************************************************************
229 ****************************************************************/
232 get_layout (Lily_parser *parser)
234 SCM id = parser->lexer_->lookup_identifier ("$defaultlayout");
235 Output_def *layout = unsmob_output_def (id);
236 layout = layout ? layout->clone () : new Output_def;
237 layout->set_variable (ly_symbol2scm ("is-layout"), SCM_BOOL_T);
243 get_midi (Lily_parser *parser)
245 SCM id = parser->lexer_->lookup_identifier ("$defaultmidi");
246 Output_def *layout = unsmob_output_def (id);
247 layout = layout ? layout->clone () : new Output_def;
248 layout->set_variable (ly_symbol2scm ("is-midi"), SCM_BOOL_T);
252 /* Return a copy of the top of $papers stack, or $defaultpaper if the
255 get_paper (Lily_parser *parser)
257 SCM papers = parser->lexer_->lookup_identifier ("$papers");
258 Output_def *layout = ((papers == SCM_UNDEFINED) || scm_is_null (papers))
259 ? 0 : unsmob_output_def (scm_car (papers));
260 SCM default_paper = parser->lexer_->lookup_identifier ("$defaultpaper");
261 layout = layout ? layout : unsmob_output_def (default_paper);
263 layout = layout ? dynamic_cast<Output_def *> (layout->clone ()) : new Output_def;
264 layout->set_variable (ly_symbol2scm ("is-paper"), SCM_BOOL_T);
268 /* Initialize (reset) the $papers stack */
270 init_papers (Lily_parser *parser)
272 parser->lexer_->set_identifier (ly_symbol2scm ("$papers"), SCM_EOL);
275 /* Push a paper on top of $papers stack */
277 push_paper (Lily_parser *parser, Output_def *paper)
279 parser->lexer_->set_identifier (ly_symbol2scm ("$papers"),
280 scm_cons (paper->self_scm (),
281 parser->lexer_->lookup_identifier ("$papers")));
284 /* Pop a paper from $papers stack */
286 pop_paper (Lily_parser *parser)
288 if (scm_is_pair (parser->lexer_->lookup_identifier ("$papers")))
289 parser->lexer_->set_identifier (ly_symbol2scm ("$papers"),
290 scm_cdr (parser->lexer_->lookup_identifier ("$papers")));
293 /* Change the paper on top of $papers stack */
295 set_paper (Lily_parser *parser, Output_def *paper)
297 scm_set_car_x (parser->lexer_->lookup_identifier ("$papers"), paper->self_scm ());
301 get_header (Lily_parser *parser)
303 SCM id = parser->lexer_->lookup_identifier ("$defaultheader");
304 if (!ly_is_module (id))
305 id = parser->make_scope ();
308 SCM nid = parser->make_scope ();
309 ly_module_copy (nid, id);
317 Lily_parser::make_scope () const
319 SCM module = ly_make_module (be_safe_global);