]> git.donarmstrong.com Git - lilypond.git/blob - lily/relocate.cc
* lily/relocate.cc (framework_relocation): New function,
[lilypond.git] / lily / relocate.cc
1 /*
2   relocate.cc -- implement relocation based on argv0
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #include "relocate.hh"
11
12 #include "config.hh"
13
14 #include <sys/stat.h>
15 #include <unistd.h>
16
17 #if HAVE_GETTEXT
18 #include <libintl.h>
19 #endif
20
21 #include "file-name.hh"
22 #include "file-path.hh"
23 #include "lily-guile.hh"
24 #include "lily-version.hh"
25 #include "main.hh"
26 #include "version.hh"
27 #include "warn.hh"
28
29
30 int
31 sane_putenv (char const *key, String value, bool overwrite)
32 {
33   if (overwrite || !getenv (key))
34     {
35       String combine = String (key) + "=" + value;
36       char *s = strdup (combine.to_str0 ());
37       return putenv (s);
38     }
39   
40   return -1;
41 }
42
43 static int
44 set_env_file (char const *key, String value)
45 {
46   if (is_file (value))
47     return sane_putenv (key, value, false);
48   else if (be_verbose_global)
49     warning (_f ("no such file: %s for %s", value, key));
50   return -1;
51 }
52
53 static int
54 set_env_dir (char const *key, String value)
55 {
56   if (is_dir (value))
57     return sane_putenv (key, value, false);
58   else if (be_verbose_global)
59     warning (_f ("no such directory: %s for %s", value, key));
60   return -1;
61 }
62
63 static int
64 prepend_env_path (char const *key, String value)
65 {
66   if (is_dir (value))
67     {
68       if (be_verbose_global)
69         progress_indication (_f ("%s=%s\n", key, value.to_str0 ())); 
70
71       if (char const *cur = getenv (key))
72         value += to_string (PATHSEP) + cur;
73
74       return sane_putenv (key, value.to_str0 (), true);
75     }
76   else if (be_verbose_global)
77     warning (_f ("no such directory: %s for %s", value, key));
78   return -1;
79 }
80
81 String
82 dir_name (String const file_name)
83 {
84   String s = file_name;
85   s.substitute ('\\', '/');
86   int n = s.length ();
87   if (n && s[n - 1] == '/')
88     s[n - 1] = 0;
89   s = s.left_string (s.index_last ('/'));
90   return s;
91 }
92
93 #ifdef __MINGW32__
94 #include <winbase.h>
95 #endif
96
97 void
98 prefix_relocation (String prefix)
99 {
100   if (be_verbose_global)
101     warning (_f ("Relocation: compile prefix=%s, new prefix=%s",
102                  prefix_directory,
103                  prefix.to_str0 ()));
104   
105   String bindir = prefix + "/bin";
106   String datadir = prefix + "/share";
107   String localedir = datadir + "/locale";
108   String lilypond_datadir = datadir + "/lilypond/" TOPLEVEL_VERSION;
109
110   if (is_dir (lilypond_datadir))
111     prefix_directory = lilypond_datadir;
112
113 #if HAVE_GETTEXT
114   if (is_dir (localedir))
115     bindtextdomain ("lilypond", localedir.to_str0 ());
116 #endif
117
118   prepend_env_path ("PATH", bindir);
119 }
120
121 void
122 framework_relocation (String prefix)
123 {
124   if (be_verbose_global)
125     warning (_f ("Relocation: framework_prefix=%s", prefix));
126
127   String bindir = prefix + "/bin";
128   String datadir = prefix + "/share";
129   String libdir = prefix + "/lib";
130   String sysconfdir = prefix + "/etc";
131
132   /* need otherwise dynamic .so's aren't found.   */
133   prepend_env_path ("DYLD_LIBRARY_PATH", libdir);
134   
135   set_env_file ("FONTCONFIG_FILE", sysconfdir + "/fonts/fonts.conf");
136   set_env_dir ("FONTCONFIG_PATH", sysconfdir + "/fonts");
137
138 #ifdef __MINGW32__
139   char font_dir[PATH_MAX];
140   ExpandEnvironmentStrings ("%windir%/fonts", font_dir, sizeof (font_dir));
141   prepend_env_path ("GS_FONTPATH", font_dir);
142 #endif
143
144   /* FIXME: *cough* 8.15 *cough* */
145   prepend_env_path ("GS_FONTPATH", datadir + "/ghostscript/8.15/fonts");
146   prepend_env_path ("GS_LIB", datadir + "/ghostscript/8.15/Resource");
147   prepend_env_path ("GS_LIB", datadir + "/ghostscript/8.15/lib");
148
149   prepend_env_path ("GS_FONTPATH", datadir + "/gs/fonts");
150   prepend_env_path ("GS_LIB", datadir + "/gs/Resource");
151   prepend_env_path ("GS_LIB", datadir + "/gs/lib");
152
153   prepend_env_path ("GUILE_LOAD_PATH", datadir
154                     + to_string ("/guile/%d.%d",
155                                  SCM_MAJOR_VERSION, SCM_MINOR_VERSION));
156
157   set_env_file ("PANGO_RC_FILE", sysconfdir + "/pango/pangorc");
158   set_env_dir ("PANGO_PREFIX", prefix);
159
160   prepend_env_path ("PATH", bindir);
161 }
162
163 String
164 get_working_directory ()
165 {
166   char cwd[PATH_MAX];
167   getcwd (cwd, PATH_MAX);
168
169   return String (cwd);
170 }
171
172 void
173 setup_paths (char const *argv0_ptr)
174 {
175   File_name argv0_filename (argv0_ptr);
176   
177   prefix_directory = LILYPOND_DATADIR;
178   if (relocate_binary
179       && getenv ("LILYPOND_RELOCATE_PREFIX"))
180     {
181       String prefix = getenv ("LILYPOND_RELOCATE_PREFIX");
182 #ifdef __MINGW32__
183       /* Normalize file name.  */
184       prefix = File_name (prefix).to_string ().get_copy_str0 ();
185 #endif /* __MINGW32__ */
186       prefix_relocation (prefix);
187       String bindir = prefix + "/bin";
188       framework_relocation (bindir + "/" FRAMEWORKDIR);
189     }
190   else if (relocate_binary)
191     {
192       String argv0_abs;
193       if (argv0_filename.is_absolute ())
194         argv0_abs = argv0_filename.to_string ();
195       else if (argv0_filename.dir_.length ())
196         argv0_abs = get_working_directory ()
197           + "/" + String (argv0_filename.to_string ());
198       else
199         {
200           /* Find absolute ARGV0 name, using PATH.  */
201           File_path path;
202           path.parse_path (getenv ("PATH"));
203       
204 #ifndef __MINGW32__
205           String argv0_abs = path.find (argv0_filename.to_string ());
206 #else /* __MINGW32__ */
207           char const *ext[] = {"exe", "", 0 };
208           String argv0_abs = path.find (argv0_filename.to_string (), ext);
209 #endif /* __MINGW32__ */
210
211           if (argv0_abs.is_empty ())
212             programming_error ("can't find absolute argv0.");
213         }
214
215       String bindir = dir_name (argv0_abs);
216       String argv0_prefix = dir_name (bindir);
217       String compile_prefix = dir_name (dir_name (dir_name (prefix_directory)));
218       if (argv0_prefix != compile_prefix)
219         prefix_relocation (argv0_prefix);
220       if (argv0_prefix != compile_prefix || String (FRAMEWORKDIR) != "..")
221         framework_relocation (bindir + "/" FRAMEWORKDIR);
222     }
223
224   /* FIXME: use LILYPOND_DATADIR.  */
225   if (char const *env = getenv ("LILYPONDPREFIX"))
226     {
227 #ifdef __MINGW32__
228       /* Normalize file name.  */
229       env = File_name (env).to_string ().get_copy_str0 ();
230 #endif
231       prefix_directory = env;
232     }
233
234   global_path.append ("");
235
236
237   /*
238     When running from build dir, a full LILYPOND_PREFIX is set-up at
239
240         $(OUTBASE)/share/lilypond/TOPLEVEL_VERSION
241
242      This historical hack will allow the shorthand
243
244         LILYPONDPREFIX=out lily/out/lilypond ...
245
246   */
247   
248   struct stat statbuf;
249   String build_prefix = prefix_directory + "/share/lilypond/" TOPLEVEL_VERSION;
250   if (stat (build_prefix.to_str0 (), &statbuf) == 0)
251     prefix_directory = build_prefix;
252
253   
254   /* Adding mf/out make lilypond unchanged source directory, when setting
255      LILYPONDPREFIX to lilypond-x.y.z */
256   char *suffixes[] = {"ly", "ps", "scm", 0 };
257
258   
259   Array<String> dirs;
260   for (char **s = suffixes; *s; s++)
261     {
262       String path = prefix_directory + to_string ('/') + String (*s);
263       dirs.push (path);
264     }
265
266
267   dirs.push (prefix_directory + "/fonts/otf/");
268   dirs.push (prefix_directory + "/fonts/type1/");
269   dirs.push (prefix_directory + "/fonts/svg/");
270   
271   for (int i = 0; i < dirs.size (); i++)
272     global_path.prepend (dirs[i]);
273 }