langtools/src/share/classes/com/sun/tools/javac/main/Main.java
author briangoetz
Wed, 18 Dec 2013 16:05:18 -0500
changeset 22163 3651128c74eb
parent 22159 682da512ec17
child 23792 eabe3e8a29bf
permissions -rw-r--r--
8030244: Update langtools to use Diamond Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
16799
fbe4d27b8791 8006346: doclint should make allowance for headers generated by standard doclet
jjg
parents: 15724
diff changeset
     2
 * Copyright (c) 1999, 2013, 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: 5319
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: 5319
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: 5319
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5319
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5319
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javac.main;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.io.File;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.io.PrintWriter;
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
    31
import java.net.URL;
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
    32
import java.security.DigestInputStream;
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
    33
import java.security.MessageDigest;
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
    34
import java.util.Arrays;
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
    35
import java.util.Collection;
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    36
import java.util.Iterator;
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
    37
import java.util.LinkedHashSet;
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
    38
import java.util.Set;
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    39
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    40
import javax.annotation.processing.Processor;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    41
import javax.tools.JavaFileManager;
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    42
import javax.tools.JavaFileObject;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    44
import com.sun.source.util.JavacTask;
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    45
import com.sun.source.util.Plugin;
14960
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
    46
import com.sun.tools.doclint.DocLint;
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
    47
import com.sun.tools.javac.api.BasicJavacTask;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
import com.sun.tools.javac.code.Source;
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
    49
import com.sun.tools.javac.file.CacheFSInfo;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 10
diff changeset
    50
import com.sun.tools.javac.file.JavacFileManager;
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
    51
import com.sun.tools.javac.jvm.Profile;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
import com.sun.tools.javac.jvm.Target;
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    53
import com.sun.tools.javac.processing.AnnotationProcessingError;
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    54
import com.sun.tools.javac.processing.JavacProcessingEnvironment;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
import com.sun.tools.javac.util.*;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    56
import com.sun.tools.javac.util.Log.PrefixKind;
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    57
import com.sun.tools.javac.util.Log.WriterKind;
17551
03f330c02d97 8004082: test/tools/javac/plugin/showtype/Test.java fails on windows: jtreg can't delete plugin.jar
jjg
parents: 16799
diff changeset
    58
import com.sun.tools.javac.util.ServiceLoader;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
    59
import static com.sun.tools.javac.main.Option.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
    61
/** This class provides a command line interface to the javac compiler.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    63
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    64
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
public class Main {
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    /** The name of the compiler, for use in diagnostics.
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    String ownName;
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    /** The writer to use for diagnostic output.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    PrintWriter out;
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    78
    /** The log to use for diagnostic output.
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    79
     */
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
    80
    public Log log;
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    81
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /**
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    83
     * If true, certain errors will cause an exception, such as command line
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    84
     * arg errors, or exceptions in user provided code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     */
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    86
    boolean apiMode;
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    87
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    /** Result codes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    91
    public enum Result {
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    92
        OK(0),        // Compilation completed with no errors.
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    93
        ERROR(1),     // Completed but reported errors.
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    94
        CMDERR(2),    // Bad command-line arguments
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    95
        SYSERR(3),    // System error or resource exhaustion.
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    96
        ABNORMAL(4);  // Compiler terminated abnormally
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    97
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    98
        Result(int exitCode) {
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    99
            this.exitCode = exitCode;
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   100
        }
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   101
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   102
        public boolean isOK() {
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   103
            return (exitCode == 0);
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   104
        }
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   105
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   106
        public final int exitCode;
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   107
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   109
    private Option[] recognizedOptions =
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   110
            Option.getJavaCompilerOptions().toArray(new Option[0]);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   112
    private OptionHelper optionHelper = new OptionHelper() {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   113
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   114
        public String get(Option option) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   115
            return options.get(option);
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   116
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   117
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   118
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   119
        public void put(String name, String value) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   120
            options.put(name, value);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   123
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   124
        public void remove(String name) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   125
            options.remove(name);
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   126
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   127
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   128
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   129
        public Log getLog() {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   130
            return log;
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   131
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   132
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   133
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   134
        public String getOwnName() {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   135
            return ownName;
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   136
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   137
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   138
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        public void error(String key, Object... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            Main.this.error(key, args);
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   143
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        public void addFile(File f) {
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   145
            filenames.add(f);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   148
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        public void addClassName(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
            classnames.append(s);
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   153
    };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     * Construct a compiler instance.
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    public Main(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
        this(name, new PrintWriter(System.err, true));
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     * Construct a compiler instance.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    public Main(String name, PrintWriter out) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        this.ownName = name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        this.out = out;
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    }
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   169
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    /** A table of all options that's passed to the JavaCompiler constructor.  */
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    private Options options = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    /** The list of source files to process
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
     */
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   175
    public Set<File> filenames = null; // XXX sb protected
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    /** List of class files names passed on the command line
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    public ListBuffer<String> classnames = null; // XXX sb protected
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    /** Report a usage error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    void error(String key, Object... args) {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   184
        if (apiMode) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   185
            String msg = log.localize(PrefixKind.JAVAC, key, args);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
            throw new PropagatedException(new IllegalStateException(msg));
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
        warning(key, args);
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   189
        log.printLines(PrefixKind.JAVAC, "msg.usage", ownName);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    /** Report a warning.
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    void warning(String key, Object... args) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   195
        log.printRawLines(ownName + ": " + log.localize(PrefixKind.JAVAC, key, args));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    public Option getOption(String flag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        for (Option option : recognizedOptions) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
            if (option.matches(flag))
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
                return option;
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    public void setOptions(Options options) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
        if (options == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
            throw new NullPointerException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        this.options = options;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   212
    public void setAPIMode(boolean apiMode) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   213
        this.apiMode = apiMode;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    /** Process command line arguments: store all command line options
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     *  in `options' table and return all source filenames.
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     *  @param flags    The array of command line arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     */
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   220
    public Collection<File> processArgs(String[] flags) { // XXX sb protected
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   221
        return processArgs(flags, null);
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   222
    }
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   223
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   224
    public Collection<File> processArgs(String[] flags, String[] classNames) { // XXX sb protected
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        int ac = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        while (ac < flags.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
            String flag = flags[ac];
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
            ac++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            Option option = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            if (flag.length() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                // quick hack to speed up file processing:
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                // if the option does not begin with '-', there is no need to check
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
                // most of the compiler options.
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                int firstOptionToCheck = flag.charAt(0) == '-' ? 0 : recognizedOptions.length-1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
                for (int j=firstOptionToCheck; j<recognizedOptions.length; j++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
                    if (recognizedOptions[j].matches(flag)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                        option = recognizedOptions[j];
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                        break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            if (option == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                error("err.invalid.flag", flag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            if (option.hasArg()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
                if (ac == flags.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                    error("err.req.arg", flag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
                String operand = flags[ac];
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
                ac++;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   257
                if (option.process(optionHelper, flag, operand))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            } else {
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   260
                if (option.process(optionHelper, flag))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
19489
387a4dd51adf 8009640: -profile <compact> does not work when -bootclasspath specified
vromero
parents: 18653
diff changeset
   265
        if (options.get(PROFILE) != null && options.get(BOOTCLASSPATH) != null) {
387a4dd51adf 8009640: -profile <compact> does not work when -bootclasspath specified
vromero
parents: 18653
diff changeset
   266
            error("err.profile.bootclasspath.conflict");
387a4dd51adf 8009640: -profile <compact> does not work when -bootclasspath specified
vromero
parents: 18653
diff changeset
   267
            return null;
387a4dd51adf 8009640: -profile <compact> does not work when -bootclasspath specified
vromero
parents: 18653
diff changeset
   268
        }
387a4dd51adf 8009640: -profile <compact> does not work when -bootclasspath specified
vromero
parents: 18653
diff changeset
   269
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   270
        if (this.classnames != null && classNames != null) {
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   271
            this.classnames.addAll(Arrays.asList(classNames));
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   272
        }
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   273
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   274
        if (!checkDirectory(D))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
            return null;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   276
        if (!checkDirectory(S))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   279
        String sourceString = options.get(SOURCE);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        Source source = (sourceString != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            ? Source.lookup(sourceString)
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            : Source.DEFAULT;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   283
        String targetString = options.get(TARGET);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
        Target target = (targetString != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
            ? Target.lookup(targetString)
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
            : Target.DEFAULT;
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        // We don't check source/target consistency for CLDC, as J2ME
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        // profiles are not aligned with J2SE targets; moreover, a
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
        // single CLDC target may have many profiles.  In addition,
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        // this is needed for the continued functioning of the JSR14
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
        // prototype.
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        if (Character.isDigit(target.name.charAt(0))) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
            if (target.compareTo(source.requiredTarget()) < 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
                if (targetString != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
                    if (sourceString == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
                        warning("warn.target.default.source.conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
                                targetString,
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
                                source.requiredTarget().name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                    } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
                        warning("warn.source.target.conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
                                sourceString,
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
                                source.requiredTarget().name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
                } else {
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   306
                    target = source.requiredTarget();
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   307
                    options.put("-target", target.name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
                if (targetString == null && !source.allowGenerics()) {
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   311
                    target = Target.JDK1_4;
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   312
                    options.put("-target", target.name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
        }
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   316
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   317
        String profileString = options.get(PROFILE);
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   318
        if (profileString != null) {
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   319
            Profile profile = Profile.lookup(profileString);
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   320
            if (!profile.isValid(target)) {
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   321
                warning("warn.profile.target.conflict", profileString, target.name);
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   322
                return null;
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   323
            }
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   324
        }
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14960
diff changeset
   325
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   326
        // handle this here so it works even if no other options given
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   327
        String showClass = options.get("showClass");
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   328
        if (showClass != null) {
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   329
            if (showClass.equals("showClass")) // no value given for option
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   330
                showClass = "com.sun.tools.javac.Main";
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   331
            showClass(showClass);
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   332
        }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   333
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   334
        options.notifyListeners();
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   335
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   336
        return filenames;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
    // where
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   339
        private boolean checkDirectory(Option option) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   340
            String value = options.get(option);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
            if (value == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
            File file = new File(value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
            if (!file.exists()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
                error("err.dir.not.found", value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
            if (!file.isDirectory()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
                error("err.file.not.directory", value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
    /** Programmatic interface for main function.
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
     * @param args    The command line parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
     */
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   358
    public Result compile(String[] args) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
        Context context = new Context();
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
        JavacFileManager.preRegister(context); // can't create it until Log has been set up
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   361
        Result result = compile(args, context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
        if (fileManager instanceof JavacFileManager) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
            // A fresh context was created above, so jfm must be a JavacFileManager
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
            ((JavacFileManager)fileManager).close();
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   369
    public Result compile(String[] args, Context context) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        return compile(args, context, List.<JavaFileObject>nil(), null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
    /** Programmatic interface for main function.
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
     * @param args    The command line parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
     */
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   376
    public Result compile(String[] args,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
                       Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
                       List<JavaFileObject> fileObjects,
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
                       Iterable<? extends Processor> processors)
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
    {
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   381
        return compile(args,  null, context, fileObjects, processors);
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   382
    }
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   383
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   384
    public Result compile(String[] args,
18653
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 17551
diff changeset
   385
                          String[] classNames,
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 17551
diff changeset
   386
                          Context context,
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 17551
diff changeset
   387
                          List<JavaFileObject> fileObjects,
1407564fb956 8014230: Compilation incorrectly succeeds with inner class constructor with 254 parameters
emc
parents: 17551
diff changeset
   388
                          Iterable<? extends Processor> processors)
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   389
    {
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   390
        context.put(Log.outKey, out);
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   391
        log = Log.instance(context);
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   392
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
        if (options == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            options = Options.instance(context); // creates a new one
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   396
        filenames = new LinkedHashSet<>();
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   397
        classnames = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
        JavaCompiler comp = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
        /*
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
         * TODO: Logic below about what is an acceptable command line
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
         * should be updated to take annotation processing semantics
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
         * into account.
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
        try {
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   405
            if (args.length == 0
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   406
                    && (classNames == null || classNames.length == 0)
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   407
                    && fileObjects.isEmpty()) {
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   408
                Option.HELP.process(optionHelper, "-help");
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   409
                return Result.CMDERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   412
            Collection<File> files;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
            try {
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   414
                files = processArgs(CommandLine.parse(args), classNames);
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   415
                if (files == null) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
                    // null signals an error in options, abort
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   417
                    return Result.CMDERR;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   418
                } else if (files.isEmpty() && fileObjects.isEmpty() && classnames.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
                    // it is allowed to compile nothing if just asking for help or version info
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   420
                    if (options.isSet(HELP)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   421
                        || options.isSet(X)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   422
                        || options.isSet(VERSION)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   423
                        || options.isSet(FULLVERSION))
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   424
                        return Result.OK;
8623
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   425
                    if (JavaCompiler.explicitAnnotationProcessingRequested(options)) {
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   426
                        error("err.no.source.files.classes");
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   427
                    } else {
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   428
                        error("err.no.source.files");
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   429
                    }
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   430
                    return Result.CMDERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
            } catch (java.io.FileNotFoundException e) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   433
                warning("err.file.not.found", e.getMessage());
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   434
                return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   437
            boolean forceStdOut = options.isSet("stdout");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
            if (forceStdOut) {
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   439
                log.flush();
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   440
                log.setWriters(new PrintWriter(System.out, true));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   443
            // allow System property in following line as a Mustang legacy
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   444
            boolean batchMode = (options.isUnset("nonBatchMode")
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   445
                        && System.getProperty("nonBatchMode") == null);
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   446
            if (batchMode)
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   447
                CacheFSInfo.preRegister(context);
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   448
14960
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   449
            // FIXME: this code will not be invoked if using JavacTask.parse/analyze/generate
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   450
            // invoke any available plugins
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   451
            String plugins = options.get(PLUGIN);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   452
            if (plugins != null) {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   453
                JavacProcessingEnvironment pEnv = JavacProcessingEnvironment.instance(context);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   454
                ClassLoader cl = pEnv.getProcessorClassLoader();
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   455
                ServiceLoader<Plugin> sl = ServiceLoader.load(Plugin.class, cl);
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   456
                Set<List<String>> pluginsToCall = new LinkedHashSet<>();
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   457
                for (String plugin: plugins.split("\\x00")) {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   458
                    pluginsToCall.add(List.from(plugin.split("\\s+")));
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   459
                }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   460
                JavacTask task = null;
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 19489
diff changeset
   461
                for (Plugin plugin : sl) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 19489
diff changeset
   462
                    for (List<String> p : pluginsToCall) {
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   463
                        if (plugin.getName().equals(p.head)) {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   464
                            pluginsToCall.remove(p);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   465
                            try {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   466
                                if (task == null)
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   467
                                    task = JavacTask.instance(pEnv);
14954
f8eea2960bcb 8004961: rename Plugin.call to Plugin.init
jjg
parents: 14548
diff changeset
   468
                                plugin.init(task, p.tail.toArray(new String[p.tail.size()]));
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   469
                            } catch (Throwable ex) {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   470
                                if (apiMode)
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   471
                                    throw new RuntimeException(ex);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   472
                                pluginMessage(ex);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   473
                                return Result.SYSERR;
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   474
                            }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   475
                        }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   476
                    }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   477
                }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   478
                for (List<String> p: pluginsToCall) {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   479
                    log.printLines(PrefixKind.JAVAC, "msg.plugin.not.found", p.head);
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   480
                }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   481
            }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   482
14960
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   483
            comp = JavaCompiler.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
14960
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   485
            // FIXME: this code will not be invoked if using JavacTask.parse/analyze/generate
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   486
            String xdoclint = options.get(XDOCLINT);
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   487
            String xdoclintCustom = options.get(XDOCLINT_CUSTOM);
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   488
            if (xdoclint != null || xdoclintCustom != null) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   489
                Set<String> doclintOpts = new LinkedHashSet<>();
14960
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   490
                if (xdoclint != null)
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   491
                    doclintOpts.add(DocLint.XMSGS_OPTION);
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   492
                if (xdoclintCustom != null) {
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   493
                    for (String s: xdoclintCustom.split("\\s+")) {
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   494
                        if (s.isEmpty())
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   495
                            continue;
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   496
                        doclintOpts.add(s.replace(XDOCLINT_CUSTOM.text, DocLint.XMSGS_CUSTOM_PREFIX));
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   497
                    }
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   498
                }
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   499
                if (!(doclintOpts.size() == 1
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   500
                        && doclintOpts.iterator().next().equals(DocLint.XMSGS_CUSTOM_PREFIX + "none"))) {
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   501
                    JavacTask t = BasicJavacTask.instance(context);
16799
fbe4d27b8791 8006346: doclint should make allowance for headers generated by standard doclet
jjg
parents: 15724
diff changeset
   502
                    // standard doclet normally generates H1, H2
fbe4d27b8791 8006346: doclint should make allowance for headers generated by standard doclet
jjg
parents: 15724
diff changeset
   503
                    doclintOpts.add(DocLint.XIMPLICIT_HEADERS + "2");
14960
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   504
                    new DocLint().init(t, doclintOpts.toArray(new String[doclintOpts.size()]));
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   505
                    comp.keepComments = true;
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   506
                }
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   507
            }
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   508
ea7606a9683e 8004833: Integrate doclint support into javac
jjg
parents: 14954
diff changeset
   509
            fileManager = context.get(JavaFileManager.class);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   511
            if (!files.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
                // add filenames to fileObjects
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
                comp = JavaCompiler.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
                List<JavaFileObject> otherFiles = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
                JavacFileManager dfm = (JavacFileManager)fileManager;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   516
                for (JavaFileObject fo : dfm.getJavaFileObjectsFromFiles(files))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
                    otherFiles = otherFiles.prepend(fo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
                for (JavaFileObject fo : otherFiles)
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
                    fileObjects = fileObjects.prepend(fo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
            comp.compile(fileObjects,
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
                         classnames.toList(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
                         processors);
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   525
            if (log.expectDiagKeys != null) {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6721
diff changeset
   526
                if (log.expectDiagKeys.isEmpty()) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   527
                    log.printRawLines("all expected diagnostics found");
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   528
                    return Result.OK;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   529
                } else {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   530
                    log.printRawLines("expected diagnostic keys not found: " + log.expectDiagKeys);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   531
                    return Result.ERROR;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   532
                }
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   533
            }
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   534
1996
c855318a4b03 6595666: fix -Werror
jjg
parents: 1866
diff changeset
   535
            if (comp.errorCount() != 0)
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   536
                return Result.ERROR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
        } catch (IOException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
            ioMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   539
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
        } catch (OutOfMemoryError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
            resourceMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   542
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
        } catch (StackOverflowError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
            resourceMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   545
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
        } catch (FatalError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
            feMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   548
            return Result.SYSERR;
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   549
        } catch (AnnotationProcessingError ex) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   550
            if (apiMode)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   551
                throw new RuntimeException(ex.getCause());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
            apMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   553
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
        } catch (ClientCodeException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
            // as specified by javax.tools.JavaCompiler#getTask
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
            // and javax.tools.JavaCompiler.CompilationTask#call
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
            throw new RuntimeException(ex.getCause());
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        } catch (PropagatedException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
            throw ex.getCause();
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
        } catch (Throwable ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
            // Nasty.  If we've already reported an error, compensate
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
            // for buggy compiler error recovery by swallowing thrown
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
            // exceptions.
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
            if (comp == null || comp.errorCount() == 0 ||
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   565
                options == null || options.isSet("dev"))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
                bugMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   567
            return Result.ABNORMAL;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
        } finally {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   569
            if (comp != null) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   570
                try {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   571
                    comp.close();
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   572
                } catch (ClientCodeException ex) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   573
                    throw new RuntimeException(ex.getCause());
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   574
                }
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   575
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
            filenames = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
            options = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
        }
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   579
        return Result.OK;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
    /** Print a message reporting an internal error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
    void bugMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   585
        log.printLines(PrefixKind.JAVAC, "msg.bug", JavaCompiler.version());
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   586
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 5857
diff changeset
   589
    /** Print a message reporting a fatal error.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
    void feMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   592
        log.printRawLines(ex.getMessage());
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   593
        if (ex.getCause() != null && options.isSet("dev")) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   594
            ex.getCause().printStackTrace(log.getWriter(WriterKind.NOTICE));
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 5857
diff changeset
   595
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
    /** Print a message reporting an input/output error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
    void ioMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   601
        log.printLines(PrefixKind.JAVAC, "msg.io");
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   602
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
    /** Print a message reporting an out-of-resources error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
    void resourceMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   608
        log.printLines(PrefixKind.JAVAC, "msg.resource");
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   609
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
    /** Print a message reporting an uncaught exception from an
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
     * annotation processor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
    void apMessage(AnnotationProcessingError ex) {
14448
91aa6570b59a 7198690: missing compiler message
jjg
parents: 13631
diff changeset
   616
        log.printLines(PrefixKind.JAVAC, "msg.proc.annotation.uncaught.exception");
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   617
        ex.getCause().printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
14548
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   620
    /** Print a message reporting an uncaught exception from an
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   621
     * annotation processor.
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   622
     */
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   623
    void pluginMessage(Throwable ex) {
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   624
        log.printLines(PrefixKind.JAVAC, "msg.plugin.uncaught.exception");
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   625
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   626
    }
aa687b312c97 8001098: Provide a simple light-weight "plug-in" mechanism for javac
jjg
parents: 14448
diff changeset
   627
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   628
    /** Display the location and checksum of a class. */
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   629
    void showClass(String className) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   630
        PrintWriter pw = log.getWriter(WriterKind.NOTICE);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   631
        pw.println("javac: show class: " + className);
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   632
        URL url = getClass().getResource('/' + className.replace('.', '/') + ".class");
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   633
        if (url == null)
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   634
            pw.println("  class not found");
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   635
        else {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   636
            pw.println("  " + url);
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   637
            try {
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   638
                final String algorithm = "MD5";
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   639
                byte[] digest;
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   640
                MessageDigest md = MessageDigest.getInstance(algorithm);
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 19489
diff changeset
   641
                try (DigestInputStream in = new DigestInputStream(url.openStream(), md)) {
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   642
                    byte[] buf = new byte[8192];
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   643
                    int n;
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   644
                    do { n = in.read(buf); } while (n > 0);
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   645
                    digest = md.digest();
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   646
                }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   647
                StringBuilder sb = new StringBuilder();
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   648
                for (byte b: digest)
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   649
                    sb.append(String.format("%02x", b));
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   650
                pw.println("  " + algorithm + " checksum: " + sb);
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   651
            } catch (Exception e) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   652
                pw.println("  cannot compute digest: " + e);
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   653
            }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   654
        }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   655
    }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   656
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
    private JavaFileManager fileManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
    /* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
     * Internationalization
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
     *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   663
//    /** Find a localized string in the resource bundle.
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   664
//     *  @param key     The key for the localized string.
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   665
//     */
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   666
//    public static String getLocalizedString(String key, Object... args) { // FIXME sb private
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   667
//        try {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   668
//            if (messages == null)
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   669
//                messages = new JavacMessages(javacBundleName);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   670
//            return messages.getLocalizedString("javac." + key, args);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   671
//        }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   672
//        catch (MissingResourceException e) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   673
//            throw new Error("Fatal Error: Resource for javac is missing", e);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   674
//        }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   675
//    }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   676
//
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   677
//    public static void useRawMessages(boolean enable) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   678
//        if (enable) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   679
//            messages = new JavacMessages(javacBundleName) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   680
//                    @Override
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   681
//                    public String getLocalizedString(String key, Object... args) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   682
//                        return key;
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   683
//                    }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   684
//                };
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   685
//        } else {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   686
//            messages = new JavacMessages(javacBundleName);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   687
//        }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   688
//    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   690
    public static final String javacBundleName =
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
        "com.sun.tools.javac.resources.javac";
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   692
//
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   693
//    private static JavacMessages messages;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
}