src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58467 72ef2c0faf47
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
54693
d890ba18f64b 8218875: Add new FileSystems.newFileSystem methods
lancea
parents: 51615
diff changeset
     2
 * Copyright (c) 2003, 2019, 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
 */
34752
9c262a013456 8145342: Some copyright notices are inconsistently and ill formatted
vasya
parents: 29780
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
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    28
import java.io.Closeable;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    29
import java.io.File;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    30
import java.io.FileNotFoundException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.io.IOException;
45682
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
    32
import java.io.InputStream;
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
    33
import java.io.UncheckedIOException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    34
import java.net.URI;
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
    35
import java.net.URL;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    36
import java.net.URLClassLoader;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    37
import java.nio.file.DirectoryIteratorException;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    38
import java.nio.file.DirectoryStream;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    39
import java.nio.file.FileSystem;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    40
import java.nio.file.FileSystemNotFoundException;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    41
import java.nio.file.FileSystems;
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
    42
import java.nio.file.Files;
41861
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
    43
import java.nio.file.InvalidPathException;
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
    44
import java.nio.file.Path;
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
    45
import java.nio.file.Paths;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    46
import java.nio.file.ProviderNotFoundException;
43574
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
    47
import java.nio.file.spi.FileSystemProvider;
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
    48
import java.util.ArrayList;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    49
import java.util.Arrays;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    50
import java.util.Collection;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    51
import java.util.Collections;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    52
import java.util.EnumMap;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    53
import java.util.EnumSet;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
import java.util.HashMap;
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
import java.util.HashSet;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    56
import java.util.Iterator;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    57
import java.util.LinkedHashMap;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    58
import java.util.LinkedHashSet;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    59
import java.util.List;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
import java.util.Map;
29291
076c277565f7 8073550: java* tools: replace obj.getClass hacks with Assert.checkNonNull or Objects.requireNonNull
mcimadamore
parents: 29053
diff changeset
    61
import java.util.Objects;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    62
import java.util.NoSuchElementException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
import java.util.Set;
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
    64
import java.util.function.Predicate;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    65
import java.util.regex.Matcher;
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
    66
import java.util.regex.Pattern;
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
    67
import java.util.stream.Collectors;
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
    68
import java.util.stream.Stream;
45682
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
    69
import java.util.jar.Attributes;
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
    70
import java.util.jar.Manifest;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    71
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    72
import javax.lang.model.SourceVersion;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    73
import javax.tools.JavaFileManager;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
import javax.tools.JavaFileManager.Location;
41861
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
    75
import javax.tools.JavaFileObject;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    76
import javax.tools.StandardJavaFileManager;
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
    77
import javax.tools.StandardJavaFileManager.PathFactory;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    78
import javax.tools.StandardLocation;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
48433
04d8d293e458 8194141: Remove JDK9Wrappers
jjg
parents: 47703
diff changeset
    80
import jdk.internal.jmod.JmodFile;
04d8d293e458 8194141: Remove JDK9Wrappers
jjg
parents: 47703
diff changeset
    81
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    82
import com.sun.tools.javac.code.Lint;
42837
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
    83
import com.sun.tools.javac.code.Lint.LintCategory;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
    84
import com.sun.tools.javac.main.Option;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    85
import com.sun.tools.javac.resources.CompilerProperties.Errors;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    86
import com.sun.tools.javac.resources.CompilerProperties.Warnings;
37848
3c8ff4204d2d 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36526
diff changeset
    87
import com.sun.tools.javac.util.DefinedBy;
3c8ff4204d2d 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36526
diff changeset
    88
import com.sun.tools.javac.util.DefinedBy.Api;
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48433
diff changeset
    89
import com.sun.tools.javac.util.JCDiagnostic.Warning;
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
    90
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
    91
import com.sun.tools.javac.util.Log;
41254
08f8dbf7741e 8152911: javac assertion error when compiling overlay sources
jlahoda
parents: 41155
diff changeset
    92
import com.sun.tools.javac.jvm.ModuleNameReader;
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
    93
import com.sun.tools.javac.util.Iterators;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
    94
import com.sun.tools.javac.util.Pair;
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 14360
diff changeset
    95
import com.sun.tools.javac.util.StringUtils;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 171
diff changeset
    96
58203
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
    97
import static javax.tools.StandardLocation.SYSTEM_MODULES;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    98
import static javax.tools.StandardLocation.PLATFORM_CLASS_PATH;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
   100
import static com.sun.tools.javac.main.Option.BOOT_CLASS_PATH;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   101
import static com.sun.tools.javac.main.Option.ENDORSEDDIRS;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   102
import static com.sun.tools.javac.main.Option.EXTDIRS;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   103
import static com.sun.tools.javac.main.Option.XBOOTCLASSPATH_APPEND;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   104
import static com.sun.tools.javac.main.Option.XBOOTCLASSPATH_PREPEND;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   105
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   106
/**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   107
 * This class converts command line arguments, environment variables and system properties (in
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   108
 * File.pathSeparator-separated String form) into a boot class path, user class path, and source
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   109
 * path (in {@code Collection<String>} form).
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
 *
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   111
 * <p>
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   112
 * <b>This is NOT part of any supported API. If you write code that depends on this, you do so at
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   113
 * your own risk. This code and its internal interfaces are subject to change or deletion without
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   114
 * notice.</b>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
 */
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   116
public class Locations {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   118
    /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   119
     * The log to use for warning output
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   120
     */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    private Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   123
    /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   124
     * Access to (possibly cached) file info
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   125
     */
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   126
    private FSInfo fsInfo;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   128
    /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   129
     * Whether to warn about non-existent path elements
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   130
     */
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   131
    private boolean warn;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   132
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   133
    private ModuleNameReader moduleNameReader;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   134
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   135
    private PathFactory pathFactory = Paths::get;
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   136
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   137
    static final Path javaHome = FileSystems.getDefault().getPath(System.getProperty("java.home"));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   138
    static final Path thisSystemModules = javaHome.resolve("lib").resolve("modules");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   139
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   140
    Map<Path, FileSystem> fileSystems = new LinkedHashMap<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   141
    List<Closeable> closeables = new ArrayList<>();
41155
93dad90c22c1 8156568: Update javac to support compiling against a modular JAR that is a multi-release JAR
sadayapalam
parents: 40762
diff changeset
   142
    private Map<String,String> fsEnv = Collections.emptyMap();
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   143
29780
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
   144
    Locations() {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   145
        initHandlers();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   148
    Path getPath(String first, String... more) {
41861
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
   149
        try {
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
   150
            return pathFactory.getPath(first, more);
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
   151
        } catch (InvalidPathException ipe) {
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
   152
            throw new IllegalArgumentException(ipe);
8c58faf4f03b 8132562: javac fails with CLASSPATH with double-quotes as an environment variable
vromero
parents: 41637
diff changeset
   153
        }
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   154
    }
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   155
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   156
    public void close() throws IOException {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   157
        ListBuffer<IOException> list = new ListBuffer<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   158
        closeables.forEach(closeable -> {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   159
            try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   160
                closeable.close();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   161
            } catch (IOException ex) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   162
                list.add(ex);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   163
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   164
        });
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   165
        if (list.nonEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   166
            IOException ex = new IOException();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   167
            for (IOException e: list)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   168
                ex.addSuppressed(e);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   169
            throw ex;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   170
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   171
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   172
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41440
diff changeset
   173
    void update(Log log, boolean warn, FSInfo fsInfo) {
10813
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 8424
diff changeset
   174
        this.log = log;
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41440
diff changeset
   175
        this.warn = warn;
10813
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 8424
diff changeset
   176
        this.fsInfo = fsInfo;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   179
    void setPathFactory(PathFactory f) {
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   180
        pathFactory = f;
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   181
    }
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   182
29780
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
   183
    boolean isDefaultBootClassPath() {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   184
        BootClassPathLocationHandler h
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   185
                = (BootClassPathLocationHandler) getHandler(PLATFORM_CLASS_PATH);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   186
        return h.isDefault();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
58203
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
   189
    boolean isDefaultSystemModulesPath() {
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
   190
        SystemModulesLocationHandler h
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
   191
                = (SystemModulesLocationHandler) getHandler(SYSTEM_MODULES);
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
   192
        return !h.isExplicit();
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
   193
    }
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 54693
diff changeset
   194
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   195
    /**
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   196
     * Split a search path into its elements. Empty path elements will be ignored.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   197
     *
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   198
     * @param searchPath The search path to be split
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   199
     * @return The elements of the path
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   200
     */
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   201
    private Iterable<Path> getPathEntries(String searchPath) {
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   202
        return getPathEntries(searchPath, null);
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   203
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   205
    /**
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   206
     * Split a search path into its elements. If emptyPathDefault is not null, all empty elements in the
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   207
     * path, including empty elements at either end of the path, will be replaced with the value of
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   208
     * emptyPathDefault.
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   209
     *
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   210
     * @param searchPath The search path to be split
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   211
     * @param emptyPathDefault The value to substitute for empty path elements, or null, to ignore
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   212
     * empty path elements
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   213
     * @return The elements of the path
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   214
     */
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   215
    private Iterable<Path> getPathEntries(String searchPath, Path emptyPathDefault) {
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   216
        ListBuffer<Path> entries = new ListBuffer<>();
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   217
        for (String s: searchPath.split(Pattern.quote(File.pathSeparator), -1)) {
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   218
            if (s.isEmpty()) {
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   219
                if (emptyPathDefault != null) {
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   220
                    entries.add(emptyPathDefault);
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   221
                }
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   222
            } else {
42837
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
   223
                try {
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
   224
                    entries.add(getPath(s));
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
   225
                } catch (IllegalArgumentException e) {
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
   226
                    if (warn) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 44822
diff changeset
   227
                        log.warning(LintCategory.PATH, Warnings.InvalidPath(s));
42837
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
   228
                    }
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42827
diff changeset
   229
                }
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   230
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        }
1486
a7d1338ca96e 6759996: ignore empty entries on paths
jjg
parents: 1208
diff changeset
   232
        return entries;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
41155
93dad90c22c1 8156568: Update javac to support compiling against a modular JAR that is a multi-release JAR
sadayapalam
parents: 40762
diff changeset
   235
    public void setMultiReleaseValue(String multiReleaseValue) {
58467
72ef2c0faf47 8231093: Document the ZIP FS properties noCompression and releaseVersion
lancea
parents: 58350
diff changeset
   236
        fsEnv = Collections.singletonMap("releaseVersion", multiReleaseValue);
41155
93dad90c22c1 8156568: Update javac to support compiling against a modular JAR that is a multi-release JAR
sadayapalam
parents: 40762
diff changeset
   237
    }
93dad90c22c1 8156568: Update javac to support compiling against a modular JAR that is a multi-release JAR
sadayapalam
parents: 40762
diff changeset
   238
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   239
    private boolean contains(Collection<Path> searchPath, Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   240
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   241
        if (searchPath == null) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   242
            return false;
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   243
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   244
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   245
        Path enclosingJar = null;
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   246
        if (file.getFileSystem().provider() == fsInfo.getJarFSProvider()) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   247
            URI uri = file.toUri();
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   248
            if (uri.getScheme().equals("jar")) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   249
                String ssp = uri.getSchemeSpecificPart();
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   250
                int sep = ssp.lastIndexOf("!");
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   251
                if (ssp.startsWith("file:") && sep > 0) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   252
                    enclosingJar = Paths.get(URI.create(ssp.substring(0, sep)));
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   253
                }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   254
            }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   255
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   256
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   257
        Path nf = normalize(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   258
        for (Path p : searchPath) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   259
            Path np = normalize(p);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   260
            if (np.getFileSystem() == nf.getFileSystem()
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   261
                    && Files.isDirectory(np)
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   262
                    && nf.startsWith(np)) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   263
                return true;
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   264
            }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   265
            if (enclosingJar != null
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   266
                    && Files.isSameFile(enclosingJar, np)) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   267
                return true;
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   268
            }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   269
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   270
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   271
        return false;
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   272
    }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   273
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   274
    /**
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   275
     * Utility class to help evaluate a path option. Duplicate entries are ignored, jar class paths
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   276
     * can be expanded.
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   277
     */
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   278
    private class SearchPath extends LinkedHashSet<Path> {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   279
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
        private boolean expandJarClassPaths = false;
58350
e23e560afbcb 8231414: Mark various instance fields of javac internal types as transient
darcy
parents: 58203
diff changeset
   283
        private final transient Set<Path> canonicalValues = new HashSet<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   285
        public SearchPath expandJarClassPaths(boolean x) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
            expandJarClassPaths = x;
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   290
        /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   291
         * What to use when path element is the empty string
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   292
         */
58350
e23e560afbcb 8231414: Mark various instance fields of javac internal types as transient
darcy
parents: 58203
diff changeset
   293
        private transient Path emptyPathDefault = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   295
        public SearchPath emptyPathDefault(Path x) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
            emptyPathDefault = x;
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   300
        public SearchPath addDirectories(String dirs, boolean warn) {
8424
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   301
            boolean prev = expandJarClassPaths;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   302
            expandJarClassPaths = true;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   303
            try {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   304
                if (dirs != null) {
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   305
                    for (Path dir : getPathEntries(dirs)) {
8424
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   306
                        addDirectory(dir, warn);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   307
                    }
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   308
                }
8424
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   309
                return this;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   310
            } finally {
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   311
                expandJarClassPaths = prev;
5e31b2eb5aa3 6485027: javac incorrectly handles relative paths in manifest classpath
jjg
parents: 8034
diff changeset
   312
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   315
        public SearchPath addDirectories(String dirs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
            return addDirectories(dirs, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   319
        private void addDirectory(Path dir, boolean warn) {
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   320
            if (!Files.isDirectory(dir)) {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   321
                if (warn) {
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   322
                    log.warning(Lint.LintCategory.PATH,
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 44822
diff changeset
   323
                                Warnings.DirPathElementNotFound(dir));
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   324
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   328
            try (Stream<Path> s = Files.list(dir)) {
42827
36468b5fa7f4 8181370: Convert anonymous inner classes into lambdas/method references
mcimadamore
parents: 42814
diff changeset
   329
                s.filter(Locations.this::isArchive)
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   330
                        .forEach(dirEntry -> addFile(dirEntry, warn));
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   331
            } catch (IOException ignore) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   335
        public SearchPath 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
   336
            if (files != null) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   337
                addFiles(getPathEntries(files, emptyPathDefault), warn);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   338
            }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   339
            return this;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   340
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   341
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   342
        public SearchPath addFiles(String files) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   343
            return addFiles(files, warn);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   344
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   345
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   346
        public SearchPath addFiles(Iterable<? extends Path> files, boolean warn) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   347
            if (files != null) {
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   348
                for (Path file : files) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
                    addFile(file, warn);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   350
                }
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   351
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
            return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   355
        public SearchPath addFiles(Iterable<? extends Path> files) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
            return addFiles(files, warn);
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   359
        public void addFile(Path 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
   360
            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
   361
                // discard duplicates
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   365
            if (!fsInfo.exists(file)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
                /* No such file or directory exists */
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   367
                if (warn) {
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   368
                    log.warning(Lint.LintCategory.PATH,
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 44822
diff changeset
   369
                                Warnings.PathElementNotFound(file));
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   370
                }
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   371
                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
   372
                return;
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   373
            }
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   374
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   375
            Path canonFile = fsInfo.getCanonicalFile(file);
7839
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   376
            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
   377
                /* 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
   378
                return;
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   379
            }
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   380
a1ca72d05b20 6999460: Glassfish build with JDK 6 / 7 is 5x-10x slower on Windows than on Linux
jjh
parents: 7336
diff changeset
   381
            if (fsInfo.isFile(file)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                /* File is an ordinary file. */
40513
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   383
                if (   !file.getFileName().toString().endsWith(".jmod")
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   384
                    && !file.endsWith("modules")) {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   385
                    if (!isArchive(file)) {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   386
                        /* Not a recognized extension; open it to see if
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   387
                         it looks like a valid zip file. */
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   388
                        try {
54693
d890ba18f64b 8218875: Add new FileSystems.newFileSystem methods
lancea
parents: 51615
diff changeset
   389
                            FileSystems.newFileSystem(file, (ClassLoader)null).close();
40513
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   390
                            if (warn) {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   391
                                log.warning(Lint.LintCategory.PATH,
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 44822
diff changeset
   392
                                            Warnings.UnexpectedArchiveFile(file));
40513
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   393
                            }
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   394
                        } catch (IOException | ProviderNotFoundException e) {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   395
                            // FIXME: include e.getLocalizedMessage in warning
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   396
                            if (warn) {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   397
                                log.warning(Lint.LintCategory.PATH,
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 44822
diff changeset
   398
                                            Warnings.InvalidArchiveFile(file));
40513
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   399
                            }
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   400
                            return;
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   401
                        }
40513
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   402
                    } else {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   403
                        if (fsInfo.getJarFSProvider() == null) {
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   404
                            log.error(Errors.NoZipfsForArchive(file));
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40308
diff changeset
   405
                            return ;
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 5847
diff changeset
   406
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
            /* Now what we have left is either a directory or a file name
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   412
             conforming to archive naming convention */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
            super.add(file);
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   414
            canonicalValues.add(canonFile);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   416
            if (expandJarClassPaths && fsInfo.isFile(file) && !file.endsWith("modules")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
                addJarClassPath(file, warn);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   418
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
        // Adds referenced classpath elements from a jar's Class-Path
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
        // Manifest entry.  In some future release, we may want to
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
        // update this code to recognize URLs rather than simple
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        // filenames, but if we do, we should redo all path-related code.
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   425
        private void addJarClassPath(Path jarFile, boolean warn) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
            try {
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   427
                for (Path f : fsInfo.getJarClassPath(jarFile)) {
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   428
                    addFile(f, warn);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
            } catch (IOException e) {
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 44822
diff changeset
   431
                log.error(Errors.ErrorReadingFile(jarFile, JavacFileManager.getMessage(e)));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   436
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   437
     * Base class for handling support for the representation of Locations.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   438
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   439
     * Locations are (by design) opaque handles that can easily be implemented
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   440
     * by enums like StandardLocation. Within JavacFileManager, each Location
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   441
     * has an associated LocationHandler, which provides much of the appropriate
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   442
     * functionality for the corresponding Location.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   443
     *
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   444
     * @see #initHandlers
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   445
     * @see #getHandler
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   446
     */
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   447
    protected static abstract class LocationHandler {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   448
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   449
        /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   450
         * @see JavaFileManager#handleOption
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   451
         */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   452
        abstract boolean handleOption(Option option, String value);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   453
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   454
        /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   455
         * @see StandardJavaFileManager#hasLocation
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   456
         */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   457
        boolean isSet() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   458
            return (getPaths() != null);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   459
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   460
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   461
        abstract boolean isExplicit();
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   462
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   463
        /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   464
         * @see StandardJavaFileManager#getLocation
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   465
         */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   466
        abstract Collection<Path> getPaths();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   467
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   468
        /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   469
         * @see StandardJavaFileManager#setLocation
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   470
         */
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   471
        abstract void setPaths(Iterable<? extends Path> paths) throws IOException;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   472
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   473
        /**
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   474
         * @see StandardJavaFileManager#setLocationForModule
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   475
         */
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   476
        abstract void setPathsForModule(String moduleName, Iterable<? extends Path> paths)
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   477
                throws IOException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   478
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   479
        /**
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
   480
         * @see JavaFileManager#getLocationForModule(Location, String)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   481
         */
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
   482
        Location getLocationForModule(String moduleName) throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   483
            return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   484
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   485
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   486
        /**
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
   487
         * @see JavaFileManager#getLocationForModule(Location, JavaFileObject, String)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   488
         */
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
   489
        Location getLocationForModule(Path file) throws IOException  {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   490
            return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   491
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   492
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   493
        /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   494
         * @see JavaFileManager#inferModuleName
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   495
         */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   496
        String inferModuleName() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   497
            return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   498
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   499
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   500
        /**
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
   501
         * @see JavaFileManager#listLocationsForModules
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   502
         */
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
   503
        Iterable<Set<Location>> listLocationsForModules() throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   504
            return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   505
        }
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   506
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   507
        /**
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   508
         * @see JavaFileManager#contains
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   509
         */
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   510
        abstract boolean contains(Path file) throws IOException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   511
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   512
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   513
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   514
     * A LocationHandler for a given Location, and associated set of options.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   515
     */
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   516
    private static abstract class BasicLocationHandler extends LocationHandler {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   517
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   518
        final Location location;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   519
        final Set<Option> options;
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6151
diff changeset
   520
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   521
        boolean explicit;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   522
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   523
        /**
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   524
         * Create a handler. The location and options provide a way to map from a location or an
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   525
         * option to the corresponding handler.
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   526
         *
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   527
         * @param location the location for which this is the handler
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   528
         * @param options the options affecting this location
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   529
         * @see #initHandlers
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   530
         */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   531
        protected BasicLocationHandler(Location location, Option... options) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   532
            this.location = location;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   533
            this.options = options.length == 0
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   534
                    ? EnumSet.noneOf(Option.class)
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   535
                    : EnumSet.copyOf(Arrays.asList(options));
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   536
        }
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   537
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   538
        @Override
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   539
        void setPathsForModule(String moduleName, Iterable<? extends Path> files) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   540
            // should not happen: protected by check in JavacFileManager
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   541
            throw new UnsupportedOperationException("not supported for " + location);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   542
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   543
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   544
        protected Path checkSingletonDirectory(Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   545
            Iterator<? extends Path> pathIter = paths.iterator();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   546
            if (!pathIter.hasNext()) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   547
                throw new IllegalArgumentException("empty path for directory");
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   548
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   549
            Path path = pathIter.next();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   550
            if (pathIter.hasNext()) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   551
                throw new IllegalArgumentException("path too long for directory");
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   552
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   553
            checkDirectory(path);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   554
            return path;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   555
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   556
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   557
        protected Path checkDirectory(Path path) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   558
            Objects.requireNonNull(path);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   559
            if (!Files.exists(path)) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   560
                throw new FileNotFoundException(path + ": does not exist");
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   561
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   562
            if (!Files.isDirectory(path)) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   563
                throw new IOException(path + ": not a directory");
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   564
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   565
            return path;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   566
        }
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   567
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   568
        @Override
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   569
        boolean isExplicit() {
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   570
            return explicit;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   571
        }
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   572
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   573
    }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   574
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   575
    /**
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   576
     * General purpose implementation for output locations, such as -d/CLASS_OUTPUT and
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   577
     * -s/SOURCE_OUTPUT. All options are treated as equivalent (i.e. aliases.)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   578
     * The value is a single file, possibly null.
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   579
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   580
    private class OutputLocationHandler extends BasicLocationHandler {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   581
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   582
        private Path outputDir;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   583
        private ModuleTable moduleTable;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   584
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   585
        OutputLocationHandler(Location location, Option... options) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   586
            super(location, options);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   587
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   588
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   589
        @Override
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   590
        boolean handleOption(Option option, String value) {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   591
            if (!options.contains(option)) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   592
                return false;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   593
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   595
            explicit = true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   596
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   597
            // TODO: could/should validate outputDir exists and is a directory
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   598
            // need to decide how best to report issue for benefit of
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   599
            // direct API call on JavaFileManager.handleOption(specifies IAE)
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   600
            // vs. command line decoding.
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   601
            outputDir = (value == null) ? null : getPath(value);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   602
            return true;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   603
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   604
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   605
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   606
        Collection<Path> getPaths() {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   607
            return (outputDir == null) ? null : Collections.singleton(outputDir);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   608
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   610
        @Override
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   611
        void setPaths(Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   612
            if (paths == null) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   613
                outputDir = null;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   614
            } else {
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   615
                explicit = true;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   616
                outputDir = checkSingletonDirectory(paths);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   617
            }
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   618
            moduleTable = null;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   619
            listed = false;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   620
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   621
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   622
        @Override
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
   623
        Location getLocationForModule(String name) {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   624
            if (moduleTable == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   625
                moduleTable = new ModuleTable();
42814
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   626
            }
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   627
            ModuleLocationHandler l = moduleTable.get(name);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   628
            if (l == null) {
42814
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   629
                Path out = outputDir.resolve(name);
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   630
                l = new ModuleLocationHandler(this, location.getName() + "[" + name + "]",
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   631
                        name, Collections.singletonList(out), true);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   632
                moduleTable.add(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   633
            }
42814
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   634
            return l;
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   635
        }
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   636
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   637
        @Override
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   638
        void setPathsForModule(String name, Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   639
            Path out = checkSingletonDirectory(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   640
            if (moduleTable == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   641
                moduleTable = new ModuleTable();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   642
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   643
            ModuleLocationHandler l = moduleTable.get(name);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   644
            if (l == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   645
                l = new ModuleLocationHandler(this, location.getName() + "[" + name + "]",
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   646
                        name, Collections.singletonList(out), true);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   647
                moduleTable.add(l);
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   648
            } else {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   649
                l.searchPath = Collections.singletonList(out);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   650
                moduleTable.updatePaths(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   651
            }
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   652
            explicit = true;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   653
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   654
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   655
        @Override
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
   656
        Location getLocationForModule(Path file) {
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
   657
            return (moduleTable == null) ? null : moduleTable.get(file);
42814
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   658
        }
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   659
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   660
        private boolean listed;
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   661
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   662
        @Override
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   663
        Iterable<Set<Location>> listLocationsForModules() throws IOException {
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   664
            if (!listed && outputDir != null) {
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   665
                try (DirectoryStream<Path> stream = Files.newDirectoryStream(outputDir)) {
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   666
                    for (Path p : stream) {
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   667
                        getLocationForModule(p.getFileName().toString());
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   668
                    }
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   669
                }
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   670
                listed = true;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   671
            }
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   672
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   673
            if (moduleTable == null || moduleTable.isEmpty())
42814
058fc03646d9 8171005: Fix JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName) to work with location == CLASS_OUTPUT
jlahoda
parents: 42414
diff changeset
   674
                return Collections.emptySet();
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   675
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   676
            return Collections.singleton(moduleTable.locations());
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   677
        }
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   678
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   679
        @Override
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   680
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   681
            if (moduleTable != null) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   682
                return moduleTable.contains(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   683
            } else {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   684
                return (outputDir) != null && normalize(file).startsWith(normalize(outputDir));
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   685
            }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   686
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   689
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   690
     * General purpose implementation for search path locations,
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   691
     * such as -sourcepath/SOURCE_PATH and -processorPath/ANNOTATION_PROCESSOR_PATH.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   692
     * All options are treated as equivalent (i.e. aliases.)
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   693
     * The value is an ordered set of files and/or directories.
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   694
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   695
    private class SimpleLocationHandler extends BasicLocationHandler {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   696
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   697
        protected Collection<Path> searchPath;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   699
        SimpleLocationHandler(Location location, Option... options) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   700
            super(location, options);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   701
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   703
        @Override
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   704
        boolean handleOption(Option option, String value) {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   705
            if (!options.contains(option)) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   706
                return false;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   707
            }
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   708
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   709
            explicit = true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   710
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   711
            searchPath = value == null ? null
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   712
                    : Collections.unmodifiableCollection(createPath().addFiles(value));
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   713
            return true;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   714
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   715
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   716
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   717
        Collection<Path> getPaths() {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   718
            return searchPath;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   719
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   721
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   722
        void setPaths(Iterable<? extends Path> files) {
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   723
            SearchPath p;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   724
            if (files == null) {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   725
                p = computePath(null);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   726
            } else {
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   727
                explicit = true;
14360
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   728
                p = createPath().addFiles(files);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   729
            }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   730
            searchPath = Collections.unmodifiableCollection(p);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   731
        }
14360
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   732
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   733
        protected SearchPath computePath(String value) {
14360
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   734
            return createPath().addFiles(value);
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   735
        }
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   736
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   737
        protected SearchPath createPath() {
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   738
            return new SearchPath();
14360
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   739
        }
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   740
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   741
        @Override
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   742
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   743
            return Locations.this.contains(searchPath, file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   744
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   747
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   748
     * Subtype of SimpleLocationHandler for -classpath/CLASS_PATH.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   749
     * If no value is given, a default is provided, based on system properties and other values.
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   750
     */
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   751
    private class ClassPathLocationHandler extends SimpleLocationHandler {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   752
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   753
        ClassPathLocationHandler() {
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
   754
            super(StandardLocation.CLASS_PATH, Option.CLASS_PATH);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   755
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   756
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   757
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   758
        Collection<Path> getPaths() {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   759
            lazy();
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   760
            return searchPath;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   761
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   762
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   763
        @Override
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   764
        protected SearchPath computePath(String value) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   765
            String cp = value;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   767
            // CLASSPATH environment variable when run from `javac'.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   768
            if (cp == null) {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   769
                cp = System.getProperty("env.class.path");
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   770
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   771
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   772
            // If invoked via a java VM (not the javac launcher), use the
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   773
            // platform class path
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   774
            if (cp == null && System.getProperty("application.home") == null) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   775
                cp = System.getProperty("java.class.path");
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   776
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   777
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   778
            // Default to current working directory.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   779
            if (cp == null) {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   780
                cp = ".";
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   781
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   782
14360
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   783
            return createPath().addFiles(cp);
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   784
        }
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   785
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   786
        @Override
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   787
        protected SearchPath createPath() {
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   788
            return new SearchPath()
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   789
                    .expandJarClassPaths(true) // Only search user jars for Class-Paths
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
   790
                    .emptyPathDefault(getPath("."));  // Empty path elt ==> current directory
14360
2a8304e421ed 6725230: Java Compilation with Jsr199 ignores Class-Path in manifest
jjg
parents: 14259
diff changeset
   791
        }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   792
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   793
        private void lazy() {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   794
            if (searchPath == null) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   795
                setPaths(null);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   796
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   797
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   798
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   799
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   800
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   801
     * Custom subtype of LocationHandler for PLATFORM_CLASS_PATH.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   802
     * Various options are supported for different components of the
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   803
     * platform class path.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   804
     * Setting a value with setLocation overrides all existing option values.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   805
     * Setting any option overrides any value set with setLocation, and
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   806
     * reverts to using default values for options that have not been set.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   807
     * Setting -bootclasspath or -Xbootclasspath overrides any existing
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   808
     * value for -Xbootclasspath/p: and -Xbootclasspath/a:.
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   809
     */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   810
    private class BootClassPathLocationHandler extends BasicLocationHandler {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   811
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
   812
        private Collection<Path> searchPath;
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22153
diff changeset
   813
        final Map<Option, String> optionValues = new EnumMap<>(Option.class);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   814
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   815
        /**
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   816
         * Is the bootclasspath the default?
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   817
         */
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   818
        private boolean isDefault;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   819
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   820
        BootClassPathLocationHandler() {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   821
            super(StandardLocation.PLATFORM_CLASS_PATH,
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
   822
                    Option.BOOT_CLASS_PATH, Option.XBOOTCLASSPATH,
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   823
                    Option.XBOOTCLASSPATH_PREPEND,
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   824
                    Option.XBOOTCLASSPATH_APPEND,
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   825
                    Option.ENDORSEDDIRS, Option.DJAVA_ENDORSED_DIRS,
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   826
                    Option.EXTDIRS, Option.DJAVA_EXT_DIRS);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   827
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   828
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   829
        boolean isDefault() {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   830
            lazy();
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   831
            return isDefault;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   832
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   833
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   834
        @Override
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
   835
        boolean handleOption(Option option, String value) {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   836
            if (!options.contains(option)) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   837
                return false;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   838
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   839
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   840
            explicit = true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   841
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   842
            option = canonicalize(option);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   843
            optionValues.put(option, value);
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
   844
            if (option == BOOT_CLASS_PATH) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   845
                optionValues.remove(XBOOTCLASSPATH_PREPEND);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   846
                optionValues.remove(XBOOTCLASSPATH_APPEND);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   847
            }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   848
            searchPath = null;  // reset to "uninitialized"
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   849
            return true;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   850
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   851
        // where
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   852
        // TODO: would be better if option aliasing was handled at a higher
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   853
        // level
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   854
        private Option canonicalize(Option option) {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   855
            switch (option) {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   856
                case XBOOTCLASSPATH:
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
   857
                    return Option.BOOT_CLASS_PATH;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   858
                case DJAVA_ENDORSED_DIRS:
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   859
                    return Option.ENDORSEDDIRS;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   860
                case DJAVA_EXT_DIRS:
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   861
                    return Option.EXTDIRS;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   862
                default:
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   863
                    return option;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   864
            }
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   865
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   867
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   868
        Collection<Path> getPaths() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
            lazy();
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   870
            return searchPath;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   871
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   872
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   873
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   874
        void setPaths(Iterable<? extends Path> files) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   875
            if (files == null) {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   876
                searchPath = null;  // reset to "uninitialized"
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   877
            } else {
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   878
                isDefault = false;
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
   879
                explicit = true;
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   880
                SearchPath p = new SearchPath().addFiles(files, false);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   881
                searchPath = Collections.unmodifiableCollection(p);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   882
                optionValues.clear();
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   883
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   884
        }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   885
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   886
        SearchPath computePath() throws IOException {
27118
3c8314271af7 8060043: Rename Locations.Path to Locations.SearchPath
jjg
parents: 25874
diff changeset
   887
            SearchPath path = new SearchPath();
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   888
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
   889
            String bootclasspathOpt = optionValues.get(BOOT_CLASS_PATH);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   890
            String endorseddirsOpt = optionValues.get(ENDORSEDDIRS);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   891
            String extdirsOpt = optionValues.get(EXTDIRS);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   892
            String xbootclasspathPrependOpt = optionValues.get(XBOOTCLASSPATH_PREPEND);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   893
            String xbootclasspathAppendOpt = optionValues.get(XBOOTCLASSPATH_APPEND);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   894
            path.addFiles(xbootclasspathPrependOpt);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   895
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   896
            if (endorseddirsOpt != null) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   897
                path.addDirectories(endorseddirsOpt);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   898
            } else {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   899
                path.addDirectories(System.getProperty("java.endorsed.dirs"), false);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   900
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   901
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   902
            if (bootclasspathOpt != null) {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   903
                path.addFiles(bootclasspathOpt);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   904
            } else {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   905
                // Standard system classes for this compiler's release.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   906
                Collection<Path> systemClasses = systemClasses();
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   907
                if (systemClasses != null) {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   908
                    path.addFiles(systemClasses, false);
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   909
                } else {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   910
                    // fallback to the value of sun.boot.class.path
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   911
                    String files = System.getProperty("sun.boot.class.path");
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   912
                    path.addFiles(files, false);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   913
                }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   914
            }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   915
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   916
            path.addFiles(xbootclasspathAppendOpt);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   917
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   918
            // Strictly speaking, standard extensions are not bootstrap
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   919
            // classes, but we treat them identically, so we'll pretend
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   920
            // that they are.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   921
            if (extdirsOpt != null) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   922
                path.addDirectories(extdirsOpt);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   923
            } else {
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   924
                // Add lib/jfxrt.jar to the search path
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   925
               Path jfxrt = javaHome.resolve("lib/jfxrt.jar");
27858
chegar
parents: 27579 27852
diff changeset
   926
                if (Files.exists(jfxrt)) {
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   927
                    path.addFile(jfxrt, false);
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   928
                }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   929
                path.addDirectories(System.getProperty("java.ext.dirs"), false);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   930
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   931
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   932
            isDefault =
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   933
                       (xbootclasspathPrependOpt == null)
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   934
                    && (bootclasspathOpt == null)
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   935
                    && (xbootclasspathAppendOpt == null);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   936
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   937
            return path;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   938
        }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   939
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   940
        /**
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   941
         * Return a collection of files containing system classes.
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   942
         * Returns {@code null} if not running on a modular image.
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   943
         *
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   944
         * @throws UncheckedIOException if an I/O errors occurs
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   945
         */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   946
        private Collection<Path> systemClasses() throws IOException {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   947
            // Return "modules" jimage file if available
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   948
            if (Files.isRegularFile(thisSystemModules)) {
40302
8c0d8d2c3519 8143048: Re-examine dependency on property sun.boot.class.path
jlahoda
parents: 38536
diff changeset
   949
                return Collections.singleton(thisSystemModules);
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   950
            }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   951
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   952
            // Exploded module image
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   953
            Path modules = javaHome.resolve("modules");
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   954
            if (Files.isDirectory(modules.resolve("java.base"))) {
29053
5c1f1d6b40f6 8067445: New modular image-based file manager skips boot classes
jlahoda
parents: 28707
diff changeset
   955
                try (Stream<Path> listedModules = Files.list(modules)) {
40302
8c0d8d2c3519 8143048: Re-examine dependency on property sun.boot.class.path
jlahoda
parents: 38536
diff changeset
   956
                    return listedModules.collect(Collectors.toList());
29053
5c1f1d6b40f6 8067445: New modular image-based file manager skips boot classes
jlahoda
parents: 28707
diff changeset
   957
                }
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   958
            }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   959
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   960
            // not a modular image that we know about
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   961
            return null;
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   962
        }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   963
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   964
        private void lazy() {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   965
            if (searchPath == null) {
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   966
                try {
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   967
                    searchPath = Collections.unmodifiableCollection(computePath());
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   968
                } catch (IOException e) {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   969
                    // TODO: need better handling here, e.g. javac Abort?
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   970
                    throw new UncheckedIOException(e);
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27226
diff changeset
   971
                }
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   972
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   973
        }
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   974
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   975
        @Override
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   976
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   977
            return Locations.this.contains(searchPath, file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   978
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   980
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   981
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   982
     * A LocationHander to represent modules found from a module-oriented
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   983
     * location such as MODULE_SOURCE_PATH, UPGRADE_MODULE_PATH,
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   984
     * SYSTEM_MODULES and MODULE_PATH.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   985
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   986
     * The Location can be specified to accept overriding classes from the
40762
f8883aa0053c 8160851: Remove old launcher module-related options
mchung
parents: 40513
diff changeset
   987
     * {@code --patch-module <module>=<path> } parameter.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   988
     */
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
   989
    private class ModuleLocationHandler extends LocationHandler implements Location {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   990
        private final LocationHandler parent;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   991
        private final String name;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   992
        private final String moduleName;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   993
        private final boolean output;
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
   994
        boolean explicit;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   995
        Collection<Path> searchPath;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
   996
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   997
        ModuleLocationHandler(LocationHandler parent, String name, String moduleName,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   998
                Collection<Path> searchPath, boolean output) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
   999
            this.parent = parent;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1000
            this.name = name;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1001
            this.moduleName = moduleName;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1002
            this.searchPath = searchPath;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1003
            this.output = output;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1004
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1005
37848
3c8ff4204d2d 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36526
diff changeset
  1006
        @Override @DefinedBy(Api.COMPILER)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1007
        public String getName() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1008
            return name;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1009
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1010
37848
3c8ff4204d2d 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36526
diff changeset
  1011
        @Override @DefinedBy(Api.COMPILER)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1012
        public boolean isOutputLocation() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1013
            return output;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1014
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1015
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1016
        @Override // defined by LocationHandler
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1017
        boolean handleOption(Option option, String value) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1018
            throw new UnsupportedOperationException();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1019
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1020
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1021
        @Override // defined by LocationHandler
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1022
        Collection<Path> getPaths() {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1023
            return Collections.unmodifiableCollection(searchPath);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1024
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1025
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1026
        @Override
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1027
        boolean isExplicit() {
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1028
            return true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1029
        }
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1030
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1031
        @Override // defined by LocationHandler
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1032
        void setPaths(Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1033
            // defer to the parent to determine if this is acceptable
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1034
            parent.setPathsForModule(moduleName, paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1035
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1036
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1037
        @Override // defined by LocationHandler
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1038
        void setPathsForModule(String moduleName, Iterable<? extends Path> paths) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1039
            throw new UnsupportedOperationException("not supported for " + name);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1040
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1041
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1042
        @Override // defined by LocationHandler
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1043
        String inferModuleName() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1044
            return moduleName;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1045
        }
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1046
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1047
        @Override
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1048
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1049
            return Locations.this.contains(searchPath, file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1050
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1051
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1052
        @Override
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1053
        public String toString() {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1054
            return name;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1055
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1056
    }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1057
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1058
    /**
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1059
     * A table of module location handlers, indexed by name and path.
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1060
     */
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1061
    private class ModuleTable {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1062
        private final Map<String, ModuleLocationHandler> nameMap = new LinkedHashMap<>();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1063
        private final Map<Path, ModuleLocationHandler> pathMap = new LinkedHashMap<>();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1064
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1065
        void add(ModuleLocationHandler h) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1066
            nameMap.put(h.moduleName, h);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1067
            for (Path p : h.searchPath) {
44021
3ea5514d9fbe 8175990: Javac fails to find module-info.java if module source path contains symlinks
ksrini
parents: 44019
diff changeset
  1068
                pathMap.put(normalize(p), h);
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1069
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1070
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1071
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1072
        void updatePaths(ModuleLocationHandler h) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1073
            // use iterator, to be able to remove old entries
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1074
            for (Iterator<Map.Entry<Path, ModuleLocationHandler>> iter = pathMap.entrySet().iterator();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1075
                    iter.hasNext(); ) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1076
                Map.Entry<Path, ModuleLocationHandler> e = iter.next();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1077
                if (e.getValue() == h) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1078
                    iter.remove();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1079
                }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1080
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1081
            for (Path p : h.searchPath) {
44021
3ea5514d9fbe 8175990: Javac fails to find module-info.java if module source path contains symlinks
ksrini
parents: 44019
diff changeset
  1082
                pathMap.put(normalize(p), h);
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1083
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1084
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1085
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1086
        ModuleLocationHandler get(String name) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1087
            return nameMap.get(name);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1088
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1089
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1090
        ModuleLocationHandler get(Path path) {
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1091
            while (path != null) {
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1092
                ModuleLocationHandler l = pathMap.get(path);
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1093
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1094
                if (l != null)
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1095
                    return l;
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1096
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1097
                path = path.getParent();
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1098
            }
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1099
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1100
            return null;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1101
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1102
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1103
        void clear() {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1104
            nameMap.clear();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1105
            pathMap.clear();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1106
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1107
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1108
        boolean isEmpty() {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1109
            return nameMap.isEmpty();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1110
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1111
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1112
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1113
            return Locations.this.contains(pathMap.keySet(), file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1114
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1115
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1116
        Set<Location> locations() {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1117
            return Collections.unmodifiableSet(nameMap.values().stream().collect(Collectors.toSet()));
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1118
        }
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1119
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1120
        Set<Location> explicitLocations() {
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1121
            return Collections.unmodifiableSet(nameMap.entrySet()
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1122
                                                      .stream()
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1123
                                                      .filter(e -> e.getValue().explicit)
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1124
                                                      .map(e -> e.getValue())
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1125
                                                      .collect(Collectors.toSet()));
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1126
        }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1127
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1128
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1129
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1130
     * A LocationHandler for simple module-oriented search paths,
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1131
     * like UPGRADE_MODULE_PATH and MODULE_PATH.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1132
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1133
    private class ModulePathLocationHandler extends SimpleLocationHandler {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1134
        private ModuleTable moduleTable;
42414
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1135
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1136
        ModulePathLocationHandler(Location location, Option... options) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1137
            super(location, options);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1138
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1139
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1140
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1141
        public boolean handleOption(Option option, String value) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1142
            if (!options.contains(option)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1143
                return false;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1144
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1145
            setPaths(value == null ? null : getPathEntries(value));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1146
            return true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1147
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1148
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1149
        @Override
42414
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1150
        public Location getLocationForModule(String moduleName) {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1151
            initModuleLocations();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1152
            return moduleTable.get(moduleName);
42414
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1153
        }
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1154
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1155
        @Override
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1156
        public Location getLocationForModule(Path file) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1157
            initModuleLocations();
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1158
            return moduleTable.get(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1159
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1160
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1161
        @Override
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  1162
        Iterable<Set<Location>> listLocationsForModules() {
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1163
            Set<Location> explicitLocations = moduleTable != null ?
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1164
                    moduleTable.explicitLocations() : Collections.emptySet();
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1165
            Iterable<Set<Location>> explicitLocationsList = !explicitLocations.isEmpty()
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1166
                    ? Collections.singletonList(explicitLocations)
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1167
                    : Collections.emptyList();
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1168
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1169
            if (searchPath == null)
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1170
                return explicitLocationsList;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1171
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1172
            Iterable<Set<Location>> searchPathLocations =
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1173
                    () -> new ModulePathIterator();
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1174
            return () -> Iterators.createCompoundIterator(Arrays.asList(explicitLocationsList,
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1175
                                                                        searchPathLocations),
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1176
                                                          Iterable::iterator);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1177
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1178
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1179
        @Override
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1180
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1181
            if (moduleTable == null) {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1182
                initModuleLocations();
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1183
            }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1184
            return moduleTable.contains(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1185
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1186
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1187
        @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1188
        void setPaths(Iterable<? extends Path> paths) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1189
            if (paths != null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1190
                for (Path p: paths) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1191
                    checkValidModulePathEntry(p);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1192
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1193
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1194
            super.setPaths(paths);
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1195
            moduleTable = null;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1196
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1197
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1198
        @Override
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1199
        void setPathsForModule(String name, Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1200
            List<Path> checkedPaths = checkPaths(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1201
            // how far should we go to validate the paths provide a module?
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1202
            // e.g. contain module-info with the correct name?
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1203
            initModuleLocations();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1204
            ModuleLocationHandler l = moduleTable.get(name);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1205
            if (l == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1206
                l = new ModuleLocationHandler(this, location.getName() + "[" + name + "]",
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1207
                        name, checkedPaths, true);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1208
                moduleTable.add(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1209
           } else {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1210
                l.searchPath = checkedPaths;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1211
                moduleTable.updatePaths(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1212
            }
47363
77c792d06646 8188035: JavaFileManager.listLocationsForModules does not always reflect values set through StandardJavaFileManager.setLocationForModule.
jlahoda
parents: 47216
diff changeset
  1213
            l.explicit = true;
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1214
            explicit = true;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1215
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1216
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1217
        private List<Path> checkPaths(Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1218
            Objects.requireNonNull(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1219
            List<Path> validPaths = new ArrayList<>();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1220
            for (Path p : paths) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1221
                validPaths.add(checkDirectory(p));
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1222
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1223
            return validPaths;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1224
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1225
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1226
        private void initModuleLocations() {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1227
            if (moduleTable != null) {
42414
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1228
                return;
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1229
            }
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1230
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1231
            moduleTable = new ModuleTable();
42414
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1232
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1233
            for (Set<Location> set : listLocationsForModules()) {
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1234
                for (Location locn : set) {
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1235
                    if (locn instanceof ModuleLocationHandler) {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1236
                        ModuleLocationHandler l = (ModuleLocationHandler) locn;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1237
                        if (!moduleTable.nameMap.containsKey(l.moduleName)) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1238
                            moduleTable.add(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1239
                        }
42414
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1240
                    }
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1241
                }
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1242
            }
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1243
        }
0ae183c295a0 8162712: StandardJavaFileManager.getModuleLocation() can't find a module
jjg
parents: 42408
diff changeset
  1244
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1245
        private void checkValidModulePathEntry(Path p) {
43771
25ddac537bb5 8174104: Compiler does not allow non-existent module path entry
jjg
parents: 43574
diff changeset
  1246
            if (!Files.exists(p)) {
25ddac537bb5 8174104: Compiler does not allow non-existent module path entry
jjg
parents: 43574
diff changeset
  1247
                // warning may be generated later
25ddac537bb5 8174104: Compiler does not allow non-existent module path entry
jjg
parents: 43574
diff changeset
  1248
                return;
25ddac537bb5 8174104: Compiler does not allow non-existent module path entry
jjg
parents: 43574
diff changeset
  1249
            }
25ddac537bb5 8174104: Compiler does not allow non-existent module path entry
jjg
parents: 43574
diff changeset
  1250
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1251
            if (Files.isDirectory(p)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1252
                // either an exploded module or a directory of modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1253
                return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1254
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1255
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1256
            String name = p.getFileName().toString();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1257
            int lastDot = name.lastIndexOf(".");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1258
            if (lastDot > 0) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1259
                switch (name.substring(lastDot)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1260
                    case ".jar":
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1261
                    case ".jmod":
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1262
                        return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1263
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1264
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1265
            throw new IllegalArgumentException(p.toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1266
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1267
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1268
        class ModulePathIterator implements Iterator<Set<Location>> {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1269
            Iterator<Path> pathIter = searchPath.iterator();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1270
            int pathIndex = 0;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1271
            Set<Location> next = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1272
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1273
            @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1274
            public boolean hasNext() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1275
                if (next != null)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1276
                    return true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1277
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1278
                while (next == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1279
                    if (pathIter.hasNext()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1280
                        Path path = pathIter.next();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1281
                        if (Files.isDirectory(path)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1282
                            next = scanDirectory(path);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1283
                        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1284
                            next = scanFile(path);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1285
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1286
                        pathIndex++;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1287
                    } else
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1288
                        return false;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1289
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1290
                return true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1291
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1292
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1293
            @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1294
            public Set<Location> next() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1295
                hasNext();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1296
                if (next != null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1297
                    Set<Location> result = next;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1298
                    next = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1299
                    return result;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1300
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1301
                throw new NoSuchElementException();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1302
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1303
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1304
            private Set<Location> scanDirectory(Path path) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1305
                Set<Path> paths = new LinkedHashSet<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1306
                Path moduleInfoClass = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1307
                try (DirectoryStream<Path> stream = Files.newDirectoryStream(path)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1308
                    for (Path entry: stream) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1309
                        if (entry.endsWith("module-info.class")) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1310
                            moduleInfoClass = entry;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1311
                            break;  // no need to continue scanning
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1312
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1313
                        paths.add(entry);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1314
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1315
                } catch (DirectoryIteratorException | IOException ignore) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1316
                    log.error(Errors.LocnCantReadDirectory(path));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1317
                    return Collections.emptySet();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1318
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1319
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1320
                if (moduleInfoClass != null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1321
                    // It's an exploded module directly on the module path.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1322
                    // We can't infer module name from the directory name, so have to
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1323
                    // read module-info.class.
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1324
                    try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1325
                        String moduleName = readModuleName(moduleInfoClass);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1326
                        String name = location.getName()
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1327
                                + "[" + pathIndex + ":" + moduleName + "]";
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1328
                        ModuleLocationHandler l = new ModuleLocationHandler(
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1329
                                ModulePathLocationHandler.this, name, moduleName,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1330
                                Collections.singletonList(path), false);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1331
                        return Collections.singleton(l);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1332
                    } catch (ModuleNameReader.BadClassFile e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1333
                        log.error(Errors.LocnBadModuleInfo(path));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1334
                        return Collections.emptySet();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1335
                    } catch (IOException e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1336
                        log.error(Errors.LocnCantReadFile(path));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1337
                        return Collections.emptySet();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1338
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1339
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1340
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1341
                // A directory of modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1342
                Set<Location> result = new LinkedHashSet<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1343
                int index = 0;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1344
                for (Path entry : paths) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1345
                    Pair<String,Path> module = inferModuleName(entry);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1346
                    if (module == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1347
                        // diagnostic reported if necessary; skip to next
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1348
                        continue;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1349
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1350
                    String moduleName = module.fst;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1351
                    Path modulePath = module.snd;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1352
                    String name = location.getName()
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1353
                            + "[" + pathIndex + "." + (index++) + ":" + moduleName + "]";
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1354
                    ModuleLocationHandler l = new ModuleLocationHandler(
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1355
                            ModulePathLocationHandler.this, name, moduleName,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1356
                            Collections.singletonList(modulePath), false);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1357
                    result.add(l);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1358
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1359
                return result;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1360
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1361
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1362
            private Set<Location> scanFile(Path path) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1363
                Pair<String,Path> module = inferModuleName(path);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1364
                if (module == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1365
                    // diagnostic reported if necessary
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1366
                    return Collections.emptySet();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1367
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1368
                String moduleName = module.fst;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1369
                Path modulePath = module.snd;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1370
                String name = location.getName()
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1371
                        + "[" + pathIndex + ":" + moduleName + "]";
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1372
                ModuleLocationHandler l = new ModuleLocationHandler(
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1373
                        ModulePathLocationHandler.this, name, moduleName,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1374
                        Collections.singletonList(modulePath), false);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1375
                return Collections.singleton(l);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1376
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1377
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1378
            private Pair<String,Path> inferModuleName(Path p) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1379
                if (Files.isDirectory(p)) {
47703
dbfac941197a 8180744: Update ct.sym for JDK 10
jlahoda
parents: 47702
diff changeset
  1380
                    if (Files.exists(p.resolve("module-info.class")) ||
dbfac941197a 8180744: Update ct.sym for JDK 10
jlahoda
parents: 47702
diff changeset
  1381
                        Files.exists(p.resolve("module-info.sig"))) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1382
                        String name = p.getFileName().toString();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1383
                        if (SourceVersion.isName(name))
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1384
                            return new Pair<>(name, p);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1385
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1386
                    return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1387
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1388
38536
42569f7fe4e6 8154824: Compiler should handle java.nio.file.FileSystemNotFoundException gracefully and not abort
sadayapalam
parents: 38519
diff changeset
  1389
                if (p.getFileName().toString().endsWith(".jar") && fsInfo.exists(p)) {
43574
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1390
                    FileSystemProvider jarFSProvider = fsInfo.getJarFSProvider();
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1391
                    if (jarFSProvider == null) {
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1392
                        log.error(Errors.NoZipfsForArchive(p));
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1393
                        return null;
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1394
                    }
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1395
                    try (FileSystem fs = jarFSProvider.newFileSystem(p, fsEnv)) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1396
                        Path moduleInfoClass = fs.getPath("module-info.class");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1397
                        if (Files.exists(moduleInfoClass)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1398
                            String moduleName = readModuleName(moduleInfoClass);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1399
                            return new Pair<>(moduleName, p);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1400
                        }
45682
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1401
                        Path mf = fs.getPath("META-INF/MANIFEST.MF");
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1402
                        if (Files.exists(mf)) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1403
                            try (InputStream in = Files.newInputStream(mf)) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1404
                                Manifest man = new Manifest(in);
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1405
                                Attributes attrs = man.getMainAttributes();
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1406
                                if (attrs != null) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1407
                                    String moduleName = attrs.getValue(new Attributes.Name("Automatic-Module-Name"));
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1408
                                    if (moduleName != null) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1409
                                        if (isModuleName(moduleName)) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1410
                                            return new Pair<>(moduleName, p);
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1411
                                        } else {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1412
                                            log.error(Errors.LocnCantGetModuleNameForJar(p));
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1413
                                            return null;
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1414
                                        }
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1415
                                    }
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1416
                                }
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1417
                            }
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1418
                        }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1419
                    } catch (ModuleNameReader.BadClassFile e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1420
                        log.error(Errors.LocnBadModuleInfo(p));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1421
                        return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1422
                    } catch (IOException e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1423
                        log.error(Errors.LocnCantReadFile(p));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1424
                        return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1425
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1426
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1427
                    //automatic module:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1428
                    String fn = p.getFileName().toString();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1429
                    //from ModulePath.deriveModuleDescriptor:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1430
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1431
                    // drop .jar
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1432
                    String mn = fn.substring(0, fn.length()-4);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1433
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1434
                    // find first occurrence of -${NUMBER}. or -${NUMBER}$
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1435
                    Matcher matcher = Pattern.compile("-(\\d+(\\.|$))").matcher(mn);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1436
                    if (matcher.find()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1437
                        int start = matcher.start();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1438
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1439
                        mn = mn.substring(0, start);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1440
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1441
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1442
                    // finally clean up the module name
44573
245bb4e6f983 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44063
diff changeset
  1443
                    mn =  mn.replaceAll("[^A-Za-z0-9]", ".")  // replace non-alphanumeric
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1444
                            .replaceAll("(\\.)(\\1)+", ".")   // collapse repeating dots
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1445
                            .replaceAll("^\\.", "")           // drop leading dots
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1446
                            .replaceAll("\\.$", "");          // drop trailing dots
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1447
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1448
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1449
                    if (!mn.isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1450
                        return new Pair<>(mn, p);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1451
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1452
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1453
                    log.error(Errors.LocnCantGetModuleNameForJar(p));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1454
                    return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1455
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1456
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1457
                if (p.getFileName().toString().endsWith(".jmod")) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1458
                    try {
41440
abd777fa486c 8166860: Add magic number to jmod file
mchung
parents: 41254
diff changeset
  1459
                        // check if the JMOD file is valid
48433
04d8d293e458 8194141: Remove JDK9Wrappers
jjg
parents: 47703
diff changeset
  1460
                        JmodFile.checkMagic(p);
41440
abd777fa486c 8166860: Add magic number to jmod file
mchung
parents: 41254
diff changeset
  1461
abd777fa486c 8166860: Add magic number to jmod file
mchung
parents: 41254
diff changeset
  1462
                        // No JMOD file system.  Use JarFileSystem to
abd777fa486c 8166860: Add magic number to jmod file
mchung
parents: 41254
diff changeset
  1463
                        // workaround for now
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1464
                        FileSystem fs = fileSystems.get(p);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1465
                        if (fs == null) {
43574
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1466
                            FileSystemProvider jarFSProvider = fsInfo.getJarFSProvider();
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1467
                            if (jarFSProvider == null) {
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1468
                                log.error(Errors.LocnCantReadFile(p));
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1469
                                return null;
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1470
                            }
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1471
                            fs = jarFSProvider.newFileSystem(p, Collections.emptyMap());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1472
                            try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1473
                                Path moduleInfoClass = fs.getPath("classes/module-info.class");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1474
                                String moduleName = readModuleName(moduleInfoClass);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1475
                                Path modulePath = fs.getPath("classes");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1476
                                fileSystems.put(p, fs);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1477
                                closeables.add(fs);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1478
                                fs = null; // prevent fs being closed in the finally clause
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1479
                                return new Pair<>(moduleName, modulePath);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1480
                            } finally {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1481
                                if (fs != null)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1482
                                    fs.close();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1483
                            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1484
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1485
                    } catch (ModuleNameReader.BadClassFile e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1486
                        log.error(Errors.LocnBadModuleInfo(p));
43574
042e694725f7 8166675: Latent bug in jar file handling during module path processing.
jjg
parents: 43267
diff changeset
  1487
                    } catch (IOException e) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1488
                        log.error(Errors.LocnCantReadFile(p));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1489
                        return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1490
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1491
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1492
38519
d70d50ec27bb 8154997: Add examples for jigsaw diagnostics
sadayapalam
parents: 37944
diff changeset
  1493
                if (warn && false) {  // temp disable, when enabled, massage examples.not-yet.txt suitably.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1494
                    log.warning(Warnings.LocnUnknownFileOnModulePath(p));
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1495
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1496
                return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1497
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1498
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1499
            private String readModuleName(Path path) throws IOException, ModuleNameReader.BadClassFile {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1500
                if (moduleNameReader == null)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1501
                    moduleNameReader = new ModuleNameReader();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1502
                return moduleNameReader.readModuleName(path);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1503
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1504
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1505
45682
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1506
        //from jdk.internal.module.Checks:
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1507
        /**
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1508
         * Returns {@code true} if the given name is a legal module name.
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1509
         */
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1510
        private boolean isModuleName(String name) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1511
            int next;
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1512
            int off = 0;
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1513
            while ((next = name.indexOf('.', off)) != -1) {
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1514
                String id = name.substring(off, next);
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1515
                if (!SourceVersion.isName(id))
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1516
                    return false;
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1517
                off = next+1;
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1518
            }
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1519
            String last = name.substring(off);
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1520
            return SourceVersion.isName(last);
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 44822
diff changeset
  1521
        }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1522
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1523
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1524
    private class ModuleSourcePathLocationHandler extends BasicLocationHandler {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1525
        private ModuleTable moduleTable;
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1526
        private List<Path> paths;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1527
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1528
        ModuleSourcePathLocationHandler() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1529
            super(StandardLocation.MODULE_SOURCE_PATH,
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
  1530
                    Option.MODULE_SOURCE_PATH);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1531
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1532
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1533
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1534
        boolean handleOption(Option option, String value) {
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1535
            explicit = true;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1536
            init(value);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1537
            return true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1538
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1539
51615
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1540
        /**
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1541
         * Initializes the module table, based on a string containing the composition
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1542
         * of a series of command-line options.
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1543
         * At most one pattern to initialize a series of modules can be given.
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1544
         * At most one module-specific search path per module can be given.
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1545
         *
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1546
         * @param value a series of values, separated by NUL.
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1547
         */
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1548
        void init(String value) {
51615
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1549
            Pattern moduleSpecificForm = Pattern.compile("([\\p{Alnum}$_.]+)=(.*)");
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1550
            List<String> pathsForModules = new ArrayList<>();
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1551
            String modulePattern = null;
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1552
            for (String v : value.split("\0")) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1553
                if (moduleSpecificForm.matcher(v).matches()) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1554
                    pathsForModules.add(v);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1555
                } else {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1556
                    modulePattern = v;
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1557
                }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1558
            }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1559
            // set the general module pattern first, if given
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1560
            if (modulePattern != null) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1561
                initFromPattern(modulePattern);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1562
            }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1563
            pathsForModules.forEach(this::initForModule);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1564
        }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1565
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1566
        /**
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1567
         * Initializes a module-specific override, using {@code setPathsForModule}.
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1568
         *
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1569
         * @param value a string of the form: module-name=search-path
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1570
         */
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1571
        void initForModule(String value) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1572
            int eq = value.indexOf('=');
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1573
            String name = value.substring(0, eq);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1574
            List<Path> paths = new ArrayList<>();
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1575
            for (String v : value.substring(eq + 1).split(File.pathSeparator)) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1576
                try {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1577
                    paths.add(Paths.get(v));
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1578
                } catch (InvalidPathException e) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1579
                    throw new IllegalArgumentException("invalid path: " + v, e);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1580
                }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1581
            }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1582
            try {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1583
                setPathsForModule(name, paths);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1584
            } catch (IOException e) {
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1585
                e.printStackTrace();
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1586
                throw new IllegalArgumentException("cannot set path for module " + name, e);
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1587
            }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1588
        }
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1589
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1590
        /**
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1591
         * Initializes the module table based on a custom option syntax.
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1592
         *
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1593
         * @param value the value such as may be given to a --module-source-path option
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1594
         */
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 48721
diff changeset
  1595
        void initFromPattern(String value) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1596
            Collection<String> segments = new ArrayList<>();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1597
            for (String s: value.split(File.pathSeparator)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1598
                expandBraces(s, segments);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1599
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1600
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1601
            Map<String, List<Path>> map = new LinkedHashMap<>();
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1602
            List<Path> noSuffixPaths = new ArrayList<>();
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1603
            boolean anySuffix = false;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1604
            final String MARKER = "*";
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1605
            for (String seg: segments) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1606
                int markStart = seg.indexOf(MARKER);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1607
                if (markStart == -1) {
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1608
                    Path p = getPath(seg);
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1609
                    add(map, p, null);
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1610
                    noSuffixPaths.add(p);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1611
                } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1612
                    if (markStart == 0 || !isSeparator(seg.charAt(markStart - 1))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1613
                        throw new IllegalArgumentException("illegal use of " + MARKER + " in " + seg);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1614
                    }
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1615
                    Path prefix = getPath(seg.substring(0, markStart - 1));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1616
                    Path suffix;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1617
                    int markEnd = markStart + MARKER.length();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1618
                    if (markEnd == seg.length()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1619
                        suffix = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1620
                    } else if (!isSeparator(seg.charAt(markEnd))
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1621
                            || seg.indexOf(MARKER, markEnd) != -1) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1622
                        throw new IllegalArgumentException("illegal use of " + MARKER + " in " + seg);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1623
                    } else {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1624
                        suffix = getPath(seg.substring(markEnd + 1));
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1625
                        anySuffix = true;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1626
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1627
                    add(map, prefix, suffix);
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1628
                    if (suffix == null) {
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1629
                        noSuffixPaths.add(prefix);
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1630
                    }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1631
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1632
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1633
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1634
            initModuleTable(map);
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1635
            paths = anySuffix ? null : noSuffixPaths;
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1636
        }
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1637
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1638
        private void initModuleTable(Map<String, List<Path>> map) {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1639
            moduleTable = new ModuleTable();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1640
            map.forEach((modName, modPath) -> {
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1641
                boolean hasModuleInfo = modPath.stream().anyMatch(checkModuleInfo);
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1642
                if (hasModuleInfo) {
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1643
                    String locnName = location.getName() + "[" + modName + "]";
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1644
                    ModuleLocationHandler l = new ModuleLocationHandler(this, locnName, modName,
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1645
                            modPath, false);
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1646
                    moduleTable.add(l);
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1647
                }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1648
            });
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1649
        }
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1650
        //where:
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1651
            private final Predicate<Path> checkModuleInfo =
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1652
                    p -> Files.exists(p.resolve("module-info.java"));
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1653
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1654
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1655
        private boolean isSeparator(char ch) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1656
            // allow both separators on Windows
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1657
            return (ch == File.separatorChar) || (ch == '/');
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1658
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1659
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1660
        void add(Map<String, List<Path>> map, Path prefix, Path suffix) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1661
            if (!Files.isDirectory(prefix)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1662
                if (warn) {
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48433
diff changeset
  1663
                    Warning key = Files.exists(prefix)
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48433
diff changeset
  1664
                            ? Warnings.DirPathElementNotDirectory(prefix)
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48433
diff changeset
  1665
                            : Warnings.DirPathElementNotFound(prefix);
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48433
diff changeset
  1666
                    log.warning(Lint.LintCategory.PATH, key);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1667
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1668
                return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1669
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1670
            try (DirectoryStream<Path> stream = Files.newDirectoryStream(prefix, path -> Files.isDirectory(path))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1671
                for (Path entry: stream) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1672
                    Path path = (suffix == null) ? entry : entry.resolve(suffix);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1673
                    if (Files.isDirectory(path)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1674
                        String name = entry.getFileName().toString();
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1675
                        List<Path> paths = map.get(name);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1676
                        if (paths == null)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1677
                            map.put(name, paths = new ArrayList<>());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1678
                        paths.add(path);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1679
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1680
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1681
            } catch (IOException e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1682
                // TODO? What to do?
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1683
                System.err.println(e);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1684
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1685
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1686
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1687
        private void expandBraces(String value, Collection<String> results) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1688
            int depth = 0;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1689
            int start = -1;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1690
            String prefix = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1691
            String suffix = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1692
            for (int i = 0; i < value.length(); i++) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1693
                switch (value.charAt(i)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1694
                    case '{':
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1695
                        depth++;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1696
                        if (depth == 1) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1697
                            prefix = value.substring(0, i);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1698
                            suffix = value.substring(getMatchingBrace(value, i) + 1);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1699
                            start = i + 1;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1700
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1701
                        break;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1702
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1703
                    case ',':
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1704
                        if (depth == 1) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1705
                            String elem = value.substring(start, i);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1706
                            expandBraces(prefix + elem + suffix, results);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1707
                            start = i + 1;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1708
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1709
                        break;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1710
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1711
                    case '}':
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1712
                        switch (depth) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1713
                            case 0:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1714
                                throw new IllegalArgumentException("mismatched braces");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1715
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1716
                            case 1:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1717
                                String elem = value.substring(start, i);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1718
                                expandBraces(prefix + elem + suffix, results);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1719
                                return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1720
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1721
                            default:
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1722
                                depth--;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1723
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1724
                        break;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1725
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1726
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1727
            if (depth > 0)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1728
                throw new IllegalArgumentException("mismatched braces");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1729
            results.add(value);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1730
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1731
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1732
        int getMatchingBrace(String value, int offset) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1733
            int depth = 1;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1734
            for (int i = offset + 1; i < value.length(); i++) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1735
                switch (value.charAt(i)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1736
                    case '{':
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1737
                        depth++;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1738
                        break;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1739
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1740
                    case '}':
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1741
                        if (--depth == 0)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1742
                            return i;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1743
                        break;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1744
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1745
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1746
            throw new IllegalArgumentException("mismatched braces");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1747
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1748
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1749
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1750
        boolean isSet() {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1751
            return (moduleTable != null);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1752
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1753
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1754
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1755
        Collection<Path> getPaths() {
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1756
            if (paths == null) {
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1757
                // This may occur for a complex setting with --module-source-path option
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1758
                // i.e. one that cannot be represented by a simple series of paths.
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1759
                throw new IllegalStateException("paths not available");
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1760
            }
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1761
            return paths;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1762
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1763
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1764
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1765
        void setPaths(Iterable<? extends Path> files) throws IOException {
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1766
            Map<String, List<Path>> map = new LinkedHashMap<>();
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1767
            List<Path> newPaths = new ArrayList<>();
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1768
            for (Path file : files) {
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1769
                add(map, file, null);
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1770
                newPaths.add(file);
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1771
            }
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1772
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1773
            initModuleTable(map);
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1774
            explicit = true;
44690
aec722d1b538 8178509: MODULE_SOURCE_PATH: Implement missing methods
jjg
parents: 44573
diff changeset
  1775
            paths = Collections.unmodifiableList(newPaths);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1776
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1777
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1778
        @Override
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1779
        void setPathsForModule(String name, Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1780
            List<Path> validPaths = checkPaths(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1781
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1782
            if (moduleTable == null)
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1783
                moduleTable = new ModuleTable();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1784
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1785
            ModuleLocationHandler l = moduleTable.get(name);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1786
            if (l == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1787
                l = new ModuleLocationHandler(this,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1788
                        location.getName() + "[" + name + "]",
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1789
                        name,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1790
                        validPaths,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1791
                        true);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1792
                moduleTable.add(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1793
           } else {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1794
                l.searchPath = validPaths;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1795
                moduleTable.updatePaths(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1796
            }
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1797
            explicit = true;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1798
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1799
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1800
        private List<Path> checkPaths(Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1801
            Objects.requireNonNull(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1802
            List<Path> validPaths = new ArrayList<>();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1803
            for (Path p : paths) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1804
                validPaths.add(checkDirectory(p));
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1805
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1806
            return validPaths;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1807
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1808
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1809
        @Override
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  1810
        Location getLocationForModule(String name) {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1811
            return (moduleTable == null) ? null : moduleTable.get(name);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1812
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1813
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1814
        @Override
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1815
        Location getLocationForModule(Path file) {
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1816
            return (moduleTable == null) ? null : moduleTable.get(file);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1817
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1818
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1819
        @Override
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  1820
        Iterable<Set<Location>> listLocationsForModules() {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1821
            if (moduleTable == null)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1822
                return Collections.emptySet();
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1823
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1824
            return Collections.singleton(moduleTable.locations());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1825
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1826
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1827
        @Override
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1828
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1829
            return (moduleTable == null) ? false : moduleTable.contains(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1830
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1831
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1832
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1833
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1834
    private class SystemModulesLocationHandler extends BasicLocationHandler {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1835
        private Path systemJavaHome;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1836
        private Path modules;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1837
        private ModuleTable moduleTable;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1838
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1839
        SystemModulesLocationHandler() {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1840
            super(StandardLocation.SYSTEM_MODULES, Option.SYSTEM);
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1841
            systemJavaHome = Locations.javaHome;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1842
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1843
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1844
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1845
        boolean handleOption(Option option, String value) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1846
            if (!options.contains(option)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1847
                return false;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1848
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1849
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1850
            explicit = true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1851
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1852
            if (value == null) {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1853
                systemJavaHome = Locations.javaHome;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1854
            } else if (value.equals("none")) {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1855
                systemJavaHome = null;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1856
            } else {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1857
                update(getPath(value));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1858
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1859
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1860
            modules = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1861
            return true;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1862
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1863
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1864
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1865
        Collection<Path> getPaths() {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1866
            return (systemJavaHome == null) ? null : Collections.singleton(systemJavaHome);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1867
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1868
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1869
        @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1870
        void setPaths(Iterable<? extends Path> files) throws IOException {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1871
            if (files == null) {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1872
                systemJavaHome = null;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1873
            } else {
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1874
                explicit = true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1875
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1876
                Path dir = checkSingletonDirectory(files);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1877
                update(dir);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1878
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1879
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1880
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1881
        @Override
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1882
        void setPathsForModule(String name, Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1883
            List<Path> checkedPaths = checkPaths(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1884
            initSystemModules();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1885
            ModuleLocationHandler l = moduleTable.get(name);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1886
            if (l == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1887
                l = new ModuleLocationHandler(this,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1888
                        location.getName() + "[" + name + "]",
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1889
                        name,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1890
                        checkedPaths,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1891
                        true);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1892
                moduleTable.add(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1893
           } else {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1894
                l.searchPath = checkedPaths;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1895
                moduleTable.updatePaths(l);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1896
            }
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  1897
            explicit = true;
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1898
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1899
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1900
        private List<Path> checkPaths(Iterable<? extends Path> paths) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1901
            Objects.requireNonNull(paths);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1902
            List<Path> validPaths = new ArrayList<>();
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1903
            for (Path p : paths) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1904
                validPaths.add(checkDirectory(p));
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1905
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1906
            return validPaths;
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1907
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1908
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1909
        private void update(Path p) {
42404
c4a34c2a656c 8169816: Move src.zip and jrt-fs.jar under the lib directory
mchung
parents: 42261
diff changeset
  1910
            if (!isCurrentPlatform(p) && !Files.exists(p.resolve("lib").resolve("jrt-fs.jar")) &&
c4a34c2a656c 8169816: Move src.zip and jrt-fs.jar under the lib directory
mchung
parents: 42261
diff changeset
  1911
                    !Files.exists(systemJavaHome.resolve("modules")))
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1912
                throw new IllegalArgumentException(p.toString());
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1913
            systemJavaHome = p;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1914
            modules = null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1915
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1916
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1917
        private boolean isCurrentPlatform(Path p) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1918
            try {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1919
                return Files.isSameFile(p, Locations.javaHome);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1920
            } catch (IOException ex) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1921
                throw new IllegalArgumentException(p.toString(), ex);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1922
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1923
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1924
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1925
        @Override
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  1926
        Location getLocationForModule(String name) throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1927
            initSystemModules();
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1928
            return moduleTable.get(name);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1929
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1930
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1931
        @Override
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1932
        Location getLocationForModule(Path file) throws IOException {
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  1933
            initSystemModules();
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  1934
            return moduleTable.get(file);
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  1935
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  1936
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  1937
        @Override
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  1938
        Iterable<Set<Location>> listLocationsForModules() throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1939
            initSystemModules();
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1940
            return Collections.singleton(moduleTable.locations());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1941
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1942
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1943
        @Override
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1944
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1945
            initSystemModules();
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1946
            return moduleTable.contains(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1947
        }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  1948
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1949
        private void initSystemModules() throws IOException {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1950
            if (moduleTable != null)
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1951
                return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1952
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1953
            if (systemJavaHome == null) {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1954
                moduleTable = new ModuleTable();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1955
                return;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1956
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1957
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1958
            if (modules == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1959
                try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1960
                    URI jrtURI = URI.create("jrt:/");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1961
                    FileSystem jrtfs;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1962
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1963
                    if (isCurrentPlatform(systemJavaHome)) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1964
                        jrtfs = FileSystems.getFileSystem(jrtURI);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1965
                    } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1966
                        try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1967
                            Map<String, String> attrMap =
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1968
                                    Collections.singletonMap("java.home", systemJavaHome.toString());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1969
                            jrtfs = FileSystems.newFileSystem(jrtURI, attrMap);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1970
                        } catch (ProviderNotFoundException ex) {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1971
                            URL javaHomeURL = systemJavaHome.resolve("jrt-fs.jar").toUri().toURL();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1972
                            ClassLoader currentLoader = Locations.class.getClassLoader();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1973
                            URLClassLoader fsLoader =
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1974
                                    new URLClassLoader(new URL[] {javaHomeURL}, currentLoader);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1975
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1976
                            jrtfs = FileSystems.newFileSystem(jrtURI, Collections.emptyMap(), fsLoader);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1977
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1978
                            closeables.add(fsLoader);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1979
                        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1980
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1981
                        closeables.add(jrtfs);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1982
                    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1983
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1984
                    modules = jrtfs.getPath("/modules");
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1985
                } catch (FileSystemNotFoundException | ProviderNotFoundException e) {
37944
1153fab98d25 8149843: StandardJavaFileManager should provide a way to get paths from strings
jjg
parents: 37848
diff changeset
  1986
                    modules = systemJavaHome.resolve("modules");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1987
                    if (!Files.exists(modules))
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1988
                        throw new IOException("can't find system classes", e);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1989
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1990
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1991
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1992
            moduleTable = new ModuleTable();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1993
            try (DirectoryStream<Path> stream = Files.newDirectoryStream(modules, Files::isDirectory)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1994
                for (Path entry : stream) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1995
                    String moduleName = entry.getFileName().toString();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  1996
                    String name = location.getName() + "[" + moduleName + "]";
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1997
                    ModuleLocationHandler h = new ModuleLocationHandler(this,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1998
                            name, moduleName, Collections.singletonList(entry), false);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  1999
                    moduleTable.add(h);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2000
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2001
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2002
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2003
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2004
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2005
    private class PatchModulesLocationHandler extends BasicLocationHandler {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2006
        private final ModuleTable moduleTable = new ModuleTable();
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2007
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2008
        PatchModulesLocationHandler() {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2009
            super(StandardLocation.PATCH_MODULE_PATH, Option.PATCH_MODULE);
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2010
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2011
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2012
        @Override
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2013
        boolean handleOption(Option option, String value) {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2014
            if (!options.contains(option)) {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2015
                return false;
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2016
            }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2017
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2018
            explicit = true;
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2019
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  2020
            moduleTable.clear();
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  2021
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2022
            // Allow an extended syntax for --patch-module consisting of a series
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2023
            // of values separated by NULL characters. This is to facilitate
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2024
            // supporting deferred file manager options on the command line.
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2025
            // See Option.PATCH_MODULE for the code that composes these multiple
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2026
            // values.
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2027
            for (String v : value.split("\0")) {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2028
                int eq = v.indexOf('=');
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2029
                if (eq > 0) {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2030
                    String moduleName = v.substring(0, eq);
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2031
                    SearchPath mPatchPath = new SearchPath()
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2032
                            .addFiles(v.substring(eq + 1));
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2033
                    String name = location.getName() + "[" + moduleName + "]";
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2034
                    ModuleLocationHandler h = new ModuleLocationHandler(this, name,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2035
                            moduleName, mPatchPath, false);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2036
                    moduleTable.add(h);
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2037
                } else {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2038
                    // Should not be able to get here;
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2039
                    // this should be caught and handled in Option.PATCH_MODULE
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2040
                    log.error(Errors.LocnInvalidArgForXpatch(value));
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2041
                }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2042
            }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2043
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2044
            return true;
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2045
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2046
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2047
        @Override
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2048
        boolean isSet() {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2049
            return !moduleTable.isEmpty();
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2050
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2051
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2052
        @Override
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2053
        Collection<Path> getPaths() {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2054
            throw new UnsupportedOperationException();
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2055
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2056
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2057
        @Override
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2058
        void setPaths(Iterable<? extends Path> files) throws IOException {
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2059
            throw new UnsupportedOperationException();
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2060
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2061
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2062
        @Override // defined by LocationHandler
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2063
        void setPathsForModule(String moduleName, Iterable<? extends Path> files) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2064
            throw new UnsupportedOperationException(); // not yet
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2065
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2066
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2067
        @Override
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2068
        Location getLocationForModule(String name) throws IOException {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2069
            return moduleTable.get(name);
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2070
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2071
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2072
        @Override
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  2073
        Location getLocationForModule(Path file) throws IOException {
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  2074
            return moduleTable.get(file);
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2075
        }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2076
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2077
        @Override
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2078
        Iterable<Set<Location>> listLocationsForModules() throws IOException {
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2079
            return Collections.singleton(moduleTable.locations());
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2080
        }
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2081
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2082
        @Override
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2083
        boolean contains(Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2084
            return moduleTable.contains(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2085
        }
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2086
    }
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2087
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2088
    Map<Location, LocationHandler> handlersForLocation;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 10819
diff changeset
  2089
    Map<Option, LocationHandler> handlersForOption;
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2090
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2091
    void initHandlers() {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22153
diff changeset
  2092
        handlersForLocation = new HashMap<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22153
diff changeset
  2093
        handlersForOption = new EnumMap<>(Option.class);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2094
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2095
        BasicLocationHandler[] handlers = {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2096
            new BootClassPathLocationHandler(),
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2097
            new ClassPathLocationHandler(),
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
  2098
            new SimpleLocationHandler(StandardLocation.SOURCE_PATH, Option.SOURCE_PATH),
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
  2099
            new SimpleLocationHandler(StandardLocation.ANNOTATION_PROCESSOR_PATH, Option.PROCESSOR_PATH),
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
  2100
            new SimpleLocationHandler(StandardLocation.ANNOTATION_PROCESSOR_MODULE_PATH, Option.PROCESSOR_MODULE_PATH),
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2101
            new OutputLocationHandler(StandardLocation.CLASS_OUTPUT, Option.D),
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2102
            new OutputLocationHandler(StandardLocation.SOURCE_OUTPUT, Option.S),
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2103
            new OutputLocationHandler(StandardLocation.NATIVE_HEADER_OUTPUT, Option.H),
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2104
            new ModuleSourcePathLocationHandler(),
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2105
            new PatchModulesLocationHandler(),
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
  2106
            new ModulePathLocationHandler(StandardLocation.UPGRADE_MODULE_PATH, Option.UPGRADE_MODULE_PATH),
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 40302
diff changeset
  2107
            new ModulePathLocationHandler(StandardLocation.MODULE_PATH, Option.MODULE_PATH),
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2108
            new SystemModulesLocationHandler(),
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2109
        };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2110
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2111
        for (BasicLocationHandler h : handlers) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2112
            handlersForLocation.put(h.location, h);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2113
            for (Option o : h.options) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2114
                handlersForOption.put(o, h);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2115
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2116
        }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2117
    }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2118
29780
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
  2119
    boolean handleOption(Option option, String value) {
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2120
        LocationHandler h = handlersForOption.get(option);
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43771
diff changeset
  2121
        return (h == null ? false : h.handleOption(option, value));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2122
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2123
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2124
    boolean hasLocation(Location location) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2125
        LocationHandler h = getHandler(location);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2126
        return (h == null ? false : h.isSet());
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2127
    }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2128
47702
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2129
    boolean hasExplicitLocation(Location location) {
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2130
        LocationHandler h = getHandler(location);
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2131
        return (h == null ? false : h.isExplicit());
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2132
    }
cf8310446245 8139607: -release option forces StandardJavaFileManager
jlahoda
parents: 47363
diff changeset
  2133
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
  2134
    Collection<Path> getLocation(Location location) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2135
        LocationHandler h = getHandler(location);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2136
        return (h == null ? null : h.getPaths());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2137
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  2138
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
  2139
    Path getOutputLocation(Location location) {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2140
        if (!location.isOutputLocation()) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2141
            throw new IllegalArgumentException();
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2142
        }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2143
        LocationHandler h = getHandler(location);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2144
        return ((OutputLocationHandler) h).outputDir;
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2145
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2146
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
  2147
    void setLocation(Location location, Iterable<? extends Path> files) throws IOException {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2148
        LocationHandler h = getHandler(location);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2149
        if (h == null) {
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2150
            if (location.isOutputLocation()) {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2151
                h = new OutputLocationHandler(location);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2152
            } else {
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2153
                h = new SimpleLocationHandler(location);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2154
            }
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2155
            handlersForLocation.put(location, h);
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2156
        }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2157
        h.setPaths(files);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2158
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2159
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  2160
    Location getLocationForModule(Location location, String name) throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2161
        LocationHandler h = getHandler(location);
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  2162
        return (h == null ? null : h.getLocationForModule(name));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2163
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2164
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  2165
    Location getLocationForModule(Location location, Path file) throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2166
        LocationHandler h = getHandler(location);
44063
5f0cf4126949 8175560: Drop String pkgName from javax.tools.JavaFileManager.getLocationForModule(Location location, JavaFileObject fo, String pkgName)
jlahoda
parents: 44021
diff changeset
  2167
        return (h == null ? null : h.getLocationForModule(file));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2168
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2169
44019
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2170
    void setLocationForModule(Location location, String moduleName,
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2171
            Iterable<? extends Path> files) throws IOException {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2172
        LocationHandler h = getHandler(location);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2173
        if (h == null) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2174
            if (location.isOutputLocation()) {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2175
                h = new OutputLocationHandler(location);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2176
            } else {
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2177
                h = new ModulePathLocationHandler(location);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2178
            }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2179
            handlersForLocation.put(location, h);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2180
        }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2181
        h.setPathsForModule(moduleName, files);
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2182
    }
284fa2ebd030 8173914: StandardJavaFileManager.setLocationForModule
jjg
parents: 43772
diff changeset
  2183
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2184
    String inferModuleName(Location location) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2185
        LocationHandler h = getHandler(location);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2186
        return (h == null ? null : h.inferModuleName());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2187
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2188
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  2189
    Iterable<Set<Location>> listLocationsForModules(Location location) throws IOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2190
        LocationHandler h = getHandler(location);
42261
bb52b5514ad5 8163190: Clarify JavaFileManager use of \"module location\"
jjg
parents: 41861
diff changeset
  2191
        return (h == null ? null : h.listLocationsForModules());
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2192
    }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2193
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2194
    boolean contains(Location location, Path file) throws IOException {
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2195
        LocationHandler h = getHandler(location);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2196
        if (h == null)
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2197
            throw new IllegalArgumentException("unknown location");
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2198
        return h.contains(file);
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2199
    }
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44690
diff changeset
  2200
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2201
    protected LocationHandler getHandler(Location location) {
29291
076c277565f7 8073550: java* tools: replace obj.getClass hacks with Assert.checkNonNull or Objects.requireNonNull
mcimadamore
parents: 29053
diff changeset
  2202
        Objects.requireNonNull(location);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2203
        return (location instanceof LocationHandler)
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2204
                ? (LocationHandler) location
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2205
                : handlersForLocation.get(location);
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2206
    }
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
  2207
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2208
    /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2209
     * Is this the name of an archive file?
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2210
     */
27852
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
  2211
    private boolean isArchive(Path file) {
2e6ad0e4fe20 8061876: replace java.io.File with java.nio.file.Path (again)
jjg
parents: 27226
diff changeset
  2212
        String n = StringUtils.toLowerCase(file.getFileName().toString());
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
  2213
        return fsInfo.isFile(file)
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
  2214
                && (n.endsWith(".jar") || n.endsWith(".zip"));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2215
    }
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4548
diff changeset
  2216
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2217
    static Path normalize(Path p) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2218
        try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2219
            return p.toRealPath();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2220
        } catch (IOException e) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2221
            return p.toAbsolutePath().normalize();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2222
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 34752
diff changeset
  2223
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2224
}