]> git.donarmstrong.com Git - lilypond.git/blob - lily/main.cc
patch::: 1.3.114.jcn1
[lilypond.git] / lily / main.cc
1 /*
2   main.cc -- implement main: entrypoints
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <stdlib.h>
10 #include <iostream.h>
11 #include <assert.h>
12 #include <locale.h>
13
14 #include "lily-guile.hh"
15 #include "lily-version.hh"
16
17 #include "all-font-metrics.hh"
18 #include "getopt-long.hh"
19 #include "misc.hh"
20 #include "string.hh"
21 #include "main.hh"
22 #include "file-path.hh"
23 #include "config.h"
24 #include "file-results.hh"
25 #include "debug.hh"
26 #include "lily-guile.hh"
27 #include "paper-def.hh"
28 #include "midi-def.hh"
29 #include "global-ctor.hh"
30 #include "kpath.hh"
31
32
33 #if HAVE_GETTEXT
34 #include <libintl.h>
35 #endif
36
37
38
39 bool verbose_global_b = false;
40 bool no_paper_global_b = false;
41 bool no_timestamps_global_b = false;
42 bool find_old_relative_b = false;
43
44 char const* output_global_ch = "tex";
45 All_font_metrics *all_fonts_global_p;
46
47 String default_outname_base_global =  "lelie";
48 String outname_str_global;
49 String init_str_global;
50
51 int default_count_global;
52 File_path global_path;
53
54 Array<String> global_score_header_fields;
55
56 bool safe_global_b = false;
57 bool experimental_features_global_b = false;
58 bool dependency_global_b = false;
59
60 int exit_status_i_;
61
62 Getopt_long * oparser_global_p = 0;
63
64 String distill_inname_str (String name_str, String& ext_r);
65
66 /*
67  Internationalisation kludge in two steps:
68    * use _i () to get entry in POT file
69    * call gettext () explicitely for actual "translation"
70
71  Note: these messages all start with lower case (ie, don't
72        follow regular localisation guidelines).
73  */
74 Long_option_init theopts[] = {
75   {_i ("EXT"), "output-format", 'f',  _i ("use output format EXT (scm, ps, tex or as)")},
76   {0, "help", 'h',  _i ("this help")},
77   {_i ("FIELD"), "header", 'H',  _i ("write header field to BASENAME.FIELD")},
78   {_i ("DIR"), "include", 'I',  _i ("add DIR to search path")},
79   {_i ("FILE"), "init", 'i',  _i ("use FILE as init file")},
80   {0, "dependencies", 'M',  _i ("write Makefile dependencies for every input file")},
81   {0, "no-paper", 'm',  _i ("produce MIDI output only")},
82   {_i ("BASENAME"), "output", 'o',  _i ("write output to BASENAME[-x].extension")},
83   {0, "find-old-relative", 'Q',  _i ("show all changes in relative syntax")},
84   {0, "safe", 's',  _i ("inhibit file output naming and exporting")},
85   {0, "no-timestamps", 'T',  _i ("don't timestamp the output")},
86   {0, "test", 't',  _i ("switch on experimental features")},
87   {0, "version", 'v',  _i ("print version number")},
88   {0, "verbose", 'V', _i("verbose")},
89   {0, "warranty", 'w',  _i ("show warranty and copyright")},
90   {0,0,0, 0}
91 };
92
93 void
94 identify (ostream* os)
95 {
96   //*os << gnu_lilypond_version_str () << endl;
97   *os << gnu_lilypond_version_str ();
98 }
99
100 void
101 usage ()
102 {
103   
104   /*
105     No version number or newline here. It confuses help2man
106    */
107   cout << _f ("Usage: %s [OPTION]... [FILE]...", "lilypond");
108   cout << "\n\n";
109   cout << _ ("Typeset music and or play MIDI from FILE");
110   cout << "\n\n";
111   cout << 
112 _(
113 "LilyPond is a music typesetter.  It produces beautiful sheet music\n"
114 "using a high level description file as input.  LilyPond is part of \n"
115 "the GNU Project.\n"
116 );
117
118   cout << '\n';
119   cout << _ ("Options:");
120   cout << '\n';
121   cout << Long_option_init::table_str (theopts);
122   cout << '\n';
123   cout << _ ("This binary was compiled with the following options:") 
124     << " " <<
125 #ifdef NDEBUG
126     "NDEBUG "
127 #endif
128 #ifdef NPRINT
129     "NPRINT "
130 #endif
131 #ifdef STRING_UTILS_INLINED
132     "STRING_UTILS_INLINED "
133 #endif
134     "\n"
135     "datadir: `" DIR_DATADIR "'\n"
136     "localedir: `" DIR_LOCALEDIR "'\n"
137     "\n";
138
139
140   cout << endl;
141
142   cout << _f ("Report bugs to %s", "bug-gnu-music@gnu.org") << endl;
143 }
144
145 void
146 version ()
147 {
148   identify (&cout);
149   cout << '\n';
150   cout << _f (""
151   "This is free software.  It is covered by the GNU General Public License,\n"
152   "and you are welcome to change it and/or distribute copies of it under\n"
153   "certain conditions.  Invoke as `%s --warranty' for more information.\n",
154     "lilypond");
155   cout << endl;
156
157   cout << _f ("Copyright (c) %s by", "1996--2000");
158   cout << "Han-Wen Nienhuys <hanwen@cs.uu.nl>\n"
159        << "Jan Nieuwenhuizen <janneke@gnu.org>\n";
160 }
161
162 void
163 notice ()
164 {
165   cout << '\n';
166   // GNU GNU?
167   cout << _ ("GNU LilyPond -- The GNU Project music typesetter");
168   cout << '\n';
169   cout << _f ("Copyright (c) %s by", "1996--2000");
170   cout << '\n';
171   cout << "  Han-Wen Nienhuys <hanwen@cs.uu.nl>\n";
172   cout << "  Jan Nieuwenhuizen <janneke@gnu.org>\n";
173   cout << '\n';
174   cout << _ (
175              "    This program is free software; you can redistribute it and/or\n"
176              "modify it under the terms of the GNU General Public License version 2\n"
177              "as published by the Free Software Foundation.\n"
178              "\n"
179              "    This program is distributed in the hope that it will be useful,\n"
180              "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
181              "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n"
182              "General Public License for more details.\n"
183              "\n"
184              "    You should have received a copy (refer to the file COPYING) of the\n"
185              "GNU General Public License along with this program; if not, write to\n"
186              "the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,\n"
187              "USA.\n");
188 }
189
190 void
191 setup_paths ()
192 {
193   // facilitate binary distributions
194   char const *env_lily = getenv ("LILYPONDPREFIX");
195   String prefix_directory;
196   if (env_lily)
197     prefix_directory = env_lily;
198
199 #if HAVE_GETTEXT
200   setlocale (LC_ALL, ""); /* enable locales */
201   setlocale (LC_NUMERIC, "C"); /* musn't have comma's in TeX output... */
202   String lily_locale_dir;
203   String name (PACKAGE);
204   name.to_lower ();
205
206   /*
207     urg; what *do* we want with $LILYPONDPREFIX, DIR_DATADIR and $prefix/share
208     handy for multiple source-dir runs, though...
209    */
210   if (!prefix_directory.empty_b())
211     {
212       lily_locale_dir = prefix_directory + "/share/locale";
213       bindtextdomain (name.ch_C (), lily_locale_dir.ch_C());
214     }
215   else
216     bindtextdomain (name.ch_C (), DIR_LOCALEDIR);
217   textdomain (name.ch_C ());
218 #endif
219
220   global_path.add ("");
221   // must override (come before) "/usr/local/share/lilypond"!
222   char const *env_sz = getenv ("LILYINCLUDE");
223   if (env_sz)
224     global_path.parse_path (env_sz);
225
226
227   /*
228     Should use kpathsea, this is getting out of hand.  
229    */
230   char *suffixes[] = {"ly", "afm", "scm", "tfm", "ps", 0};
231   String prefix = prefix_directory;
232   if (prefix.empty_b ())
233     prefix =  DIR_DATADIR;
234   for (char **s = suffixes; *s; s++)
235     {
236       String p =  prefix + to_str ('/') + String (*s);
237       global_path.add (p);
238
239 #if !KPATHSEA
240       /* Urg: GNU make's $(word) index starts at 1 */
241       int i  = 1;
242       while (global_path.try_add (p + to_str (".") + to_str (i)))
243         i++;
244 #endif
245     }
246 }
247
248
249 void
250 main_prog (int, char**)
251 {
252   /*
253     need to do this first. Engravers use lily.scm contents.
254    */
255   init_lily_guile ();
256   if (verbose_global_b)
257     progress_indication ("\n");
258   read_lily_scm_file ("lily.scm");
259   cout << endl;
260
261   call_constructors ();
262   default_outname_base_global = "lelie";
263   all_fonts_global_p = new All_font_metrics (global_path.str ());
264   
265   int p=0;
266   const char *arg ;
267   while ((arg= oparser_global_p->get_next_arg ()))
268     {
269       
270       if (outname_str_global == "")
271         {
272           Midi_def::reset_default_count ();
273           Paper_def::reset_default_count ();
274         }
275       String f (arg);
276       String i;
277       f = distill_inname_str (f, i);
278       if (f == "-")
279         default_outname_base_global = "-";
280       else
281         {
282           String a,b,c,d;
283           split_path (f, a, b, c, d);
284           default_outname_base_global = c;
285         }
286       if (outname_str_global.length_i ())
287         default_outname_base_global = outname_str_global;
288       if (init_str_global.length_i ())
289         i = init_str_global;
290       else
291         i = "init" + i;
292       do_one_file (i, f);
293       p++;
294     }
295   if (!p)
296     {
297       String i;
298       if (init_str_global.length_i ())
299         i = init_str_global;
300       else
301         i = "init.ly";
302       default_outname_base_global = "-";
303       if (outname_str_global.length_i ())
304         default_outname_base_global = outname_str_global;
305       do_one_file (i, default_outname_base_global);
306     }
307   delete oparser_global_p;
308   exit( exit_status_i_);
309 }
310
311
312 int
313 main (int argc, char **argv)
314 {
315   debug_init ();                // should be first
316   setup_paths ();
317
318   /*
319     prepare guile for heavy mem usage.
320
321     putenv is POSIX, setenv is BSD 4.3
322    */
323   putenv ("GUILE_INIT_SEGMENT_SIZE_1=4194304");
324   putenv ("GUILE_MAX_SEGMENT_SIZE=8388608");
325
326   ly_init_kpath (argv[0]);
327   
328   oparser_global_p = new Getopt_long(argc, argv,theopts);
329   while (Long_option_init const * opt = (*oparser_global_p)())
330     {
331       switch (opt->shortname_ch_)
332         {
333         case 'v':
334           version();
335           exit (0);             // we print a version anyway.
336           break;
337         case 't':
338           experimental_features_global_b = true;
339           progress_indication ("*** enabling experimental features, you're on your own now ***\n");
340           break;
341         case 'o':
342           outname_str_global = oparser_global_p->optional_argument_ch_C_;
343           break;
344         case 'w':
345           notice ();
346           exit (0);
347           break;
348         case 'f':
349           output_global_ch = oparser_global_p->optional_argument_ch_C_;
350           break;
351         case 'Q':
352           find_old_relative_b= true;
353           break;
354         case 'H':
355           global_score_header_fields.push (oparser_global_p->optional_argument_ch_C_);
356           break;
357         case 'I':
358           global_path.push (oparser_global_p->optional_argument_ch_C_);
359           break;
360         case 'i':
361           init_str_global = oparser_global_p->optional_argument_ch_C_;
362           break;
363         case 'h':
364           usage ();
365           exit (0);
366           break;
367         case 'V':
368           verbose_global_b = true;
369           break;
370         case 's':
371           safe_global_b = true;
372           break;
373         case 'M':
374           dependency_global_b = true;
375           break; 
376         case 'm':
377           no_paper_global_b = true;
378           break;
379         case 'T':
380           no_timestamps_global_b = true;
381           break;
382         default:
383           assert (false);
384           break;
385         }
386     }
387   identify (&cerr);
388
389 #ifdef WINNT
390   gh_enter (argc, argv, main_prog);
391 #else
392   gh_enter (argc, argv, (void(*)(int, char**))main_prog);
393 #endif
394
395   return 0;                     // unreachable
396 }
397
398 /**
399   make input file name from command arg.
400
401   @input file name
402
403   @output file name with added default extension. "" is stdin.
404           in reference argument: the extension. ".ly" if none
405  */
406 String
407 distill_inname_str (String name_str, String& ext_r)
408 {
409   String str = name_str;
410   if (str.length_i ())
411     {
412       if (str != "-")
413         {
414           String a,b,c;
415           split_path (str,a,b,c,ext_r);
416
417           // add extension if not present.
418           char const* extensions[] = {"", ".ly", ".fly", ".sly", "", 0};
419           extensions[0] = ext_r.ch_C ();
420           for (int i = 0; extensions[i]; i++)
421             {
422               if (!global_path.find (a+b+c+extensions[i]).empty_b ())
423                 {
424                   ext_r = extensions[i];
425                   break;
426                 }
427             }
428           str = a+b+c+ext_r;
429           // in any case, assume (init).ly
430           if (!ext_r.length_i ())
431             ext_r = ".ly";
432         }
433     }
434   else 
435     {
436       str = "-";
437       ext_r = ".ly";
438     }
439   return str;
440 }
441