1 /* Utility to update paths from internal to external forms.
2 Copyright (C) 1997, 1998, 1999, 2000 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
47 HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>
49 if found, that value will be used. <KEY> defaults to GCC version
50 string, but can be overridden at configuration time.
52 -- If not found (or not a Win32 OS), the environment variable
53 key_ROOT (the value of "key" concatenated with the constant "_ROOT")
54 is tried. If that fails, then PREFIX (see above) is used.
56 2) If the filename begins with a '$', the rest of the string up
57 to the end or the first '/' or directory separator will be used
58 as an environment variable, whose value will be returned.
60 Once all this is done, any '/' will be converted to DIR_SEPARATOR,
61 if they are different.
63 NOTE: using resolve_keyed_path under Win32 requires linking with
69 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
74 static const char *std_prefix
= PREFIX
;
76 static const char *get_key_value
PARAMS ((char *));
77 static const char *translate_name
PARAMS ((const char *));
78 static char *save_string
PARAMS ((const char *, int));
80 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
81 static char *lookup_key
PARAMS ((char *));
82 static HKEY reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
85 /* Given KEY, as above, return its value. */
91 const char *prefix
= 0;
94 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
95 prefix
= lookup_key (key
);
99 prefix
= getenv (temp
= concat (key
, "_ROOT", NULL_PTR
));
110 /* Concatenate a sequence of strings, returning the result.
112 This function is based on the one in libiberty. */
115 concat
VPARAMS ((const char *first
, ...))
118 register char *newstr
;
120 register const char *arg
;
122 #ifndef ANSI_PROTOTYPES
126 /* First compute the size of the result and get sufficient memory. */
128 VA_START (args
, first
);
129 #ifndef ANSI_PROTOTYPES
130 first
= va_arg (args
, const char *);
138 length
+= strlen (arg
);
139 arg
= va_arg (args
, const char *);
142 newstr
= (char *) xmalloc (length
+ 1);
145 /* Now copy the individual pieces to the result string. */
147 VA_START (args
, first
);
148 #ifndef ANSI_PROTOTYPES
149 first
= va_arg (args
, char *);
158 arg
= va_arg (args
, const char *);
166 /* Return a copy of a string that has been placed in the heap. */
173 register char *result
= xmalloc (len
+ 1);
175 memcpy (result
, s
, len
);
180 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
182 /* Look up "key" in the registry, as above. */
193 if (reg_key
== (HKEY
) INVALID_HANDLE_VALUE
)
195 res
= RegOpenKeyExA (HKEY_LOCAL_MACHINE
, "SOFTWARE", 0,
198 if (res
== ERROR_SUCCESS
)
199 res
= RegOpenKeyExA (reg_key
, "Free Software Foundation", 0,
202 if (res
== ERROR_SUCCESS
)
203 res
= RegOpenKeyExA (reg_key
, WIN32_REGISTRY_KEY
, 0,
206 if (res
!= ERROR_SUCCESS
)
208 reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
214 dst
= (char *) xmalloc (size
);
216 res
= RegQueryValueExA (reg_key
, key
, 0, &type
, dst
, &size
);
217 if (res
== ERROR_MORE_DATA
&& type
== REG_SZ
)
219 dst
= (char *) xrealloc (dst
, size
);
220 res
= RegQueryValueExA (reg_key
, key
, 0, &type
, dst
, &size
);
223 if (type
!= REG_SZ
|| res
!= ERROR_SUCCESS
)
233 /* If NAME starts with a '@' or '$', apply the translation rules above
234 and return a new name. Otherwise, return the given name. */
237 translate_name (name
)
242 const char *prefix
= 0;
245 if (code
!= '@' && code
!= '$')
249 (name
[keylen
+ 1] != 0 && !IS_DIR_SEPARATOR (name
[keylen
+ 1]));
253 key
= (char *) alloca (keylen
+ 1);
254 strncpy (key
, &name
[1], keylen
);
257 name
= &name
[keylen
+ 1];
261 prefix
= get_key_value (key
);
266 prefix
= getenv (key
);
271 /* We used to strip trailing DIR_SEPARATORs here, but that can
272 sometimes yield a result with no separator when one was coded
273 and intended by the user, causing two path components to run
276 return concat (prefix
, name
, NULL_PTR
);
279 /* Update PATH using KEY if PATH starts with PREFIX. */
282 update_path (path
, key
)
286 if (! strncmp (path
, std_prefix
, strlen (std_prefix
)) && key
!= 0)
289 key
= concat ("@", key
, NULL_PTR
);
291 path
= concat (key
, &path
[strlen (std_prefix
)], NULL_PTR
);
293 while (path
[0] == '@' || path
[0] == '$')
294 path
= translate_name (path
);
297 #ifdef UPDATE_PATH_HOST_CANONICALIZE
298 /* Perform host dependant canonicalization when needed. */
299 UPDATE_PATH_HOST_CANONICALIZE (path
, key
);
302 #ifdef DIR_SEPARATOR_2
303 /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR. */
304 if (DIR_SEPARATOR
!= DIR_SEPARATOR_2
)
306 char *new_path
= xstrdup (path
);
309 if (*new_path
== DIR_SEPARATOR_2
)
310 *new_path
= DIR_SEPARATOR
;
311 } while (*new_path
++);
315 #if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
316 if (DIR_SEPARATOR
!= '/')
318 char *new_path
= xstrdup (path
);
321 if (*new_path
== '/')
322 *new_path
= DIR_SEPARATOR
;
323 } while (*new_path
++);
330 /* Reset the standard prefix */
332 set_std_prefix (prefix
, len
)
336 std_prefix
= save_string (prefix
, len
);