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