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
|
/*
This file is part of LilyPond, the GNU music typesetter.
Copyright (C) 2001--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 "program-option.hh"
#include <cstdio>
#include <cstring>
using namespace std;
#include "profile.hh"
#include "international.hh"
#include "main.hh"
#include "parse-scm.hh"
#include "string-convert.hh"
#include "warn.hh"
#include "lily-imports.hh"
bool debug_skylines;
bool debug_property_callbacks;
bool debug_page_breaking_scoring;
bool music_strings_to_paths;
bool relative_includes;
bool profile_property_accesses = false;
/*
crash if internally the wrong type is used for a grob property.
*/
bool do_internal_type_checking_global;
bool strict_infinity_checking = false;
static SCM option_hash;
void
internal_set_option (SCM var,
SCM val)
{
string varstr = robust_symbol2string (var, "");
bool valbool = to_boolean (val);
SCM val_scm_bool = scm_from_bool (valbool);
if (0)
;
else if (varstr == "profile-property-accesses")
{
profile_property_accesses = valbool;
val = val_scm_bool;
}
else if (varstr == "protected-scheme-parsing")
{
parse_protect_global = valbool;
val = val_scm_bool;
}
else if (varstr == "check-internal-types")
{
do_internal_type_checking_global = valbool;
val = val_scm_bool;
}
else if (varstr == "debug-gc-assert-parsed-dead")
{
parsed_objects_should_be_dead = valbool;
val = val_scm_bool;
}
else if (varstr == "safe")
{
be_safe_global = valbool;
val = val_scm_bool;
}
else if (varstr == "strict-infinity-checking")
{
strict_infinity_checking = valbool;
val = val_scm_bool;
}
else if (varstr == "debug-skylines")
{
debug_skylines = valbool;
val = val_scm_bool;
}
else if (varstr == "debug-property-callbacks")
{
debug_property_callbacks = valbool;
val = val_scm_bool;
}
else if (varstr == "debug-page-breaking-scoring")
{
debug_page_breaking_scoring = valbool;
val = val_scm_bool;
}
else if (varstr == "datadir")
{
/* ignore input value. */
val = ly_string2scm (lilypond_datadir);
}
else if (varstr == "relative-includes")
{
relative_includes = valbool;
val = val_scm_bool;
}
else if (varstr == "warning-as-error")
{
/* warning_as_error is defined in flower/warn.cc */
warning_as_error = valbool;
val = val_scm_bool;
}
else if (varstr == "music-strings-to-paths")
{
music_strings_to_paths = valbool;
val = val_scm_bool;
}
scm_hashq_set_x (option_hash, var, val);
}
ssize const HELP_INDENT = 30;
ssize const INDENT = 2;
ssize const SEPARATION = 5;
/*
Hmmm. should do in SCM / C++ ?
*/
static string
get_help_string ()
{
SCM alist = ly_hash2alist (option_hash);
vector<string> opts;
for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
{
SCM sym = scm_caar (s);
SCM val = scm_cdar (s);
string opt_spec = String_convert::char_string (' ', INDENT)
+ ly_symbol2string (sym)
+ " ("
+ ly_scm2string (Lily::scm_to_string (val))
+ ")";
if (opt_spec.length () + SEPARATION > HELP_INDENT)
opt_spec += "\n" + String_convert::char_string (' ', HELP_INDENT);
else
opt_spec += String_convert::char_string (' ', HELP_INDENT
- opt_spec.length ());
SCM opt_help_scm
= scm_object_property (sym,
ly_symbol2scm ("program-option-documentation"));
string opt_help = ly_scm2string (opt_help_scm);
replace_all (&opt_help,
string ("\n"),
string ("\n")
+ String_convert::char_string (' ', HELP_INDENT));
opts.push_back (opt_spec + opt_help + "\n");
}
string help ("Options supported by `ly:set-option':\n\n");
vector_sort (opts, less<string> ());
for (vsize i = 0; i < opts.size (); i++)
help += opts[i];
return help;
}
LY_DEFINE (ly_option_usage, "ly:option-usage", 0, 1, 0, (SCM port),
"Print @code{ly:set-option} usage. Optional @var{port} argument"
"for the destination defaults to current output port.")
{
SCM str = scm_from_locale_string (get_help_string ().c_str ());
scm_write_line (str, port);
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_add_option, "ly:add-option", 3, 0, 0,
(SCM sym, SCM val, SCM description),
"Add a program option @var{sym}. @var{val} is the default"
" value and @var{description} is a string description.")
{
if (!option_hash)
option_hash = scm_permanent_object (scm_c_make_hash_table (11));
LY_ASSERT_TYPE (ly_is_symbol, sym, 1);
LY_ASSERT_TYPE (scm_is_string, description, 3);
internal_set_option (sym, val);
scm_set_object_property_x (sym, ly_symbol2scm ("program-option-documentation"),
description);
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_set_option, "ly:set-option", 1, 1, 0, (SCM var, SCM val),
"Set a program option.")
{
LY_ASSERT_TYPE (ly_is_symbol, var, 1);
if (SCM_UNBNDP (val))
val = SCM_BOOL_T;
string varstr = robust_symbol2string (var, "");
if (varstr.substr (0, 3) == string ("no-"))
{
var = ly_symbol2scm (varstr.substr (3, varstr.length () - 3).c_str ());
val = scm_from_bool (!to_boolean (val));
}
SCM handle = scm_hashq_get_handle (option_hash, var);
if (scm_is_false (handle))
warning (_f ("no such internal option: %s", varstr.c_str ()));
internal_set_option (var, val);
return SCM_UNSPECIFIED;
}
LY_DEFINE (ly_command_line_options, "ly:command-line-options", 0, 0, 0, (),
"The Scheme options specified on command-line with @option{-d}.")
{
return ly_string2scm (init_scheme_variables_global);
}
LY_DEFINE (ly_command_line_code, "ly:command-line-code", 0, 0, 0, (),
"The Scheme code specified on command-line with @option{-e}.")
{
return ly_string2scm (init_scheme_code_global);
}
LY_DEFINE (ly_verbose_output_p, "ly:verbose-output?", 0, 0, 0, (),
"Was verbose output requested, i.e. loglevel at least @code{DEBUG}?")
{
return scm_from_bool (is_loglevel (LOG_DEBUG));
}
LY_DEFINE (ly_all_options, "ly:all-options",
0, 0, 0, (),
"Get all option settings in an alist.")
{
return ly_hash2alist (option_hash);
}
LY_DEFINE (ly_get_option, "ly:get-option", 1, 0, 0, (SCM var),
"Get a global option setting.")
{
LY_ASSERT_TYPE (ly_is_symbol, var, 1);
return scm_hashq_ref (option_hash, var, SCM_BOOL_F);
}
|