langtools/src/share/classes/com/sun/tools/javac/main/Main.java
author jjh
Wed, 15 Aug 2012 13:48:46 -0700
changeset 13631 dc1212c348f9
parent 11708 f83264d62af2
child 14448 91aa6570b59a
permissions -rw-r--r--
7191449: update copyright year to match last edit in jdk8 langtools repository Reviewed-by: jjh Contributed-by: steve.sides@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
13631
dc1212c348f9 7191449: update copyright year to match last edit in jdk8 langtools repository
jjh
parents: 11708
diff changeset
     2
 * Copyright (c) 1999, 2012, 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;
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
    36
import java.util.LinkedHashSet;
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
    37
import java.util.Set;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    38
import javax.tools.JavaFileManager;
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    39
import javax.tools.JavaFileObject;
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    40
import javax.annotation.processing.Processor;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import com.sun.tools.javac.code.Source;
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
    43
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
    44
import com.sun.tools.javac.file.JavacFileManager;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
import com.sun.tools.javac.jvm.Target;
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
import com.sun.tools.javac.util.*;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    47
import com.sun.tools.javac.util.Log.WriterKind;
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    48
import com.sun.tools.javac.util.Log.PrefixKind;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
import com.sun.tools.javac.processing.AnnotationProcessingError;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
    50
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
    51
import static com.sun.tools.javac.main.Option.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
/** This class provides a commandline interface to the GJC compiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    55
 *  <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
    56
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
public class Main {
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    /** The name of the compiler, for use in diagnostics.
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    String ownName;
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    /** The writer to use for diagnostic output.
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    PrintWriter out;
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    70
    /** The log to use for diagnostic output.
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    71
     */
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    72
    Log log;
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
    73
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    /**
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    75
     * 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
    76
     * arg errors, or exceptions in user provided code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     */
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    78
    boolean apiMode;
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
    79
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    /** Result codes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     */
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    83
    public enum Result {
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    84
        OK(0),        // Compilation completed with no errors.
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    85
        ERROR(1),     // Completed but reported errors.
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    86
        CMDERR(2),    // Bad command-line arguments
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    87
        SYSERR(3),    // System error or resource exhaustion.
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    88
        ABNORMAL(4);  // Compiler terminated abnormally
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    89
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    90
        Result(int exitCode) {
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    91
            this.exitCode = exitCode;
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    92
        }
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    93
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    94
        public boolean isOK() {
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    95
            return (exitCode == 0);
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    96
        }
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
        public final int exitCode;
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
    99
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   101
    private Option[] recognizedOptions =
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   102
            Option.getJavaCompilerOptions().toArray(new Option[0]);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   104
    private OptionHelper optionHelper = new OptionHelper() {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   105
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   106
        public String get(Option option) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   107
            return options.get(option);
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   108
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   109
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   110
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   111
        public void put(String name, String value) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   112
            options.put(name, value);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   115
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   116
        public void remove(String name) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   117
            options.remove(name);
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   118
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   119
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   120
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   121
        public Log getLog() {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   122
            return log;
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   123
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   124
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   125
        @Override
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   126
        public String getOwnName() {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   127
            return ownName;
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   128
        }
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   129
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   130
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        public void error(String key, Object... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            Main.this.error(key, args);
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   135
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        public void addFile(File f) {
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   137
            filenames.add(f);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   140
        @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        public void addClassName(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
            classnames.append(s);
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   145
    };
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     * Construct a compiler instance.
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    public Main(String name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        this(name, new PrintWriter(System.err, true));
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
     * Construct a compiler instance.
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
    public Main(String name, PrintWriter out) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        this.ownName = name;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
        this.out = out;
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    /** A table of all options that's passed to the JavaCompiler constructor.  */
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    private Options options = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
    /** The list of source files to process
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     */
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   166
    public Set<File> filenames = null; // XXX sb protected
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    /** List of class files names passed on the command line
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    public ListBuffer<String> classnames = null; // XXX sb protected
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    /** Report a usage error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    void error(String key, Object... args) {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   175
        if (apiMode) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   176
            String msg = log.localize(PrefixKind.JAVAC, key, args);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
            throw new PropagatedException(new IllegalStateException(msg));
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        warning(key, args);
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   180
        log.printLines(PrefixKind.JAVAC, "msg.usage", ownName);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    /** Report a warning.
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    void warning(String key, Object... args) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   186
        log.printRawLines(ownName + ": " + log.localize(PrefixKind.JAVAC, key, args));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    public Option getOption(String flag) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
        for (Option option : recognizedOptions) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            if (option.matches(flag))
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
                return option;
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    public void setOptions(Options options) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        if (options == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            throw new NullPointerException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
        this.options = options;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   203
    public void setAPIMode(boolean apiMode) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   204
        this.apiMode = apiMode;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    /** Process command line arguments: store all command line options
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     *  in `options' table and return all source filenames.
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     *  @param flags    The array of command line arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     */
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   211
    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
   212
        return processArgs(flags, null);
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   213
    }
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   214
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   215
    public Collection<File> processArgs(String[] flags, String[] classNames) { // XXX sb protected
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        int ac = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        while (ac < flags.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            String flag = flags[ac];
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
            ac++;
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
            Option option = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            if (flag.length() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
                // quick hack to speed up file processing:
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
                // if the option does not begin with '-', there is no need to check
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
                // most of the compiler options.
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
                int firstOptionToCheck = flag.charAt(0) == '-' ? 0 : recognizedOptions.length-1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
                for (int j=firstOptionToCheck; j<recognizedOptions.length; j++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
                    if (recognizedOptions[j].matches(flag)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
                        option = recognizedOptions[j];
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
                        break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            if (option == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
                error("err.invalid.flag", flag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
                return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
            if (option.hasArg()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                if (ac == flags.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                    error("err.req.arg", flag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                String operand = flags[ac];
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                ac++;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   248
                if (option.process(optionHelper, flag, operand))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            } else {
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   251
                if (option.process(optionHelper, flag))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   256
        if (this.classnames != null && classNames != null) {
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   257
            this.classnames.addAll(Arrays.asList(classNames));
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   258
        }
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   259
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   260
        if (!checkDirectory(D))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
            return null;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   262
        if (!checkDirectory(S))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   265
        String sourceString = options.get(SOURCE);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
        Source source = (sourceString != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
            ? Source.lookup(sourceString)
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
            : Source.DEFAULT;
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   269
        String targetString = options.get(TARGET);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
        Target target = (targetString != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
            ? Target.lookup(targetString)
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
            : Target.DEFAULT;
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        // We don't check source/target consistency for CLDC, as J2ME
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
        // profiles are not aligned with J2SE targets; moreover, a
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        // single CLDC target may have many profiles.  In addition,
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
        // this is needed for the continued functioning of the JSR14
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
        // prototype.
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
        if (Character.isDigit(target.name.charAt(0))) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
            if (target.compareTo(source.requiredTarget()) < 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
                if (targetString != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
                    if (sourceString == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
                        warning("warn.target.default.source.conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
                                targetString,
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
                                source.requiredTarget().name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                    } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                        warning("warn.source.target.conflict",
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                                sourceString,
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                                source.requiredTarget().name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                    return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                } else {
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   292
                    target = source.requiredTarget();
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   293
                    options.put("-target", target.name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
                if (targetString == null && !source.allowGenerics()) {
2723
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   297
                    target = Target.JDK1_4;
b659ca23d5f5 6829189: Java programming with JSR 292 needs language support
jrose
parents: 2212
diff changeset
   298
                    options.put("-target", target.name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
        }
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   302
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   303
        // 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
   304
        String showClass = options.get("showClass");
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   305
        if (showClass != null) {
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   306
            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
   307
                showClass = "com.sun.tools.javac.Main";
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   308
            showClass(showClass);
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   309
        }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   310
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   311
        options.notifyListeners();
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   312
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   313
        return filenames;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
    // where
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   316
        private boolean checkDirectory(Option option) {
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   317
            String value = options.get(option);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
            if (value == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            File file = new File(value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            if (!file.exists()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
                error("err.dir.not.found", value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            if (!file.isDirectory()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
                error("err.file.not.directory", value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
    /** Programmatic interface for main function.
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
     * @param args    The command line parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
     */
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   335
    public Result compile(String[] args) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
        Context context = new Context();
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
        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
   338
        Result result = compile(args, context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
        if (fileManager instanceof JavacFileManager) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
            // A fresh context was created above, so jfm must be a JavacFileManager
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
            ((JavacFileManager)fileManager).close();
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   346
    public Result compile(String[] args, Context context) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
        return compile(args, context, List.<JavaFileObject>nil(), null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
    /** Programmatic interface for main function.
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     * @param args    The command line parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
     */
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   353
    public Result compile(String[] args,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
                       Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
                       List<JavaFileObject> fileObjects,
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
                       Iterable<? extends Processor> processors)
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
    {
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   358
        return compile(args,  null, context, fileObjects, processors);
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   359
    }
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   360
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   361
    public Result compile(String[] args,
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   362
                       String[] classNames,
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   363
                       Context context,
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   364
                       List<JavaFileObject> fileObjects,
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   365
                       Iterable<? extends Processor> processors)
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   366
    {
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   367
        context.put(Log.outKey, out);
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   368
        log = Log.instance(context);
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   369
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        if (options == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
            options = Options.instance(context); // creates a new one
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   373
        filenames = new LinkedHashSet<File>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
        classnames = new ListBuffer<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
        JavaCompiler comp = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        /*
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
         * TODO: Logic below about what is an acceptable command line
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
         * should be updated to take annotation processing semantics
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
         * into account.
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
        try {
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   382
            if (args.length == 0
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   383
                    && (classNames == null || classNames.length == 0)
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   384
                    && fileObjects.isEmpty()) {
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   385
                Option.HELP.process(optionHelper, "-help");
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   386
                return Result.CMDERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   389
            Collection<File> files;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
            try {
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 11314
diff changeset
   391
                files = processArgs(CommandLine.parse(args), classNames);
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   392
                if (files == null) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
                    // null signals an error in options, abort
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   394
                    return Result.CMDERR;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   395
                } else if (files.isEmpty() && fileObjects.isEmpty() && classnames.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
                    // 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
   397
                    if (options.isSet(HELP)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   398
                        || options.isSet(X)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   399
                        || options.isSet(VERSION)
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   400
                        || options.isSet(FULLVERSION))
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   401
                        return Result.OK;
8623
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   402
                    if (JavaCompiler.explicitAnnotationProcessingRequested(options)) {
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   403
                        error("err.no.source.files.classes");
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   404
                    } else {
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   405
                        error("err.no.source.files");
cc57bd7697a2 6986895: compiler gives misleading message for no input files
jjg
parents: 8036
diff changeset
   406
                    }
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   407
                    return Result.CMDERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
            } catch (java.io.FileNotFoundException e) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   410
                warning("err.file.not.found", e.getMessage());
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   411
                return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   414
            boolean forceStdOut = options.isSet("stdout");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
            if (forceStdOut) {
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 10638
diff changeset
   416
                log.flush();
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11057
diff changeset
   417
                log.setWriters(new PrintWriter(System.out, true));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   420
            // allow System property in following line as a Mustang legacy
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   421
            boolean batchMode = (options.isUnset("nonBatchMode")
1208
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   422
                        && System.getProperty("nonBatchMode") == null);
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   423
            if (batchMode)
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   424
                CacheFSInfo.preRegister(context);
5072b0dd3d52 6743107: clean up use of static caches in file manager
jjg
parents: 735
diff changeset
   425
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
            fileManager = context.get(JavaFileManager.class);
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
            comp = JavaCompiler.instance(context);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   429
            if (comp == null) return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   431
            if (!files.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
                // add filenames to fileObjects
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
                comp = JavaCompiler.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
                List<JavaFileObject> otherFiles = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
                JavacFileManager dfm = (JavacFileManager)fileManager;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   436
                for (JavaFileObject fo : dfm.getJavaFileObjectsFromFiles(files))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
                    otherFiles = otherFiles.prepend(fo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
                for (JavaFileObject fo : otherFiles)
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
                    fileObjects = fileObjects.prepend(fo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
            comp.compile(fileObjects,
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
                         classnames.toList(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
                         processors);
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   445
            if (log.expectDiagKeys != null) {
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6721
diff changeset
   446
                if (log.expectDiagKeys.isEmpty()) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   447
                    log.printRawLines("all expected diagnostics found");
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   448
                    return Result.OK;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   449
                } else {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   450
                    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
   451
                    return Result.ERROR;
1866
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   452
                }
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   453
            }
734286a0cc38 6794959: add new switch -XDexpectKeys=key,key....
jjg
parents: 1471
diff changeset
   454
1996
c855318a4b03 6595666: fix -Werror
jjg
parents: 1866
diff changeset
   455
            if (comp.errorCount() != 0)
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   456
                return Result.ERROR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        } catch (IOException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
            ioMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   459
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
        } catch (OutOfMemoryError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
            resourceMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   462
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
        } catch (StackOverflowError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
            resourceMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   465
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
        } catch (FatalError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
            feMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   468
            return Result.SYSERR;
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   469
        } catch (AnnotationProcessingError ex) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   470
            if (apiMode)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   471
                throw new RuntimeException(ex.getCause());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
            apMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   473
            return Result.SYSERR;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
        } catch (ClientCodeException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
            // as specified by javax.tools.JavaCompiler#getTask
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
            // and javax.tools.JavaCompiler.CompilationTask#call
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
            throw new RuntimeException(ex.getCause());
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
        } catch (PropagatedException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
            throw ex.getCause();
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
        } catch (Throwable ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
            // Nasty.  If we've already reported an error, compensate
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
            // for buggy compiler error recovery by swallowing thrown
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
            // exceptions.
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
            if (comp == null || comp.errorCount() == 0 ||
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   485
                options == null || options.isSet("dev"))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
                bugMessage(ex);
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   487
            return Result.ABNORMAL;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
        } finally {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   489
            if (comp != null) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   490
                try {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   491
                    comp.close();
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   492
                } catch (ClientCodeException ex) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   493
                    throw new RuntimeException(ex.getCause());
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   494
                }
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 8623
diff changeset
   495
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
            filenames = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
            options = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
        }
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10193
diff changeset
   499
        return Result.OK;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
    /** Print a message reporting an internal error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
    void bugMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   505
        log.printLines(PrefixKind.JAVAC, "msg.bug", JavaCompiler.version());
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   506
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 5857
diff changeset
   509
    /** Print a message reporting a fatal error.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
    void feMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   512
        log.printRawLines(ex.getMessage());
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6592
diff changeset
   513
        if (ex.getCause() != null && options.isSet("dev")) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   514
            ex.getCause().printStackTrace(log.getWriter(WriterKind.NOTICE));
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 5857
diff changeset
   515
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
    /** Print a message reporting an input/output error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
    void ioMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   521
        log.printLines(PrefixKind.JAVAC, "msg.io");
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   522
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
    /** Print a message reporting an out-of-resources error.
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
    void resourceMessage(Throwable ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   528
        log.printLines(PrefixKind.JAVAC, "msg.resource");
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   529
        ex.printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
    /** Print a message reporting an uncaught exception from an
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
     * annotation processor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
    void apMessage(AnnotationProcessingError ex) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   536
        log.printLines("msg.proc.annotation.uncaught.exception");
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   537
        ex.getCause().printStackTrace(log.getWriter(WriterKind.NOTICE));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   540
    /** 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
   541
    void showClass(String className) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   542
        PrintWriter pw = log.getWriter(WriterKind.NOTICE);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   543
        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
   544
        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
   545
        if (url == null)
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   546
            pw.println("  class not found");
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   547
        else {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   548
            pw.println("  " + url);
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   549
            try {
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   550
                final String algorithm = "MD5";
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   551
                byte[] digest;
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   552
                MessageDigest md = MessageDigest.getInstance(algorithm);
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   553
                DigestInputStream in = new DigestInputStream(url.openStream(), md);
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   554
                try {
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   555
                    byte[] buf = new byte[8192];
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   556
                    int n;
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   557
                    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
   558
                    digest = md.digest();
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   559
                } finally {
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   560
                    in.close();
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   561
                }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   562
                StringBuilder sb = new StringBuilder();
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   563
                for (byte b: digest)
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   564
                    sb.append(String.format("%02x", b));
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   565
                pw.println("  " + algorithm + " checksum: " + sb);
5319
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   566
            } catch (Exception e) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   567
                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
   568
            }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   569
        }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   570
    }
63dc7f367a37 6942649: add hidden option to identify location and version of javac classes
jjg
parents: 2723
diff changeset
   571
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
    private JavaFileManager fileManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
    /* ************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
     * Internationalization
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
     *************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   578
//    /** Find a localized string in the resource bundle.
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   579
//     *  @param key     The key for the localized string.
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   580
//     */
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   581
//    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
   582
//        try {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   583
//            if (messages == null)
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   584
//                messages = new JavacMessages(javacBundleName);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   585
//            return messages.getLocalizedString("javac." + key, args);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   586
//        }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   587
//        catch (MissingResourceException e) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   588
//            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
   589
//        }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   590
//    }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   591
//
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   592
//    public static void useRawMessages(boolean enable) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   593
//        if (enable) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   594
//            messages = new JavacMessages(javacBundleName) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   595
//                    @Override
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   596
//                    public String getLocalizedString(String key, Object... args) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   597
//                        return key;
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   598
//                    }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   599
//                };
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   600
//        } else {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   601
//            messages = new JavacMessages(javacBundleName);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   602
//        }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   603
//    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   605
    public static final String javacBundleName =
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
        "com.sun.tools.javac.resources.javac";
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   607
//
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   608
//    private static JavacMessages messages;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
}