/* * Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/* * Class-Path Wildcards * * The syntax for wildcards is a single asterisk. The class path * foo/"*", e.g., loads all jar files in the directory named foo. * (This requires careful quotation when used in shell scripts.) * * Only files whose names end in .jar or .JAR are matched. * Files whose names end in .zip, or which have a particular * magic number, regardless of filename extension, are not * matched. * * Files are considered regardless of whether or not they are * "hidden" in the UNIX sense, i.e., have names beginning with '.'. * * A wildcard only matches jar files, not class files in the same * directory. If you want to load both class files and jar files from * a single directory foo then you can say foo:foo/"*", or foo/"*":foo * if you want the jar files to take precedence. * * Subdirectories are not searched recursively, i.e., foo/"*" only * looks for jar files in foo, not in foo/bar, foo/baz, etc. * * Expansion of wildcards is done early, prior to the invocation of a * program's main method, rather than late, during the class-loading * process itself. Each element of the input class path containing a * wildcard is replaced by the (possibly empty) sequence of elements * generated by enumerating the jar files in the named directory. If * the directory foo contains a.jar, b.jar, and c.jar, * e.g., then the class path foo/"*" is expanded into * foo/a.jar:foo/b.jar:foo/c.jar, and that string would be the value * of the system property java.class.path. * * The order in which the jar files in a directory are enumerated in * the expanded class path is not specified and may vary from platform * to platform and even from moment to moment on the same machine. A * well-constructed application should not depend upon any particular * order. If a specific order is required then the jar files can be * enumerated explicitly in the class path. * * The CLASSPATH environment variable is not treated any differently * from the -classpath (equiv. -cp) command-line option, * i.e. wildcards are honored in all these cases. * * Class-path wildcards are not honored in the Class-Path jar-manifest * header. * * Class-path wildcards are honored not only by the Java launcher but * also by most other command-line tools that accept class paths, and * in particular by javac and javadoc. * * Class-path wildcards are not honored in any other kind of path, and * especially not in the bootstrap class path, which is a mere * artifact of our implementation and not something that developers * should use. * * Classpath wildcards are only expanded in the Java launcher code, * supporting the use of wildcards on the command line and in the * CLASSPATH environment variable. We do not support the use of * wildcards by applications that embed the JVM.
*/
/* * Wildcard directory iteration. * WildcardIterator_for(wildcard) returns an iterator. * Each call to that iterator's next() method returns the basename * of an entry in the wildcard's directory. The basename's memory * belongs to the iterator. The caller is responsible for prepending * the directory name and file separator, if necessary. * When done with the iterator, call the close method to clean up.
*/ typedefstruct WildcardIterator_* WildcardIterator;
#ifdef _WIN32 struct WildcardIterator_
{
HANDLE handle; char *firstFile; /* Stupid FindFirstFile...FindNextFile */
}; // since this is used repeatedly we keep it here. static WIN32_FIND_DATA find_data; static WildcardIterator
WildcardIterator_for(constchar *wildcard)
{
WildcardIterator it = NEW_(WildcardIterator);
HANDLE handle = FindFirstFile(wildcard, &find_data); if (handle == INVALID_HANDLE_VALUE) {
JLI_MemFree(it); return NULL;
}
it->handle = handle;
it->firstFile = find_data.cFileName; return it;
}
#ifdef DEBUG_WILDCARD staticvoid
FileList_print(JLI_List fl)
{
size_t i;
putchar('['); for (i = 0; i < fl->size; i++) { if (i > 0) printf(", ");
printf("\"%s\"",fl->elements[i]);
}
putchar(']');
}
staticvoid
wildcardExpandArgv(constchar ***argv)
{ int i; for (i = 0; (*argv)[i]; i++) { if (equal((*argv)[i], "-cp") ||
equal((*argv)[i], "-classpath")) {
i++;
(*argv)[i] = wildcardExpandClasspath((*argv)[i]);
}
}
}
staticvoid
debugPrintArgv(char *argv[])
{ int i;
putchar('['); for (i = 0; argv[i]; i++) { if (i > 0) printf(", ");
printf("\"%s\"", argv[i]);
}
printf("]\n");
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.