langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/BaseFileManager.java
author redestad
Fri, 31 Mar 2017 08:59:35 +0200
changeset 44458 cf6145299178
parent 42408 d6f09ae68eab
child 45504 ea7475564d07
permissions -rw-r--r--
8175116: jtreg agentvms uses more virtual address space in langtool/test :tier1 runs Summary: Avoiding creation of an unnecessary read edge from jdk.compiler to a newly created unnamed module. Reviewed-by: jlahoda
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
     1
/*
35807
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
     2
 * Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
     4
 *
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
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: 4548
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4548
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    10
 *
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    15
 * accompanied this code).
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    16
 *
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4548
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4548
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 4548
diff changeset
    23
 * questions.
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    24
 */
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    25
29780
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
    26
package com.sun.tools.javac.file;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    27
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    28
import java.io.IOException;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    29
import java.io.InputStream;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    30
import java.lang.ref.SoftReference;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    31
import java.lang.reflect.Constructor;
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41637
diff changeset
    32
import java.lang.reflect.InvocationTargetException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    33
import java.lang.reflect.Method;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    34
import java.net.URL;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    35
import java.net.URLClassLoader;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    36
import java.nio.ByteBuffer;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    37
import java.nio.CharBuffer;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    38
import java.nio.charset.Charset;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    39
import java.nio.charset.CharsetDecoder;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    40
import java.nio.charset.CoderResult;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    41
import java.nio.charset.CodingErrorAction;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    42
import java.nio.charset.IllegalCharsetNameException;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    43
import java.nio.charset.UnsupportedCharsetException;
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27379
diff changeset
    44
import java.nio.file.Path;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    45
import java.util.Collection;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    46
import java.util.HashMap;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    47
import java.util.Iterator;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    48
import java.util.Map;
29291
076c277565f7 8073550: java* tools: replace obj.getClass hacks with Assert.checkNonNull or Objects.requireNonNull
mcimadamore
parents: 27579
diff changeset
    49
import java.util.Objects;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    50
import java.util.Set;
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    51
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    52
import javax.tools.JavaFileManager;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    53
import javax.tools.JavaFileObject;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    54
import javax.tools.JavaFileObject.Kind;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    55
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    56
import com.sun.tools.javac.main.Option;
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    57
import com.sun.tools.javac.main.OptionHelper;
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    58
import com.sun.tools.javac.main.OptionHelper.GrumpyHelper;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    59
import com.sun.tools.javac.resources.CompilerProperties.Errors;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
    60
import com.sun.tools.javac.util.Abort;
29780
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
    61
import com.sun.tools.javac.util.Context;
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
    62
import com.sun.tools.javac.util.DefinedBy;
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
    63
import com.sun.tools.javac.util.DefinedBy.Api;
29780
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
    64
import com.sun.tools.javac.util.Log;
8f8e54a1fa20 8076420: Consolidate javac file handling in javac.file package
jjg
parents: 29291
diff changeset
    65
import com.sun.tools.javac.util.Options;
10813
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 10461
diff changeset
    66
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    67
/**
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    68
 * Utility methods for building a filemanager.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    69
 * There are no references here to file-system specific objects such as
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    70
 * java.io.File or java.nio.file.Path.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    71
 */
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    72
public abstract class BaseFileManager implements JavaFileManager {
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    73
    protected BaseFileManager(Charset charset) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    74
        this.charset = charset;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    75
        byteBufferCache = new ByteBufferCache();
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
    76
        locations = createLocations();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    77
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    78
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    79
    /**
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    80
     * Set the context for JavacPathFileManager.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
    81
     * @param context the context containing items to be associated with the file manager
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    82
     */
10813
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 10461
diff changeset
    83
    public void setContext(Context context) {
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    84
        log = Log.instance(context);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    85
        options = Options.instance(context);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
    86
        classLoaderClass = options.get("procloader");
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41155
diff changeset
    87
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41155
diff changeset
    88
        // Avoid initializing Lint
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41155
diff changeset
    89
        boolean warn = options.isLintSet("path");
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41155
diff changeset
    90
        locations.update(log, warn, FSInfo.instance(context));
35807
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    91
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    92
        // Setting this option is an indication that close() should defer actually closing
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    93
        // the file manager until after a specified period of inactivity.
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    94
        // This is to accomodate clients which save references to Symbols created for use
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    95
        // within doclets or annotation processors, and which then attempt to use those
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    96
        // references after the tool exits, having closed any internally managed file manager.
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    97
        // Ideally, such clients should run the tool via the javax.tools API, providing their
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    98
        // own file manager, which can be closed by the client when all use of that file
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
    99
        // manager is complete.
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   100
        // If the option has a numeric value, it will be interpreted as the duration,
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   101
        // in seconds, of the period of inactivity to wait for, before the file manager
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   102
        // is actually closed.
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   103
        // See also deferredClose().
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   104
        String s = options.get("fileManager.deferClose");
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   105
        if (s != null) {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   106
            try {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   107
                deferredCloseTimeout = (int) (Float.parseFloat(s) * 1000);
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   108
            } catch (NumberFormatException e) {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   109
                deferredCloseTimeout = 60 * 1000;  // default: one minute, in millis
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   110
            }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   111
        }
10813
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 10461
diff changeset
   112
    }
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 10461
diff changeset
   113
10818
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   114
    protected Locations createLocations() {
e95eb04c68cc 7104039: refactor/cleanup javac Paths class
jjg
parents: 10813
diff changeset
   115
        return new Locations();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   116
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   117
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   118
    /**
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   119
     * The log to be used for error reporting.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   120
     */
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   121
    public Log log;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   122
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   123
    /**
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   124
     * User provided charset (through javax.tools).
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   125
     */
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   126
    protected Charset charset;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   127
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   128
    protected Options options;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   129
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   130
    protected String classLoaderClass;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   131
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41637
diff changeset
   132
    protected final Locations locations;
10813
95b39a692cd0 7101146: Paths should more directly managed by BaseFileManager
jjg
parents: 10461
diff changeset
   133
27379
5ae894733e09 8062579: JavacTask, DocumentationTask impls should close file manager when possible
jjg
parents: 27318
diff changeset
   134
    /**
5ae894733e09 8062579: JavacTask, DocumentationTask impls should close file manager when possible
jjg
parents: 27318
diff changeset
   135
     * A flag for clients to use to indicate that this file manager should
5ae894733e09 8062579: JavacTask, DocumentationTask impls should close file manager when possible
jjg
parents: 27318
diff changeset
   136
     * be closed when it is no longer required.
5ae894733e09 8062579: JavacTask, DocumentationTask impls should close file manager when possible
jjg
parents: 27318
diff changeset
   137
     */
5ae894733e09 8062579: JavacTask, DocumentationTask impls should close file manager when possible
jjg
parents: 27318
diff changeset
   138
    public boolean autoClose;
5ae894733e09 8062579: JavacTask, DocumentationTask impls should close file manager when possible
jjg
parents: 27318
diff changeset
   139
35807
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   140
    /**
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   141
     * Wait for a period of inactivity before calling close().
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   142
     * The length of the period of inactivity is given by {@code deferredCloseTimeout}
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   143
     */
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   144
    protected void deferredClose() {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   145
        Thread t = new Thread(getClass().getName() + " DeferredClose") {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   146
            @Override
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   147
            public void run() {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   148
                try {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   149
                    synchronized (BaseFileManager.this) {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   150
                        long now = System.currentTimeMillis();
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   151
                        while (now < lastUsedTime + deferredCloseTimeout) {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   152
                            BaseFileManager.this.wait(lastUsedTime + deferredCloseTimeout - now);
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   153
                            now = System.currentTimeMillis();
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   154
                        }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   155
                        deferredCloseTimeout = 0;
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   156
                        close();
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   157
                    }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   158
                } catch (InterruptedException e) {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   159
                } catch (IOException e) {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   160
                }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   161
            }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   162
        };
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   163
        t.setDaemon(true);
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   164
        t.start();
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   165
    }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   166
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   167
    synchronized void updateLastUsedTime() {
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   168
        if (deferredCloseTimeout > 0) { // avoid updating the time unnecessarily
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   169
            lastUsedTime = System.currentTimeMillis();
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   170
        }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   171
    }
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   172
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   173
    private long lastUsedTime = System.currentTimeMillis();
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   174
    protected long deferredCloseTimeout = 0;
2eb1d877da0f 8147801: java.nio.file.ClosedFileSystemException when using Javadoc API's in JDK9
jjg
parents: 29780
diff changeset
   175
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   176
    protected ClassLoader getClassLoader(URL[] urls) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   177
        ClassLoader thisClassLoader = getClass().getClassLoader();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   178
16796
53060909017b 7059170: Assume availablility of URLClassLoader.close
darcy
parents: 14801
diff changeset
   179
        // Allow the following to specify a closeable classloader
53060909017b 7059170: Assume availablility of URLClassLoader.close
darcy
parents: 14801
diff changeset
   180
        // other than URLClassLoader.
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   181
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   182
        // 1: Allow client to specify the class to use via hidden option
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   183
        if (classLoaderClass != null) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   184
            try {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   185
                Class<? extends ClassLoader> loader =
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   186
                        Class.forName(classLoaderClass).asSubclass(ClassLoader.class);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   187
                Class<?>[] constrArgTypes = { URL[].class, ClassLoader.class };
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   188
                Constructor<? extends ClassLoader> constr = loader.getConstructor(constrArgTypes);
44458
cf6145299178 8175116: jtreg agentvms uses more virtual address space in langtool/test :tier1 runs
redestad
parents: 42408
diff changeset
   189
                return constr.newInstance(urls, thisClassLoader);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   190
            } catch (ReflectiveOperationException t) {
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   191
                // ignore errors loading user-provided class loader, fall through
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   192
            }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   193
        }
44458
cf6145299178 8175116: jtreg agentvms uses more virtual address space in langtool/test :tier1 runs
redestad
parents: 42408
diff changeset
   194
        return new URLClassLoader(urls, thisClassLoader);
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   195
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   196
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   197
    public boolean isDefaultBootClassPath() {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   198
        return locations.isDefaultBootClassPath();
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   199
    }
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   200
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   201
    // <editor-fold defaultstate="collapsed" desc="Option handling">
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   202
    @Override @DefinedBy(Api.COMPILER)
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   203
    public boolean handleOption(String current, Iterator<String> remaining) {
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   204
        OptionHelper helper = new GrumpyHelper(log) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   205
            @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   206
            public String get(Option option) {
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   207
                return options.get(option);
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   208
            }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   209
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   210
            @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   211
            public void put(String name, String value) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   212
                options.put(name, value);
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   213
            }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   214
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   215
            @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   216
            public void remove(String name) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   217
                options.remove(name);
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   218
            }
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   219
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   220
            @Override
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   221
            public boolean handleFileManagerOption(Option option, String value) {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   222
                return handleOption(option, value);
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   223
            }
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   224
        };
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   225
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   226
        Option o = Option.lookup(current, javacFileManagerOptions);
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   227
        if (o == null) {
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   228
            return false;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   229
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   230
42260
2b4da2bf6660 8169676: boolean result of Option.process is often ignored
jjg
parents: 41637
diff changeset
   231
        try {
2b4da2bf6660 8169676: boolean result of Option.process is often ignored
jjg
parents: 41637
diff changeset
   232
            o.handleOption(helper, current, remaining);
2b4da2bf6660 8169676: boolean result of Option.process is often ignored
jjg
parents: 41637
diff changeset
   233
        } catch (Option.InvalidValueException e) {
2b4da2bf6660 8169676: boolean result of Option.process is often ignored
jjg
parents: 41637
diff changeset
   234
            throw new IllegalArgumentException(e.getMessage(), e);
2b4da2bf6660 8169676: boolean result of Option.process is often ignored
jjg
parents: 41637
diff changeset
   235
        }
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   236
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   237
        return true;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   238
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   239
    // where
14801
d66cab4ef397 8003967: detect and remove all mutable implicit static enum fields in langtools
vromero
parents: 11314
diff changeset
   240
        private static final Set<Option> javacFileManagerOptions =
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   241
            Option.getJavacFileManagerOptions();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   242
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 25874
diff changeset
   243
    @Override @DefinedBy(Api.COMPILER)
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   244
    public int isSupportedOption(String option) {
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   245
        Option o = Option.lookup(option, javacFileManagerOptions);
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   246
        return (o == null) ? -1 : o.hasArg() ? 1 : 0;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   247
    }
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 5520
diff changeset
   248
37394
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 36526
diff changeset
   249
    protected String multiReleaseValue;
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 36526
diff changeset
   250
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   251
    /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   252
     * Common back end for OptionHelper handleFileManagerOption.
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   253
     * @param option the option whose value to be set
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   254
     * @param value the value for the option
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   255
     * @return true if successful, and false otherwise
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   256
     */
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   257
    public boolean handleOption(Option option, String value) {
36155
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   258
        switch (option) {
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   259
            case ENCODING:
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   260
                encodingName = value;
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   261
                return true;
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   262
37394
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 36526
diff changeset
   263
            case MULTIRELEASE:
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 36526
diff changeset
   264
                multiReleaseValue = value;
41155
93dad90c22c1 8156568: Update javac to support compiling against a modular JAR that is a multi-release JAR
sadayapalam
parents: 40308
diff changeset
   265
                locations.setMultiReleaseValue(value);
37394
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 36526
diff changeset
   266
                return true;
c36230ee15d9 8149757: Implement Multi-Release JAR aware JavacFileManager for javac
jjg
parents: 36526
diff changeset
   267
36155
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   268
            default:
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   269
                return locations.handleOption(option, value);
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   270
        }
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   271
    }
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   272
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   273
    /**
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   274
     * Call handleOption for collection of options and corresponding values.
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   275
     * @param map a collection of options and corresponding values
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   276
     * @return true if all the calls are successful
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   277
     */
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   278
    public boolean handleOptions(Map<Option, String> map) {
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   279
        boolean ok = true;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   280
        for (Map.Entry<Option, String> e: map.entrySet()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   281
            try {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   282
                ok = ok & handleOption(e.getKey(), e.getValue());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   283
            } catch (IllegalArgumentException ex) {
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39362
diff changeset
   284
                log.error(Errors.IllegalArgumentForOption(e.getKey().getPrimaryName(), ex.getMessage()));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   285
                ok = false;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   286
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36155
diff changeset
   287
        }
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   288
        return ok;
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   289
    }
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 5520
diff changeset
   290
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   291
    // </editor-fold>
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   292
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   293
    // <editor-fold defaultstate="collapsed" desc="Encoding">
36155
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   294
    private String encodingName;
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   295
    private String defaultEncodingName;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   296
    private String getDefaultEncodingName() {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   297
        if (defaultEncodingName == null) {
39362
5ac5af2acb57 8132857: Historical name of default encoding shown on encoding mismatch
jlahoda
parents: 38511
diff changeset
   298
            defaultEncodingName = Charset.defaultCharset().name();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   299
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   300
        return defaultEncodingName;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   301
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   302
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   303
    public String getEncodingName() {
36155
1555ce1fcb4f 8149772: cleanup handling of -encoding in JavacFileManager
jjg
parents: 35807
diff changeset
   304
        return (encodingName != null) ? encodingName : getDefaultEncodingName();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   305
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   306
27318
4660a5da7d90 8062376: Suppress cast warnings when using NIO buffers
rwarburton
parents: 26266
diff changeset
   307
    @SuppressWarnings("cast")
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   308
    public CharBuffer decode(ByteBuffer inbuf, boolean ignoreEncodingErrors) {
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41637
diff changeset
   309
        String encName = getEncodingName();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   310
        CharsetDecoder decoder;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   311
        try {
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41637
diff changeset
   312
            decoder = getDecoder(encName, ignoreEncodingErrors);
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   313
        } catch (IllegalCharsetNameException | UnsupportedCharsetException e) {
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41637
diff changeset
   314
            log.error("unsupported.encoding", encName);
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   315
            return (CharBuffer)CharBuffer.allocate(1).flip();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   316
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   317
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   318
        // slightly overestimate the buffer size to avoid reallocation.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   319
        float factor =
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   320
            decoder.averageCharsPerByte() * 0.8f +
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   321
            decoder.maxCharsPerByte() * 0.2f;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   322
        CharBuffer dest = CharBuffer.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   323
            allocate(10 + (int)(inbuf.remaining()*factor));
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   324
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   325
        while (true) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   326
            CoderResult result = decoder.decode(inbuf, dest, true);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   327
            dest.flip();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   328
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   329
            if (result.isUnderflow()) { // done reading
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   330
                // make sure there is at least one extra character
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   331
                if (dest.limit() == dest.capacity()) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   332
                    dest = CharBuffer.allocate(dest.capacity()+1).put(dest);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   333
                    dest.flip();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   334
                }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   335
                return dest;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   336
            } else if (result.isOverflow()) { // buffer too small; expand
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   337
                int newCapacity =
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   338
                    10 + dest.capacity() +
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   339
                    (int)(inbuf.remaining()*decoder.maxCharsPerByte());
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   340
                dest = CharBuffer.allocate(newCapacity).put(dest);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   341
            } else if (result.isMalformed() || result.isUnmappable()) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   342
                // bad character in input
38511
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   343
                StringBuilder unmappable = new StringBuilder();
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   344
                int len = result.length();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   345
38511
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   346
                for (int i = 0; i < len; i++) {
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   347
                    unmappable.append(String.format("%02X", inbuf.get()));
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   348
                }
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   349
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41637
diff changeset
   350
                String charsetName = charset == null ? encName : charset.name();
38511
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   351
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   352
                log.error(dest.limit(),
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 37394
diff changeset
   353
                          Errors.IllegalCharForEncoding(unmappable.toString(), charsetName));
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   354
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   355
                // undo the flip() to prepare the output buffer
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   356
                // for more translation
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   357
                dest.position(dest.limit());
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   358
                dest.limit(dest.capacity());
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   359
                dest.put((char)0xfffd); // backward compatible
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   360
            } else {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   361
                throw new AssertionError(result);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   362
            }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   363
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   364
        // unreached
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   365
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   366
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   367
    public CharsetDecoder getDecoder(String encodingName, boolean ignoreEncodingErrors) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   368
        Charset cs = (this.charset == null)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   369
            ? Charset.forName(encodingName)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   370
            : this.charset;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   371
        CharsetDecoder decoder = cs.newDecoder();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   372
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   373
        CodingErrorAction action;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   374
        if (ignoreEncodingErrors)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   375
            action = CodingErrorAction.REPLACE;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   376
        else
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   377
            action = CodingErrorAction.REPORT;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   378
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   379
        return decoder
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   380
            .onMalformedInput(action)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   381
            .onUnmappableCharacter(action);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   382
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   383
    // </editor-fold>
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   384
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   385
    // <editor-fold defaultstate="collapsed" desc="ByteBuffers">
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   386
    /**
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   387
     * Make a byte buffer from an input stream.
24897
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   388
     * @param in the stream
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   389
     * @return a byte buffer containing the contents of the stream
655b72d7b96e 7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents: 22163
diff changeset
   390
     * @throws IOException if an error occurred while reading the stream
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   391
     */
27318
4660a5da7d90 8062376: Suppress cast warnings when using NIO buffers
rwarburton
parents: 26266
diff changeset
   392
    @SuppressWarnings("cast")
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   393
    public ByteBuffer makeByteBuffer(InputStream in)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   394
        throws IOException {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   395
        int limit = in.available();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   396
        if (limit < 1024) limit = 1024;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   397
        ByteBuffer result = byteBufferCache.get(limit);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   398
        int position = 0;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   399
        while (in.available() != 0) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   400
            if (position >= limit)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   401
                // expand buffer
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   402
                result = ByteBuffer.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   403
                    allocate(limit <<= 1).
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   404
                    put((ByteBuffer)result.flip());
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   405
            int count = in.read(result.array(),
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   406
                position,
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   407
                limit - position);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   408
            if (count < 0) break;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   409
            result.position(position += count);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   410
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   411
        return (ByteBuffer)result.flip();
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   412
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   413
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   414
    public void recycleByteBuffer(ByteBuffer bb) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   415
        byteBufferCache.put(bb);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   416
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   417
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   418
    /**
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   419
     * A single-element cache of direct byte buffers.
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   420
     */
27318
4660a5da7d90 8062376: Suppress cast warnings when using NIO buffers
rwarburton
parents: 26266
diff changeset
   421
    @SuppressWarnings("cast")
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   422
    private static class ByteBufferCache {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   423
        private ByteBuffer cached;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   424
        ByteBuffer get(int capacity) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   425
            if (capacity < 20480) capacity = 20480;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   426
            ByteBuffer result =
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   427
                (cached != null && cached.capacity() >= capacity)
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   428
                ? (ByteBuffer)cached.clear()
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   429
                : ByteBuffer.allocate(capacity + capacity>>1);
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   430
            cached = null;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   431
            return result;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   432
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   433
        void put(ByteBuffer x) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   434
            cached = x;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   435
        }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   436
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   437
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   438
    private final ByteBufferCache byteBufferCache;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   439
    // </editor-fold>
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   440
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   441
    // <editor-fold defaultstate="collapsed" desc="Content cache">
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   442
    public CharBuffer getCachedContent(JavaFileObject file) {
10461
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   443
        ContentCacheEntry e = contentCache.get(file);
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   444
        if (e == null)
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   445
            return null;
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   446
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   447
        if (!e.isValid(file)) {
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   448
            contentCache.remove(file);
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   449
            return null;
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   450
        }
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   451
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   452
        return e.getValue();
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   453
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   454
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   455
    public void cache(JavaFileObject file, CharBuffer cb) {
10461
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   456
        contentCache.put(file, new ContentCacheEntry(file, cb));
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   457
    }
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   458
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   459
    public void flushCache(JavaFileObject file) {
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   460
        contentCache.remove(file);
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   461
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   462
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 16796
diff changeset
   463
    protected final Map<JavaFileObject, ContentCacheEntry> contentCache = new HashMap<>();
10461
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   464
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   465
    protected static class ContentCacheEntry {
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   466
        final long timestamp;
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   467
        final SoftReference<CharBuffer> ref;
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   468
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   469
        ContentCacheEntry(JavaFileObject file, CharBuffer cb) {
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   470
            this.timestamp = file.getLastModified();
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 16796
diff changeset
   471
            this.ref = new SoftReference<>(cb);
10461
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   472
        }
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   473
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   474
        boolean isValid(JavaFileObject file) {
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   475
            return timestamp == file.getLastModified();
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   476
        }
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   477
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   478
        CharBuffer getValue() {
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   479
            return ref.get();
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   480
        }
998e642f9811 7068451: Regression: javac compiles fixed sources against previous, not current, version of generated sources
jjg
parents: 7681
diff changeset
   481
    }
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   482
    // </editor-fold>
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   483
27579
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27379
diff changeset
   484
    public static Kind getKind(Path path) {
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27379
diff changeset
   485
        return getKind(path.getFileName().toString());
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27379
diff changeset
   486
    }
d1a63c99cdd5 8049367: Modular Run-Time Images
chegar
parents: 27379
diff changeset
   487
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   488
    public static Kind getKind(String name) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   489
        if (name.endsWith(Kind.CLASS.extension))
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   490
            return Kind.CLASS;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   491
        else if (name.endsWith(Kind.SOURCE.extension))
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   492
            return Kind.SOURCE;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   493
        else if (name.endsWith(Kind.HTML.extension))
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   494
            return Kind.HTML;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   495
        else
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   496
            return Kind.OTHER;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   497
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   498
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   499
    protected static <T> T nullCheck(T o) {
29291
076c277565f7 8073550: java* tools: replace obj.getClass hacks with Assert.checkNonNull or Objects.requireNonNull
mcimadamore
parents: 27579
diff changeset
   500
        return Objects.requireNonNull(o);
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   501
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   502
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   503
    protected static <T> Collection<T> nullCheck(Collection<T> it) {
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   504
        for (T t : it)
29291
076c277565f7 8073550: java* tools: replace obj.getClass hacks with Assert.checkNonNull or Objects.requireNonNull
mcimadamore
parents: 27579
diff changeset
   505
            Objects.requireNonNull(t);
4548
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   506
        return it;
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   507
    }
bc0d5b3c3b2d 6906175: bridge JSR199 and JSR 203 APIs
jjg
parents:
diff changeset
   508
}