]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/main.cc
doc fixes, rune pats
[lilypond.git] / lily / main.cc
index 50725df2cb9325b17f2f704183077c8e562583e7..f467bdda24f347aa8f7e496bbce2bef5156ce8a7 100644 (file)
@@ -3,13 +3,16 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include <stdlib.h>
-#include <iostream.h>
+#include <stdio.h>
 #include <assert.h>
 #include <locale.h>
+#include <stdio.h>
+
+#include <iostream>
 
 #include "config.h"
 
@@ -33,6 +36,7 @@
 #include "global-ctor.hh"
 #include "kpath.hh"
 
+static int sane_putenv (char const* key, char const* value, bool overwrite = false);
 
 /*
   Global options that can be overridden through command line.
@@ -101,8 +105,8 @@ static Getopt_long *oparser_p_static = 0;
        follow regular localisation guidelines).
  */
 static Long_option_init options_static[] = {
-  /* print example usage:  lilypond -e "(set-lily-option 'help 0)" ? */
-  {_i ("EXPR"), "evaluate", 'e',_i ("evalute EXPR as Scheme after .scm init is read")},
+  /* print example usage:  lilypond -e "" ? */
+  {_i ("EXPR"), "evaluate", 'e',_i ("Scheme options: try -e \"(set-lily-option 'help 0)\" for more help.")},
   /* another bug in option parser: --output=foe is taken as an abbreviation
      for --output-format */
   {_i ("EXT"), "format", 'f',  _i ("use output format EXT (tex [default], pdftex, ps, scm or as)")},
@@ -114,7 +118,12 @@ static Long_option_init options_static[] = {
   {0, "no-paper", 'm',  _i ("produce MIDI output only")},
   {_i ("FILE"), "output", 'o',  _i ("write output to FILE")},
   {_i ("DIR"), "dep-prefix", 'P',  _i ("prepend DIR to dependencies")},
+#if 0
+  /*
+    should audit again.
+   */
   {0, "safe", 's',  _i ("inhibit file output naming and exporting")},
+#endif
   {0, "version", 'v',  _i ("print version number")},
   {0, "verbose", 'V', _i ("verbose")},
   {0, "warranty", 'w',  _i ("show warranty and copyright")},
@@ -122,9 +131,9 @@ static Long_option_init options_static[] = {
 };
 
 void
-identify (ostream* os)
+identify (FILE* os)
 {
-  *os << gnu_lilypond_version_str ();
+  fputs(gnu_lilypond_version_str ().ch_C(), os);
 }
 
 void
@@ -134,23 +143,23 @@ usage ()
   /*
     No version number or newline here. It confuses help2man
    */
-  cout << _f ("Usage: %s [OPTION]... FILE...", "lilypond");
-  cout << "\n\n";
-  cout << _ ("Typeset music and or play MIDI from FILE");
-  cout << "\n\n";
-  cout << 
+  std::cout << _f ("Usage: %s [OPTION]... FILE...", "lilypond").ch_C();
+  std::cout << "\n\n";
+  std::cout << _ ("Typeset music and or play MIDI from FILE").ch_C();
+  std::cout << "\n\n";
+  std::cout << 
 _ (
 "LilyPond is a music typesetter.  It produces beautiful sheet music\n"
 "using a high level description file as input.  LilyPond is part of \n"
 "the GNU Project.\n"
-);
-
-  cout << '\n';
-  cout << _ ("Options:");
-  cout << '\n';
-  cout << Long_option_init::table_str (options_static);
-  cout << '\n';
-  cout << _ ("This binary was compiled with the following options:") 
+).ch_C();
+
+  std::cout << '\n';
+  std::cout << _ ("Options:").ch_C();
+  std::cout << '\n';
+  std::cout << Long_option_init::table_str (options_static).ch_C();
+  std::cout << '\n';
+  std::cout << _ ("This binary was compiled with the following options:") .ch_C()
     << " " <<
 #ifdef NDEBUG
     "NDEBUG "
@@ -161,41 +170,41 @@ _ (
     "\n";
 
 
-  cout << endl;
+  std::cout << std::endl;
 
-  cout << _f ("Report bugs to %s", "bug-lilypond@gnu.org") << endl;
+  std::cout << _f ("Report bugs to %s", "bug-lilypond@gnu.org").ch_C() << std::endl;
 }
 
 void
 version ()
 {
-  identify (&cout);
-  cout << '\n';
-  cout << _f (""
+  identify (stdout);
+  std::cout << '\n';
+  std::cout << _f (""
   "This is free software.  It is covered by the GNU General Public License,\n"
   "and you are welcome to change it and/or distribute copies of it under\n"
   "certain conditions.  Invoke as `%s --warranty' for more information.\n",
-    "lilypond");
-  cout << endl;
+    "lilypond").ch_C();
+  std::cout << std::endl;
 
-  cout << _f ("Copyright (c) %s by", "1996--2001");
-  cout << '\n';
-  cout << "  Han-Wen Nienhuys <hanwen@cs.uu.nl>\n";
-  cout << "  Jan Nieuwenhuizen <janneke@gnu.org>\n";
+  std::cout << _f ("Copyright (c) %s by", "1996--2002").ch_C();
+  std::cout << '\n';
+  std::cout << "  Han-Wen Nienhuys <hanwen@cs.uu.nl>\n";
+  std::cout << "  Jan Nieuwenhuizen <janneke@gnu.org>\n";
 }
 
 void
 notice ()
 {
-  cout << '\n';
-  cout << _ ("GNU LilyPond -- The music typesetter");
-  cout << '\n';
-  cout << _f ("Copyright (c) %s by", "1996--2001");
-  cout << '\n';
-  cout << "  Han-Wen Nienhuys <hanwen@cs.uu.nl>\n";
-  cout << "  Jan Nieuwenhuizen <janneke@gnu.org>\n";
-  cout << '\n';
-  cout << _ (
+  std::cout << '\n';
+  std::cout << _ ("GNU LilyPond -- The music typesetter").ch_C();
+  std::cout << '\n';
+  std::cout << _f ("Copyright (c) %s by", "1996--2002").ch_C();
+  std::cout << '\n';
+  std::cout << "  Han-Wen Nienhuys <hanwen@cs.uu.nl>\n";
+  std::cout << "  Jan Nieuwenhuizen <janneke@gnu.org>\n";
+  std::cout << '\n';
+  std::cout << _ (
             "    This program is free software; you can redistribute it and/or\n"
             "modify it under the terms of the GNU General Public License version 2\n"
             "as published by the Free Software Foundation.\n"
@@ -208,15 +217,17 @@ notice ()
             "    You should have received a copy (refer to the file COPYING) of the\n"
             "GNU General Public License along with this program; if not, write to\n"
             "the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,\n"
-            "USA.\n");
+            "USA.\n").ch_C();
 }
 
+String prefix_directory;
+
 void
 setup_paths ()
 {
   // facilitate binary distributions
   char const *env_lily = getenv ("LILYPONDPREFIX");
-  String prefix_directory;
+
   if (env_lily)
     prefix_directory = env_lily;
 
@@ -242,21 +253,17 @@ setup_paths ()
 #endif
 
   global_path.add ("");
-  // must override (come before) "/usr/local/share/lilypond"!
-  char const *env_sz = getenv ("LILYINCLUDE");
-  if (env_sz)
-    global_path.parse_path (env_sz);
 
 
   /* Adding mf/out make lilypond unchanged source directory, when setting
      LILYPONDPREFIX to lilypond-x.y.z */
   char *suffixes[] = {"ly", "afm", "mf/out", "scm", "tfm", "ps", 0};
-  String prefix = prefix_directory;
-  if (prefix.empty_b ())
-    prefix =  DIR_DATADIR;
+
+  if (prefix_directory.empty_b ())
+    prefix_directory =  DIR_DATADIR;
   for (char **s = suffixes; *s; s++)
     {
-      String p =  prefix + to_str ('/') + String (*s);
+      String p =  prefix_directory + to_str ('/') + String (*s);
       global_path.add (p);
 
 #if !KPATHSEA
@@ -309,16 +316,20 @@ format_to_ext (String format)
 }
 
 void
-main_prog (void * closure, int, char**)
+main_prog (void * , int, char**)
 {
   /*
     need to do this first. Engravers use lily.scm contents.
    */
-  init_lily_guile ();
-  if (verbose_global_b)
-    progress_indication ("\n");
-  read_lily_scm_file ("lily.scm");
-  cout << endl;
+  
+  /*
+    prepend onto GUILE  loadpath.
+
+    Very ugh.
+   */
+
+  init_lily_guile (prefix_directory);
+  std::cout << std::endl;
 
   call_constructors ();
   all_fonts_global_p = new All_font_metrics (global_path.str ());
@@ -388,14 +399,11 @@ main_prog (void * closure, int, char**)
   exit (exit_status_global);
 }
 
+
 static int
-sane_putenv (char const* key, char const* value)
+sane_putenv (char const* key, char const* value, bool overwrite)
 {
-  /*
-    putenv is POSIX, setenv is BSD 4.3
-    Urg, but putenv blindly overwrites environment settings.
-  */
-  if (!getenv (key))
+  if (overwrite || !getenv (key))
     return putenv ((char*)((String (key) + "=" + value).ch_C ()));
   return -1;
 }
@@ -416,8 +424,8 @@ main (int argc, char **argv)
      execution time penalty (~*1.10).  However, if this 15% gain in memory
      usage prevents swapping, the execution time falls drastically. */
   
-  sane_putenv ("GUILE_INIT_SEGMENT_SIZE_1", "4194304");
-  sane_putenv ("GUILE_MAX_SEGMENT_SIZE", "8388608");
+  sane_putenv ("GUILE_INIT_SEGMENT_SIZE_1", "4194304", false);
+  sane_putenv ("GUILE_MAX_SEGMENT_SIZE", "8388608", false);
 
   ly_init_kpath (argv[0]);
   
@@ -483,7 +491,7 @@ main (int argc, char **argv)
          break;
        }
     }
-  identify (&cerr);
+  identify (stderr);
 
 #ifdef WINNT
   scm_boot_guile (argc, argv, main_prog, 0);