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