langtools/src/share/classes/com/sun/tools/javac/file/Paths.java
author jjg
Thu, 10 Feb 2011 15:05:33 -0800
changeset 8424 5e31b2eb5aa3
parent 8034 d3b29ef9c062
child 10813 95b39a692cd0
permissions -rw-r--r--
6485027: javac incorrectly handles relative paths in manifest classpath Reviewed-by: mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
     2
 * Copyright (c) 2003, 2011, 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
     */
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   115
    private File defaultBootClassPathRtJar = null;
10
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 {
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   146
            if (location == PLATFORM_CLASS_PATH) {
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   147
                defaultBootClassPathRtJar = null;
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   148
                isDefaultBootClassPath = false;
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   149
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
            p = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
            for (File f: path)
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
                p.addFile(f, warn); // TODO: is use of warn appropriate?
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
        pathsForLocation.put(location, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
7336
3fd30668e9b5 7003477: Paths.isDefaultBootClassPath needs to be public
jjg
parents: 7335
diff changeset
   157
    public boolean isDefaultBootClassPath() {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   158
        lazy();
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   159
        return isDefaultBootClassPath;
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   160
    }
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   161
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    protected void lazy() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        if (!inited) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            warn = lint.isEnabled(Lint.LintCategory.PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            pathsForLocation.put(PLATFORM_CLASS_PATH, computeBootClassPath());
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            pathsForLocation.put(CLASS_PATH, computeUserClassPath());
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            pathsForLocation.put(SOURCE_PATH, computeSourcePath());
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            inited = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    public Collection<File> bootClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        return Collections.unmodifiableCollection(getPathForLocation(PLATFORM_CLASS_PATH));
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public Collection<File> userClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        return Collections.unmodifiableCollection(getPathForLocation(CLASS_PATH));
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    public Collection<File> sourcePath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
        Path p = getPathForLocation(SOURCE_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
        return p == null || p.size() == 0
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
            ? null
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
            : Collections.unmodifiableCollection(p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   190
    boolean isDefaultBootClassPathRtJar(File file) {
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   191
        return file.equals(defaultBootClassPathRtJar);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   194
    /**
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   195
     * Split a path into its elements. Empty path elements will be ignored.
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   196
     * @param path The path to be split
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   197
     * @return The elements of the path
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   198
     */
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   199
    private static Iterable<File> getPathEntries(String path) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   200
        return getPathEntries(path, null);
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   201
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   203
    /**
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   204
     * Split a path into its elements. If emptyPathDefault is not null, all
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   205
     * empty elements in the path, including empty elements at either end of
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   206
     * the path, will be replaced with the value of emptyPathDefault.
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   207
     * @param path The path to be split
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   208
     * @param emptyPathDefault The value to substitute for empty path elements,
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   209
     *  or null, to ignore empty path elements
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   210
     * @return The elements of the path
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   211
     */
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   212
    private static Iterable<File> getPathEntries(String path, File emptyPathDefault) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   213
        ListBuffer<File> entries = new ListBuffer<File>();
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   214
        int start = 0;
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   215
        while (start <= path.length()) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   216
            int sep = path.indexOf(File.pathSeparatorChar, start);
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   217
            if (sep == -1)
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   218
                sep = path.length();
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   219
            if (start < sep)
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   220
                entries.add(new File(path.substring(start, sep)));
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   221
            else if (emptyPathDefault != null)
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   222
                entries.add(emptyPathDefault);
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   223
            start = sep + 1;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
        }
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   225
        return entries;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    private class Path extends LinkedHashSet<File> {
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        private boolean expandJarClassPaths = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        private Set<File> canonicalValues = new HashSet<File>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        public Path expandJarClassPaths(boolean x) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            expandJarClassPaths = x;
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        /** What to use when path element is the empty string */
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   240
        private File emptyPathDefault = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   242
        public Path emptyPathDefault(File x) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            emptyPathDefault = x;
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
        public Path() { super(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
        public Path addDirectories(String dirs, boolean warn) {
8424
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   250
            boolean prev = expandJarClassPaths;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   251
            expandJarClassPaths = true;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   252
            try {
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   253
                if (dirs != null)
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   254
                    for (File dir : getPathEntries(dirs))
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   255
                        addDirectory(dir, warn);
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   256
                return this;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   257
            } finally {
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   258
                expandJarClassPaths = prev;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   259
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        public Path addDirectories(String dirs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
            return addDirectories(dirs, warn);
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
        private void addDirectory(File dir, boolean warn) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   267
            if (!dir.isDirectory()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
                if (warn)
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   269
                    log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   270
                            "dir.path.element.not.found", dir);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   274
            File[] files = dir.listFiles();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
            if (files == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            for (File direntry : files) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
                if (isArchive(direntry))
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
                    addFile(direntry, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            }
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, boolean warn) {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   285
            if (files != null) {
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   286
                for (File file : getPathEntries(files, emptyPathDefault))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                    addFile(file, warn);
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   288
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        public Path addFiles(String files) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
            return addFiles(files, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        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
   297
            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
   298
                // discard duplicates
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   302
            if (! fsInfo.exists(file)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
                /* No such file or directory exists */
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   304
                if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   305
                    log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   306
                            "path.element.not.found", file);
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   307
                }
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   308
                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
   309
                return;
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   310
            }
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   311
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   312
            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
   313
            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
   314
                /* 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
   315
                return;
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   316
            }
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   317
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   318
            if (fsInfo.isFile(file)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
                /* File is an ordinary file. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
                if (!isArchive(file)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
                    /* Not a recognized extension; open it to see if
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
                     it looks like a valid zip file. */
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
                    try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
                        ZipFile z = new ZipFile(file);
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
                        z.close();
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   326
                        if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   327
                            log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   328
                                    "unexpected.archive.file", file);
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   329
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
                    } catch (IOException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
                        // FIXME: include e.getLocalizedMessage in warning
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   332
                        if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   333
                            log.warning(Lint.LintCategory.PATH,
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   334
                                    "invalid.archive.file", file);
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   335
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
                        return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
            /* 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
   342
               conforming to archive naming convention */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
            super.add(file);
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   344
            canonicalValues.add(canonFile);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   346
            if (expandJarClassPaths && fsInfo.isFile(file))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
                addJarClassPath(file, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
        // Adds referenced classpath elements from a jar's Class-Path
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
        // Manifest entry.  In some future release, we may want to
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
        // update this code to recognize URLs rather than simple
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        // filenames, but if we do, we should redo all path-related code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
        private void addJarClassPath(File jarFile, boolean warn) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            try {
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   356
                for (File f: fsInfo.getJarClassPath(jarFile)) {
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   357
                    addFile(f, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
            } catch (IOException e) {
5007
28dee2489196 6930076: "null" can incorrectly appear in error message compiler.err.error.reading.file
jjg
parents: 4937
diff changeset
   360
                log.error("error.reading.file", jarFile, JavacFileManager.getMessage(e));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
    private Path computeBootClassPath() {
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   366
        defaultBootClassPathRtJar = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
        Path path = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   369
        String bootclasspathOpt = options.get(BOOTCLASSPATH);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   370
        String endorseddirsOpt = options.get(ENDORSEDDIRS);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   371
        String extdirsOpt = options.get(EXTDIRS);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   372
        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
   373
        String xbootclasspathAppendOpt = options.get(XBOOTCLASSPATH_APPEND);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   375
        path.addFiles(xbootclasspathPrependOpt);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   376
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   377
        if (endorseddirsOpt != null)
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   378
            path.addDirectories(endorseddirsOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
            path.addDirectories(System.getProperty("java.endorsed.dirs"), false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   382
        if (bootclasspathOpt != null) {
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   383
            path.addFiles(bootclasspathOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
            // Standard system classes for this compiler's release.
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
            String files = System.getProperty("sun.boot.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
            path.addFiles(files, false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
            File rt_jar = new File("rt.jar");
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   389
            for (File file : getPathEntries(files)) {
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   390
                if (new File(file.getName()).equals(rt_jar))
8034
d3b29ef9c062 6430241: Hard to disable symbol file feature through API
jjg
parents: 7847
diff changeset
   391
                    defaultBootClassPathRtJar = file;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   395
        path.addFiles(xbootclasspathAppendOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
        // Strictly speaking, standard extensions are not bootstrap
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
        // classes, but we treat them identically, so we'll pretend
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
        // that they are.
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   400
        if (extdirsOpt != null)
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   401
            path.addDirectories(extdirsOpt);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
            path.addDirectories(System.getProperty("java.ext.dirs"), false);
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   405
        isDefaultBootClassPath =
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   406
                (xbootclasspathPrependOpt == null) &&
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   407
                (bootclasspathOpt == null) &&
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   408
                (xbootclasspathAppendOpt == null);
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   409
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
        return path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
    private Path computeUserClassPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
        String cp = options.get(CLASSPATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
        // CLASSPATH environment variable when run from `javac'.
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        if (cp == null) cp = System.getProperty("env.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        // If invoked via a java VM (not the javac launcher), use the
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
        // platform class path
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
        if (cp == null && System.getProperty("application.home") == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            cp = System.getProperty("java.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        // Default to current working directory.
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
        if (cp == null) cp = ".";
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        return new Path()
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   428
            .expandJarClassPaths(true)        // Only search user jars for Class-Paths
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   429
            .emptyPathDefault(new File("."))  // Empty path elt ==> current directory
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
            .addFiles(cp);
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 computeSourcePath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        String sourcePathArg = options.get(SOURCEPATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        if (sourcePathArg == 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(sourcePathArg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
    private Path computeAnnotationProcessorPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
        String processorPathArg = options.get(PROCESSORPATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
        if (processorPathArg == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
        return new Path().addFiles(processorPathArg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
    /** The actual effective locations searched for sources */
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
    private Path sourceSearchPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
    public Collection<File> sourceSearchPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        if (sourceSearchPath == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
            lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
            Path sourcePath = getPathForLocation(SOURCE_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
            Path userClassPath = getPathForLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
            sourceSearchPath = sourcePath != null ? sourcePath : userClassPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
        return Collections.unmodifiableCollection(sourceSearchPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
    /** The actual effective locations searched for classes */
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
    private Path classSearchPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
    public Collection<File> classSearchPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
        if (classSearchPath == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
            lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
            Path bootClassPath = getPathForLocation(PLATFORM_CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
            Path userClassPath = getPathForLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
            classSearchPath = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
            classSearchPath.addAll(bootClassPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
            classSearchPath.addAll(userClassPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
        return Collections.unmodifiableCollection(classSearchPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
    /** The actual effective locations for non-source, non-class files */
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
    private Path otherSearchPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
    Collection<File> otherSearchPath() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
        if (otherSearchPath == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
            lazy();
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
            Path userClassPath = getPathForLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
            Path sourcePath = getPathForLocation(SOURCE_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
            if (sourcePath == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
                otherSearchPath = userClassPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
            else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
                otherSearchPath = new Path();
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
                otherSearchPath.addAll(userClassPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
                otherSearchPath.addAll(sourcePath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
        return Collections.unmodifiableCollection(otherSearchPath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
    /** 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
   497
    private boolean isArchive(File file) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
        String n = file.getName().toLowerCase();
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   499
        return fsInfo.isFile(file)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
            && (n.endsWith(".jar") || n.endsWith(".zip"));
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
    }
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   502
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
     * 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
   505
     * of directory and JAR file URLs.
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   506
     *
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   507
     * 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
   508
     *
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   509
     * @param path the search path string
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   510
     * @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
   511
     */
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   512
    public static URL[] pathToURLs(String path) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   513
        StringTokenizer st = new StringTokenizer(path, File.pathSeparator);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   514
        URL[] urls = new URL[st.countTokens()];
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   515
        int count = 0;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   516
        while (st.hasMoreTokens()) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   517
            URL url = fileToURL(new File(st.nextToken()));
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   518
            if (url != null) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   519
                urls[count++] = url;
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
        if (urls.length != count) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   523
            URL[] tmp = new URL[count];
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   524
            System.arraycopy(urls, 0, tmp, 0, count);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   525
            urls = tmp;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   526
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   527
        return urls;
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
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   530
    /**
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   531
     * 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
   532
     * local file name.
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   533
     *
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   534
     * @param file the File object
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   535
     * @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
   536
     */
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   537
    private static URL fileToURL(File file) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   538
        String name;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   539
        try {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   540
            name = file.getCanonicalPath();
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   541
        } catch (IOException e) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   542
            name = file.getAbsolutePath();
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
        name = name.replace(File.separatorChar, '/');
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   545
        if (!name.startsWith("/")) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   546
            name = "/" + name;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   547
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   548
        // 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
   549
        if (!file.isFile()) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   550
            name = name + "/";
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   551
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   552
        try {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   553
            return new URL("file", "", name);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   554
        } catch (MalformedURLException e) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   555
            throw new IllegalArgumentException(file.toString());
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   556
        }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
   557
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
}