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\
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
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));
80 static char *lookup_key
PROTO((char *));
81 static HKEY reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
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. */
101 const char *prefix
= 0;
105 prefix
= lookup_key (key
);
109 prefix
= getenv (temp
= concat (key
, "_ROOT", NULL_PTR
));
120 /* Concatenate a sequence of strings, returning the result.
122 This function is based on the one in libiberty. */
125 concat
VPROTO((const char *first
, ...))
128 register char *newstr
;
130 register const char *arg
;
132 #ifndef ANSI_PROTOTYPES
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 *);
148 length
+= strlen (arg
);
149 arg
= va_arg (args
, const char *);
152 newstr
= (char *) malloc (length
+ 1);
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 *);
168 arg
= va_arg (args
, const char *);
176 /* Return a copy of a string that has been placed in the heap. */
183 register char *result
= xmalloc (len
+ 1);
185 bcopy (s
, result
, len
);
192 /* Look up "key" in the registry, as above. */
203 if (reg_key
== (HKEY
) INVALID_HANDLE_VALUE
)
205 res
= RegOpenKeyExA (HKEY_LOCAL_MACHINE
, "SOFTWARE", 0,
208 if (res
== ERROR_SUCCESS
)
209 res
= RegOpenKeyExA (reg_key
, "Free Software Foundation", 0,
212 if (res
!= ERROR_SUCCESS
)
214 reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
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
)
239 /* If NAME starts with a '@' or '$', apply the translation rules above
240 and return a new name. Otherwise, return the given name. */
243 translate_name (name
)
248 const char *prefix
= 0;
251 if (code
!= '@' && code
!= '$')
255 (name
[keylen
+ 1] != 0 && !IS_DIR_SEPARATOR (name
[keylen
+ 1]));
259 key
= (char *) alloca (keylen
+ 1);
260 strncpy (key
, &name
[1], keylen
);
263 name
= &name
[keylen
+ 1];
267 prefix
= get_key_value (key
);
272 prefix
= getenv (key
);
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;
285 return concat (prefix
, name
, NULL_PTR
);
288 /* Update PATH using KEY if PATH starts with PREFIX. */
291 update_path (path
, key
)
295 if (! strncmp (path
, std_prefix
, strlen (std_prefix
)) && 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
)
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
;
320 #if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
321 if (DIR_SEPARATOR
!= '/')
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
;
338 /* Reset the standard prefix */
340 set_std_prefix (prefix
, len
)
344 std_prefix
= save_string (prefix
, len
);