]> git.donarmstrong.com Git - lilypond.git/blob - lily/program-option.cc
9ec4901c857bbadcfd8d7673d8ed944232dd0ada
[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
25 /*
26   Backwards compatibility.
27 */
28 bool lily_1_8_relative = false;
29 bool lily_1_8_compatibility_used = false;
30 bool profile_property_accesses = false;
31 /*
32   crash if internally the wrong type is used for a grob property.
33 */
34 bool do_internal_type_checking_global;
35 bool strict_infinity_checking = false; 
36
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 ("old-relative"))
72     {
73       lily_1_8_relative = to_boolean (val);
74       /*  Needs to be reset for each file that uses this option.  */
75       lily_1_8_compatibility_used = to_boolean (val);
76       val = scm_from_bool (to_boolean (val));
77     }
78   else if (var == ly_symbol2scm ("object-keys"))
79     {
80       use_object_keys = to_boolean (val);
81       val = scm_from_bool (to_boolean (val));
82     }
83   else if (var == ly_symbol2scm ("strict-infinity-checking"))
84     {
85       strict_infinity_checking = to_boolean (val);
86       val = scm_from_bool (to_boolean (val));
87     }
88 }
89
90 ssize const HELP_INDENT = 30;
91 ssize const INDENT = 2;
92 ssize const SEPARATION = 5;
93
94 /*
95   Hmmm. should do in SCM / C++  ?
96 */
97 static string
98 get_help_string ()
99 {
100   SCM alist = ly_hash2alist (option_hash);
101   SCM convertor = ly_lily_module_constant ("scm->string");
102
103   vector<string> opts;
104
105   for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
106     {
107       SCM sym = scm_caar (s);
108       SCM val = scm_cdar (s);
109       string opt_spec
110         = String_convert::char_string (' ', INDENT)
111         + ly_symbol2string (sym)
112         + " ("
113         + ly_scm2string (scm_call_1 (convertor, val))
114         + ")";
115
116       if (opt_spec.length () + SEPARATION > HELP_INDENT)
117         {
118           opt_spec += "\n"
119             + String_convert::char_string (' ', HELP_INDENT);
120         }
121       else
122         opt_spec += String_convert::char_string (' ', HELP_INDENT - opt_spec.length ());
123
124       SCM opt_help_scm
125         = scm_object_property (sym, ly_symbol2scm ("program-option-documentation"));
126       string opt_help = ly_scm2string (opt_help_scm);
127       replace_all (opt_help,
128                    string ("\n"),
129                    string ("\n")
130                    + String_convert::char_string (' ', HELP_INDENT));
131
132       opts.push_back (opt_spec + opt_help + "\n");
133     }
134
135   string help ("Options supported by ly:set-option\n\n");
136   vector_sort (opts, less<string> ());
137   for (vsize i = 0; i < opts.size (); i++)
138     help += opts[i];
139
140   help += string ("\n");
141   return help;
142 }
143
144 LY_DEFINE (ly_option_usage, "ly:option-usage", 0, 0, 0, (),
145            "Print ly:set-option usage")
146 {
147   string help = get_help_string ();
148   fputs (help.c_str (), stdout);
149
150   exit (0);
151   return SCM_UNSPECIFIED;
152 }
153
154 LY_DEFINE (ly_add_option, "ly:add-option", 3, 0, 0,
155            (SCM sym, SCM val, SCM description),
156            "Add a program option @var{sym} with default @var{val}.")
157 {
158   if (!option_hash)
159     {
160       option_hash = scm_permanent_object (scm_c_make_hash_table (11));
161     }
162   SCM_ASSERT_TYPE (scm_is_symbol (sym), sym, SCM_ARG1, __FUNCTION__, "symbol");
163   SCM_ASSERT_TYPE (scm_is_string (description), description,
164                    SCM_ARG3, __FUNCTION__, "string");
165
166   internal_set_option (sym, val);
167
168   scm_set_object_property_x (sym, ly_symbol2scm ("program-option-documentation"),
169                              description);
170
171   return SCM_UNSPECIFIED;
172 }
173
174 LY_DEFINE (ly_set_option, "ly:set-option", 1, 1, 0, (SCM var, SCM val),
175            "Set a program option. Try setting 'help for a help string.")
176 {
177   SCM_ASSERT_TYPE (scm_is_symbol (var), var, SCM_ARG1,
178                    __FUNCTION__, "symbol");
179
180   if (ly_symbol2scm ("help") == var)
181     ly_option_usage ();
182
183   if (val == SCM_UNDEFINED)
184     val = SCM_BOOL_T;
185
186   string varstr = ly_scm2string (scm_symbol_to_string (var));
187   if (varstr.substr (0, 3) == string ("no-"))
188     {
189       var = ly_symbol2scm (varstr.substr (3, varstr.length () -3).c_str ());
190       val = scm_from_bool (!to_boolean (val));
191     }
192
193   SCM handle = scm_hashq_get_handle (option_hash, var);
194   if (handle == SCM_BOOL_F)
195     warning (_f ("no such internal option: %s", varstr.c_str ()));
196
197   internal_set_option (var, val);
198   return SCM_UNSPECIFIED;
199 }
200
201 LY_DEFINE (ly_command_line_verbose_p, "ly:command-line-verbose?", 0, 0, 0, (),
202            "Was be_verbose_global set?")
203 {
204   return scm_from_bool (be_verbose_global);
205 }
206
207 LY_DEFINE (ly_get_option, "ly:get-option", 1, 0, 0, (SCM var),
208            "Get a global option setting.")
209 {
210   SCM_ASSERT_TYPE (scm_is_symbol (var), var,
211                    SCM_ARG1, __FUNCTION__, "symbol");
212   return scm_hashq_ref (option_hash, var, SCM_BOOL_F);
213 }