2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1998--2015 Jan Nieuwenhuizen <janneke@gnu.org>
5 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 LilyPond is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 LilyPond is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
25 #include <cstring> /* memset */
29 #include "dimensions.hh"
30 #include "file-name.hh"
31 #include "file-path.hh"
32 #include "international.hh"
33 #include "libc-extension.hh"
34 #include "lily-guile.hh"
37 #include "program-option.hh"
38 #include "relocate.hh"
39 #include "string-convert.hh"
43 /* Declaration of log function(s) */
44 SCM ly_progress (SCM, SCM);
46 LY_DEFINE (ly_start_environment, "ly:start-environment",
48 "Return the environment (a list of strings) that was in"
49 " effect at program start.")
54 for (vsize i = 0; i < start_environment_global.size (); i++)
56 *tail = scm_cons (ly_string2scm (start_environment_global[i]),
58 tail = SCM_CDRLOC (*tail);
64 LY_DEFINE (ly_find_file, "ly:find-file",
66 "Return the absolute file name of @var{name},"
67 " or @code{#f} if not found.")
69 LY_ASSERT_TYPE (scm_is_string, name, 1);
71 string nm = ly_scm2string (name);
72 string file_name = global_path.find (nm);
73 if (file_name.empty ())
76 return ly_string2scm (file_name);
80 Ugh. Gulped file is copied twice. (maybe thrice if you count stdio
83 LY_DEFINE (ly_gulp_file, "ly:gulp-file",
84 1, 1, 0, (SCM name, SCM size),
85 "Read @var{size} characters from the file @var{name},"
86 " and return its contents in a string."
87 " If @var{size} is undefined, the entire file is read."
88 " The file is looked up using the search path.")
90 LY_ASSERT_TYPE (scm_is_string, name, 1);
92 if (!SCM_UNBNDP (size))
94 LY_ASSERT_TYPE (scm_is_number, size, 2);
95 sz = scm_to_int (size);
98 string contents = gulp_file_to_string (ly_scm2string (name), true, sz);
99 return scm_from_latin1_stringn (contents.c_str (), contents.length ());
102 LY_DEFINE (ly_dir_p, "ly:dir?",
104 "Is @var{s} a direction? Valid directions are @w{@code{-1}},"
105 " @code{0}, or@tie{}@code{1}, where @w{@code{-1}} represents"
106 " left or down, @code{1}@tie{}represents right or up, and @code{0}"
107 " represents a neutral direction.")
109 if (scm_is_integer (s))
111 int i = scm_to_int (s);
112 return (i >= -1 && i <= 1) ? SCM_BOOL_T : SCM_BOOL_F;
117 LY_DEFINE (ly_assoc_get, "ly:assoc-get",
119 (SCM key, SCM alist, SCM default_value, SCM strict_checking),
120 "Return value if @var{key} in @var{alist}, else @var{default-value}"
121 " (or @code{#f} if not specified). If @var{strict-checking} is set"
122 " to @code{#t} and @var{key} is not in @var{alist}, a programming_error"
125 LY_ASSERT_TYPE (ly_cheap_is_list, alist, 2);
127 SCM handle = scm_assoc (key, alist);
128 if (scm_is_pair (handle))
129 return scm_cdr (handle);
131 if (SCM_UNBNDP (default_value))
132 default_value = SCM_BOOL_F;
134 if (to_boolean (strict_checking))
136 string key_string = ly_scm2string
137 (scm_object_to_string (key, SCM_UNDEFINED));
138 string default_value_string = ly_scm2string
139 (scm_object_to_string (default_value,
141 programming_error ("Cannot find key `"
143 + "' in alist, setting to `"
144 + default_value_string + "'.");
147 return default_value;
150 LY_DEFINE (ly_string_substitute, "ly:string-substitute",
151 3, 0, 0, (SCM a, SCM b, SCM s),
152 "Replace string@tie{}@var{a} by string@tie{}@var{b} in"
153 " string@tie{}@var{s}.")
155 LY_ASSERT_TYPE (scm_is_string, s, 1);
156 LY_ASSERT_TYPE (scm_is_string, b, 2);
157 LY_ASSERT_TYPE (scm_is_string, s, 3);
159 string ss = ly_scm2string (s);
160 replace_all (&ss, ly_scm2string (a),
163 return ly_string2scm (ss);
167 is_not_escape_character (Byte c)
185 LY_DEFINE (ly_string_percent_encode, "ly:string-percent-encode",
187 "Encode all characters in string @var{str} with hexadecimal"
188 " percent escape sequences, with the following exceptions:"
189 " characters @w{@code{-},} @code{.}, @code{/}, and @code{_}; and"
190 " characters in ranges @code{0-9}, @code{A-Z}, and @code{a-z}.")
192 LY_ASSERT_TYPE (scm_is_string, str, 1);
194 string orig_str = ly_scm2string (str);
198 vsize n = orig_str.size ();
202 Byte cur = orig_str[i];
204 if (is_not_escape_character (cur))
209 new_str += String_convert::bin2hex (cur);
215 return ly_string2scm (new_str);
218 LY_DEFINE (ly_number_2_string, "ly:number->string",
220 "Convert @var{s} to a string without generating many decimals.")
222 LY_ASSERT_TYPE (scm_is_number, s, 1);
224 char str[400]; // ugh.
226 if (scm_is_false (scm_exact_p (s)))
228 Real r (scm_to_double (s));
229 if (isinf (r) || isnan (r))
231 programming_error ("infinity or NaN encountered while converting Real number, "
237 snprintf (str, sizeof (str), "%.4f", r);
240 snprintf (str, sizeof (str), "%d", int (scm_to_int (s)));
242 return scm_from_ascii_string (str);
245 LY_DEFINE (ly_version, "ly:version", 0, 0, 0, (),
246 "Return the current lilypond version as a list, e.g.,"
247 " @code{(1 3 127 uu1)}.")
249 char const *vs = "\'(" MAJOR_VERSION " " MINOR_VERSION " " PATCH_LEVEL " " MY_PATCH_LEVEL ")";
251 return scm_c_eval_string ((char *)vs);
254 LY_DEFINE (ly_unit, "ly:unit", 0, 0, 0, (),
255 "Return the unit used for lengths as a string.")
257 return scm_from_ascii_string (INTERNAL_UNIT);
260 LY_DEFINE (ly_dimension_p, "ly:dimension?", 1, 0, 0, (SCM d),
261 "Return @var{d} as a number. Used to distinguish length"
262 " variables from normal numbers.")
264 return scm_number_p (d);
270 LY_DEFINE (ly_protects, "ly:protects",
272 "Return hash of protected objects.")
274 //scm_protects is available only in Guile versions before 2.1.
275 #if SCM_MAJOR_VERSION < 2 || SCM_MAJOR_VERSION == 2 && SCM_MINOR_VERSION < 1
278 return programming_error ("ly:protects is not supported in Guile 2.1");
282 LY_DEFINE (ly_gettext, "ly:gettext",
283 1, 0, 0, (SCM original),
284 "A Scheme wrapper function for @code{gettext}.")
286 LY_ASSERT_TYPE (scm_is_string, original, 1);
287 return ly_string2scm (_ (ly_scm2string (original).c_str ()));
290 LY_DEFINE (ly_output_formats, "ly:output-formats",
292 "Formats passed to @option{--format} as a list of strings,"
293 " used for the output.")
295 vector<string> output_formats = string_split (output_format_global, ',');
298 int output_formats_count = output_formats.size ();
299 for (int i = 0; i < output_formats_count; i++)
300 lst = scm_cons (ly_string2scm (output_formats[i]), lst);
305 LY_DEFINE (ly_bigpdfs, "ly:bigpdfs",
307 "Return true if the command line includes the @option{--bigpdf} parameter."
310 return bigpdfs ? SCM_BOOL_T : SCM_BOOL_F;
313 LY_DEFINE (ly_wide_char_2_utf_8, "ly:wide-char->utf-8",
315 "Encode the Unicode codepoint @var{wc}, an integer, as UTF-8.")
319 LY_ASSERT_TYPE (scm_is_integer, wc, 1);
320 unsigned wide_char = (unsigned) scm_to_int (wc);
323 if (wide_char < 0x0080)
324 *p++ = (char)wide_char;
325 else if (wide_char < 0x0800)
327 *p++ = (char) (((wide_char >> 6)) | 0xC0);
328 *p++ = (char) (((wide_char) & 0x3F) | 0x80);
330 else if (wide_char < 0x10000)
332 *p++ = (char) (((wide_char >> 12)) | 0xE0);
333 *p++ = (char) (((wide_char >> 6) & 0x3F) | 0x80);
334 *p++ = (char) (((wide_char) & 0x3F) | 0x80);
338 *p++ = (char) (((wide_char >> 18)) | 0xF0);
339 *p++ = (char) (((wide_char >> 12) & 0x3F) | 0x80);
340 *p++ = (char) (((wide_char >> 6) & 0x3F) | 0x80);
341 *p++ = (char) (((wide_char) & 0x3F) | 0x80);
345 return scm_from_utf8_string (buf);
348 LY_DEFINE (ly_effective_prefix, "ly:effective-prefix",
350 "Return effective prefix.")
352 return ly_string2scm (lilypond_datadir);
355 LY_DEFINE (ly_chain_assoc_get, "ly:chain-assoc-get",
356 2, 2, 0, (SCM key, SCM achain, SCM default_value, SCM strict_checking),
357 "Return value for @var{key} from a list of alists @var{achain}."
358 " If no entry is found, return @var{default-value} or @code{#f} if"
359 " @var{default-value} is not specified. With @var{strict-checking}"
360 " set to @code{#t}, a programming_error is output in such cases.")
362 if (scm_is_pair (achain))
364 SCM handle = scm_assoc (key, scm_car (achain));
365 if (scm_is_pair (handle))
366 return scm_cdr (handle);
368 return ly_chain_assoc_get (key, scm_cdr (achain), default_value);
371 if (to_boolean (strict_checking))
373 string key_string = ly_scm2string
374 (scm_object_to_string (key, SCM_UNDEFINED));
375 string default_value_string = ly_scm2string
376 (scm_object_to_string (default_value,
378 programming_error ("Cannot find key `"
380 + "' in achain, setting to `"
381 + default_value_string + "'.");
384 return SCM_UNBNDP (default_value) ? SCM_BOOL_F : default_value;
387 LY_DEFINE (ly_stderr_redirect, "ly:stderr-redirect",
388 1, 1, 0, (SCM file_name, SCM mode),
389 "Redirect stderr to @var{file-name}, opened with @var{mode}.")
391 LY_ASSERT_TYPE (scm_is_string, file_name, 1);
394 string f = ly_scm2string (file_name);
396 if (scm_is_string (mode))
397 m = ly_scm2string (mode);
398 /* dup2 and (fileno (current-error-port)) do not work with mingw'c
401 stderrfile = freopen (f.c_str (), m.c_str (), stderr);
403 error (_f ("failed redirecting stderr to `%s'", f.c_str ()));
404 return SCM_UNSPECIFIED;
408 accumulate_symbol (void * /* closure */,
413 return scm_cons (key, result);
416 LY_DEFINE (ly_hash_table_keys, "ly:hash-table-keys",
418 "Return a list of keys in @var{tab}.")
420 return scm_internal_hash_fold ((scm_t_hash_fold_fn) &accumulate_symbol,
424 LY_DEFINE (ly_camel_case_2_lisp_identifier, "ly:camel-case->lisp-identifier",
425 1, 0, 0, (SCM name_sym),
426 "Convert @code{FooBar_Bla} to @code{foo-bar-bla} style symbol.")
428 LY_ASSERT_TYPE (ly_is_symbol, name_sym, 1);
431 TODO: should use strings instead?
434 const string in = ly_symbol2string (name_sym);
435 string result = camel_case_to_lisp_identifier (in);
437 return ly_symbol2scm (result.c_str ());
440 LY_DEFINE (ly_expand_environment, "ly:expand-environment",
442 "Expand @code{$VAR} and @code{$@{VAR@}} in @var{str}.")
444 LY_ASSERT_TYPE (scm_is_string, str, 1);
446 return ly_string2scm (expand_environment_variables (ly_scm2string (str)));
449 LY_DEFINE (ly_truncate_list_x, "ly:truncate-list!",
450 2, 0, 0, (SCM lst, SCM i),
451 "Take at most the first @var{i} of list @var{lst}.")
453 LY_ASSERT_TYPE (scm_is_integer, i, 1);
455 int k = scm_to_int (i);
462 for (; scm_is_pair (s) && k--; s = scm_cdr (s))
466 scm_set_cdr_x (s, SCM_EOL);
472 format_single_argument (SCM arg, int precision, bool escape = false)
474 if (scm_is_integer (arg) && scm_is_true (scm_exact_p (arg)))
475 return (String_convert::int_string (scm_to_int (arg)));
476 else if (scm_is_number (arg))
478 Real val = scm_to_double (arg);
480 if (isnan (val) || isinf (val))
482 warning (_ ("Found infinity or nan in output. Substituting 0.0"));
484 if (strict_infinity_checking)
488 return (String_convert::form_string ("%.*lf", precision, val));
490 else if (scm_is_string (arg))
492 string s = ly_scm2string (arg);
495 // Escape backslashes and double quotes, wrap it in double quotes
496 replace_all (&s, "\\", "\\\\");
497 replace_all (&s, "\"", "\\\"");
498 // don't replace percents, since the png backend uses %d as escape sequence
499 // replace_all (&s, "%", "\\%");
500 replace_all (&s, "$", "\\$");
505 else if (scm_is_symbol (arg))
506 return (ly_symbol2string (arg));
509 ly_progress (scm_from_ascii_string ("\nUnsupported SCM value for format: ~a"),
516 LY_DEFINE (ly_format, "ly:format",
517 1, 0, 1, (SCM str, SCM rest),
518 "LilyPond specific format, supporting @code{~a} and @code{~[0-9]f}."
519 " Basic support for @code{~s} is also provided.")
521 LY_ASSERT_TYPE (scm_is_string, str, 1);
523 string format = ly_scm2string (str);
524 vector<string> results;
527 while (i < format.size ())
529 vsize tilde = format.find ('~', i);
531 results.push_back (format.substr (i, (tilde - i)));
538 char spec = format.at (tilde++);
540 results.push_back ("~");
543 if (!scm_is_pair (rest))
545 programming_error (string (__FUNCTION__)
546 + ": not enough arguments for format.");
547 return ly_string2scm ("");
550 SCM arg = scm_car (rest);
551 rest = scm_cdr (rest);
557 else if (isdigit (spec))
559 precision = spec - '0';
560 spec = format.at (tilde++);
563 if (spec == 'a' || spec == 'A' || spec == 'f' || spec == '$')
564 results.push_back (format_single_argument (arg, precision));
565 else if (spec == 's' || spec == 'S')
566 results.push_back (format_single_argument (arg, precision, true));
567 else if (spec == 'l')
570 for (; scm_is_pair (s); s = scm_cdr (s))
572 results.push_back (format_single_argument (scm_car (s), precision));
573 if (!scm_is_null (scm_cdr (s)))
574 results.push_back (" ");
577 if (!scm_is_null (s))
578 results.push_back (format_single_argument (s, precision));
586 if (scm_is_pair (rest))
587 programming_error (string (__FUNCTION__)
588 + ": too many arguments");
591 for (vsize i = 0; i < results.size (); i++)
592 len += results[i].size ();
594 char *result = (char *) scm_malloc (len + 1);
596 for (vsize i = 0; i < results.size (); i++)
598 strncpy (ptr, results[i].c_str (), results[i].size ());
599 ptr += results[i].size ();
603 return scm_take_locale_stringn (result, len);
607 ly_run_command (char *argv[], char **standard_output, char **standard_error)
611 int flags = G_SPAWN_SEARCH_PATH;
612 if (!standard_output)
613 flags |= G_SPAWN_STDOUT_TO_DEV_NULL;
615 flags |= G_SPAWN_STDERR_TO_DEV_NULL;
616 if (!g_spawn_sync (0, argv, 0, GSpawnFlags (flags),
618 standard_output, standard_error,
619 &exit_status, &error))
621 fprintf (stderr, "failed (%d): %s: %s\n", exit_status, argv[0], error->message);
622 g_error_free (error);
631 ly_scm2utf8 (SCM str)
633 char *p = ly_scm2str0 (str);
634 char *g = g_locale_to_utf8 (p, -1, 0, 0, 0);
639 LY_DEFINE (ly_spawn, "ly:spawn",
640 1, 0, 1, (SCM command, SCM rest),
641 "Simple interface to g_spawn_sync"
643 " The error is formatted with @code{format} and @var{rest}.")
646 LY_ASSERT_TYPE (scm_is_string, command, 1);
648 int argc = scm_is_pair (rest) ? scm_ilength (rest) : 0;
649 char **argv = new char*[argc + 2];
652 argv[n++] = ly_scm2utf8 (command);
653 for (SCM s = rest; scm_is_pair (s); s = scm_cdr (s))
654 argv[n++] = ly_scm2utf8 (scm_car (s));
657 char *standard_output = 0;
658 char *standard_error = 0;
659 // Always get the pointer to the stdout/stderr messages
660 int exit_status = ly_run_command (argv, &standard_output, &standard_error);
662 // Print out stdout and stderr only in debug mode
663 debug_output (string ("\n") + standard_output + standard_error, true);
665 for (int i = 0; i < n; i++)
669 return scm_from_int (exit_status);