langtools/src/share/classes/com/sun/tools/javac/file/Paths.java
author jjh
Mon, 13 Dec 2010 17:35:57 -0800
changeset 7839 a1ca72d05b20
parent 7336 3fd30668e9b5
child 7847 5d1dad3342a3
permissions -rw-r--r--
6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux Summary: Fixed JavacFileManager to not treat a non-existant pathname as a directory. Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
     2
 * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5007
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    26
package com.sun.tools.javac.file;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    27
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.io.File;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
    30
import java.net.MalformedURLException;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
    31
import java.net.URL;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.HashMap;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import java.util.HashSet;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import java.util.Map;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.util.Collection;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import java.util.Collections;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import java.util.LinkedHashSet;
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
    39
import java.util.StringTokenizer;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import java.util.zip.ZipFile;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import javax.tools.JavaFileManager.Location;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    43
import com.sun.tools.javac.code.Lint;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    44
import com.sun.tools.javac.util.Context;
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
    45
import com.sun.tools.javac.util.ListBuffer;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    46
import com.sun.tools.javac.util.Log;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    47
import com.sun.tools.javac.util.Options;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    48
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    49
import static javax.tools.StandardLocation.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
import static com.sun.tools.javac.main.OptionName.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
/** This class converts command line arguments, environment variables
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 *  and system properties (in File.pathSeparator-separated String form)
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 *  into a boot class path, user class path, and source path (in
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 *  Collection<String> form).
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    57
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    58
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
public class Paths {
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    /** The context key for the todo list */
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    protected static final Context.Key<Paths> pathsKey =
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        new Context.Key<Paths>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
171
2afbdd3321d0 6638501: Regression with Javac in JDK6 U4 b03?
jjg
parents: 10
diff changeset
    68
    /** Get the Paths instance for this context.
2afbdd3321d0 6638501: Regression with Javac in JDK6 U4 b03?
jjg
parents: 10
diff changeset
    69
     *  @param context the context
2afbdd3321d0 6638501: Regression with Javac in JDK6 U4 b03?
jjg
parents: 10
diff changeset
    70
     *  @return the Paths instance for this context
2afbdd3321d0 6638501: Regression with Javac in JDK6 U4 b03?
jjg
parents: 10
diff changeset
    71
     */
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents: 2981
diff changeset
    72
    public static Paths instance(Context context) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        Paths instance = context.get(pathsKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            instance = new Paths(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    /** The log to use for warning output */
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
    private Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /** Collection of command-line options */
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    private Options options;
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    /** Handler for -Xlint options */
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    private Lint lint;
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
    88
    /** Access to (possibly cached) file info */
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
    89
    private FSInfo fsInfo;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    protected Paths(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        context.put(pathsKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        pathsForLocation = new HashMap<Location,Path>(16);
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        setContext(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    void setContext(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        log = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        options = Options.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        lint = Lint.instance(context);
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   101
        fsInfo = FSInfo.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    /** Whether to warn about non-existent path elements */
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    private boolean warn;
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    private Map<Location, Path> pathsForLocation;
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    private boolean inited = false; // TODO? caching bad?
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     * rt.jar as found on the default bootclass path.  If the user specified a
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * bootclasspath, null is used.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    private File bootClassPathRtJar = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   117
    /**
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   118
     *  Is bootclasspath the default?
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   119
     */
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   120
    private boolean isDefaultBootClassPath;
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   121
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    Path getPathForLocation(Location location) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        Path path = pathsForLocation.get(location);
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
        if (path == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
            setPathForLocation(location, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        return pathsForLocation.get(location);
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    void setPathForLocation(Location location, Iterable<? extends File> path) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        // TODO? if (inited) throw new IllegalStateException
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        // TODO: otherwise reset sourceSearchPath, classSearchPath as needed
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        Path p;
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        if (path == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            if (location == CLASS_PATH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
                p = computeUserClassPath();
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
            else if (location == PLATFORM_CLASS_PATH)
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   137
                p = computeBootClassPath(); // sets isDefaultBootClassPath
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
            else if (location == ANNOTATION_PROCESSOR_PATH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
                p = computeAnnotationProcessorPath();
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            else if (location == SOURCE_PATH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
                p = computeSourcePath();
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
            else
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
                // no defaults for other paths
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
                p = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        } else {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   146
            if (location == PLATFORM_CLASS_PATH)
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   147
                isDefaultBootClassPath = false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
            p = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
            for (File f: path)
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
                p.addFile(f, warn); // TODO: is use of warn appropriate?
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
        pathsForLocation.put(location, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
7336
3fd30668e9b5 7003477: Paths.isDefaultBootClassPath needs to be public
jjg
parents: 7335
diff changeset
   155
    public boolean isDefaultBootClassPath() {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   156
        lazy();
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   157
        return isDefaultBootClassPath;
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   158
    }
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   159
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    protected void lazy() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        if (!inited) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
            warn = lint.isEnabled(Lint.LintCategory.PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            pathsForLocation.put(PLATFORM_CLASS_PATH, computeBootClassPath());
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
            pathsForLocation.put(CLASS_PATH, computeUserClassPath());
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            pathsForLocation.put(SOURCE_PATH, computeSourcePath());
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            inited = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    public Collection<File> bootClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        return Collections.unmodifiableCollection(getPathForLocation(PLATFORM_CLASS_PATH));
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    public Collection<File> userClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        return Collections.unmodifiableCollection(getPathForLocation(CLASS_PATH));
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public Collection<File> sourcePath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
        Path p = getPathForLocation(SOURCE_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        return p == null || p.size() == 0
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            ? null
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            : Collections.unmodifiableCollection(p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    boolean isBootClassPathRtJar(File file) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        return file.equals(bootClassPathRtJar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   192
    /**
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   193
     * Split a path into its elements. Empty path elements will be ignored.
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   194
     * @param path The path to be split
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   195
     * @return The elements of the path
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   196
     */
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   197
    private static Iterable<File> getPathEntries(String path) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   198
        return getPathEntries(path, null);
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   199
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   201
    /**
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   202
     * Split a path into its elements. If emptyPathDefault is not null, all
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   203
     * empty elements in the path, including empty elements at either end of
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   204
     * the path, will be replaced with the value of emptyPathDefault.
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   205
     * @param path The path to be split
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   206
     * @param emptyPathDefault The value to substitute for empty path elements,
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   207
     *  or null, to ignore empty path elements
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   208
     * @return The elements of the path
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   209
     */
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   210
    private static Iterable<File> getPathEntries(String path, File emptyPathDefault) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   211
        ListBuffer<File> entries = new ListBuffer<File>();
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   212
        int start = 0;
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   213
        while (start <= path.length()) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   214
            int sep = path.indexOf(File.pathSeparatorChar, start);
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   215
            if (sep == -1)
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   216
                sep = path.length();
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   217
            if (start < sep)
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   218
                entries.add(new File(path.substring(start, sep)));
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   219
            else if (emptyPathDefault != null)
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   220
                entries.add(emptyPathDefault);
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   221
            start = sep + 1;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
        }
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   223
        return entries;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    private class Path extends LinkedHashSet<File> {
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        private boolean expandJarClassPaths = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        private Set<File> canonicalValues = new HashSet<File>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        public Path expandJarClassPaths(boolean x) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
            expandJarClassPaths = x;
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        /** What to use when path element is the empty string */
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   238
        private File emptyPathDefault = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   240
        public Path emptyPathDefault(File x) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
            emptyPathDefault = x;
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        public Path() { super(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
        public Path addDirectories(String dirs, boolean warn) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            if (dirs != null)
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   249
                for (File dir : getPathEntries(dirs))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
                    addDirectory(dir, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        public Path addDirectories(String dirs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
            return addDirectories(dirs, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   258
        private void addDirectory(File dir, boolean warn) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   259
            if (!dir.isDirectory()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
                if (warn)
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   261
                    log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   262
                            "dir.path.element.not.found", dir);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   266
            File[] files = dir.listFiles();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
            if (files == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            for (File direntry : files) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
                if (isArchive(direntry))
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
                    addFile(direntry, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
        public Path addFiles(String files, boolean warn) {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   277
            if (files != null) {
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   278
                for (File file : getPathEntries(files, emptyPathDefault))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
                    addFile(file, warn);
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   280
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
        public Path addFiles(String files) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
            return addFiles(files, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        public void addFile(File file, boolean warn) {
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   289
            if (contains(file)) {
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   290
                // discard duplicates
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   294
            if (! fsInfo.exists(file)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
                /* No such file or directory exists */
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   296
                if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   297
                    log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   298
                            "path.element.not.found", file);
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   299
                }
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   300
                super.add(file);
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   301
                return;
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   302
            }
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   303
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   304
            File canonFile = fsInfo.getCanonicalFile(file);
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   305
            if (canonicalValues.contains(canonFile)) {
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   306
                /* Discard duplicates and avoid infinite recursion */
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   307
                return;
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   308
            }
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   309
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   310
            if (fsInfo.isFile(file)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
                /* File is an ordinary file. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
                if (!isArchive(file)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
                    /* Not a recognized extension; open it to see if
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
                     it looks like a valid zip file. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
                    try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                        ZipFile z = new ZipFile(file);
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
                        z.close();
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   318
                        if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   319
                            log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   320
                                    "unexpected.archive.file", file);
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   321
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
                    } catch (IOException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
                        // FIXME: include e.getLocalizedMessage in warning
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   324
                        if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   325
                            log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   326
                                    "invalid.archive.file", file);
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   327
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
                        return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
            /* Now what we have left is either a directory or a file name
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   334
               conforming to archive naming convention */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
            super.add(file);
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   336
            canonicalValues.add(canonFile);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   338
            if (expandJarClassPaths && fsInfo.isFile(file))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
                addJarClassPath(file, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
        // Adds referenced classpath elements from a jar's Class-Path
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        // Manifest entry.  In some future release, we may want to
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
        // update this code to recognize URLs rather than simple
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
        // filenames, but if we do, we should redo all path-related code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
        private void addJarClassPath(File jarFile, boolean warn) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
            try {
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   348
                for (File f: fsInfo.getJarClassPath(jarFile)) {
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   349
                    addFile(f, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
            } catch (IOException e) {
5007
28dee2489196 6930076: "null" can incorrectly appear in error message compiler.err.error.reading.file
jjg
parents: 4937
diff changeset
   352
                log.error("error.reading.file", jarFile, JavacFileManager.getMessage(e));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
    private Path computeBootClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
        bootClassPathRtJar = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
        Path path = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   361
        String bootclasspathOpt = options.get(BOOTCLASSPATH);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   362
        String endorseddirsOpt = options.get(ENDORSEDDIRS);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   363
        String extdirsOpt = options.get(EXTDIRS);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   364
        String xbootclasspathPrependOpt = options.get(XBOOTCLASSPATH_PREPEND);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   365
        String xbootclasspathAppendOpt = options.get(XBOOTCLASSPATH_APPEND);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   367
        path.addFiles(xbootclasspathPrependOpt);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   368
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   369
        if (endorseddirsOpt != null)
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   370
            path.addDirectories(endorseddirsOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
            path.addDirectories(System.getProperty("java.endorsed.dirs"), false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   374
        if (bootclasspathOpt != null) {
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   375
            path.addFiles(bootclasspathOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
            // Standard system classes for this compiler's release.
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
            String files = System.getProperty("sun.boot.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            path.addFiles(files, false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
            File rt_jar = new File("rt.jar");
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   381
            for (File file : getPathEntries(files)) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   382
                if (new File(file.getName()).equals(rt_jar))
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   383
                    bootClassPathRtJar = file;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   387
        path.addFiles(xbootclasspathAppendOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
        // Strictly speaking, standard extensions are not bootstrap
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
        // classes, but we treat them identically, so we'll pretend
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
        // that they are.
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   392
        if (extdirsOpt != null)
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   393
            path.addDirectories(extdirsOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
            path.addDirectories(System.getProperty("java.ext.dirs"), false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   397
        isDefaultBootClassPath =
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   398
                (xbootclasspathPrependOpt == null) &&
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   399
                (bootclasspathOpt == null) &&
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   400
                (xbootclasspathAppendOpt == null);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   401
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
        return path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
    private Path computeUserClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
        String cp = options.get(CLASSPATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
        // CLASSPATH environment variable when run from `javac'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
        if (cp == null) cp = System.getProperty("env.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
        // If invoked via a java VM (not the javac launcher), use the
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        // platform class path
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
        if (cp == null && System.getProperty("application.home") == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
            cp = System.getProperty("java.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
        // Default to current working directory.
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        if (cp == null) cp = ".";
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        return new Path()
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   420
            .expandJarClassPaths(true)        // Only search user jars for Class-Paths
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   421
            .emptyPathDefault(new File("."))  // Empty path elt ==> current directory
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            .addFiles(cp);
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
    private Path computeSourcePath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
        String sourcePathArg = options.get(SOURCEPATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        if (sourcePathArg == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
        return new Path().addFiles(sourcePathArg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
    private Path computeAnnotationProcessorPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        String processorPathArg = options.get(PROCESSORPATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        if (processorPathArg == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
        return new Path().addFiles(processorPathArg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
    /** The actual effective locations searched for sources */
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
    private Path sourceSearchPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
    public Collection<File> sourceSearchPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        if (sourceSearchPath == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
            lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
            Path sourcePath = getPathForLocation(SOURCE_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
            Path userClassPath = getPathForLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
            sourceSearchPath = sourcePath != null ? sourcePath : userClassPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        return Collections.unmodifiableCollection(sourceSearchPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
    /** The actual effective locations searched for classes */
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
    private Path classSearchPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
    public Collection<File> classSearchPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
        if (classSearchPath == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
            lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
            Path bootClassPath = getPathForLocation(PLATFORM_CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
            Path userClassPath = getPathForLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
            classSearchPath = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
            classSearchPath.addAll(bootClassPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
            classSearchPath.addAll(userClassPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
        return Collections.unmodifiableCollection(classSearchPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
    /** The actual effective locations for non-source, non-class files */
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
    private Path otherSearchPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
    Collection<File> otherSearchPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
        if (otherSearchPath == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
            lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
            Path userClassPath = getPathForLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
            Path sourcePath = getPathForLocation(SOURCE_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
            if (sourcePath == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
                otherSearchPath = userClassPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
            else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
                otherSearchPath = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
                otherSearchPath.addAll(userClassPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
                otherSearchPath.addAll(sourcePath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
        return Collections.unmodifiableCollection(otherSearchPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
    /** Is this the name of an archive file? */
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   489
    private boolean isArchive(File file) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
        String n = file.getName().toLowerCase();
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   491
        return fsInfo.isFile(file)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
            && (n.endsWith(".jar") || n.endsWith(".zip"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
    }
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   494
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   495
    /**
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   496
     * Utility method for converting a search path string to an array
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   497
     * of directory and JAR file URLs.
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   498
     *
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   499
     * Note that this method is called by apt and the DocletInvoker.
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   500
     *
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   501
     * @param path the search path string
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   502
     * @return the resulting array of directory and JAR file URLs
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   503
     */
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   504
    public static URL[] pathToURLs(String path) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   505
        StringTokenizer st = new StringTokenizer(path, File.pathSeparator);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   506
        URL[] urls = new URL[st.countTokens()];
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   507
        int count = 0;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   508
        while (st.hasMoreTokens()) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   509
            URL url = fileToURL(new File(st.nextToken()));
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   510
            if (url != null) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   511
                urls[count++] = url;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   512
            }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   513
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   514
        if (urls.length != count) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   515
            URL[] tmp = new URL[count];
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   516
            System.arraycopy(urls, 0, tmp, 0, count);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   517
            urls = tmp;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   518
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   519
        return urls;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   520
    }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   521
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   522
    /**
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   523
     * Returns the directory or JAR file URL corresponding to the specified
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   524
     * local file name.
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   525
     *
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   526
     * @param file the File object
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   527
     * @return the resulting directory or JAR file URL, or null if unknown
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   528
     */
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   529
    private static URL fileToURL(File file) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   530
        String name;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   531
        try {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   532
            name = file.getCanonicalPath();
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   533
        } catch (IOException e) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   534
            name = file.getAbsolutePath();
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   535
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   536
        name = name.replace(File.separatorChar, '/');
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   537
        if (!name.startsWith("/")) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   538
            name = "/" + name;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   539
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   540
        // If the file does not exist, then assume that it's a directory
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   541
        if (!file.isFile()) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   542
            name = name + "/";
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   543
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   544
        try {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   545
            return new URL("file", "", name);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   546
        } catch (MalformedURLException e) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   547
            throw new IllegalArgumentException(file.toString());
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   548
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   549
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
}