1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 2005--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
LilyPond is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LilyPond is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
*/
#include <unistd.h>
#include "lily-parser.hh"
#include "file-name-map.hh"
#include "file-name.hh"
#include "file-path.hh"
#include "international.hh"
#include "lily-lexer.hh"
#include "main.hh"
#include "program-option.hh"
#include "sources.hh"
#include "warn.hh"
#include "lily-imports.hh"
LY_DEFINE (ly_parse_file, "ly:parse-file",
1, 0, 0, (SCM name),
"Parse a single @code{.ly} file."
" Upon failure, throw @code{ly-file-failed} key.")
{
LY_ASSERT_TYPE (scm_is_string, name, 1);
string file = ly_scm2string (name);
char const *extensions[] = {"ly", "", 0};
string file_name = global_path.find (file, extensions);
/* By default, use base name of input file for output file name,
write output to cwd; do not use root and directory parts of input
file name. */
File_name out_file_name (file_name);
out_file_name.ext_ = "";
out_file_name.root_ = "";
if (!to_boolean (ly_get_option (ly_symbol2scm ("gui")))
&& to_boolean (ly_get_option (ly_symbol2scm ("strip-output-dir"))))
{
out_file_name.dir_ = "";
}
/* When running from gui, generate output in .ly source directory. */
string output_name = output_name_global;
if (!output_name.empty ())
{
/* Interpret --output=DIR to mean --output=DIR/BASE. */
string dir;
if (is_dir (output_name))
{
dir = output_name;
output_name = "";
}
else
{
File_name out (output_name);
dir = out.dir_part ();
out_file_name = out.file_part ();
}
if (dir != "" && dir != "." && dir != get_working_directory ())
{
global_path.prepend (get_working_directory ());
message (_f ("Changing working directory to: `%s'", dir));
// If we can't change to the output dir (not existing, wrong
// permissions), exit lilypond
if (chdir (dir.c_str ()) != 0)
error (_f ("unable to change directory to: `%s'", dir));
}
else
out_file_name = File_name (output_name);
}
string init;
if (!init_name_global.empty ())
init = init_name_global;
else
init = "init.ly";
string out_file = out_file_name.to_string ();
if (init.length () && global_path.find (init).empty ())
{
warning (_f ("cannot find init file: `%s'", init));
warning (_f ("(search path: `%s')",
global_path.to_string ().c_str ()));
exit (2);
}
bool error = false;
if ((file_name != "-") && file_name.empty ())
{
warning (_f ("cannot find file: `%s'", file));
error = true;
}
else
{
Sources sources;
sources.set_path (&global_path);
string mapped_fn = map_file_name (file_name);
basic_progress (_f ("Processing `%s'", mapped_fn.c_str ()));
Lily_parser *parser = new Lily_parser (&sources);
parser->parse_file (init, file_name, out_file);
error = parser->error_level_;
parser->clear ();
parser->unprotect ();
}
/*
outside the if-else to ensure cleanup fo Sources object,
*/
if (error)
/* TODO: pass renamed input file too. */
scm_throw (ly_symbol2scm ("ly-file-failed"),
scm_list_1 (ly_string2scm (file_name)));
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parser_lexer, "ly:parser-lexer",
0, 1, 0, (SCM parser),
"Return the lexer for @var{parser}, defaulting to current parser")
{
if (SCM_UNBNDP (parser))
parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 1);
return p->lexer_->self_scm ();
}
LY_DEFINE (ly_parser_clone, "ly:parser-clone",
0, 2, 0, (SCM closures, SCM location),
"Return a clone of current parser. An association list"
" of port positions to closures can be specified in @var{closures}"
" in order to have @code{$} and @code{#} interpreted in their original"
" lexical environment. If @var{location} is a valid location,"
" it becomes the source of all music expressions inside.")
{
SCM parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 0);
if (SCM_UNBNDP (closures))
closures = SCM_EOL;
else
LY_ASSERT_TYPE (ly_is_list, closures, 2);
Lily_parser *clone = new Lily_parser (*p, closures, location);
return clone->unprotect ();
}
LY_DEFINE (ly_parser_define_x, "ly:parser-define!",
2, 0, 0, (SCM symbol, SCM val),
"Bind @var{symbol} to @var{val} in current parser's module.")
{
SCM parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 0);
LY_ASSERT_TYPE (ly_is_symbol, symbol, 1);
p->lexer_->set_identifier (scm_symbol_to_string (symbol), val);
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parser_lookup, "ly:parser-lookup",
1, 0, 0, (SCM symbol),
"Look up @var{symbol} in current parser's module."
" Return @code{'()} if not defined.")
{
SCM parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 0);
LY_ASSERT_TYPE (ly_is_symbol, symbol, 1);
SCM val = p->lexer_->lookup_identifier (ly_symbol2string (symbol));
if (!SCM_UNBNDP (val))
return val;
else
return SCM_EOL;
}
LY_DEFINE (ly_parser_parse_string, "ly:parser-parse-string",
2, 0, 0, (SCM parser_smob, SCM ly_code),
"Parse the string @var{ly-code} with @var{parser-smob}."
" Upon failure, throw @code{ly-file-failed} key.")
{
LY_ASSERT_SMOB (Lily_parser, parser_smob, 1);
Lily_parser *parser = unsmob<Lily_parser> (parser_smob);
LY_ASSERT_TYPE (scm_is_string, ly_code, 2);
if (!parser->lexer_->is_clean ())
parser->parser_error (_ ("ly:parser-parse-string is only valid with a new parser."
" Use ly:parser-include-string instead."));
else
parser->parse_string (ly_scm2string (ly_code));
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parse_string_expression, "ly:parse-string-expression",
2, 2, 0, (SCM parser_smob, SCM ly_code, SCM filename,
SCM line),
"Parse the string @var{ly-code} with @var{parser-smob}."
" Return the contained music expression."
" @var{filename} and @var{line} are optional source indicators.")
{
LY_ASSERT_SMOB (Lily_parser, parser_smob, 1);
Lily_parser *parser = unsmob<Lily_parser> (parser_smob);
LY_ASSERT_TYPE (scm_is_string, ly_code, 2);
string fn;
if (SCM_UNBNDP (filename) || !scm_is_string (filename))
fn = "<string>";
else
fn = ly_scm2string (filename);
int ln;
if (SCM_UNBNDP (line) || !scm_is_integer (line))
ln = 0;
else
ln = scm_to_int (line);
if (!parser->lexer_->is_clean ())
{
parser->parser_error (_ ("ly:parse-string-expression is only valid with a new parser."
" Use ly:parser-include-string instead."));
return SCM_UNSPECIFIED;
}
return parser->parse_string_expression (ly_scm2string (ly_code),
fn, ln);
}
LY_DEFINE (ly_parser_include_string, "ly:parser-include-string",
1, 0, 0, (SCM ly_code),
"Include the string @var{ly-code} into the input stream"
" for current parser. Can only be used in immediate"
" Scheme expressions (@code{$} instead of @code{#}).")
{
SCM parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 0);
LY_ASSERT_TYPE (scm_is_string, ly_code, 1);
p->include_string (ly_scm2string (ly_code));
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parser_set_note_names, "ly:parser-set-note-names",
1, 0, 0, (SCM names),
"Replace current note names in parser."
" @var{names} is an alist of symbols. This only has effect"
" if the current mode is notes.")
{
SCM parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 0);
if (p->lexer_->is_note_state ())
{
p->lexer_->pop_state ();
p->lexer_->push_note_state (names);
}
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parser_output_name, "ly:parser-output-name",
0, 1, 0, (SCM parser),
"Return the base name of the output file. If @code{parser} is left off, use currently active parser.")
{
if (SCM_UNBNDP (parser))
parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 1);
return ly_string2scm (p->output_basename_);
}
LY_DEFINE (ly_parser_error, "ly:parser-error",
1, 1, 0, (SCM msg, SCM input),
"Display an error message and make current parser fail."
" Without a current parser, trigger an ordinary error.")
{
SCM parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = unsmob<Lily_parser> (parser);
LY_ASSERT_TYPE (scm_is_string, msg, 1);
string s = ly_scm2string (msg);
Input *i = unsmob<Input> (input);
if (p)
{
if (i)
p->parser_error (*i, s);
else
p->parser_error (s);
}
else
{
if (i)
i->non_fatal_error (s);
else
scm_misc_error ("ly:parser-error", "~A", scm_list_1 (msg));
}
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parser_clear_error, "ly:parser-clear-error",
0, 1, 0, (SCM parser),
"Clear error flag for @var{parser}, defaulting to current parser.")
{
if (SCM_UNBNDP (parser))
parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 1);
p->error_level_ = 0;
p->lexer_->error_level_ = 0;
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_parser_has_error_p, "ly:parser-has-error?",
0, 1, 0, (SCM parser),
"Does @var{parser} (defaulting to current parser) have an error flag?")
{
if (SCM_UNBNDP (parser))
parser = scm_fluid_ref (Lily::f_parser);
Lily_parser *p = LY_ASSERT_SMOB (Lily_parser, parser, 1);
return scm_from_bool (p->error_level_ || p->lexer_->error_level_);
}
|