2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / java / jcf-path.c
blobeae44c0b1303858d68e5585f8af1dcdbe25c7f63
1 /* Handle CLASSPATH, -classpath, and path searching.
2 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc. */
26 /* Written by Tom Tromey <tromey@cygnus.com>, October 1998. */
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
33 #include <dirent.h>
35 #include "jcf.h"
37 #ifndef DIR_UP
38 #define DIR_UP ".."
39 #endif
43 /* Possible flag values. */
44 #define FLAG_SYSTEM 1
45 #define FLAG_ZIP 2
47 /* We keep linked lists of directory names. A ``directory'' can be
48 either an ordinary directory or a .zip file. */
49 struct entry
51 char *name;
52 int flags;
53 struct entry *next;
56 static void free_entry (struct entry **);
57 static void append_entry (struct entry **, struct entry *);
58 static void add_entry (struct entry **, const char *, int);
59 static void add_path (struct entry **, const char *, int);
61 /* We support several different ways to set the class path.
63 built-in system directory (only libgcj.jar)
64 CLASSPATH environment variable
65 -classpath option overrides $CLASSPATH
66 -CLASSPATH option is a synonym for -classpath (for compatibility)
67 -bootclasspath overrides built-in
68 -extdirs sets the extensions directory path (overrides built-in)
69 -I prepends path to list
71 We implement this by keeping several path lists, and then simply
72 ignoring the ones which are not relevant. */
74 /* This holds all the -I directories. */
75 static struct entry *include_dirs;
77 /* This holds the CLASSPATH environment variable. */
78 static struct entry *classpath_env;
80 /* This holds the -classpath command-line option. */
81 static struct entry *classpath_user;
83 /* This holds the default directories. Some of these will have the
84 "system" flag set. */
85 static struct entry *sys_dirs;
87 /* This holds the extensions path entries. */
88 static struct entry *extensions;
90 /* This is the sealed list. It is just a combination of other lists. */
91 static struct entry *sealed;
93 /* We keep track of the longest path we've seen. */
94 static int longest_path = 0;
98 static void
99 free_entry (struct entry **entp)
101 struct entry *e, *n;
103 for (e = *entp; e; e = n)
105 n = e->next;
106 free (e->name);
107 free (e);
109 *entp = NULL;
112 static void
113 append_entry (struct entry **entp, struct entry *ent)
115 /* It doesn't matter if this is slow, since it is run only at
116 startup, and then infrequently. */
117 struct entry *e;
119 /* Find end of list. */
120 for (e = *entp; e && e->next; e = e->next)
123 if (e)
124 e->next = ent;
125 else
126 *entp = ent;
129 static void
130 add_entry (struct entry **entp, const char *filename, int is_system)
132 int len;
133 struct entry *n;
135 n = ALLOC (sizeof (struct entry));
136 n->flags = is_system ? FLAG_SYSTEM : 0;
137 n->next = NULL;
139 len = strlen (filename);
141 if (len > 4 && (FILENAME_CMP (filename + len - 4, ".zip") == 0
142 || FILENAME_CMP (filename + len - 4, ".jar") == 0))
144 n->flags |= FLAG_ZIP;
145 /* If the user uses -classpath then he'll have to include
146 libgcj.jar in the value. We check for this in a simplistic
147 way. Symlinks will fool this test. This is only used for
148 -MM and -MMD, so it probably isn't terribly important. */
149 if (! FILENAME_CMP (filename, LIBGCJ_ZIP_FILE))
150 n->flags |= FLAG_SYSTEM;
153 /* Note that we add a trailing separator to `.zip' names as well.
154 This is a little hack that lets the searching code in jcf-io.c
155 work more easily. Eww. */
156 if (! IS_DIR_SEPARATOR (filename[len - 1]))
158 char *f2 = alloca (len + 2);
159 strcpy (f2, filename);
160 f2[len] = DIR_SEPARATOR;
161 f2[len + 1] = '\0';
162 n->name = xstrdup (f2);
163 ++len;
165 else
166 n->name = xstrdup (filename);
168 if (len > longest_path)
169 longest_path = len;
171 append_entry (entp, n);
174 static void
175 add_path (struct entry **entp, const char *cp, int is_system)
177 const char *startp, *endp;
179 if (cp)
181 char *buf = alloca (strlen (cp) + 3);
182 startp = endp = cp;
183 while (1)
185 if (! *endp || *endp == PATH_SEPARATOR)
187 if (endp == startp)
189 buf[0] = '.';
190 buf[1] = DIR_SEPARATOR;
191 buf[2] = '\0';
193 else
195 strncpy (buf, startp, endp - startp);
196 buf[endp - startp] = '\0';
198 add_entry (entp, buf, is_system);
199 if (! *endp)
200 break;
201 ++endp;
202 startp = endp;
204 else
205 ++endp;
210 static int init_done = 0;
212 /* Initialize the path module. */
213 void
214 jcf_path_init (void)
216 char *cp;
217 char *try, sep[2];
218 struct stat stat_b;
219 int found = 0, len;
221 if (init_done)
222 return;
223 init_done = 1;
225 sep[0] = DIR_SEPARATOR;
226 sep[1] = '\0';
228 GET_ENVIRONMENT (cp, "GCC_EXEC_PREFIX");
229 if (cp)
231 try = alloca (strlen (cp) + 50);
232 /* The exec prefix can be something like
233 /usr/local/bin/../lib/gcc-lib/. We want to change this
234 into a pointer to the share/java directory. We support two
235 configurations: one where prefix and exec-prefix are the
236 same, and one where exec-prefix is `prefix/SOMETHING'. */
237 strcpy (try, cp);
238 strcat (try, DIR_UP);
239 strcat (try, sep);
240 strcat (try, DIR_UP);
241 strcat (try, sep);
242 len = strlen (try);
244 strcpy (try + len, "share");
245 strcat (try, sep);
246 strcat (try, "java");
247 strcat (try, sep);
248 strcat (try, "libgcj-" DEFAULT_TARGET_VERSION ".jar");
249 if (! stat (try, &stat_b))
251 add_entry (&sys_dirs, try, 1);
252 found = 1;
253 strcpy (&try[strlen (try)
254 - strlen ("libgcj-" DEFAULT_TARGET_VERSION ".jar")],
255 sep);
256 strcat (try, "ext");
257 strcat (try, sep);
258 if (! stat (try, &stat_b))
259 jcf_path_extdirs_arg (try);
261 else
263 strcpy (try + len, DIR_UP);
264 strcat (try, sep);
265 strcat (try, "share");
266 strcat (try, sep);
267 strcat (try, "java");
268 strcat (try, sep);
269 strcat (try, "libgcj-" DEFAULT_TARGET_VERSION ".jar");
270 if (! stat (try, &stat_b))
272 add_entry (&sys_dirs, try, 1);
273 found = 1;
274 strcpy (&try[strlen (try)
275 - strlen ("libgcj-" DEFAULT_TARGET_VERSION ".jar")],
276 sep);
277 strcat (try, "ext");
278 strcat (try, sep);
279 if (! stat (try, &stat_b))
280 jcf_path_extdirs_arg (try);
284 if (! found)
286 /* Desperation: use the installed one. */
287 char *extdirs;
288 add_entry (&sys_dirs, LIBGCJ_ZIP_FILE, 1);
289 extdirs = alloca (strlen (LIBGCJ_ZIP_FILE) + 1);
290 strcpy (extdirs, LIBGCJ_ZIP_FILE);
291 strcpy (&extdirs[strlen (LIBGCJ_ZIP_FILE)
292 - strlen ("libgcj-" DEFAULT_TARGET_VERSION ".jar")],
293 "ext");
294 strcat (extdirs, sep);
295 if (! stat (extdirs, &stat_b))
296 jcf_path_extdirs_arg (extdirs);
299 GET_ENVIRONMENT (cp, "CLASSPATH");
300 add_path (&classpath_env, cp, 0);
303 /* Call this when -classpath is seen on the command line.
304 This overrides only the $CLASSPATH environment variable.
306 void
307 jcf_path_classpath_arg (const char *path)
309 free_entry (&classpath_user);
310 add_path (&classpath_user, path, 0);
313 /* Call this when -bootclasspath is seen on the command line.
315 void
316 jcf_path_bootclasspath_arg (const char *path)
318 free_entry (&sys_dirs);
319 add_path (&sys_dirs, path, 1);
322 /* Call this when -extdirs is seen on the command line.
324 void
325 jcf_path_extdirs_arg (const char *cp)
327 const char *startp, *endp;
329 free_entry (&extensions);
331 if (cp)
333 char *buf = alloca (strlen (cp) + 3);
334 startp = endp = cp;
335 while (1)
337 if (! *endp || *endp == PATH_SEPARATOR)
339 if (endp == startp)
340 return;
342 strncpy (buf, startp, endp - startp);
343 buf[endp - startp] = '\0';
346 DIR *dirp = NULL;
347 int dirname_length = strlen (buf);
349 dirp = opendir (buf);
350 if (dirp == NULL)
351 return;
353 for (;;)
355 struct dirent *direntp = readdir (dirp);
357 if (!direntp)
358 break;
360 if (direntp->d_name[0] != '.')
362 char *name = alloca (dirname_length
363 + strlen (direntp->d_name) + 2);
364 strcpy (name, buf);
365 if (! IS_DIR_SEPARATOR (name[dirname_length-1]))
367 name[dirname_length] = DIR_SEPARATOR;
368 name[dirname_length+1] = 0;
370 strcat (name, direntp->d_name);
371 add_entry (&extensions, name, 0);
376 if (! *endp)
377 break;
378 ++endp;
379 startp = endp;
381 else
382 ++endp;
387 /* Call this when -I is seen on the command line. */
388 void
389 jcf_path_include_arg (const char *path)
391 add_entry (&include_dirs, path, 0);
394 /* We `seal' the path by linking everything into one big list. Then
395 we provide a way to iterate through the sealed list. If PRINT is
396 true then we print the final class path to stderr. */
397 void
398 jcf_path_seal (int print)
400 struct entry *secondary;
402 sealed = include_dirs;
403 include_dirs = NULL;
405 if (classpath_user)
407 secondary = classpath_user;
408 classpath_user = NULL;
410 else
412 if (! classpath_env)
413 add_entry (&classpath_env, ".", 0);
415 secondary = classpath_env;
416 classpath_env = NULL;
420 free_entry (&classpath_user);
421 free_entry (&classpath_env);
423 append_entry (&sealed, secondary);
424 append_entry (&sealed, sys_dirs);
425 append_entry (&sealed, extensions);
426 sys_dirs = NULL;
427 extensions = NULL;
429 if (print)
431 struct entry *ent;
432 fprintf (stderr, "Class path starts here:\n");
433 for (ent = sealed; ent; ent = ent->next)
435 fprintf (stderr, " %s", ent->name);
436 if ((ent->flags & FLAG_SYSTEM))
437 fprintf (stderr, " (system)");
438 if ((ent->flags & FLAG_ZIP))
439 fprintf (stderr, " (zip)");
440 fprintf (stderr, "\n");
445 void *
446 jcf_path_start (void)
448 return (void *) sealed;
451 void *
452 jcf_path_next (void *x)
454 struct entry *ent = (struct entry *) x;
455 return (void *) ent->next;
458 /* We guarantee that the return path will either be a zip file, or it
459 will end with a directory separator. */
460 char *
461 jcf_path_name (void *x)
463 struct entry *ent = (struct entry *) x;
464 return ent->name;
468 jcf_path_is_zipfile (void *x)
470 struct entry *ent = (struct entry *) x;
471 return (ent->flags & FLAG_ZIP);
475 jcf_path_is_system (void *x)
477 struct entry *ent = (struct entry *) x;
478 return (ent->flags & FLAG_SYSTEM);
482 jcf_path_max_len (void)
484 return longest_path;