]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/main.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / main.cc
index a2ba2a7bcbf268845bdf91280f58aadee551646f..9fa362c6c233c1db93791c9a4f6d2ab7189689cb 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "main.hh"
@@ -16,8 +16,6 @@ using namespace std;
 
 #include <unistd.h>
 #include <sys/types.h>
-#include <sys/stat.h>
-
 #include "config.hh"
 
 #if HAVE_GRP_H
@@ -43,6 +41,7 @@ using namespace std;
 #include "version.hh"
 #include "warn.hh"
 #include "program-option.hh"
+#include "relocate.hh"
 
 /*
  * Global options that can be overridden through command line.
@@ -88,7 +87,7 @@ bool make_print = true;
 
 
 bool relocate_binary =
-#ifdef __MINGW32__  
+#if ARGV0_RELOCATION
   true;
 #else
   false
@@ -161,7 +160,7 @@ static Long_option_init options_static[]
      for --output-format.  */
   {_i ("FORMATs"), "formats", 'f', _i ("dump FORMAT,...  Also as separate options:")},
   {0, "dvi", 0, _i ("generate DVI (tex backend only)")},
-  {0, "relocate", 0, _i("relocate using path to binary")},
+  {0, "relocate", 0, _i ("relocate using directory of lilypond program")},
   {0, "pdf", 0, _i ("generate PDF (default)")},
   {0, "png", 0, _i ("generate PNG")},
   {0, "ps", 0, _i ("generate PostScript")},
@@ -170,12 +169,12 @@ static Long_option_init options_static[]
   {_i ("FIELD"), "header", 'H',  _i ("dump a header field to file BASENAME.FIELD")},
   {_i ("DIR"), "include", 'I',  _i ("add DIR to search path")},
   {_i ("FILE"), "init", 'i',  _i ("use FILE as init file")},
-  {_i ("FILE"), "output", 'o',  _i ("write output to FILE (suffix will be added)")},
 #if HAVE_CHROOT
   {_i ("USER,GROUP,JAIL,DIR"), "jail", 'j', _i ("chroot to JAIL, become USER:GROUP\n"
                                                "and cd into DIR")},
 #endif
   {0, "no-print", 0, _i ("do not generate printed output")},
+  {_i ("FILE"), "output", 'o',  _i ("write output to FILE (suffix will be added)")},
   {0, "preview", 'p',  _i ("generate a preview of the first system")},
   {0, "safe-mode", 's',  _i ("disallow unsafe Scheme and PostScript operations")},
   {0, "version", 'v',  _i ("print version number")},
@@ -184,7 +183,7 @@ static Long_option_init options_static[]
   {0, 0, 0, 0}
 };
 
-#define LILYPOND_DATADIR PACKAGE_DATADIR "/" TOPLEVEL_VERSION
+const char *LILYPOND_DATADIR = PACKAGE_DATADIR "/" TOPLEVEL_VERSION;
 
 static void
 env_var_info (FILE *out, char const *key)
@@ -219,7 +218,7 @@ static void
 copyright ()
 {
   printf (_f ("Copyright (c) %s by\n%s  and others.",
-             "1996--2005",
+             "1996--2006",
              AUTHORS).to_str0 ());
   printf ("\n");
 }
@@ -275,228 +274,6 @@ warranty ()
   printf (_ (WARRANTY).to_str0 ());
 }
 
-static int
-sane_putenv (char const *key, String value, bool overwrite = true)
-{
-  if (overwrite || !getenv (key))
-    {
-      String combine = String (key) + "=" + value;
-      char *s = strdup (combine.to_str0 ());
-      return putenv (s);
-    }
-  return -1;
-}
-
-static int
-set_env_file (char const *key, String value)
-{
-  if (is_file (value))
-    return sane_putenv (key, value, false);
-  else if (be_verbose_global)
-    warning (_f ("no such file: %s", value));
-  return -1;
-}
-
-static int
-prepend_env_path (char const *key, String value)
-{
-  if (is_dir (value))
-    {
-      if (be_verbose_global)
-       progress_indication (_f ("%s=%s\n", key, value.to_str0 ())); 
-
-      if (char const *cur = getenv (key))
-       value += to_string (PATHSEP) + cur;
-
-      return sane_putenv (key, value.to_str0 ());
-    }
-  else if (be_verbose_global)
-    warning (_f ("no such directory: %s for %s", value, key));
-  return -1;
-}
-
-String
-dir_name (String const file_name)
-{
-  String s = file_name;
-  s.substitute ('\\', '/');
-  s = s.left_string (s.index_last ('/'));
-  return s;
-}
-
-#ifdef __MINGW32__
-#include <winbase.h>
-#endif
-
-void
-set_relocation (String bindir, String prefix)
-{
-  if (be_verbose_global)
-    warning (_f ("Relocation: compile prefix=%s, new prefix=%s",
-                prefix_directory,
-                prefix.to_str0 ()));
-  
-  String datadir = prefix + "/share";
-  String libdir = prefix + "/lib";
-  String localedir = datadir + "/locale";
-  String sysconfdir = prefix + "/etc";
-  String lilypond_datadir = datadir + "/lilypond/" TOPLEVEL_VERSION;
-
-  if (is_dir (lilypond_datadir))
-    prefix_directory = lilypond_datadir;
-
-#if HAVE_GETTEXT
-  if (is_dir (localedir))
-    bindtextdomain ("lilypond", localedir.to_str0 ());
-#endif
-
-  set_env_file ("FONTCONFIG_FILE", sysconfdir + "/fonts/fonts.conf");
-#ifdef __MINGW32__
-  char font_dir[PATH_MAX];
-  ExpandEnvironmentStrings ("%windir%/fonts", font_dir, sizeof (font_dir));
-  prepend_env_path ("GS_FONTPATH", font_dir);
-#endif
-
-  /* FIXME: *cough* 8.15 *cough* */
-  prepend_env_path ("GS_FONTPATH", datadir + "/ghostscript/8.15/fonts");
-  prepend_env_path ("GS_LIB", datadir + "/ghostscript/8.15/Resource");
-  prepend_env_path ("GS_LIB", datadir + "/ghostscript/8.15/lib");
-
-  prepend_env_path ("GS_FONTPATH", datadir + "/gs/fonts");
-  prepend_env_path ("GS_LIB", datadir + "/gs/Resource");
-  prepend_env_path ("GS_LIB", datadir + "/gs/lib");
-
-  /* need otherwise dynamic .so's aren't found.   */
-  prepend_env_path ("DYLD_LIBRARY_PATH", libdir);
-  
-  prepend_env_path ("GUILE_LOAD_PATH", datadir
-                   + to_string ("/guile/%d.%d",
-                                SCM_MAJOR_VERSION, SCM_MINOR_VERSION));
-  set_env_file ("PANGO_RC_FILE", sysconfdir + "/pango/pangorc");
-  prepend_env_path ("PATH", bindir);
-}
-
-String
-get_working_directory ()
-{
-  char cwd[PATH_MAX];
-  getcwd (cwd, PATH_MAX);
-
-  return String (cwd);
-}
-
-static void
-setup_paths (char const *argv0)
-{
-  prefix_directory = LILYPOND_DATADIR;
-
-  if (relocate_binary)
-    {
-      if (getenv ("LILYPOND_VERBOSE"))
-       be_verbose_global = true;
-      
-#if defined (__CYGWIN__) || defined (__MINGW32__)
-      String s = argv0;
-      s.substitute ('\\', '/');
-      argv0 = s.to_str0 ();
-#endif /* __CYGWIN__ || __MINGW32__ */
-
-
-      /* if name contains slashes, we should not look in $PATH */
-      String argv0_abs;
-      if (getenv ("LILYPOND_RELOCATE_PREFIX"))
-       argv0_abs = getenv ("LILYPOND_RELOCATE_PREFIX");
-      else if (argv0[0] == '/')
-       argv0_abs = argv0_abs;
-      else if (String (argv0).index ('/') > 0)
-       argv0_abs = get_working_directory () + "/" + String (argv0);
-      else
-       {
-         /* Find absolute ARGV0 name, using PATH.  */
-         File_path path;
-         path.parse_path (getenv ("PATH"));
-
-      
-#ifndef __MINGW32__
-         String argv0_abs = path.find (argv0);
-#else /* __MINGW32__ */
-         char const *ext[] = {"exe", "", 0 };
-         String argv0_abs = path.find (argv0, ext);
-#endif /* __MINGW32__ */
-
-         if (argv0_abs.is_empty ())
-           {
-             File_name name (argv0);
-             /* If NAME contains slashes and its DIR is not absolute, it can
-                only be referenced from CWD.  */
-             if (name.to_string ().index ('/') >= 0 && name.dir_[0] != '/')
-               {
-                 argv0_abs =  get_working_directory () + "/" + argv0;
-               }
-             else
-               programming_error ("can't find absolute argv0");
-           }
-       }
-      
-      String bindir = dir_name (argv0_abs);
-      String argv0_prefix = dir_name (bindir);
-      if (argv0_prefix != dir_name (dir_name (dir_name (prefix_directory))))
-       set_relocation (bindir, argv0_prefix);
-    }
-  else
-    (void) argv0;
-
-  /* FIXME: use LILYPOND_DATADIR.  */
-  if (char const *env = getenv ("LILYPONDPREFIX"))
-    {
-#ifdef __MINGW32__
-      /* Normalize file name.  */
-      env = File_name (env).to_string ().get_copy_str0 ();
-#endif
-      prefix_directory = env;
-    }
-
-  global_path.append ("");
-
-
-  /*
-    When running from build dir, a full LILYPOND_PREFIX is set-up at
-
-        $(OUTBASE)/share/lilypond/TOPLEVEL_VERSION
-
-     This historical hack will allow the shorthand
-
-        LILYPONDPREFIX=out lily/out/lilypond ...
-
-  */
-  
-  struct stat statbuf;
-  String build_prefix = prefix_directory + "/share/lilypond/" TOPLEVEL_VERSION;
-  if (stat (build_prefix.to_str0 (), &statbuf) == 0)
-    prefix_directory = build_prefix;
-
-  
-  /* Adding mf/out make lilypond unchanged source directory, when setting
-     LILYPONDPREFIX to lilypond-x.y.z */
-  char *suffixes[] = {"ly", "ps", "scm", 0 };
-
-  
-  Array<String> dirs;
-  for (char **s = suffixes; *s; s++)
-    {
-      String path = prefix_directory + to_string ('/') + String (*s);
-      dirs.push (path);
-    }
-
-
-  dirs.push (prefix_directory + "/fonts/otf/");
-  dirs.push (prefix_directory + "/fonts/type1/");
-  dirs.push (prefix_directory + "/fonts/svg/");
-  
-  for (int i = 0; i < dirs.size (); i++)
-    global_path.prepend (dirs[i]);
-}
-
 static void
 prepend_load_path (String dir)
 {
@@ -610,8 +387,6 @@ main_with_guile (void *, int, char **)
 
   ly_c_init_guile ();
   call_constructors ();
-  ly_set_option (ly_symbol2scm ("verbose"), scm_from_bool (be_verbose_global));
-
   init_global_tweak_registry ();
   init_fontconfig ();
 
@@ -827,6 +602,9 @@ setup_guile_env ()
 int
 main (int argc, char **argv)
 {
+  if (getenv ("LILYPOND_VERBOSE"))
+    be_verbose_global = true;
+
   setup_localisation ();
   parse_argv (argc, argv);
   if (isatty (STDIN_FILENO))