Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / cpp / gcc / prefix.cc
blobb85cff9df73d938bd653b7fe7e8b517d7902a96d
1 /* Utility to update paths from internal to external forms.
2 Copyright (C) 1997-2022 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Library General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or (at
9 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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains routines to update a path, both to canonicalize
21 the directory format and to handle any prefix translation.
23 This file must be compiled with -DPREFIX= to specify the "prefix"
24 value used by configure. If a filename does not begin with this
25 prefix, it will not be affected other than by directory canonicalization.
27 Each caller of 'update_path' may specify both a filename and
28 a translation prefix and consist of the name of the package that contains
29 the file ("@GCC", "@BINUTIL", "@GNU", etc).
31 If the prefix is not specified, the filename will only undergo
32 directory canonicalization.
34 If it is specified, the string given by PREFIX will be replaced
35 by the specified prefix (with a '@' in front unless the prefix begins
36 with a '$') and further translation will be done as follows
37 until none of the two conditions below are met:
39 1) If the filename begins with '@', the string between the '@' and
40 the end of the name or the first '/' or directory separator will
41 be considered a "key" and looked up as follows:
43 -- If this is a Win32 OS, then the Registry will be examined for
44 an entry of "key" in
46 HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>
48 if found, that value will be used. <KEY> defaults to GCC version
49 string, but can be overridden at configuration time.
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. */
67 #include "config.h"
68 #include "system.h"
69 #include "coretypes.h"
70 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
71 #define WIN32_LEAN_AND_MEAN
72 #include <windows.h>
73 #endif
74 #include "prefix.h"
75 #include "common/common-target.h"
77 #define untested() { fprintf (stderr, "@@#\n@@@:%s:%d:%s\n", __FILE__, __LINE__, __func__); }
79 static const char *std_prefix = PREFIX;
81 static const char *get_key_value (char *);
82 static char *translate_name (char *);
83 static char *save_string (const char *, int);
84 static void tr (char *, int, int);
86 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
87 static char *lookup_key (char *);
88 static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE;
89 #endif
91 /* Given KEY, as above, return its value. */
93 static const char *
94 get_key_value (char *key)
96 const char *prefix = 0;
97 char *temp = 0;
99 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
100 prefix = lookup_key (key);
101 #endif
103 if (prefix == 0)
104 prefix = getenv (temp = concat (key, "_ROOT", NULL));
106 if (prefix == 0)
107 prefix = std_prefix;
109 free (temp);
111 return prefix;
114 /* Return a copy of a string that has been placed in the heap. */
116 static char *
117 save_string (const char *s, int len)
119 char *result = XNEWVEC (char, len + 1);
121 memcpy (result, s, len);
122 result[len] = 0;
123 return result;
126 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
128 #ifndef WIN32_REGISTRY_KEY
129 # define WIN32_REGISTRY_KEY BASEVER
130 #endif
132 /* Look up "key" in the registry, as above. */
134 static char *
135 lookup_key (char *key)
137 char *dst;
138 DWORD size;
139 DWORD type;
140 LONG res;
142 if (reg_key == (HKEY) INVALID_HANDLE_VALUE)
144 res = RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE", 0,
145 KEY_READ, &reg_key);
147 if (res == ERROR_SUCCESS)
148 res = RegOpenKeyExA (reg_key, "Free Software Foundation", 0,
149 KEY_READ, &reg_key);
151 if (res == ERROR_SUCCESS)
152 res = RegOpenKeyExA (reg_key, WIN32_REGISTRY_KEY, 0,
153 KEY_READ, &reg_key);
155 if (res != ERROR_SUCCESS)
157 reg_key = (HKEY) INVALID_HANDLE_VALUE;
158 return 0;
162 size = 32;
163 dst = XNEWVEC (char, size);
165 res = RegQueryValueExA (reg_key, key, 0, &type, (LPBYTE) dst, &size);
166 if (res == ERROR_MORE_DATA && type == REG_SZ)
168 dst = XRESIZEVEC (char, dst, size);
169 res = RegQueryValueExA (reg_key, key, 0, &type, (LPBYTE) dst, &size);
172 if (type != REG_SZ || res != ERROR_SUCCESS)
174 free (dst);
175 dst = 0;
178 return dst;
180 #endif
182 /* If NAME, a malloc-ed string, starts with a '@' or '$', apply the
183 translation rules above and return a newly malloc-ed name.
184 Otherwise, return the given name. */
186 static char *
187 translate_name (char *name)
189 char code;
190 char *key, *old_name;
191 const char *prefix;
192 int keylen;
194 for (;;)
196 code = name[0];
197 if (code != '@' && code != '$')
198 break;
200 for (keylen = 0;
201 (name[keylen + 1] != 0 && !IS_DIR_SEPARATOR (name[keylen + 1]));
202 keylen++)
205 key = (char *) alloca (keylen + 1);
206 memcpy (key, &name[1], keylen);
207 key[keylen] = 0;
209 if (code == '@')
211 prefix = get_key_value (key);
212 if (prefix == 0)
213 prefix = std_prefix;
215 else
216 prefix = getenv (key);
218 if (prefix == 0)
219 prefix = PREFIX;
221 /* We used to strip trailing DIR_SEPARATORs here, but that can
222 sometimes yield a result with no separator when one was coded
223 and intended by the user, causing two path components to run
224 together. */
226 old_name = name;
227 name = concat (prefix, &name[keylen + 1], NULL);
228 free (old_name);
231 return name;
234 /* In a NUL-terminated STRING, replace character C1 with C2 in-place. */
235 static void
236 tr (char *string, int c1, int c2)
240 if (*string == c1)
241 *string = c2;
243 while (*string++);
246 /* Update PATH using KEY if PATH starts with PREFIX as a directory.
247 The returned string is always malloc-ed, and the caller is
248 responsible for freeing it. */
250 char *
251 update_path (const char *path, const char *key)
253 char *result, *p;
254 const int len = strlen (std_prefix);
256 if (! filename_ncmp (path, std_prefix, len)
257 && (IS_DIR_SEPARATOR (path[len])
258 || path[len] == '\0')
259 && key != 0)
261 bool free_key = false;
263 if (key[0] != '$')
265 key = concat ("@", key, NULL);
266 free_key = true;
269 result = concat (key, &path[len], NULL);
270 if (free_key)
271 free (CONST_CAST (char *, key));
272 result = translate_name (result);
274 else
275 result = xstrdup (path);
277 p = result;
278 while (1)
280 char *src, *dest;
282 p = strchr (p, '.');
283 if (p == NULL)
284 break;
285 /* Look for `/../' */
286 if (p[1] == '.'
287 && IS_DIR_SEPARATOR (p[2])
288 && (p != result && IS_DIR_SEPARATOR (p[-1])))
290 *p = 0;
291 if (1 // sdcpp !targetm_common.always_strip_dotdot
292 && access (result, X_OK) == 0)
294 *p = '.';
295 break;
297 else
299 /* We can't access the dir, so we won't be able to
300 access dir/.. either. Strip out `dir/../'. If `dir'
301 turns out to be `.', strip one more path component. */
302 dest = p;
305 --dest;
306 while (dest != result && IS_DIR_SEPARATOR (*dest))
307 --dest;
308 while (dest != result && !IS_DIR_SEPARATOR (dest[-1]))
309 --dest;
311 while (dest != result && *dest == '.');
312 /* If we have something like `./..' or `/..', don't
313 strip anything more. */
314 if (*dest == '.' || IS_DIR_SEPARATOR (*dest))
316 *p = '.';
317 break;
319 src = p + 3;
320 while (IS_DIR_SEPARATOR (*src))
321 ++src;
322 p = dest;
323 while ((*dest++ = *src++) != 0)
327 else
328 ++p;
331 #ifdef UPDATE_PATH_HOST_CANONICALIZE
332 /* Perform host dependent canonicalization when needed. */
333 UPDATE_PATH_HOST_CANONICALIZE (result);
334 #endif
336 #ifdef DIR_SEPARATOR_2
337 /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR. */
338 if (DIR_SEPARATOR_2 != DIR_SEPARATOR)
339 tr (result, DIR_SEPARATOR_2, DIR_SEPARATOR);
340 #endif
342 #if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
343 if (DIR_SEPARATOR != '/')
344 tr (result, '/', DIR_SEPARATOR);
345 #endif
347 return result;
350 /* Reset the standard prefix. */
351 void
352 set_std_prefix (const char *prefix, int len)
354 std_prefix = save_string (prefix, len);