gcc2 snapshot 980502 import
[official-gcc.git] / gcc / prefix.c
blobaa6cf51ed184ac09819c0ba0b6e7745a00989560
1 /* Utility to update paths from internal to external forms.
2 Copyright (C) 1997, 1998 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 "gansidecl.h"
68 #ifdef __STDC__
69 #include <stdarg.h>
70 #else
71 #include <varargs.h>
72 #endif
74 #ifdef _WIN32
75 #include <windows.h>
76 #endif
78 static char *get_key_value PROTO((char *));
79 static char *translate_name PROTO((char *));
80 static char *concat PVPROTO((char *, ...));
81 static char *save_string PROTO((char *, int));
83 #ifdef _WIN32
84 static char *lookup_key PROTO((char *));
85 static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE;
86 #endif
88 extern char *getenv ();
90 /* Given KEY, as above, return its value. */
92 static char *
93 get_key_value (key)
94 char *key;
96 char *prefix = 0;
98 #ifdef _WIN32
99 prefix = lookup_key (key);
100 #endif
102 if (prefix == 0)
103 prefix = getenv (concat (key, "_ROOT", NULL_PTR));
105 return prefix;
108 /* Concatenate a sequence of strings, returning the result.
110 This function is based on the one in libiberty. */
112 static char *
113 concat VPROTO((char *first, ...))
115 register int length;
116 register char *newstr;
117 register char *end;
118 register char *arg;
119 va_list args;
120 #ifndef __STDC__
121 char *first;
122 #endif
124 /* First compute the size of the result and get sufficient memory. */
126 VA_START (args, first);
127 #ifndef __STDC__
128 first = va_arg (args, char *);
129 #endif
131 arg = first;
132 length = 0;
134 while (arg != 0)
136 length += strlen (arg);
137 arg = va_arg (args, char *);
140 newstr = (char *) malloc (length + 1);
141 va_end (args);
143 /* Now copy the individual pieces to the result string. */
145 VA_START (args, first);
146 #ifndef __STDC__
147 first = va_arg (args, char *);
148 #endif
150 end = newstr;
151 arg = first;
152 while (arg != 0)
154 while (*arg)
155 *end++ = *arg++;
156 arg = va_arg (args, char *);
158 *end = '\000';
159 va_end (args);
161 return (newstr);
164 /* Return a copy of a string that has been placed in the heap. */
166 static char *
167 save_string (s, len)
168 char *s;
169 int len;
171 register char *result = (char *) malloc (len + 1);
173 bcopy (s, result, len);
174 result[len] = 0;
175 return result;
178 #ifdef _WIN32
180 /* Look up "key" in the registry, as above. */
182 static char *
183 lookup_key (key)
184 char *key;
186 char *dst;
187 DWORD size;
188 DWORD type;
189 LONG res;
191 if (reg_key == (HKEY) INVALID_HANDLE_VALUE)
193 res = RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE", 0,
194 KEY_READ, &reg_key);
196 if (res == ERROR_SUCCESS)
197 res = RegOpenKeyExA (reg_key, "Free Software Foundation", 0,
198 KEY_READ, &reg_key);
200 if (res != ERROR_SUCCESS)
202 reg_key = (HKEY) INVALID_HANDLE_VALUE;
203 return 0;
207 size = 32;
208 dst = (char *) malloc (size);
210 res = RegQueryValueExA (reg_key, key, 0, &type, dst, &size);
211 if (res == ERROR_MORE_DATA && type == REG_SZ)
213 dst = (char *) realloc (dst, size);
214 res = RegQueryValueExA (reg_key, key, 0, &type, dst, &size);
217 if (type != REG_SZ || res != ERROR_SUCCESS)
219 free (dst);
220 dst = 0;
223 return dst;
225 #endif
227 /* If NAME starts with a '@' or '$', apply the translation rules above
228 and return a new name. Otherwise, return the given name. */
230 static char *
231 translate_name (name)
232 char *name;
234 char code = name[0];
235 char *key, *prefix = 0;
236 int keylen;
238 if (code != '@' && code != '$')
239 return name;
241 for (keylen = 0;
242 (name[keylen + 1] != 0 && name[keylen + 1] != '/'
243 #ifdef DIR_SEPARATOR
244 && name[keylen + 1] != DIR_SEPARATOR
245 #endif
247 keylen++)
250 key = alloca (keylen + 1);
251 strncpy (key, &name[1], keylen);
252 key[keylen] = 0;
254 name = &name[keylen + 1];
256 if (code == '@')
257 prefix = get_key_value (key);
258 else
259 prefix = getenv (key);
261 if (prefix == 0)
262 prefix = PREFIX;
264 /* Remove any trailing directory separator from what we got. */
265 if (prefix[strlen (prefix) - 1] == '/'
266 #ifdef DIR_SEPARATOR
267 || prefix[strlen (prefix) - 1] == DIR_SEPARATOR
268 #endif
271 prefix = save_string (prefix, strlen (prefix));
272 prefix[strlen (prefix) - 1] = 0;
275 return concat (prefix, name, NULL_PTR);
278 /* Update PATH using KEY if PATH starts with PREFIX. */
280 char *
281 update_path (path, key)
282 char *path;
283 char *key;
285 if (! strncmp (path, PREFIX, strlen (PREFIX)) && key != 0)
287 if (key[0] != '$')
288 key = concat ("@", key, NULL_PTR);
290 path = concat (key, &path[strlen (PREFIX)], NULL_PTR);
292 while (path[0] == '@' || path[0] == '$')
293 path = translate_name (path);
296 #ifdef DIR_SEPARATOR
297 if (DIR_SEPARATOR != '/')
299 int i;
300 int len = strlen (path);
302 path = save_string (path, len);
303 for (i = 0; i < len; i++)
304 if (path[i] == '/')
305 path[i] = DIR_SEPARATOR;
307 #endif
309 return path;