]> git.donarmstrong.com Git - lilypond.git/blob - lily/general-scheme.cc
* scm/editor.scm: New module.
[lilypond.git] / lily / general-scheme.cc
1 /*
2   lily-guile.cc -- implement assorted Guile bindings
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7   Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
9
10 #include "config.hh"
11
12 #include <math.h>  /* isinf */
13 #include <stdio.h>
14 #include <string.h>  /* memset */
15
16 #include "international.hh"
17 #include "libc-extension.hh"
18 #include "lily-guile.hh"
19 #include "string.hh"
20 #include "misc.hh"
21 #include "warn.hh"
22 #include "version.hh"
23 #include "dimensions.hh"
24 #include "main.hh"
25 #include "file-path.hh"
26
27 /* MacOS S fix:
28    source-file.hh includes cmath which undefines isinf and isnan
29 */
30 #ifdef __APPLE__
31 inline int my_isinf (Real r) { return isinf (r); }
32 inline int my_isnan (Real r) { return isnan (r); }
33 #endif
34
35 LY_DEFINE (ly_find_file, "ly:find-file",
36            1, 0, 0, (SCM name),
37            "Return the absolute file name of @var{name}, "
38            "or @code{#f} if not found.")
39 {
40   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG1, __FUNCTION__, "string");
41
42   String nm = ly_scm2string (name);
43   String file_name = global_path.find (nm);
44   if (file_name.is_empty ())
45     return SCM_BOOL_F;
46
47   return scm_makfrom0str (file_name.to_str0 ());
48 }
49
50 /*
51   Ugh. Gulped file is copied twice. (maybe thrice if you count stdio
52   buffering.)
53 */
54 LY_DEFINE (ly_gulp_file, "ly:gulp-file",
55            1, 0, 0, (SCM name),
56            "Read the file @var{name}, and return its contents in a string.  "
57            "The file is looked up using the search path.")
58 {
59   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG1, __FUNCTION__, "string");
60   String contents = gulp_file_to_string (ly_scm2string (name), true);
61   return scm_from_locale_stringn (contents.get_str0 (), contents.length ());
62 }
63
64 LY_DEFINE (ly_error, "ly:error",
65            1, 0, 1, (SCM str, SCM rest),
66            "Scheme callable function to issue the error @code{msg}. "
67            "The error is formatted with @code{format} and @code{rest}.")
68 {
69   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
70   str = scm_simple_format (SCM_BOOL_F, str, rest);
71   error (ly_scm2string (str));
72   return SCM_UNSPECIFIED;
73 }
74
75 LY_DEFINE (ly_message, "ly:message",
76            1, 0, 1, (SCM str, SCM rest),
77            "Scheme callable function to issue the message @code{msg}. "
78            "The message is formatted with @code{format} and @code{rest}.")
79 {
80   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
81   str = scm_simple_format (SCM_BOOL_F, str, rest);
82   message (ly_scm2string (str));
83   return SCM_UNSPECIFIED;
84 }
85
86 LY_DEFINE (ly_progress, "ly:progress",
87            1, 0, 1, (SCM str, SCM rest),
88            "Scheme callable function to print progress @code{str}. "
89            "The message is formatted with @code{format} and @code{rest}.")
90 {
91   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
92   str = scm_simple_format (SCM_BOOL_F, str, rest);
93   progress_indication (ly_scm2string (str));
94   return SCM_UNSPECIFIED;
95 }
96
97 LY_DEFINE (ly_programming_error, "ly:programming-error",
98            1, 0, 1, (SCM str, SCM rest),
99            "Scheme callable function to issue the warning @code{msg}. "
100            "The message is formatted with @code{format} and @code{rest}.")
101 {
102   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
103   str = scm_simple_format (SCM_BOOL_F, str, rest);
104   programming_error (ly_scm2string (str));
105   return SCM_UNSPECIFIED;
106 }
107
108 LY_DEFINE (ly_warning, "ly:warning",
109            1, 0, 1, (SCM str, SCM rest),
110            "Scheme callable function to issue the warning @code{str}. "
111            "The message is formatted with @code{format} and @code{rest}.")
112 {
113   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
114   str = scm_simple_format (SCM_BOOL_F, str, rest);
115   warning (ly_scm2string (str));
116   return SCM_UNSPECIFIED;
117 }
118
119 LY_DEFINE (ly_dir_p, "ly:dir?",
120            1, 0, 0, (SCM s),
121            "type predicate. A direction is @code{-1}, @code{0} or "
122            "@code{1}, where @code{-1} represents "
123            "left or down and @code{1} represents right or up.")
124 {
125   if (scm_is_number (s))
126     {
127       int i = scm_to_int (s);
128       return (i >= -1 && i <= 1) ? SCM_BOOL_T : SCM_BOOL_F;
129     }
130   return SCM_BOOL_F;
131 }
132
133 LY_DEFINE (ly_assoc_get, "ly:assoc-get",
134            2, 1, 0,
135            (SCM key, SCM alist, SCM default_value),
136            "Return value if KEY in ALIST, else DEFAULT-VALUE "
137            "(or #f if not specified).")
138 {
139   SCM handle = scm_assoc (key, alist);
140
141   if (default_value == SCM_UNDEFINED)
142     default_value = SCM_BOOL_F;
143
144   if (scm_is_pair (handle))
145     return scm_cdr (handle);
146   else
147     return default_value;
148 }
149
150 LY_DEFINE (ly_number2string, "ly:number->string",
151            1, 0, 0, (SCM s),
152            "Convert @var{num} to a string without generating many decimals.")
153 {
154   SCM_ASSERT_TYPE (scm_is_number (s), s, SCM_ARG1, __FUNCTION__, "number");
155
156   char str[400];                        // ugh.
157
158   if (scm_exact_p (s) == SCM_BOOL_F)
159     {
160       Real r (scm_to_double (s));
161 #ifdef __APPLE__
162       if (my_isinf (r) || my_isnan (r))
163 #else
164         if (isinf (r) || isnan (r))
165 #endif
166           {
167             programming_error (_ ("infinity or NaN encountered while converting Real number"));
168             programming_error (_ ("setting to zero"));
169                                
170             r = 0.0;
171           }
172
173       snprintf (str, sizeof (str), "%08.4f", r);
174     }
175   else
176     snprintf (str, sizeof (str), "%d", scm_to_int (s));
177
178   return scm_makfrom0str (str);
179 }
180
181 LY_DEFINE (ly_version, "ly:version", 0, 0, 0, (),
182            "Return the current lilypond version as a list, e.g. @code{(1 3 127 uu1)}. ")
183 {
184   char const *vs = "\'(" MAJOR_VERSION " " MINOR_VERSION " " PATCH_LEVEL " " MY_PATCH_LEVEL ")";
185
186   return scm_c_eval_string ((char *)vs);
187 }
188
189 LY_DEFINE (ly_unit, "ly:unit", 0, 0, 0, (),
190            "Return the unit used for lengths as a string.")
191 {
192   return scm_makfrom0str (INTERNAL_UNIT);
193 }
194
195 LY_DEFINE (ly_dimension_p, "ly:dimension?", 1, 0, 0, (SCM d),
196            "Return @var{d} is a number. Used to distinguish length "
197            "variables from normal numbers.")
198 {
199   return scm_number_p (d);
200 }
201
202 /*
203   Debugging mem leaks:
204 */
205 LY_DEFINE (ly_protects, "ly:protects",
206            0, 0, 0, (),
207            "Return hash of protected objects.")
208 {
209   return scm_protects;
210 }
211
212 LY_DEFINE (ly_gettext, "ly:gettext",
213            1, 0, 0, (SCM string),
214            "Gettext wrapper.")
215 {
216   SCM_ASSERT_TYPE (scm_is_string (string), string, SCM_ARG1,
217                    __FUNCTION__, "string");
218   return scm_makfrom0str (_ (scm_i_string_chars (string)).to_str0 ());
219 }
220
221 LY_DEFINE (ly_output_backend, "ly:output-backend",
222            0, 0, 0, (),
223            "Return name of output backend.")
224 {
225   return scm_makfrom0str (output_backend_global.to_str0 ());
226 }
227
228 LY_DEFINE (ly_output_formats, "ly:output-formats",
229            0, 0, 0, (),
230            "Formats passed to --format as a list of strings, "
231            "used for the output.")
232 {
233   Array<String> output_formats = split_string (output_format_global, ',');
234
235   SCM lst = SCM_EOL;
236   int output_formats_count = output_formats.size ();
237   for (int i = 0; i < output_formats_count; i ++)
238     lst = scm_cons (scm_makfrom0str (output_formats[i].to_str0 ()), lst);
239
240   return lst;
241 }
242
243 LY_DEFINE (ly_wchar_to_utf_8, "ly:wide-char->utf-8",
244            1, 0, 0, (SCM wc),
245            "Encode the Unicode codepoint @var{wc} as UTF-8")
246 {
247   char buf[5];
248
249   SCM_ASSERT_TYPE (scm_is_integer (wc), wc, SCM_ARG1, __FUNCTION__, "integer");
250   unsigned wide_char = (unsigned) scm_to_int (wc);
251   char * p = buf;
252
253   if (wide_char < 0x0080) {
254     *p++ = (char)wide_char;
255   } else if (wide_char < 0x0800) {
256     *p++ = (char)(((wide_char >>  6)       ) | 0xC0);
257     *p++ = (char)(((wide_char      ) & 0x3F) | 0x80);
258   } else if (wide_char < 0x10000) {
259     *p++ = (char)(((wide_char >> 12)       ) | 0xE0);
260     *p++ = (char)(((wide_char >>  6) & 0x3F) | 0x80);
261     *p++ = (char)(((wide_char      ) & 0x3F) | 0x80);
262   } else {
263     *p++ = (char)(((wide_char >> 18)       ) | 0xF0);
264     *p++ = (char)(((wide_char >> 12) & 0x3F) | 0x80);
265     *p++ = (char)(((wide_char >>  6) & 0x3F) | 0x80);
266     *p++ = (char)(((wide_char      ) & 0x3F) | 0x80);
267   }
268   *p = 0;
269
270   return scm_makfrom0str (buf);
271 }
272           
273 LY_DEFINE (ly_effective_prefix, "ly:effective-prefix",
274            0, 0, 0, (),
275            "Return effective prefix.")
276 {
277   return scm_makfrom0str (prefix_directory.to_str0 ());
278 }
279
280 LY_DEFINE (ly_chain_assoc_get, "ly:chain-assoc-get",
281            2, 1, 0, (SCM key, SCM achain, SCM dfault),
282            "Return value for @var{key} from a list of alists @var{achain}. Return @var{dfault} "
283            "if no entry is found, or #f if not specified. ")
284 {
285   if (scm_is_pair (achain))
286     {
287       SCM handle = scm_assoc (key, scm_car (achain));
288       if (scm_is_pair (handle))
289         return scm_cdr (handle);
290       else
291         return ly_chain_assoc_get (key, scm_cdr (achain), dfault);
292     }
293   else
294     return dfault == SCM_UNDEFINED ? SCM_BOOL_F : dfault;
295 }
296
297 LY_DEFINE (ly_port_move, "ly:port-move",
298            2, 0, 0, (SCM fd, SCM port),
299            "Move file descriptor FD to PORT.")
300 {
301   SCM_ASSERT_TYPE (scm_port_p (port), port, SCM_ARG1, __FUNCTION__, "port");
302   SCM_ASSERT_TYPE (scm_integer_p (fd), fd, SCM_ARG1, __FUNCTION__, "fd");
303   freopen (ly_scm2newstr (scm_port_filename (port), 0), "a",
304            fdopen (scm_to_int (fd), "a"));
305   return SCM_UNSPECIFIED;
306 }