langtools/src/share/classes/com/sun/tools/javac/api/JavacTaskImpl.java
author jjg
Mon, 19 Nov 2012 11:38:49 -0800
changeset 14548 aa687b312c97
parent 14545 2e7bab0639b8
child 14952 d0022ae20516
permissions -rw-r--r--
8001098: Provide a simple light-weight "plug-in" mechanism for javac Reviewed-by: mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11708
diff changeset
     2
 * Copyright (c) 2005, 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: 3149
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: 3149
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: 3149
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3149
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3149
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.IOException;
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 864
diff changeset
    30
import java.nio.CharBuffer;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import java.util.concurrent.atomic.AtomicBoolean;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import javax.annotation.processing.Processor;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import javax.lang.model.element.Element;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import javax.lang.model.element.TypeElement;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import javax.lang.model.type.TypeMirror;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import javax.tools.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import com.sun.source.tree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import com.sun.source.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import com.sun.tools.javac.code.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
import com.sun.tools.javac.comp.*;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 10
diff changeset
    45
import com.sun.tools.javac.file.JavacFileManager;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
import com.sun.tools.javac.main.*;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11708
diff changeset
    47
import com.sun.tools.javac.main.JavaCompiler;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
import com.sun.tools.javac.model.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
import com.sun.tools.javac.parser.Parser;
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 864
diff changeset
    50
import com.sun.tools.javac.parser.ParserFactory;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
import com.sun.tools.javac.tree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
import com.sun.tools.javac.tree.JCTree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
/**
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5847
diff changeset
    57
 * Provides access to functionality specific to the JDK Java Compiler, javac.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    59
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 * If you write code that depends on this, you do so at your own
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * risk.  This code and its internal interfaces are subject to change
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 * or deletion without notice.</b></p>
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * @author Peter von der Ah&eacute;
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 * @author Jonathan Gibbons
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 */
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11708
diff changeset
    67
public class JavacTaskImpl extends BasicJavacTask {
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
    68
    private ClientCodeWrapper ccw;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    private Main compilerMain;
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    private JavaCompiler compiler;
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1355
diff changeset
    71
    private Locale locale;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    private String[] args;
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
    73
    private String[] classNames;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    private List<JavaFileObject> fileObjects;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    private Map<JavaFileObject, JCCompilationUnit> notYetEntered;
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    private ListBuffer<Env<AttrContext>> genList;
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 12016
diff changeset
    77
    private final AtomicBoolean used = new AtomicBoolean();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    private Iterable<? extends Processor> processors;
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10631
diff changeset
    80
    private Main.Result result = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
    82
    JavacTaskImpl(Main compilerMain,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
                String[] args,
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
    84
                String[] classNames,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
                Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
                List<JavaFileObject> fileObjects) {
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11708
diff changeset
    87
        super(null, false);
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
    88
        this.ccw = ClientCodeWrapper.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        this.compilerMain = compilerMain;
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        this.args = args;
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
    91
        this.classNames = classNames;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        this.context = context;
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        this.fileObjects = fileObjects;
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1355
diff changeset
    94
        setLocale(Locale.getDefault());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        // null checks
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        compilerMain.getClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        args.getClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        fileObjects.getClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   101
    JavacTaskImpl(Main compilerMain,
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 12016
diff changeset
   102
                Iterable<String> args,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
                Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
                Iterable<String> classes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
                Iterable<? extends JavaFileObject> fileObjects) {
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 12016
diff changeset
   106
        this(compilerMain, toArray(args), toArray(classes), context, toList(fileObjects));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   109
    static private String[] toArray(Iterable<String> iter) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        ListBuffer<String> result = new ListBuffer<String>();
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   111
        if (iter != null)
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   112
            for (String s : iter)
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   113
                result.append(s);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        return result.toArray(new String[result.length()]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    static private List<JavaFileObject> toList(Iterable<? extends JavaFileObject> fileObjects) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        if (fileObjects == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            return List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
        ListBuffer<JavaFileObject> result = new ListBuffer<JavaFileObject>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        for (JavaFileObject fo : fileObjects)
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
            result.append(fo);
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        return result.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    public Boolean call() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        if (!used.getAndSet(true)) {
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   128
            initContext();
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1471
diff changeset
   129
            notYetEntered = new HashMap<JavaFileObject, JCCompilationUnit>();
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   130
            compilerMain.setAPIMode(true);
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   131
            result = compilerMain.compile(args, classNames, context, fileObjects, processors);
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   132
            cleanup();
10638
c8e9604cf151 7075721: javac should have public enum for exit codes
jjg
parents: 10631
diff changeset
   133
            return result.isOK();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
            throw new IllegalStateException("multiple calls to method 'call'");
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    public void setProcessors(Iterable<? extends Processor> processors) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
        processors.getClass(); // null check
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        // not mt-safe
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        if (used.get())
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            throw new IllegalStateException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        this.processors = processors;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    public void setLocale(Locale locale) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        if (used.get())
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
            throw new IllegalStateException();
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1355
diff changeset
   150
        this.locale = locale;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    private void prepareCompiler() throws IOException {
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   154
        if (used.getAndSet(true)) {
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   155
            if (compiler == null)
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   156
                throw new IllegalStateException();
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   157
        } else {
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   158
            initContext();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            compilerMain.setOptions(Options.instance(context));
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   160
            compilerMain.filenames = new LinkedHashSet<File>();
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   161
            Collection<File> filenames = compilerMain.processArgs(CommandLine.parse(args), classNames);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
            if (!filenames.isEmpty())
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   163
                throw new IllegalArgumentException("Malformed arguments " + toString(filenames, " "));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            compiler = JavaCompiler.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
            compiler.keepComments = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            compiler.genEndPos = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            // NOTE: this value will be updated after annotation processing
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            compiler.initProcessAnnotations(processors);
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
            notYetEntered = new HashMap<JavaFileObject, JCCompilationUnit>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            for (JavaFileObject file: fileObjects)
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
                notYetEntered.put(file, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
            genList = new ListBuffer<Env<AttrContext>>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            // endContext will be called when all classes have been generated
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            // TODO: should handle the case after each phase if errors have occurred
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            args = null;
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   176
            classNames = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
10193
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   180
    <T> String toString(Iterable<T> items, String sep) {
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   181
        String currSep = "";
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   182
        StringBuilder sb = new StringBuilder();
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   183
        for (T item: items) {
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   184
            sb.append(currSep);
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   185
            sb.append(item.toString());
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   186
            currSep = sep;
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   187
        }
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   188
        return sb.toString();
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   189
    }
3e1ef5e9f4fd 7061125: Proposed javac argument processing performance improvement
jjg
parents: 9071
diff changeset
   190
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   191
    private void initContext() {
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11708
diff changeset
   192
        context.put(JavacTask.class, this);
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1355
diff changeset
   193
        //initialize compiler's default locale
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8844
diff changeset
   194
        context.put(Locale.class, locale);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   197
    void cleanup() {
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   198
        if (compiler != null)
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   199
            compiler.close();
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   200
        compiler = null;
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   201
        compilerMain = null;
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   202
        args = null;
11708
f83264d62af2 7126832: com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
jjh
parents: 10950
diff changeset
   203
        classNames = null;
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   204
        context = null;
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   205
        fileObjects = null;
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   206
        notYetEntered = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     * Construct a JavaFileObject from the given file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     * <p><b>TODO: this method is useless here</b></p>
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * @param file a file
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     * @return a JavaFileObject from the standard file manager.
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
    public JavaFileObject asJavaFileObject(File file) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
        JavacFileManager fm = (JavacFileManager)context.get(JavaFileManager.class);
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        return fm.getRegularFile(file);
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     * Parse the specified files returning a list of abstract syntax trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     * @throws java.io.IOException TODO
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     * @return a list of abstract syntax trees
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    public Iterable<? extends CompilationUnitTree> parse() throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            prepareCompiler();
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            List<JCCompilationUnit> units = compiler.parseFiles(fileObjects);
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            for (JCCompilationUnit unit: units) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                JavaFileObject file = unit.getSourceFile();
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                if (notYetEntered.containsKey(file))
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
                    notYetEntered.put(file, unit);
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            return units;
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
            parsed = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
            if (compiler != null && compiler.log != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                compiler.log.flush();
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    private boolean parsed = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
     * Translate all the abstract syntax trees to elements.
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
     * @throws IOException TODO
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     * @return a list of elements corresponding to the top level
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     * classes in the abstract syntax trees
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    public Iterable<? extends TypeElement> enter() throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
        return enter(null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     * Translate the given abstract syntax trees to elements.
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     * @param trees a list of abstract syntax trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     * @throws java.io.IOException TODO
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     * @return a list of elements corresponding to the top level
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     * classes in the abstract syntax trees
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
    public Iterable<? extends TypeElement> enter(Iterable<? extends CompilationUnitTree> trees)
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        throws IOException
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    {
10631
d9914010b902 7090249: IllegalStateException from Trees.getScope when called from JSR 199
jjg
parents: 10193
diff changeset
   270
        if (trees == null && notYetEntered != null && notYetEntered.isEmpty())
d9914010b902 7090249: IllegalStateException from Trees.getScope when called from JSR 199
jjg
parents: 10193
diff changeset
   271
            return List.nil();
d9914010b902 7090249: IllegalStateException from Trees.getScope when called from JSR 199
jjg
parents: 10193
diff changeset
   272
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        prepareCompiler();
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        ListBuffer<JCCompilationUnit> roots = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
        if (trees == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            // If there are still files which were specified to be compiled
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
            // (i.e. in fileObjects) but which have not yet been entered,
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
            // then we make sure they have been parsed and add them to the
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            // list to be entered.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            if (notYetEntered.size() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
                if (!parsed)
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
                    parse(); // TODO would be nice to specify files needed to be parsed
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                for (JavaFileObject file: fileObjects) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                    JCCompilationUnit unit = notYetEntered.remove(file);
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                    if (unit != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                        if (roots == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
                            roots = new ListBuffer<JCCompilationUnit>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                        roots.append(unit);
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
                notYetEntered.clear();
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
            for (CompilationUnitTree cu : trees) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
                if (cu instanceof JCCompilationUnit) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                    if (roots == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
                        roots = new ListBuffer<JCCompilationUnit>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
                    roots.append((JCCompilationUnit)cu);
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
                    notYetEntered.remove(cu.getSourceFile());
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
                else
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
                    throw new IllegalArgumentException(cu.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
        if (roots == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            return List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
            List<JCCompilationUnit> units = compiler.enterTrees(roots.toList());
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
            if (notYetEntered.isEmpty())
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                compiler = compiler.processAnnotations(units);
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
            ListBuffer<TypeElement> elements = new ListBuffer<TypeElement>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
            for (JCCompilationUnit unit : units) {
6716
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 5848
diff changeset
   320
                for (JCTree node : unit.defs) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10638
diff changeset
   321
                    if (node.hasTag(JCTree.Tag.CLASSDEF)) {
6716
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 5848
diff changeset
   322
                        JCClassDecl cdef = (JCClassDecl) node;
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 5848
diff changeset
   323
                        if (cdef.sym != null) // maybe null if errors in anno processing
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 5848
diff changeset
   324
                            elements.append(cdef.sym);
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 5848
diff changeset
   325
                    }
71df48777dd1 6877202: Elements.getDocComment() is not getting JavaDocComments
jjg
parents: 5848
diff changeset
   326
                }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
            return elements.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
        finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
            compiler.log.flush();
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
     * Complete all analysis.
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
     * @throws IOException TODO
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
    public Iterable<? extends Element> analyze() throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
        return analyze(null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
     * Complete all analysis on the given classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
     * This can be used to ensure that all compile time errors are reported.
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
     * The classes must have previously been returned from {@link #enter}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
     * If null is specified, all outstanding classes will be analyzed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
     * @param classes a list of class elements
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    // This implementation requires that we open up privileges on JavaCompiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
    // An alternative implementation would be to move this code to JavaCompiler and
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
    // wrap it here
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
    public Iterable<? extends Element> analyze(Iterable<? extends TypeElement> classes) throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
        enter(null);  // ensure all classes have been entered
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
        final ListBuffer<Element> results = new ListBuffer<Element>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
            if (classes == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
                handleFlowResults(compiler.flow(compiler.attribute(compiler.todo)), results);
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
                Filter f = new Filter() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
                    public void process(Env<AttrContext> env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
                        handleFlowResults(compiler.flow(compiler.attribute(env)), results);
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
                };
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
                f.run(compiler.todo, classes);
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
            compiler.log.flush();
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
        return results;
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
    // where
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
   376
        private void handleFlowResults(Queue<Env<AttrContext>> queue, ListBuffer<Element> elems) {
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
   377
            for (Env<AttrContext> env: queue) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
                switch (env.tree.getTag()) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10638
diff changeset
   379
                    case CLASSDEF:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
                        JCClassDecl cdef = (JCClassDecl) env.tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
                        if (cdef.sym != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                            elems.append(cdef.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
                        break;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10638
diff changeset
   384
                    case TOPLEVEL:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
                        JCCompilationUnit unit = (JCCompilationUnit) env.tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
                        if (unit.packge != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
                            elems.append(unit.packge);
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
                        break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
            }
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
   391
            genList.addAll(queue);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
     * Generate code.
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
     * @throws IOException TODO
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
    public Iterable<? extends JavaFileObject> generate() throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
        return generate(null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
     * Generate code corresponding to the given classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
     * The classes must have previously been returned from {@link #enter}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
     * If there are classes outstanding to be analyzed, that will be done before
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
     * any classes are generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
     * If null is specified, code will be generated for all outstanding classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
     * @param classes a list of class elements
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
    public Iterable<? extends JavaFileObject> generate(Iterable<? extends TypeElement> classes) throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
        final ListBuffer<JavaFileObject> results = new ListBuffer<JavaFileObject>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
            analyze(null);  // ensure all classes have been parsed, entered, and analyzed
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
            if (classes == null) {
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
   419
                compiler.generate(compiler.desugar(genList), results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
                genList.clear();
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                Filter f = new Filter() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
                        public void process(Env<AttrContext> env) {
864
b1cf6afb8244 6724551: Use Queues instead of Lists to link compiler phases
jjg
parents: 735
diff changeset
   425
                            compiler.generate(compiler.desugar(ListBuffer.of(env)), results);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
                        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
                    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
                f.run(genList, classes);
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
            if (genList.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
                compiler.reportDeferredDiagnostics();
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   432
                cleanup();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        finally {
8844
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   436
            if (compiler != null)
18170a311747 7026509: Cannot use JavaCompiler to create multiple CompilationTasks for partial compilations
jjg
parents: 6716
diff changeset
   437
                compiler.log.flush();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
        return results;
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
    public TypeMirror getTypeMirror(Iterable<? extends Tree> path) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
        // TODO: Should complete attribution if necessary
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
        Tree last = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        for (Tree node : path)
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
            last = node;
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
        return ((JCTree)last).type;
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
    public JavacElements getElements() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        if (context == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
            throw new IllegalStateException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        return JavacElements.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
    public JavacTypes getTypes() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        if (context == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
            throw new IllegalStateException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
        return JavacTypes.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
    public Iterable<? extends Tree> pathFor(CompilationUnitTree unit, Tree node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
        return TreeInfo.pathFor((JCTree) node, (JCTree.JCCompilationUnit) unit).reverse();
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
    abstract class Filter {
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1258
diff changeset
   467
        void run(Queue<Env<AttrContext>> list, Iterable<? extends TypeElement> classes) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
            Set<TypeElement> set = new HashSet<TypeElement>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
            for (TypeElement item: classes)
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
                set.add(item);
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1258
diff changeset
   472
            ListBuffer<Env<AttrContext>> defer = ListBuffer.<Env<AttrContext>>lb();
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1258
diff changeset
   473
            while (list.peek() != null) {
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1258
diff changeset
   474
                Env<AttrContext> env = list.remove();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
                ClassSymbol csym = env.enclClass.sym;
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
                if (csym != null && set.contains(csym.outermostClass()))
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
                    process(env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
                else
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1258
diff changeset
   479
                    defer = defer.append(env);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
1355
74cc97efef51 6420151: need to improve byfile compile policy to eliminate footprint issues
jjg
parents: 1258
diff changeset
   482
            list.addAll(defer);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
        abstract void process(Env<AttrContext> env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
    /**
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
   489
     * For internal use only.  This method will be
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
     * removed without warning.
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
    public Type parseType(String expr, TypeElement scope) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
        if (expr == null || expr.equals(""))
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
            throw new IllegalArgumentException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
        compiler = JavaCompiler.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        JavaFileObject prev = compiler.log.useSource(null);
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 864
diff changeset
   497
        ParserFactory parserFactory = ParserFactory.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
        Attr attr = Attr.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
        try {
1258
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 864
diff changeset
   500
            CharBuffer buf = CharBuffer.wrap((expr+"\u0000").toCharArray(), 0, expr.length());
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 864
diff changeset
   501
            Parser parser = parserFactory.newParser(buf, false, false, false);
1cf37d8837d1 6724118: change JavaCompiler to not use Scanner directly
jjg
parents: 864
diff changeset
   502
            JCTree tree = parser.parseType();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
            return attr.attribType(tree, (Symbol.TypeSymbol)scope);
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
            compiler.log.useSource(prev);
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
}