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
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
PROTO((char *));
77 static const char *translate_name
PROTO((const char *));
78 static char *save_string
PROTO((const char *, int));
80 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
81 static char *lookup_key
PROTO((char *));
82 static HKEY reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
86 # define IS_DIR_SEPARATOR(ch) ((ch) == '/')
87 #else /* DIR_SEPARATOR */
88 # ifndef DIR_SEPARATOR_2
89 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
90 # else /* DIR_SEPARATOR && DIR_SEPARATOR_2 */
91 # define IS_DIR_SEPARATOR(ch) \
92 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
93 # endif /* DIR_SEPARATOR && DIR_SEPARATOR_2 */
94 #endif /* DIR_SEPARATOR */
96 /* Given KEY, as above, return its value. */
102 const char *prefix
= 0;
105 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
106 prefix
= lookup_key (key
);
110 prefix
= getenv (temp
= concat (key
, "_ROOT", NULL_PTR
));
121 /* Concatenate a sequence of strings, returning the result.
123 This function is based on the one in libiberty. */
126 concat
VPROTO((const char *first
, ...))
129 register char *newstr
;
131 register const char *arg
;
133 #ifndef ANSI_PROTOTYPES
137 /* First compute the size of the result and get sufficient memory. */
139 VA_START (args
, first
);
140 #ifndef ANSI_PROTOTYPES
141 first
= va_arg (args
, const char *);
149 length
+= strlen (arg
);
150 arg
= va_arg (args
, const char *);
153 newstr
= (char *) malloc (length
+ 1);
156 /* Now copy the individual pieces to the result string. */
158 VA_START (args
, first
);
159 #ifndef ANSI_PROTOTYPES
160 first
= va_arg (args
, char *);
169 arg
= va_arg (args
, const char *);
177 /* Return a copy of a string that has been placed in the heap. */
184 register char *result
= xmalloc (len
+ 1);
186 bcopy (s
, result
, len
);
191 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
193 /* Look up "key" in the registry, as above. */
204 if (reg_key
== (HKEY
) INVALID_HANDLE_VALUE
)
206 res
= RegOpenKeyExA (HKEY_LOCAL_MACHINE
, "SOFTWARE", 0,
209 if (res
== ERROR_SUCCESS
)
210 res
= RegOpenKeyExA (reg_key
, "Free Software Foundation", 0,
213 if (res
== ERROR_SUCCESS
)
214 res
= RegOpenKeyExA (reg_key
, WIN32_REGISTRY_KEY
, 0,
217 if (res
!= ERROR_SUCCESS
)
219 reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
225 dst
= (char *) malloc (size
);
227 res
= RegQueryValueExA (reg_key
, key
, 0, &type
, dst
, &size
);
228 if (res
== ERROR_MORE_DATA
&& type
== REG_SZ
)
230 dst
= (char *) realloc (dst
, size
);
231 res
= RegQueryValueExA (reg_key
, key
, 0, &type
, dst
, &size
);
234 if (type
!= REG_SZ
|| res
!= ERROR_SUCCESS
)
244 /* If NAME starts with a '@' or '$', apply the translation rules above
245 and return a new name. Otherwise, return the given name. */
248 translate_name (name
)
253 const char *prefix
= 0;
256 if (code
!= '@' && code
!= '$')
260 (name
[keylen
+ 1] != 0 && !IS_DIR_SEPARATOR (name
[keylen
+ 1]));
264 key
= (char *) alloca (keylen
+ 1);
265 strncpy (key
, &name
[1], keylen
);
268 name
= &name
[keylen
+ 1];
272 prefix
= get_key_value (key
);
277 prefix
= getenv (key
);
282 /* Remove any trailing directory separator from what we got. First check
283 for an empty prefix. */
284 if (prefix
[0] && IS_DIR_SEPARATOR (prefix
[strlen (prefix
) - 1]))
286 char * temp
= xstrdup (prefix
);
287 temp
[strlen (temp
) - 1] = 0;
291 return concat (prefix
, name
, NULL_PTR
);
294 /* Update PATH using KEY if PATH starts with PREFIX. */
297 update_path (path
, key
)
301 if (! strncmp (path
, std_prefix
, strlen (std_prefix
)) && key
!= 0)
304 key
= concat ("@", key
, NULL_PTR
);
306 path
= concat (key
, &path
[strlen (std_prefix
)], NULL_PTR
);
308 while (path
[0] == '@' || path
[0] == '$')
309 path
= translate_name (path
);
312 #ifdef DIR_SEPARATOR_2
313 /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR. */
314 if (DIR_SEPARATOR
!= DIR_SEPARATOR_2
)
316 char *new_path
= xstrdup (path
);
319 if (*new_path
== DIR_SEPARATOR_2
)
320 *new_path
= DIR_SEPARATOR
;
321 } while (*new_path
++);
325 #if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
326 if (DIR_SEPARATOR
!= '/')
328 char *new_path
= xstrdup (path
);
331 if (*new_path
== '/')
332 *new_path
= DIR_SEPARATOR
;
333 } while (*newpath
++);
340 /* Reset the standard prefix */
342 set_std_prefix (prefix
, len
)
346 std_prefix
= save_string (prefix
, len
);