]> git.donarmstrong.com Git - lilypond.git/blob - lily/program-option.cc
Nitpick run.
[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--2005  Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "program-option.hh"
10
11 #include <cstdio>
12 #include <string.h>
13
14 #include "string-convert.hh"
15 #include "protected-scm.hh"
16 #include "parse-scm.hh"
17 #include "warn.hh"
18 #include "main.hh"
19
20 /* Write midi as formatted ascii stream? */
21 bool do_midi_debugging_global;
22 bool use_object_keys;
23
24 /*
25   Backwards compatibility.
26 */
27 bool lily_1_8_relative = false;
28 bool lily_1_8_compatibility_used = false;
29 bool profile_property_accesses = false;
30 /*
31   crash if internally the wrong type is used for a grob property.
32 */
33 bool do_internal_type_checking_global;
34
35 Protected_scm option_hash_;
36
37 void internal_set_option (SCM var, SCM val)
38 {
39   scm_hashq_set_x (option_hash_, var, val);
40
41   if (0)
42     ;
43   else if (var == ly_symbol2scm ("profile-property-accesses"))
44     {
45       profile_property_accesses = to_boolean (val);
46       val = scm_from_bool (to_boolean (val));
47     }
48   else if (var == ly_symbol2scm ("midi-debug"))
49     {
50       do_midi_debugging_global = to_boolean (val);
51       val = scm_from_bool (to_boolean (val));
52     }
53   else if (var == ly_symbol2scm ("point-and-click"))
54     {
55       point_and_click_global = to_boolean (val);
56       val = scm_from_bool (to_boolean (val));
57     }
58   else if (var == ly_symbol2scm ("parse-protect"))
59     {
60       parse_protect_global = to_boolean (val);
61       val = scm_from_bool (to_boolean (val));
62     }
63   else if (var == ly_symbol2scm ("internal-type-checking"))
64     {
65       do_internal_type_checking_global = to_boolean (val);
66       val = scm_from_bool (to_boolean (val));
67     }
68   else if (var == ly_symbol2scm ("old-relative"))
69     {
70       lily_1_8_relative = to_boolean (val);
71       /*  Needs to be reset for each file that uses this option.  */
72       lily_1_8_compatibility_used = to_boolean (val);
73       val = scm_from_bool (to_boolean (val));
74     }
75   else if (var == ly_symbol2scm ("object-keys"))
76     {
77       use_object_keys = to_boolean (val);
78       val = scm_from_bool (to_boolean (val));
79     }
80 }
81
82 const int HELP_INDENT = 30;
83 const int INDENT = 2;
84 const int SEPARATION = 5;
85
86 /*
87   Hmmm. should do in SCM / C++  ?
88 */
89 static String
90 get_help_string ()
91 {
92   SCM alist = ly_hash2alist (option_hash_);
93   SCM convertor = ly_lily_module_constant ("scm->string");
94
95   Array<String> opts;
96
97   for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
98     {
99       SCM sym = scm_caar (s);
100       SCM val = scm_cdar (s);
101       String opt_spec
102         = String_convert::char_string (' ', INDENT)
103         + ly_symbol2string (sym)
104         + " ("
105         + ly_scm2string (scm_call_1 (convertor, val))
106         + ")";
107
108       if (opt_spec.length () + SEPARATION > HELP_INDENT)
109         {
110           opt_spec += "\n"
111             + String_convert::char_string (' ', HELP_INDENT);
112         }
113       else
114         opt_spec += String_convert::char_string (' ', HELP_INDENT - opt_spec.length ());
115
116       SCM opt_help_scm
117         = scm_object_property (sym, ly_symbol2scm ("program-option-documentation"));
118       String opt_help = ly_scm2string (opt_help_scm);
119       opt_help.substitute (String ("\n"),
120                            String ("\n")
121                            + String_convert::char_string (' ', HELP_INDENT));
122
123       opts.push (opt_spec + opt_help + "\n");
124     }
125
126   String help ("Options supported by ly:set-option\n\n");
127   opts.sort (String::compare);
128   for (int i = 0; i < opts.size (); i++)
129     help += opts[i];
130
131   help += String ("\n");
132   return help;
133 }
134
135 LY_DEFINE (ly_option_usage, "ly:option-usage", 0, 0, 0, (),
136            "Print ly:set-option usage")
137 {
138   String help = get_help_string ();
139   fputs (help.to_str0 (), stdout);
140
141   exit (0);
142   return SCM_UNSPECIFIED;
143 }
144
145 LY_DEFINE (ly_add_option, "ly:add-option", 3, 0, 0,
146            (SCM sym, SCM val, SCM description),
147            "Add a program option @var{sym} with default @var{val}.")
148 {
149   if (scm_hash_table_p (option_hash_) == SCM_BOOL_F)
150     option_hash_ = scm_c_make_hash_table (11);
151
152   SCM_ASSERT_TYPE (scm_is_symbol (sym), sym, SCM_ARG1, __FUNCTION__, "symbol");
153   SCM_ASSERT_TYPE (scm_is_string (description), description,
154                    SCM_ARG3, __FUNCTION__, "string");
155
156   internal_set_option (sym, val);
157
158   scm_set_object_property_x (sym, ly_symbol2scm ("program-option-documentation"),
159                              description);
160
161   return SCM_UNSPECIFIED;
162 }
163
164 LY_DEFINE (ly_set_option, "ly:set-option", 1, 1, 0, (SCM var, SCM val),
165            "Set a program option. Try setting 'help for a help string.")
166 {
167   SCM_ASSERT_TYPE (scm_is_symbol (var), var, SCM_ARG1,
168                    __FUNCTION__, "symbol");
169
170   if (ly_symbol2scm ("help") == var)
171     ly_option_usage ();
172
173   if (val == SCM_UNDEFINED)
174     val = SCM_BOOL_T;
175
176   String varstr = ly_scm2string (scm_symbol_to_string (var));
177   if (varstr.left_string (3) == String ("no-"))
178     {
179       var = ly_symbol2scm (varstr.nomid_string (0, 3).to_str0 ());
180       val = scm_from_bool (!to_boolean (val));
181     }
182
183   SCM handle = scm_hashq_get_handle (option_hash_, var);
184   if (handle == SCM_BOOL_F)
185     warning (_f ("no such internal option: %s", varstr.to_str0 ()));
186
187   internal_set_option (var, val);
188   return SCM_UNSPECIFIED;
189 }
190
191 LY_DEFINE (ly_get_option, "ly:get-option", 1, 0, 0, (SCM var),
192            "Get a global option setting.")
193 {
194   SCM_ASSERT_TYPE (scm_is_symbol (var), var,
195                    SCM_ARG1, __FUNCTION__, "symbol");
196   return scm_hashq_ref (option_hash_, var, SCM_BOOL_F);
197 }