langtools/src/share/classes/com/sun/tools/javac/api/JavacTool.java
author jjg
Tue, 08 Nov 2011 17:06:58 -0800
changeset 11053 48713f779b1d
parent 11052 65b9fa7eaf55
child 11314 b612aaca08d0
permissions -rw-r--r--
7108669: cleanup Log methods for direct printing to streams Reviewed-by: mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
8614
06e42328ddab 7021650: fix Context issues
jjg
parents: 7681
diff changeset
     2
 * Copyright (c) 2005, 2011, 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.File;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.io.InputStream;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.io.OutputStream;
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    31
import java.io.OutputStreamWriter;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.io.PrintWriter;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import java.io.Writer;
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
    34
import java.nio.charset.Charset;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.util.ArrayList;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.util.Collections;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import java.util.EnumSet;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import java.util.Iterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import java.util.Locale;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import javax.lang.model.SourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
import javax.tools.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
import com.sun.source.util.JavacTask;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 10
diff changeset
    46
import com.sun.tools.javac.file.JavacFileManager;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import com.sun.tools.javac.main.JavacOption.OptionKind;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
import com.sun.tools.javac.main.JavacOption;
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
import com.sun.tools.javac.main.Main;
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
import com.sun.tools.javac.main.RecognizedOptions.GrumpyHelper;
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
import com.sun.tools.javac.main.RecognizedOptions;
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
    52
import com.sun.tools.javac.util.ClientCodeException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
import com.sun.tools.javac.util.Context;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
import com.sun.tools.javac.util.Log;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
    55
import com.sun.tools.javac.util.Log.PrefixKind;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
import com.sun.tools.javac.util.Options;
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
import com.sun.tools.javac.util.Pair;
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 * TODO: describe com.sun.tools.javac.api.Tool
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    62
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
 * If you write code that depends on this, you do so at your own
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * risk.  This code and its internal interfaces are subject to change
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 * or deletion without notice.</b></p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
 * @author Peter von der Ah\u00e9
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
public final class JavacTool implements JavaCompiler {
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    private final List<Pair<String,String>> options
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        = new ArrayList<Pair<String,String>>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    private final Context dummyContext = new Context();
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    private final PrintWriter silent = new PrintWriter(new OutputStream(){
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        public void write(int b) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    });
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    private final Main sharedCompiler = new Main("javac", silent);
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        sharedCompiler.setOptions(Options.instance(dummyContext));
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     * Constructor used by service provider mechanism.  The correct way to
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * obtain an instance of this class is using create or the service provider
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * mechanism.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     * @see javax.tools.JavaCompilerTool
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     * @see javax.tools.ToolProvider
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     * @see #create
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    @Deprecated
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    public JavacTool() {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * Static factory method for creating new instances of this tool.
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * @return new instance of this tool
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    public static JavacTool create() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        return new JavacTool();
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    private String argsToString(Object... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
        String newArgs = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
        if (args.length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
            StringBuilder sb = new StringBuilder();
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            String separator = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
            for (Object arg : args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
                sb.append(separator).append(arg.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
                separator = File.pathSeparator;
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            newArgs = sb.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        return newArgs;
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    private void setOption1(String name, OptionKind kind, Object... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        String arg = argsToString(args);
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        JavacOption option = sharedCompiler.getOption(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        if (option == null || !match(kind, option.getKind()))
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
            throw new IllegalArgumentException(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        if ((args.length != 0) != option.hasArg())
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
            throw new IllegalArgumentException(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        if (option.hasArg()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            if (option.process(null, name, arg)) // FIXME
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
                throw new IllegalArgumentException(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            if (option.process(null, name)) // FIXME
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
                throw new IllegalArgumentException(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        options.add(new Pair<String,String>(name,arg));
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
    public void setOption(String name, Object... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        setOption1(name, OptionKind.NORMAL, args);
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    public void setExtendedOption(String name, Object... args)  {
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        setOption1(name, OptionKind.EXTENDED, args);
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    private static boolean match(OptionKind clientKind, OptionKind optionKind) {
5004
6c2694dc2da0 6929544: langtools source code uses statics qualified by instance variables
jjg
parents: 1471
diff changeset
   142
        return (clientKind == (optionKind == OptionKind.HIDDEN ? OptionKind.EXTENDED : optionKind));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    public JavacFileManager getStandardFileManager(
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        DiagnosticListener<? super JavaFileObject> diagnosticListener,
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        Locale locale,
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        Charset charset) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        Context context = new Context();
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
   150
        context.put(Locale.class, locale);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        if (diagnosticListener != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
            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
   153
        PrintWriter pw = (charset == null)
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
   154
                ? new PrintWriter(System.err, true)
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
   155
                : 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
   156
        context.put(Log.outKey, pw);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
        return new JavacFileManager(context, true, charset);
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   160
    @Override
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    public JavacTask getTask(Writer out,
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
                             JavaFileManager fileManager,
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
                             DiagnosticListener<? super JavaFileObject> diagnosticListener,
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
                             Iterable<String> options,
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
                             Iterable<String> classes,
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   166
                             Iterable<? extends JavaFileObject> compilationUnits) {
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   167
        Context context = new Context();
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   168
        return getTask(out, fileManager, diagnosticListener,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   169
                options, classes, compilationUnits,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   170
                context);
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   171
    }
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   172
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   173
    public JavacTask getTask(Writer out,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   174
                             JavaFileManager fileManager,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   175
                             DiagnosticListener<? super JavaFileObject> diagnosticListener,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   176
                             Iterable<String> options,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   177
                             Iterable<String> classes,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   178
                             Iterable<? extends JavaFileObject> compilationUnits,
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   179
                             Context context)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   181
        try {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   182
            ClientCodeWrapper ccw = ClientCodeWrapper.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   184
            final String kindMsg = "All compilation units must be of SOURCE kind";
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   185
            if (options != null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   186
                for (String option : options)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   187
                    option.getClass(); // null check
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   188
            if (classes != null) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   189
                for (String cls : classes)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   190
                    if (!SourceVersion.isName(cls)) // implicit null check
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   191
                        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
   192
            }
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   193
            if (compilationUnits != null) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   194
                compilationUnits = ccw.wrapJavaFileObjects(compilationUnits); // implicit null check
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   195
                for (JavaFileObject cu : compilationUnits) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   196
                    if (cu.getKind() != JavaFileObject.Kind.SOURCE)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   197
                        throw new IllegalArgumentException(kindMsg);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   198
                }
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   199
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   201
            if (diagnosticListener != null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   202
                context.put(DiagnosticListener.class, ccw.wrap(diagnosticListener));
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   203
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   204
            if (out == null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   205
                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
   206
            else
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   207
                context.put(Log.outKey, new PrintWriter(out, true));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   209
            if (fileManager == null)
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   210
                fileManager = getStandardFileManager(diagnosticListener, null, null);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   211
            fileManager = ccw.wrap(fileManager);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   212
            context.put(JavaFileManager.class, fileManager);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   213
            processOptions(context, fileManager, options);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   214
            Main compiler = new Main("javacTask", context.get(Log.outKey));
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   215
            return new JavacTaskImpl(compiler, options, context, classes, compilationUnits);
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   216
        } catch (ClientCodeException ex) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   217
            throw new RuntimeException(ex.getCause());
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   218
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
    private static void processOptions(Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
                                       JavaFileManager fileManager,
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
                                       Iterable<String> options)
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
        if (options == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        Options optionTable = Options.instance(context);
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   229
        Log log = Log.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        JavacOption[] recognizedOptions =
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   232
            RecognizedOptions.getJavacToolOptions(new GrumpyHelper(log));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        Iterator<String> flags = options.iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        while (flags.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            String flag = flags.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            int j;
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            for (j=0; j<recognizedOptions.length; j++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
                if (recognizedOptions[j].matches(flag))
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                    break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
            if (j == recognizedOptions.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                if (fileManager.handleOption(flag, flags)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                    continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                } else {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   245
                    String msg = log.localize(PrefixKind.JAVAC, "err.invalid.flag", flag);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                    throw new IllegalArgumentException(msg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            JavacOption option = recognizedOptions[j];
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            if (option.hasArg()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                if (!flags.hasNext()) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   253
                    String msg = log.localize(PrefixKind.JAVAC, "err.req.arg", flag);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
                    throw new IllegalArgumentException(msg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
                String operand = flags.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
                if (option.process(optionTable, flag, operand))
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
                    // should not happen as the GrumpyHelper will throw exceptions
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
                    // in case of errors
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
                    throw new IllegalArgumentException(flag + " " + operand);
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
                if (option.process(optionTable, flag))
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
                    // should not happen as the GrumpyHelper will throw exceptions
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
                    // in case of errors
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
                    throw new IllegalArgumentException(flag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
        }
11052
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 9071
diff changeset
   268
65b9fa7eaf55 7108668: allow Log to be initialized and used earlier
jjg
parents: 9071
diff changeset
   269
        optionTable.notifyListeners();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    public int run(InputStream in, OutputStream out, OutputStream err, String... arguments) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        if (err == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
            err = System.err;
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        for (String argument : arguments)
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
            argument.getClass(); // null check
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
        return com.sun.tools.javac.Main.compile(arguments, new PrintWriter(err, true));
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
    public Set<SourceVersion> getSourceVersions() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
        return Collections.unmodifiableSet(EnumSet.range(SourceVersion.RELEASE_3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
                                                         SourceVersion.latest()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
    public int isSupportedOption(String option) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
        JavacOption[] recognizedOptions =
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 11052
diff changeset
   287
            RecognizedOptions.getJavacToolOptions(new GrumpyHelper(null));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        for (JavacOption o : recognizedOptions) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
            if (o.matches(option))
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                return o.hasArg() ? 1 : 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        return -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
}