]> git.donarmstrong.com Git - lilypond.git/blob - lily/main.cc
* lily/ledger-line-spanner.cc (print): swap linear_combination
[lilypond.git] / lily / main.cc
1 /*
2   main.cc -- implement main () entrypoint.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <stdlib.h>
10 #include <stdio.h>
11 #include <assert.h>
12 #include <locale.h>
13 #include <string.h>
14
15 #include "config.hh"
16
17 #if HAVE_GETTEXT
18 #include <libintl.h>
19 #endif
20
21 #include "all-font-metrics.hh"
22 #include "file-name.hh"
23 #include "file-path.hh"
24 #include "getopt-long.hh"
25 #include "global-ctor.hh"
26 #include "kpath.hh"
27 #include "lily-guile.hh"
28 #include "lily-version.hh"
29 #include "main.hh"
30 #include "misc.hh"
31 #include "output-def.hh"
32 #include "string.hh"
33 #include "warn.hh"
34
35 /*
36  * Global options that can be overridden through command line.
37  */
38
39 /* Names of header fields to be dumped to a separate file. */
40 Array<String> dump_header_fieldnames_global;
41
42 /* Name of initialisation file. */
43 String init_name_global;
44
45 /* Do not calculate and write layout output? */
46 bool no_layout_global_b = false;
47
48 /* Selected output format.
49    One of tex, ps, scm, as. */
50 String output_format_global = "tex";
51
52 /* Current output name. */
53 String output_name_global;
54
55 /* Run in safe mode? */
56 bool safe_global_b = false;
57
58 /* Verbose progress indication? */
59 bool verbose_global_b = false;
60
61 /* Scheme code to execute before parsing, after .scm init
62    This is where -e arguments are appended to.
63 */
64 String init_scheme_code_string = "(begin #t ";
65
66 bool make_pdf = false;
67 bool make_dvi = false;
68 bool make_ps = false;
69 bool make_png = false;
70 bool make_preview = false;
71 bool make_pages = true;
72 bool make_tex = false;
73
74 /*
75  * Miscellaneous global stuff.
76  */
77 File_path global_path;
78
79
80 /*
81  * File globals.
82  */
83
84 static char const *AUTHORS =
85 "  Han-Wen Nienhuys <hanwen@cs.uu.nl>\n"
86 "  Jan Nieuwenhuizen <janneke@gnu.org>\n";
87
88 static char const *PROGRAM_NAME = "lilypond";
89 static char const *PROGRAM_URL = "http://lilypond.org";
90
91 static char const *NOTICE =
92 _i ("This program is free software.  It is covered by the GNU General Public\n"
93     "License and you are welcome to change it and/or distribute copies of it\n"
94     "under certain conditions.  Invoke as `lilypond --warranty' for more\n"
95     "information.\n");
96   
97 static char const *WARRANTY =
98 _i ("    This program is free software; you can redistribute it and/or\n"
99     "modify it under the terms of the GNU General Public License version 2\n"
100     "as published by the Free Software Foundation.\n"
101     "\n"
102     "    This program is distributed in the hope that it will be useful,\n"
103     "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
104     "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n"
105     "General Public License for more details.\n"
106     "\n"
107     "    You should have received a copy (refer to the file COPYING) of the\n"
108     "GNU General Public License along with this program; if not, write to\n"
109     "the Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n"
110     "Boston, MA 02111-1307, USA.\n");
111
112
113 /* Where the init files live.  Typically:
114    LILYPOND_DATADIR = /usr/share/lilypond
115    LOCAL_LILYPOND_DATADIR = /usr/share/lilypond/<VERSION> */
116 char const *prefix_directory[] = {LILYPOND_DATADIR, LOCAL_LILYPOND_DATADIR, 0};
117
118 /*  The option parser */
119 static Getopt_long *option_parser = 0;
120
121 /* Internationalisation kludge in two steps:
122    * use _i () to get entry in POT file
123    * call gettext () explicitely for actual "translation"  */
124
125 static Long_option_init options_static[] =
126   {
127     {_i ("EXPR"), "evaluate", 'e',
128      _i ("set options, use -e '(ly:option-usage)' for help")},
129     /* Bug in option parser: --output=foe is taken as an abbreviation
130        for --output-format.  */
131     {_i ("EXT"), "format", 'f', _i ("select back-end to use")},
132     {0, "help", 'h',  _i ("print this help")},
133     {_i ("FIELD"), "header", 'H',  _i ("write header field to BASENAME.FIELD")},
134     {_i ("DIR"), "include", 'I',  _i ("add DIR to search path")},
135     {_i ("FILE"), "init", 'i',  _i ("use FILE as init file")},
136     {0, "no-layout", 'm',  _i ("produce MIDI output only")},
137     {_i ("FILE"), "output", 'o',  _i ("write output to FILE")},
138     {0, "preview", 'p',  _i ("generate a preview")},
139     {0, "no-pages", 0,  _i ("don't generate full pages")},
140     {0, "png", 0,  _i ("generate PNG")},
141     {0, "ps", 0,  _i ("generate PostScript")},
142     {0, "dvi", 0,  _i ("generate DVI")},
143     {0, "pdf", 0,  _i ("generate PDF (default)")},
144     {0, "tex", 0,  _i ("generate TeX")},
145     {0, "safe-mode", 's',  _i ("run in safe mode")},
146     {0, "version", 'v',  _i ("print version number")},
147     {0, "verbose", 'V', _i ("be verbose")},
148     {0, "warranty", 'w',  _i ("show warranty and copyright")},
149     {0,0,0,0}
150   };
151
152 static void
153 dir_info (FILE *out)
154 {
155   fputs ("\n", out);
156   fprintf (out, "LILYPOND_DATADIR=\"%s\"\n", LILYPOND_DATADIR);
157   fprintf (out, "LOCAL_LILYPOND_DATADIR=\%s\"\n", LOCAL_LILYPOND_DATADIR);
158   fprintf (out, "LOCALEDIR=\"%s\"\n", LOCALEDIR);
159
160   char *lilypond_prefix = getenv ("LILYPONDPREFIX");
161   fprintf (out, "LILYPONDPREFIX=\"%s\"\n",
162            (lilypond_prefix ? lilypond_prefix : ""));
163 }
164
165 static void
166 copyright ()
167 {
168   printf (_f ("Copyright (c) %s by\n%s  and others.",
169               "1996--2004",
170               AUTHORS).to_str0 ());
171   printf ("\n");
172 }
173
174 static void
175 identify (FILE *out)
176 {
177   fputs (gnu_lilypond_version_string ().to_str0 (), out);
178 }
179  
180 static void
181 notice ()
182 {
183   identify (stdout);
184   printf ("\n");
185   printf (_f (NOTICE, PROGRAM_NAME).to_str0 ());
186   printf ("\n");
187   copyright ();
188 }
189
190 static void
191 usage ()
192 {
193   /* No version number or newline here.  It confuses help2man.  */
194   printf (_f ("Usage: %s [OPTIONS]... FILE...", PROGRAM_NAME).to_str0 ());
195   printf ("\n\n");
196   printf (_ ("Typeset music and/or produce MIDI from FILE.").to_str0 ());
197   printf ("\n\n");
198   printf (_ ("LilyPond produces beautiful music notation.").to_str0 ());
199   printf ("\n");
200   printf (_f ("For more information, see %s", PROGRAM_URL).to_str0 ());
201   printf ("\n\n");
202   printf (_ ("Options:").to_str0 ());
203   printf ("\n");
204   printf (Long_option_init::table_string (options_static).to_str0 ());
205   printf ("\n");
206   printf (_f ("Report bugs to %s.", "bug-lilypond@gnu.org").to_str0 ());
207   printf ("\n");
208   printf ("\n");
209 }
210
211 static void
212 warranty ()
213 {
214   identify (stdout);
215   printf ("\n");
216   copyright ();
217   printf ("\n");
218   printf (_ (WARRANTY).to_str0 ());
219 }
220
221 static void
222 setup_paths ()
223 {
224   if (char const *lilypond_prefix = getenv ("LILYPONDPREFIX"))
225     prefix_directory[1] = lilypond_prefix;
226
227   global_path.append ("");
228
229   /* Adding mf/out make lilypond unchanged source directory, when setting
230      LILYPONDPREFIX to lilypond-x.y.z */
231   char *suffixes[] = {"ly", "afm", "mf/out", "scm", "tfm", "ps", 0};
232
233   for (unsigned i = 0; prefix_directory[i]; i++)
234     for (char **s = suffixes; *s; s++)
235       {
236         String p = prefix_directory[i] + to_string ('/') + String (*s);
237         global_path.prepend (p);
238         
239 #if !KPATHSEA
240         /* Urg: GNU make's $ (word) index starts at 1 */
241         int i  = 1;
242         while (global_path.try_append (p + to_string (".") + to_string (i)))
243           i++;
244 #endif
245       }
246 }
247   
248 static void
249 prepend_load_path (String dir)
250 {
251   String s = "(set! %load-path (cons \"" + dir + "\" %load-path))";
252   scm_c_eval_string (s.to_str0 ());
253 }
254
255 static void
256 determine_output_options ()
257 {
258   
259   bool found_tex = false;
260   SCM formats = ly_output_formats ();
261   for (SCM s = formats; scm_is_pair (s); s = scm_cdr (s)) 
262     {
263       found_tex = found_tex || (ly_scm2string (scm_car (s)) == "tex");
264     }
265
266       
267   if (make_pdf || make_png)
268     {
269       make_ps = true;
270     }
271   if (make_ps && found_tex)
272     {
273       make_dvi = true;
274     }
275   if (make_dvi && found_tex)
276     {
277       make_tex = true;
278     }
279   if (!(make_dvi
280         || make_tex
281         || make_ps
282         || make_png
283         || make_pdf))
284     {
285       make_pdf = true;
286       make_ps = true;
287       if (found_tex)
288         {
289           make_dvi = true;
290           make_tex = true;
291         }
292     }
293 }
294
295 static void
296 main_with_guile (void *, int, char **)
297 {
298   /* Engravers use lily.scm contents, need to make Guile find it.
299      Prepend onto GUILE %load-path, very ugh. */
300   for (unsigned i = 0; prefix_directory[i]; i++)
301     {
302       prepend_load_path (prefix_directory[i]);
303       /* Junk this.  We should make real modules iso. just loading files. */
304       prepend_load_path (String (prefix_directory[i]) + "/scm");
305     }
306
307   if (verbose_global_b)
308     dir_info (stderr);
309
310   ly_c_init_guile ();
311   call_constructors ();
312   progress_indication ("\n");
313
314   determine_output_options ();  
315   all_fonts_global = new All_font_metrics (global_path.to_string ());
316
317   init_scheme_code_string += ")";
318   scm_c_eval_string ((char*) init_scheme_code_string.to_str0 ());
319
320   /* We accept multiple independent music files on the command line to
321      reduce compile time when processing lots of small files.
322      Starting the GUILE engine is very time consuming.  */
323
324   SCM files = SCM_EOL;
325   SCM *tail = &files;
326   while (char const *arg = option_parser->get_next_arg ())
327     {
328       *tail = scm_cons (scm_makfrom0str (arg), SCM_EOL);
329       tail = SCM_CDRLOC (*tail);
330     }
331   delete option_parser;
332   option_parser = 0;
333
334   if (files == SCM_EOL)
335     {
336       /* No FILE arguments is now a usage error to help newbies.  If you
337          want a filter, you're not a newbie and should know to use file
338          argument `-'.  */
339       usage ();
340       exit (2);
341     }
342
343   SCM result = scm_call_1 (ly_scheme_function ("lilypond-main"), files);
344   (void) result;
345
346
347   /* Unreachable.  */
348   exit (0);
349 }
350
351 static void
352 setup_localisation ()
353 {
354 #if HAVE_GETTEXT
355   /* Enable locales */
356   setlocale (LC_ALL, "");
357   
358   /* FIXME: check if this is still true.
359     Disable localisation of float values.  This breaks TeX output.  */
360   setlocale (LC_NUMERIC, "C");
361   
362   String name (PACKAGE);
363   name.to_lower ();
364   bindtextdomain (name.to_str0 (), LOCALEDIR);
365   textdomain (name.to_str0 ());
366 #endif
367 }
368
369 static void
370 parse_argv (int argc, char **argv)
371 {
372   bool help_b = false;
373   option_parser = new Getopt_long (argc, argv, options_static);
374   while (Long_option_init const *opt = (*option_parser) ())
375     {
376       switch (opt->shortname_char_)
377         {
378         case 0:
379           if (String (opt->longname_str0_) == "png")
380             make_png = true;
381           else if (String (opt->longname_str0_) == "pdf")
382             make_pdf = true;
383           else if (String (opt->longname_str0_) == "ps")
384             make_ps = true;
385           else if (String (opt->longname_str0_) == "dvi")
386             make_dvi = true;
387           else if (String (opt->longname_str0_) == "tex")
388             make_tex = true;
389           else if (String (opt->longname_str0_) == "preview")
390             make_preview = true;
391           else if (String (opt->longname_str0_) == "no-pages")
392             make_pages = false;
393           break;
394           
395         case 'v':
396           notice ();
397           exit (0);
398           break;
399         case 'o':
400           {
401             String s = option_parser->optional_argument_str0_;
402             File_name file_name (s);
403             output_name_global = file_name.to_string ();
404           }
405           break;
406         case 'e':
407           init_scheme_code_string += option_parser->optional_argument_str0_;
408           break;
409         case 'w':
410           warranty ();
411           exit (0);
412           break;
413         case 'f':
414           if (option_parser->optional_argument_str0_ == "help")
415             {
416               printf (_ ("This option is for developers only.").to_str0 ());
417               printf (_ ("Read the sources for more information.").to_str0 ());
418               exit (0);
419             }
420           output_format_global = option_parser->optional_argument_str0_;
421           break;
422         case 'H':
423           dump_header_fieldnames_global
424             .push (option_parser->optional_argument_str0_);
425           break;
426         case 'I':
427           global_path.append (option_parser->optional_argument_str0_);
428           break;
429         case 'i':
430           init_name_global = option_parser->optional_argument_str0_;
431           break;
432         case 'h':
433           help_b = true;
434           break;
435         case 'V':
436           verbose_global_b = true;
437           break;
438         case 's':
439           safe_global_b = true;
440           break;
441         case 'm':
442           no_layout_global_b = true;
443           break;
444         case 'p':
445           make_preview = true;
446           break;
447         default:
448           programming_error (to_string ("unhandled short option: %c",
449                                         opt->shortname_char_));
450           assert (false);
451           break;
452         }
453     }
454
455   if (help_b)
456     {
457       usage ();
458       if (verbose_global_b)
459         dir_info (stdout);
460       exit (0);
461     }
462 }
463
464 int
465 main (int argc, char **argv)
466 {
467   setup_localisation ();  
468   setup_paths ();
469   parse_argv (argc, argv);
470   initialize_kpathsea (argv[0]);
471
472   scm_boot_guile (argc, argv, main_with_guile, 0);
473
474   /* Unreachable */
475   return 0;
476 }