1 /* Handle CLASSPATH, -classpath, and path searching.
3 Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU CC; see the file COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
20 Java and all Java-based marks are trademarks or registered trademarks
21 of Sun Microsystems, Inc. in the United States and other countries.
22 The Free Software Foundation is independent of Sun Microsystems, Inc. */
24 /* Written by Tom Tromey <tromey@cygnus.com>, October 1998. */
33 /* Some boilerplate that really belongs in a header. */
35 #ifndef GET_ENV_PATH_LIST
36 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
39 /* By default, colon separates directories in a path. */
40 #ifndef PATH_SEPARATOR
41 #define PATH_SEPARATOR ':'
45 #define DIR_SEPARATOR '/'
54 /* Possible flag values. */
58 /* We keep linked lists of directory names. A ``directory'' can be
59 either an ordinary directory or a .zip file. */
67 static void free_entry
PARAMS ((struct entry
**));
68 static void append_entry
PARAMS ((struct entry
**, struct entry
*));
69 static void add_entry
PARAMS ((struct entry
**, const char *, int));
70 static void add_path
PARAMS ((struct entry
**, const char *, int));
72 /* We support several different ways to set the class path.
74 built-in system directory (only libgcj.jar)
75 CLASSPATH environment variable
76 -classpath option overrides $CLASSPATH
77 -CLASSPATH option is a synonym for -classpath (for compatibility)
78 -bootclasspath overrides built-in
79 -extdirs sets the extensions directory path (overrides built-in)
80 -I prepends path to list
82 We implement this by keeping several path lists, and then simply
83 ignoring the ones which are not relevant. */
85 /* This holds all the -I directories. */
86 static struct entry
*include_dirs
;
88 /* This holds the CLASSPATH environment variable. */
89 static struct entry
*classpath_env
;
91 /* This holds the -classpath command-line option. */
92 static struct entry
*classpath_user
;
94 /* This holds the default directories. Some of these will have the
96 static struct entry
*sys_dirs
;
98 /* This holds the extensions path entries. */
99 static struct entry
*extensions
;
101 /* This is the sealed list. It is just a combination of other lists. */
102 static struct entry
*sealed
;
104 /* We keep track of the longest path we've seen. */
105 static int longest_path
= 0;
115 for (e
= *entp
; e
; e
= n
)
125 append_entry (entp
, ent
)
129 /* It doesn't matter if this is slow, since it is run only at
130 startup, and then infrequently. */
133 /* Find end of list. */
134 for (e
= *entp
; e
&& e
->next
; e
= e
->next
)
144 add_entry (entp
, filename
, is_system
)
146 const char *filename
;
152 n
= (struct entry
*) ALLOC (sizeof (struct entry
));
153 n
->flags
= is_system
? FLAG_SYSTEM
: 0;
156 len
= strlen (filename
);
157 if (len
> 4 && (strcmp (filename
+ len
- 4, ".zip") == 0
158 || strcmp (filename
+ len
- 4, ".jar") == 0))
160 n
->flags
|= FLAG_ZIP
;
161 /* If the user uses -classpath then he'll have to include
162 libgcj.jar in the value. We check for this in a simplistic
163 way. Symlinks will fool this test. This is only used for
164 -MM and -MMD, so it probably isn't terribly important. */
165 if (! strcmp (filename
, LIBGCJ_ZIP_FILE
))
166 n
->flags
|= FLAG_SYSTEM
;
169 /* Note that we add a trailing separator to `.zip' names as well.
170 This is a little hack that lets the searching code in jcf-io.c
171 work more easily. Eww. */
172 if (filename
[len
- 1] != '/' && filename
[len
- 1] != DIR_SEPARATOR
)
174 char *f2
= (char *) alloca (len
+ 2);
175 strcpy (f2
, filename
);
176 f2
[len
] = DIR_SEPARATOR
;
178 n
->name
= xstrdup (f2
);
182 n
->name
= xstrdup (filename
);
184 if (len
> longest_path
)
187 append_entry (entp
, n
);
191 add_path (entp
, cp
, is_system
)
196 const char *startp
, *endp
;
200 char *buf
= (char *) alloca (strlen (cp
) + 3);
204 if (! *endp
|| *endp
== PATH_SEPARATOR
)
209 buf
[1] = DIR_SEPARATOR
;
214 strncpy (buf
, startp
, endp
- startp
);
215 buf
[endp
- startp
] = '\0';
217 add_entry (entp
, buf
, is_system
);
229 static int init_done
= 0;
231 /* Initialize the path module. */
244 sep
[0] = DIR_SEPARATOR
;
247 GET_ENV_PATH_LIST (cp
, "GCC_EXEC_PREFIX");
250 try = alloca (strlen (cp
) + 50);
251 /* The exec prefix can be something like
252 /usr/local/bin/../lib/gcc-lib/. We want to change this
253 into a pointer to the share/java directory. We support two
254 configurations: one where prefix and exec-prefix are the
255 same, and one where exec-prefix is `prefix/SOMETHING'. */
257 strcat (try, DIR_UP
);
259 strcat (try, DIR_UP
);
263 strcpy (try + len
, "share");
265 strcat (try, "java");
267 strcat (try, "libgcj-" DEFAULT_TARGET_VERSION
".jar");
268 if (! stat (try, &stat_b
))
270 add_entry (&sys_dirs
, try, 1);
272 strcpy (&try[strlen (try)
273 - strlen ("libgcj-" DEFAULT_TARGET_VERSION
".jar")],
277 if (! stat (try, &stat_b
))
278 jcf_path_extdirs_arg (try);
282 strcpy (try + len
, DIR_UP
);
284 strcat (try, "share");
286 strcat (try, "java");
288 strcat (try, "libgcj-" DEFAULT_TARGET_VERSION
".jar");
289 if (! stat (try, &stat_b
))
291 add_entry (&sys_dirs
, try, 1);
293 strcpy (&try[strlen (try)
294 - strlen ("libgcj-" DEFAULT_TARGET_VERSION
".jar")],
298 if (! stat (try, &stat_b
))
299 jcf_path_extdirs_arg (try);
305 /* Desperation: use the installed one. */
307 add_entry (&sys_dirs
, LIBGCJ_ZIP_FILE
, 1);
308 extdirs
= (char *) alloca (strlen (LIBGCJ_ZIP_FILE
) + 1);
309 strcpy (extdirs
, LIBGCJ_ZIP_FILE
);
310 strcpy (&extdirs
[strlen (LIBGCJ_ZIP_FILE
)
311 - strlen ("libgcj-" DEFAULT_TARGET_VERSION
".jar")],
313 strcat (extdirs
, sep
);
314 if (! stat (extdirs
, &stat_b
))
315 jcf_path_extdirs_arg (extdirs
);
318 GET_ENV_PATH_LIST (cp
, "CLASSPATH");
319 add_path (&classpath_env
, cp
, 0);
322 /* Call this when -classpath is seen on the command line.
323 This overrides only the $CLASSPATH environment variable.
326 jcf_path_classpath_arg (path
)
329 free_entry (&classpath_user
);
330 add_path (&classpath_user
, path
, 0);
333 /* Call this when -bootclasspath is seen on the command line.
336 jcf_path_bootclasspath_arg (path
)
339 free_entry (&sys_dirs
);
340 add_path (&sys_dirs
, path
, 1);
343 /* Call this when -extdirs is seen on the command line.
346 jcf_path_extdirs_arg (cp
)
349 const char *startp
, *endp
;
351 free_entry (&extensions
);
355 char *buf
= (char *) alloca (strlen (cp
) + 3);
359 if (! *endp
|| *endp
== PATH_SEPARATOR
)
364 strncpy (buf
, startp
, endp
- startp
);
365 buf
[endp
- startp
] = '\0';
369 int dirname_length
= strlen (buf
);
371 dirp
= opendir (buf
);
377 struct dirent
*direntp
= readdir (dirp
);
382 if (direntp
->d_name
[0] != '.')
385 (char *) alloca (dirname_length
386 + strlen (direntp
->d_name
) + 2);
388 if (name
[dirname_length
-1] != DIR_SEPARATOR
)
390 name
[dirname_length
] = DIR_SEPARATOR
;
391 name
[dirname_length
+1] = 0;
393 strcat (name
, direntp
->d_name
);
394 add_entry (&extensions
, name
, 0);
410 /* Call this when -I is seen on the command line. */
412 jcf_path_include_arg (path
)
415 add_entry (&include_dirs
, path
, 0);
418 /* We `seal' the path by linking everything into one big list. Then
419 we provide a way to iterate through the sealed list. If PRINT is
420 true then we print the final class path to stderr. */
422 jcf_path_seal (print
)
425 struct entry
*secondary
;
427 sealed
= include_dirs
;
432 secondary
= classpath_user
;
433 classpath_user
= NULL
;
438 add_entry (&classpath_env
, ".", 0);
440 secondary
= classpath_env
;
441 classpath_env
= NULL
;
445 free_entry (&classpath_user
);
446 free_entry (&classpath_env
);
448 append_entry (&sealed
, secondary
);
449 append_entry (&sealed
, sys_dirs
);
450 append_entry (&sealed
, extensions
);
457 fprintf (stderr
, "Class path starts here:\n");
458 for (ent
= sealed
; ent
; ent
= ent
->next
)
460 fprintf (stderr
, " %s", ent
->name
);
461 if ((ent
->flags
& FLAG_SYSTEM
))
462 fprintf (stderr
, " (system)");
463 if ((ent
->flags
& FLAG_ZIP
))
464 fprintf (stderr
, " (zip)");
465 fprintf (stderr
, "\n");
473 return (void *) sealed
;
480 struct entry
*ent
= (struct entry
*) x
;
481 return (void *) ent
->next
;
484 /* We guarantee that the return path will either be a zip file, or it
485 will end with a directory separator. */
490 struct entry
*ent
= (struct entry
*) x
;
495 jcf_path_is_zipfile (x
)
498 struct entry
*ent
= (struct entry
*) x
;
499 return (ent
->flags
& FLAG_ZIP
);
503 jcf_path_is_system (x
)
506 struct entry
*ent
= (struct entry
*) x
;
507 return (ent
->flags
& FLAG_SYSTEM
);