2 lily-parser-scheme.cc -- implement Lily_parser bindings
4 source file of the GNU LilyPond music typesetter
6 (c) 2005--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
11 #include "lily-parser.hh"
13 #include "file-name-map.hh"
14 #include "file-name.hh"
15 #include "file-path.hh"
16 #include "international.hh"
17 #include "lily-lexer.hh"
18 #include "ly-module.hh"
20 #include "program-option.hh"
24 /* Do not append `!' suffix, since 1st argument is not modified. */
25 LY_DEFINE (ly_set_point_and_click, "ly:set-point-and-click",
30 warning (_f ("deprecated function called: %s", "ly:set-point-and-click"));
31 return SCM_UNSPECIFIED;
34 LY_DEFINE (ly_parse_file, "ly:parse-file",
36 "Parse a single @code{.ly} file."
37 " Upon failure, throw @code{ly-file-failed} key.")
39 LY_ASSERT_TYPE (scm_is_string, name, 1);
40 string file = ly_scm2string (name);
41 char const *extensions[] = {"ly", "", 0};
43 string file_name = global_path.find (file, extensions);
45 /* By default, use base name of input file for output file name,
46 write output to cwd; do not use root and directory parts of input
48 File_name out_file_name (file_name);
50 global_path.append (out_file_name.dir_);
52 out_file_name.ext_ = "";
53 out_file_name.root_ = "";
54 out_file_name.dir_ = "";
56 /* When running from gui, generate output in .ly source directory. */
57 if (output_name_global.empty ()
58 && ly_get_option (ly_symbol2scm ("gui")) == SCM_BOOL_T)
63 output_name_global = f.to_string ();
66 if (!output_name_global.empty ())
69 /* Interpret --output=DIR to mean --output=DIR/BASE. */
71 if (is_dir (output_name_global))
73 dir = output_name_global;
74 output_name_global = "";
78 File_name out (output_name_global);
79 if (is_dir (out.dir_part ()))
81 dir = out.dir_part ();
82 out_file_name = out.file_part ();
86 if (dir != "" && dir != "." && dir != get_working_directory ())
88 global_path.prepend (get_working_directory ());
89 message (_f ("Changing working directory to: `%s'",
94 out_file_name = File_name (output_name_global);
98 if (!init_name_global.empty ())
99 init = init_name_global;
103 string out_file = out_file_name.to_string ();
105 if (init.length () && global_path.find (init).empty ())
107 warning (_f ("cannot find init file: `%s'", init));
108 warning (_f ("(search path: `%s')",
109 global_path.to_string ().c_str ()));
115 if ((file_name != "-") && file_name.empty ())
117 warning (_f ("cannot find file: `%s'", file));
123 sources.set_path (&global_path);
125 string mapped_fn = map_file_name (file_name);
126 message (_f ("Processing `%s'", mapped_fn.c_str ()));
127 progress_indication ("\n");
129 Lily_parser *parser = new Lily_parser (&sources);
131 parser->parse_file (init, file_name, out_file);
133 error = parser->error_level_;
136 parser->unprotect ();
140 outside the if-else to ensure cleanup fo Sources object,
143 /* TODO: pass renamed input file too. */
144 scm_throw (ly_symbol2scm ("ly-file-failed"),
145 scm_list_1 (ly_string2scm (file_name)));
147 return SCM_UNSPECIFIED;
151 LY_DEFINE (ly_parser_lexer, "ly:parser-lexer",
152 1, 0, 0, (SCM parser_smob),
153 "Return the lexer for @var{parser-smob}.")
155 Lily_parser *parser = unsmob_lily_parser (parser_smob);
156 return parser->lexer_->self_scm ();
159 LY_DEFINE (ly_parser_clone, "ly:parser-clone",
160 1, 0, 0, (SCM parser_smob),
161 "Return a clone of @var{parser-smob}.")
163 LY_ASSERT_SMOB (Lily_parser, parser_smob, 1);
164 Lily_parser *parser = unsmob_lily_parser (parser_smob);
165 Lily_parser *clone = new Lily_parser (*parser);
167 return clone->unprotect ();
170 LY_DEFINE (ly_parser_define_x, "ly:parser-define!",
171 3, 0, 0, (SCM parser_smob, SCM symbol, SCM val),
172 "Bind @var{symbol} to @var{val} in @var{parser-smob}'s module.")
175 LY_ASSERT_SMOB (Lily_parser, parser_smob, 1);
176 Lily_parser *parser = unsmob_lily_parser (parser_smob);
178 LY_ASSERT_TYPE (ly_is_symbol, symbol, 2);
180 parser->lexer_->set_identifier (scm_symbol_to_string (symbol), val);
181 return SCM_UNSPECIFIED;
184 LY_DEFINE (ly_parser_lookup, "ly:parser-lookup",
185 2, 0, 0, (SCM parser_smob, SCM symbol),
186 "Look up @var{symbol} in @var{parser-smob}'s module."
187 " Return @code{'()} if not defined.")
189 LY_ASSERT_SMOB (Lily_parser, parser_smob, 1);
191 Lily_parser *parser = unsmob_lily_parser (parser_smob);
193 LY_ASSERT_TYPE (ly_is_symbol, symbol, 2);
195 SCM val = parser->lexer_->lookup_identifier (ly_scm2string (scm_symbol_to_string (symbol)));
196 if (val != SCM_UNDEFINED)
202 LY_DEFINE (ly_parser_parse_string, "ly:parser-parse-string",
203 2, 0, 0, (SCM parser_smob, SCM ly_code),
204 "Parse the string @var{ly-code} with @var{parser-smob}."
205 " Upon failure, throw @code{ly-file-failed} key.")
207 LY_ASSERT_SMOB (Lily_parser, parser_smob, 1);
208 Lily_parser *parser = unsmob_lily_parser (parser_smob);
209 LY_ASSERT_TYPE (scm_is_string, ly_code, 2);
211 parser->parse_string (ly_scm2string (ly_code));
213 return SCM_UNSPECIFIED;
216 LY_DEFINE (ly_parser_set_note_names, "ly:parser-set-note-names",
217 2, 0, 0, (SCM parser, SCM names),
218 "Replace current note names in @var{parser}."
219 " @var{names} is an alist of symbols. This only has effect"
220 " if the current mode is notes.")
222 LY_ASSERT_SMOB (Lily_parser, parser, 1);
223 Lily_parser *p = unsmob_lily_parser (parser);
225 if (p->lexer_->is_note_state ())
227 p->lexer_->pop_state ();
228 p->lexer_->push_note_state (alist_to_hashq (names));
231 return SCM_UNSPECIFIED;
234 LY_DEFINE (ly_parser_output_name, "ly:parser-output-name",
235 1, 0, 0, (SCM parser),
236 "Return the base name of the output file.")
238 LY_ASSERT_SMOB (Lily_parser, parser, 1);
239 Lily_parser *p = unsmob_lily_parser (parser);
241 return ly_string2scm (p->output_basename_);
244 LY_DEFINE (ly_parser_error, "ly:parser-error",
245 2, 1, 0, (SCM parser, SCM msg, SCM input),
246 "Display an error message and make the parser fail.")
248 LY_ASSERT_SMOB (Lily_parser, parser, 1);
249 Lily_parser *p = unsmob_lily_parser (parser);
251 LY_ASSERT_TYPE (scm_is_string, msg, 2);
252 string s = ly_scm2string (msg);
254 Input *i = unsmob_input (input);
256 p->parser_error (*i, s);
263 LY_DEFINE (ly_parser_clear_error, "ly:parser-clear-error",
264 1, 0, 0, (SCM parser),
265 "Clear the error flag for the parser.")
267 LY_ASSERT_SMOB (Lily_parser, parser, 1);
268 Lily_parser *p = unsmob_lily_parser (parser);
272 p->lexer_->error_level_ = 0;
274 return SCM_UNSPECIFIED;
277 LY_DEFINE (ly_parser_has_error_p, "ly:parser-has-error?",
278 1, 0, 0, (SCM parser),
279 "Does @var{parser} have an error flag?")
281 LY_ASSERT_SMOB (Lily_parser, parser, 1);
282 Lily_parser *p = unsmob_lily_parser (parser);
284 return scm_from_bool (p->error_level_ || p->lexer_->error_level_);