langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/api/JavacTool.java
author jlahoda
Wed, 27 Aug 2014 07:44:00 +0200
changeset 26266 2d24bda701dc
parent 26264 a09fedde76be
child 27379 5ae894733e09
permissions -rw-r--r--
8056061: Mark implementations of public interfaces with an annotation Summary: Adding @DefinedBy annotation to mark methods that implement public API methods; annotating the methods; adding a coding rules analyzer to enforce all such methods are annotated. Reviewed-by: jjg, mcimadamore, jfranck Contributed-by: jan.lahoda@oracle.com, jonathan.gibbons@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25006
5d5fa4abab27 8046369: sjavac should not use javac internal API for starting javac
jjg
parents: 20604
diff changeset
     2
 * Copyright (c) 2005, 2014, 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: 5004
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: 5004
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: 5004
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5004
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5004
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.api;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.io.InputStream;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.io.OutputStream;
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    30
import java.io.OutputStreamWriter;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.io.PrintWriter;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.io.Writer;
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    33
import java.nio.charset.Charset;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import java.util.Collections;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.util.EnumSet;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.util.Locale;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import java.util.Set;
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    38
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import javax.lang.model.SourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import javax.tools.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import com.sun.source.util.JavacTask;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 10
diff changeset
    43
import com.sun.tools.javac.file.JavacFileManager;
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    44
import com.sun.tools.javac.main.Arguments;
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    45
import com.sun.tools.javac.main.Option;
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
    46
import com.sun.tools.javac.util.ClientCodeException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import com.sun.tools.javac.util.Context;
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
    48
import com.sun.tools.javac.util.DefinedBy;
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
    49
import com.sun.tools.javac.util.DefinedBy.Api;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
import com.sun.tools.javac.util.Log;
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
    51
import com.sun.tools.javac.util.PropagatedException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 * TODO: describe com.sun.tools.javac.api.Tool
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    56
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 * If you write code that depends on this, you do so at your own
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 * risk.  This code and its internal interfaces are subject to change
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * or deletion without notice.</b></p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * @author Peter von der Ah\u00e9
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
public final class JavacTool implements JavaCompiler {
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    /**
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    65
     * Constructor used by service provider mechanism.  The recommended way to
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    66
     * obtain an instance of this class is by using {@link #create} or the
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
    67
     * service provider mechanism.
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 11314
diff changeset
    68
     * @see javax.tools.JavaCompiler
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
     * @see javax.tools.ToolProvider
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     * @see #create
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    @Deprecated
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    public JavacTool() {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
     * Static factory method for creating new instances of this tool.
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     * @return new instance of this tool
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    public static JavacTool create() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        return new JavacTool();
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
    83
    @Override @DefinedBy(Api.COMPILER)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    public JavacFileManager getStandardFileManager(
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        DiagnosticListener<? super JavaFileObject> diagnosticListener,
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        Locale locale,
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        Charset charset) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        Context context = new Context();
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    89
        context.put(Locale.class, locale);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        if (diagnosticListener != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            context.put(DiagnosticListener.class, diagnosticListener);
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    92
        PrintWriter pw = (charset == null)
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    93
                ? new PrintWriter(System.err, true)
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    94
                : new PrintWriter(new OutputStreamWriter(System.err, charset), true);
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    95
        context.put(Log.outKey, pw);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        return new JavacFileManager(context, true, charset);
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
    99
    @Override @DefinedBy(Api.COMPILER)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    public JavacTask getTask(Writer out,
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
                             JavaFileManager fileManager,
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
                             DiagnosticListener<? super JavaFileObject> diagnosticListener,
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
                             Iterable<String> options,
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
                             Iterable<String> classes,
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   105
                             Iterable<? extends JavaFileObject> compilationUnits) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   106
        Context context = new Context();
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   107
        return getTask(out, fileManager, diagnosticListener,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   108
                options, classes, compilationUnits,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   109
                context);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   110
    }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   111
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   112
    /* Internal version of getTask, allowing context to be provided. */
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   113
    public JavacTask getTask(Writer out,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   114
                             JavaFileManager fileManager,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   115
                             DiagnosticListener<? super JavaFileObject> diagnosticListener,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   116
                             Iterable<String> options,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   117
                             Iterable<String> classes,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   118
                             Iterable<? extends JavaFileObject> compilationUnits,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   119
                             Context context)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   121
        try {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   122
            ClientCodeWrapper ccw = ClientCodeWrapper.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   124
            if (options != null) {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   125
                for (String option : options)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   126
                    option.getClass(); // null check
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   127
            }
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   128
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   129
            if (classes != null) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   130
                for (String cls : classes)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   131
                    if (!SourceVersion.isName(cls)) // implicit null check
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   132
                        throw new IllegalArgumentException("Not a valid class name: " + cls);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   133
            }
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   134
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   135
            if (compilationUnits != null) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   136
                compilationUnits = ccw.wrapJavaFileObjects(compilationUnits); // implicit null check
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   137
                for (JavaFileObject cu : compilationUnits) {
20604
13bdd49ddaf0 8015073: c.s.t.javac.api.JavacTool.getTask() - more informative exception
ksrini
parents: 14957
diff changeset
   138
                    if (cu.getKind() != JavaFileObject.Kind.SOURCE) {
13bdd49ddaf0 8015073: c.s.t.javac.api.JavacTool.getTask() - more informative exception
ksrini
parents: 14957
diff changeset
   139
                        String kindMsg = "Compilation unit is not of SOURCE kind: "
13bdd49ddaf0 8015073: c.s.t.javac.api.JavacTool.getTask() - more informative exception
ksrini
parents: 14957
diff changeset
   140
                                + "\"" + cu.getName() + "\"";
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   141
                        throw new IllegalArgumentException(kindMsg);
20604
13bdd49ddaf0 8015073: c.s.t.javac.api.JavacTool.getTask() - more informative exception
ksrini
parents: 14957
diff changeset
   142
                    }
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   143
                }
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   144
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   146
            if (diagnosticListener != null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   147
                context.put(DiagnosticListener.class, ccw.wrap(diagnosticListener));
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   148
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   149
            if (out == null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   150
                context.put(Log.outKey, new PrintWriter(System.err, true));
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   151
            else
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   152
                context.put(Log.outKey, new PrintWriter(out, true));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   154
            if (fileManager == null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   155
                fileManager = getStandardFileManager(diagnosticListener, null, null);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   156
            fileManager = ccw.wrap(fileManager);
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   157
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   158
            context.put(JavaFileManager.class, fileManager);
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   159
26264
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   160
            Arguments args = Arguments.instance(context);
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   161
            args.init("javac", options, classes, compilationUnits);
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   162
            return new JavacTaskImpl(context);
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   163
        } catch (PropagatedException ex) {
a09fedde76be 8044859: javac duplicates option processing when using Compiler API
jjg
parents: 25874
diff changeset
   164
            throw ex.getCause();
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   165
        } catch (ClientCodeException ex) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   166
            throw new RuntimeException(ex.getCause());
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   167
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
   170
    @Override @DefinedBy(Api.COMPILER)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    public int run(InputStream in, OutputStream out, OutputStream err, String... arguments) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        if (err == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            err = System.err;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        for (String argument : arguments)
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            argument.getClass(); // null check
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
        return com.sun.tools.javac.Main.compile(arguments, new PrintWriter(err, true));
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
   179
    @Override @DefinedBy(Api.COMPILER)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    public Set<SourceVersion> getSourceVersions() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
        return Collections.unmodifiableSet(EnumSet.range(SourceVersion.RELEASE_3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
                                                         SourceVersion.latest()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
26266
2d24bda701dc 8056061: Mark implementations of public interfaces with an annotation
jlahoda
parents: 26264
diff changeset
   185
    @Override @DefinedBy(Api.COMPILER)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
    public int isSupportedOption(String option) {
11314
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   187
        Set<Option> recognizedOptions = Option.getJavacToolOptions();
b612aaca08d0 7120736: refactor javac option handling
jjg
parents: 11053
diff changeset
   188
        for (Option o : recognizedOptions) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
            if (o.matches(option))
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
                return o.hasArg() ? 1 : 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        return -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
}