]> git.donarmstrong.com Git - lilypond.git/blob - lily/program-option.cc
Test more parts of Page_turn_engraver
[lilypond.git] / lily / program-option.cc
1 /*
2   scm-option.cc -- implement option setting from Scheme
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2001--2006  Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "program-option.hh"
10
11 #include <cstdio>
12 #include <cstring>
13 using namespace std;
14
15 #include "international.hh"
16 #include "main.hh"
17 #include "parse-scm.hh"
18 #include "string-convert.hh"
19 #include "warn.hh"
20
21 /* Write midi as formatted ascii stream? */
22 bool do_midi_debugging_global;
23 bool use_object_keys;
24 bool debug_skylines;
25
26 /*
27   Backwards compatibility.
28 */
29 bool lily_1_8_relative = false;
30 bool lily_1_8_compatibility_used = false;
31 bool profile_property_accesses = false;
32 /*
33   crash if internally the wrong type is used for a grob property.
34 */
35 bool do_internal_type_checking_global;
36 bool strict_infinity_checking = false; 
37
38 static SCM option_hash;
39
40 void internal_set_option (SCM var, SCM val)
41 {
42   scm_hashq_set_x (option_hash, var, val);
43
44   if (0)
45     ;
46   else if (var == ly_symbol2scm ("profile-property-accesses"))
47     {
48       profile_property_accesses = to_boolean (val);
49       val = scm_from_bool (to_boolean (val));
50     }
51   else if (var == ly_symbol2scm ("debug-midi"))
52     {
53       do_midi_debugging_global = to_boolean (val);
54       val = scm_from_bool (to_boolean (val));
55     }
56   else if (var == ly_symbol2scm ("point-and-click"))
57     {
58       point_and_click_global = to_boolean (val);
59       val = scm_from_bool (to_boolean (val));
60     }
61   else if (var == ly_symbol2scm ("protected-scheme-parsing"))
62     {
63       parse_protect_global = to_boolean (val);
64       val = scm_from_bool (to_boolean (val));
65     }
66   else if (var == ly_symbol2scm ("check-internal-types"))
67     {
68       do_internal_type_checking_global = to_boolean (val);
69       val = scm_from_bool (to_boolean (val));
70     }
71   else if (var == ly_symbol2scm ("debug-gc-assert-parsed-dead"))
72     {
73       parsed_objects_should_be_dead = to_boolean (val);
74       val = scm_from_bool (parsed_objects_should_be_dead);
75     }
76   else if (var == ly_symbol2scm ("old-relative"))
77     {
78       lily_1_8_relative = to_boolean (val);
79       /*  Needs to be reset for each file that uses this option.  */
80       lily_1_8_compatibility_used = to_boolean (val);
81       val = scm_from_bool (to_boolean (val));
82     }
83   else if (var == ly_symbol2scm ("object-keys"))
84     {
85       use_object_keys = to_boolean (val);
86       val = scm_from_bool (to_boolean (val));
87     }
88   else if (var == ly_symbol2scm ("strict-infinity-checking"))
89     {
90       strict_infinity_checking = to_boolean (val);
91       val = scm_from_bool (to_boolean (val));
92     }
93   else if (var == ly_symbol2scm ("debug-skylines"))
94     {
95       debug_skylines = to_boolean (val);
96       val = scm_from_bool (to_boolean (val));
97     }
98 }
99
100 ssize const HELP_INDENT = 30;
101 ssize const INDENT = 2;
102 ssize const SEPARATION = 5;
103
104 /*
105   Hmmm. should do in SCM / C++  ?
106 */
107 static string
108 get_help_string ()
109 {
110   SCM alist = ly_hash2alist (option_hash);
111   SCM convertor = ly_lily_module_constant ("scm->string");
112
113   vector<string> opts;
114
115   for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
116     {
117       SCM sym = scm_caar (s);
118       SCM val = scm_cdar (s);
119       string opt_spec
120         = String_convert::char_string (' ', INDENT)
121         + ly_symbol2string (sym)
122         + " ("
123         + ly_scm2string (scm_call_1 (convertor, val))
124         + ")";
125
126       if (opt_spec.length () + SEPARATION > HELP_INDENT)
127         {
128           opt_spec += "\n"
129             + String_convert::char_string (' ', HELP_INDENT);
130         }
131       else
132         opt_spec += String_convert::char_string (' ', HELP_INDENT - opt_spec.length ());
133
134       SCM opt_help_scm
135         = scm_object_property (sym, ly_symbol2scm ("program-option-documentation"));
136       string opt_help = ly_scm2string (opt_help_scm);
137       replace_all (opt_help,
138                    string ("\n"),
139                    string ("\n")
140                    + String_convert::char_string (' ', HELP_INDENT));
141
142       opts.push_back (opt_spec + opt_help + "\n");
143     }
144
145   string help ("Options supported by ly:set-option\n\n");
146   vector_sort (opts, less<string> ());
147   for (vsize i = 0; i < opts.size (); i++)
148     help += opts[i];
149
150   help += string ("\n");
151   return help;
152 }
153
154 LY_DEFINE (ly_option_usage, "ly:option-usage", 0, 0, 0, (),
155            "Print ly:set-option usage")
156 {
157   string help = get_help_string ();
158   fputs (help.c_str (), stdout);
159
160   exit (0);
161   return SCM_UNSPECIFIED;
162 }
163
164 LY_DEFINE (ly_add_option, "ly:add-option", 3, 0, 0,
165            (SCM sym, SCM val, SCM description),
166            "Add a program option @var{sym} with default @var{val}.")
167 {
168   if (!option_hash)
169     {
170       option_hash = scm_permanent_object (scm_c_make_hash_table (11));
171     }
172   SCM_ASSERT_TYPE (scm_is_symbol (sym), sym, SCM_ARG1, __FUNCTION__, "symbol");
173   SCM_ASSERT_TYPE (scm_is_string (description), description,
174                    SCM_ARG3, __FUNCTION__, "string");
175
176   internal_set_option (sym, val);
177
178   scm_set_object_property_x (sym, ly_symbol2scm ("program-option-documentation"),
179                              description);
180
181   return SCM_UNSPECIFIED;
182 }
183
184 LY_DEFINE (ly_set_option, "ly:set-option", 1, 1, 0, (SCM var, SCM val),
185            "Set a program option. Try setting 'help for a help string.")
186 {
187   SCM_ASSERT_TYPE (scm_is_symbol (var), var, SCM_ARG1,
188                    __FUNCTION__, "symbol");
189
190   if (ly_symbol2scm ("help") == var)
191     ly_option_usage ();
192
193   if (val == SCM_UNDEFINED)
194     val = SCM_BOOL_T;
195
196   string varstr = ly_scm2string (scm_symbol_to_string (var));
197   if (varstr.substr (0, 3) == string ("no-"))
198     {
199       var = ly_symbol2scm (varstr.substr (3, varstr.length () -3).c_str ());
200       val = scm_from_bool (!to_boolean (val));
201     }
202
203   SCM handle = scm_hashq_get_handle (option_hash, var);
204   if (handle == SCM_BOOL_F)
205     warning (_f ("no such internal option: %s", varstr.c_str ()));
206
207   internal_set_option (var, val);
208   return SCM_UNSPECIFIED;
209 }
210
211 LY_DEFINE (ly_command_line_verbose_p, "ly:command-line-verbose?", 0, 0, 0, (),
212            "Was be_verbose_global set?")
213 {
214   return scm_from_bool (be_verbose_global);
215 }
216
217
218
219
220 LY_DEFINE (ly_get_option, "ly:get-option", 1, 0, 0, (SCM var),
221            "Get a global option setting.")
222 {
223   SCM_ASSERT_TYPE (scm_is_symbol (var), var,
224                    SCM_ARG1, __FUNCTION__, "symbol");
225   return scm_hashq_ref (option_hash, var, SCM_BOOL_F);
226 }
227
228
229 bool
230 get_program_option (const char *s)
231 {
232   SCM sym = ly_symbol2scm (s);
233
234   return to_boolean (ly_get_option (sym));
235 }