* dwarfout.c (field_byte_offset): Correctly compute the object's
[official-gcc.git] / gcc / prefix.c
blob8bf5696f07fa07df86ed72c061bc6c966009aac8
1 /* Utility to update paths from internal to external forms.
2 Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* This file contains routines to update a path, both to canonicalize
22 the directory format and to handle any prefix translation.
24 This file must be compiled with -DPREFIX= to specify the "prefix"
25 value used by configure. If a filename does not begin with this
26 prefix, it will not be affected other than by directory canonicalization.
28 Each caller of 'update_path' may specify both a filename and
29 a translation prefix and consist of the name of the package that contains
30 the file ("@GCC", "@BINUTIL", "@GNU", etc).
32 If the prefix is not specified, the filename will only undergo
33 directory canonicalization.
35 If it is specified, the string given by PREFIX will be replaced
36 by the specified prefix (with a '@' in front unless the prefix begins
37 with a '$') and further translation will be done as follows
38 until none of the two conditions below are met:
40 1) If the filename begins with '@', the string between the '@' and
41 the end of the name or the first '/' or directory separator will
42 be considered a "key" and looked up as follows:
44 -- If this is a Win32 OS, then the Registry will be examined for
45 an entry of "key" in
47 HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\
49 if found, that value will be used.
51 -- If not found (or not a Win32 OS), the environment variable
52 key_ROOT (the value of "key" concatenated with the constant "_ROOT")
53 is tried. If that fails, then PREFIX (see above) is used.
55 2) If the filename begins with a '$', the rest of the string up
56 to the end or the first '/' or directory separator will be used
57 as an environment variable, whose value will be returned.
59 Once all this is done, any '/' will be converted to DIR_SEPARATOR,
60 if they are different.
62 NOTE: using resolve_keyed_path under Win32 requires linking with
63 advapi32.dll. */
66 #include "config.h"
67 #include "system.h"
68 #ifdef _WIN32
69 #include <windows.h>
70 #endif
71 #include "prefix.h"
73 static const char *std_prefix = PREFIX;
75 static const char *get_key_value PROTO((char *));
76 static const char *translate_name PROTO((const char *));
77 static char *save_string PROTO((const char *, int));
79 #ifdef _WIN32
80 static char *lookup_key PROTO((char *));
81 static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE;
82 #endif
84 #ifndef DIR_SEPARATOR
85 # define IS_DIR_SEPARATOR(ch) ((ch) == '/')
86 #else /* DIR_SEPARATOR */
87 # ifndef DIR_SEPARATOR_2
88 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
89 # else /* DIR_SEPARATOR && DIR_SEPARATOR_2 */
90 # define IS_DIR_SEPARATOR(ch) \
91 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
92 # endif /* DIR_SEPARATOR && DIR_SEPARATOR_2 */
93 #endif /* DIR_SEPARATOR */
95 /* Given KEY, as above, return its value. */
97 static const char *
98 get_key_value (key)
99 char *key;
101 const char *prefix = 0;
102 char *temp = 0;
104 #ifdef _WIN32
105 prefix = lookup_key (key);
106 #endif
108 if (prefix == 0)
109 prefix = getenv (temp = concat (key, "_ROOT", NULL_PTR));
111 if (prefix == 0)
112 prefix = std_prefix;
114 if (temp)
115 free (temp);
117 return prefix;
120 /* Concatenate a sequence of strings, returning the result.
122 This function is based on the one in libiberty. */
124 char *
125 concat VPROTO((const char *first, ...))
127 register int length;
128 register char *newstr;
129 register char *end;
130 register const char *arg;
131 va_list args;
132 #ifndef ANSI_PROTOTYPES
133 const char *first;
134 #endif
136 /* First compute the size of the result and get sufficient memory. */
138 VA_START (args, first);
139 #ifndef ANSI_PROTOTYPES
140 first = va_arg (args, const char *);
141 #endif
143 arg = first;
144 length = 0;
146 while (arg != 0)
148 length += strlen (arg);
149 arg = va_arg (args, const char *);
152 newstr = (char *) malloc (length + 1);
153 va_end (args);
155 /* Now copy the individual pieces to the result string. */
157 VA_START (args, first);
158 #ifndef ANSI_PROTOTYPES
159 first = va_arg (args, char *);
160 #endif
162 end = newstr;
163 arg = first;
164 while (arg != 0)
166 while (*arg)
167 *end++ = *arg++;
168 arg = va_arg (args, const char *);
170 *end = '\000';
171 va_end (args);
173 return (newstr);
176 /* Return a copy of a string that has been placed in the heap. */
178 static char *
179 save_string (s, len)
180 const char *s;
181 int len;
183 register char *result = xmalloc (len + 1);
185 bcopy (s, result, len);
186 result[len] = 0;
187 return result;
190 #ifdef _WIN32
192 /* Look up "key" in the registry, as above. */
194 static char *
195 lookup_key (key)
196 char *key;
198 char *dst;
199 DWORD size;
200 DWORD type;
201 LONG res;
203 if (reg_key == (HKEY) INVALID_HANDLE_VALUE)
205 res = RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE", 0,
206 KEY_READ, &reg_key);
208 if (res == ERROR_SUCCESS)
209 res = RegOpenKeyExA (reg_key, "Free Software Foundation", 0,
210 KEY_READ, &reg_key);
212 if (res != ERROR_SUCCESS)
214 reg_key = (HKEY) INVALID_HANDLE_VALUE;
215 return 0;
219 size = 32;
220 dst = (char *) malloc (size);
222 res = RegQueryValueExA (reg_key, key, 0, &type, dst, &size);
223 if (res == ERROR_MORE_DATA && type == REG_SZ)
225 dst = (char *) realloc (dst, size);
226 res = RegQueryValueExA (reg_key, key, 0, &type, dst, &size);
229 if (type != REG_SZ || res != ERROR_SUCCESS)
231 free (dst);
232 dst = 0;
235 return dst;
237 #endif
239 /* If NAME starts with a '@' or '$', apply the translation rules above
240 and return a new name. Otherwise, return the given name. */
242 static const char *
243 translate_name (name)
244 const char *name;
246 char code = name[0];
247 char *key;
248 const char *prefix = 0;
249 int keylen;
251 if (code != '@' && code != '$')
252 return name;
254 for (keylen = 0;
255 (name[keylen + 1] != 0 && !IS_DIR_SEPARATOR (name[keylen + 1]));
256 keylen++)
259 key = (char *) alloca (keylen + 1);
260 strncpy (key, &name[1], keylen);
261 key[keylen] = 0;
263 name = &name[keylen + 1];
265 if (code == '@')
267 prefix = get_key_value (key);
268 if (prefix == 0)
269 prefix = std_prefix;
271 else
272 prefix = getenv (key);
274 if (prefix == 0)
275 prefix = PREFIX;
277 /* Remove any trailing directory separator from what we got. */
278 if (IS_DIR_SEPARATOR (prefix[strlen (prefix) - 1]))
280 char * temp = save_string (prefix, strlen (prefix));
281 temp[strlen (temp) - 1] = 0;
282 prefix = temp;
285 return concat (prefix, name, NULL_PTR);
288 /* Update PATH using KEY if PATH starts with PREFIX. */
290 const char *
291 update_path (path, key)
292 const char *path;
293 const char *key;
295 if (! strncmp (path, std_prefix, strlen (std_prefix)) && key != 0)
297 if (key[0] != '$')
298 key = concat ("@", key, NULL_PTR);
300 path = concat (key, &path[strlen (std_prefix)], NULL_PTR);
302 while (path[0] == '@' || path[0] == '$')
303 path = translate_name (path);
306 #ifdef DIR_SEPARATOR_2
307 /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR. */
308 if (DIR_SEPARATOR != DIR_SEPARATOR_2)
310 int i;
311 int len = strlen (path);
312 char *new_path = save_string (path, len);
313 for (i = 0; i < len; i++)
314 if (new_path[i] == DIR_SEPARATOR_2)
315 new_path[i] = DIR_SEPARATOR;
316 path = new_path;
318 #endif
320 #if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
321 if (DIR_SEPARATOR != '/')
323 int i;
324 int len = strlen (path);
325 char *new_path = save_string (path, len);
327 for (i = 0; i < len; i++)
328 if (new_path[i] == '/')
329 new_path[i] = DIR_SEPARATOR;
331 path = new_path;
333 #endif
335 return path;
338 /* Reset the standard prefix */
339 void
340 set_std_prefix (prefix, len)
341 const char *prefix;
342 int len;
344 std_prefix = save_string (prefix, len);