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