src/share/classes/com/sun/tools/javac/main/JavaCompiler.java

Mon, 29 Oct 2012 10:39:49 -0700

author
rfield
date
Mon, 29 Oct 2012 10:39:49 -0700
changeset 1380
a65971893c50
parent 1374
c002fdee76fd
child 1406
2901c7b5339e
permissions
-rw-r--r--

8000694: Add generation of lambda implementation code: invokedynamic call, lambda method, adaptor methods
Summary: Add lambda implementation code with calling/supporting code elsewhere in the compiler
Reviewed-by: mcimadamore, jjg

     1 /*
     2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.javac.main;
    28 import java.io.*;
    29 import java.util.HashMap;
    30 import java.util.HashSet;
    31 import java.util.LinkedHashMap;
    32 import java.util.LinkedHashSet;
    33 import java.util.Map;
    34 import java.util.MissingResourceException;
    35 import java.util.Queue;
    36 import java.util.ResourceBundle;
    37 import java.util.Set;
    38 import java.util.logging.Handler;
    39 import java.util.logging.Level;
    40 import java.util.logging.Logger;
    42 import javax.annotation.processing.Processor;
    43 import javax.lang.model.SourceVersion;
    44 import javax.tools.DiagnosticListener;
    45 import javax.tools.JavaFileManager;
    46 import javax.tools.JavaFileObject;
    47 import javax.tools.StandardLocation;
    49 import static javax.tools.StandardLocation.CLASS_OUTPUT;
    51 import com.sun.source.util.TaskEvent;
    52 import com.sun.tools.javac.api.MultiTaskListener;
    53 import com.sun.tools.javac.code.*;
    54 import com.sun.tools.javac.code.Lint.LintCategory;
    55 import com.sun.tools.javac.code.Symbol.*;
    56 import com.sun.tools.javac.comp.*;
    57 import com.sun.tools.javac.file.JavacFileManager;
    58 import com.sun.tools.javac.jvm.*;
    59 import com.sun.tools.javac.parser.*;
    60 import com.sun.tools.javac.processing.*;
    61 import com.sun.tools.javac.tree.*;
    62 import com.sun.tools.javac.tree.JCTree.*;
    63 import com.sun.tools.javac.util.*;
    64 import com.sun.tools.javac.util.Log.WriterKind;
    66 import static com.sun.tools.javac.code.TypeTag.CLASS;
    67 import static com.sun.tools.javac.main.Option.*;
    68 import static com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag.*;
    69 import static com.sun.tools.javac.util.ListBuffer.lb;
    72 /** This class could be the main entry point for GJC when GJC is used as a
    73  *  component in a larger software system. It provides operations to
    74  *  construct a new compiler, and to run a new compiler on a set of source
    75  *  files.
    76  *
    77  *  <p><b>This is NOT part of any supported API.
    78  *  If you write code that depends on this, you do so at your own risk.
    79  *  This code and its internal interfaces are subject to change or
    80  *  deletion without notice.</b>
    81  */
    82 public class JavaCompiler implements ClassReader.SourceCompleter {
    83     /** The context key for the compiler. */
    84     protected static final Context.Key<JavaCompiler> compilerKey =
    85         new Context.Key<JavaCompiler>();
    87     /** Get the JavaCompiler instance for this context. */
    88     public static JavaCompiler instance(Context context) {
    89         JavaCompiler instance = context.get(compilerKey);
    90         if (instance == null)
    91             instance = new JavaCompiler(context);
    92         return instance;
    93     }
    95     /** The current version number as a string.
    96      */
    97     public static String version() {
    98         return version("release");  // mm.nn.oo[-milestone]
    99     }
   101     /** The current full version number as a string.
   102      */
   103     public static String fullVersion() {
   104         return version("full"); // mm.mm.oo[-milestone]-build
   105     }
   107     private static final String versionRBName = "com.sun.tools.javac.resources.version";
   108     private static ResourceBundle versionRB;
   110     private static String version(String key) {
   111         if (versionRB == null) {
   112             try {
   113                 versionRB = ResourceBundle.getBundle(versionRBName);
   114             } catch (MissingResourceException e) {
   115                 return Log.getLocalizedString("version.not.available");
   116             }
   117         }
   118         try {
   119             return versionRB.getString(key);
   120         }
   121         catch (MissingResourceException e) {
   122             return Log.getLocalizedString("version.not.available");
   123         }
   124     }
   126     /**
   127      * Control how the compiler's latter phases (attr, flow, desugar, generate)
   128      * are connected. Each individual file is processed by each phase in turn,
   129      * but with different compile policies, you can control the order in which
   130      * each class is processed through its next phase.
   131      *
   132      * <p>Generally speaking, the compiler will "fail fast" in the face of
   133      * errors, although not aggressively so. flow, desugar, etc become no-ops
   134      * once any errors have occurred. No attempt is currently made to determine
   135      * if it might be safe to process a class through its next phase because
   136      * it does not depend on any unrelated errors that might have occurred.
   137      */
   138     protected static enum CompilePolicy {
   139         /**
   140          * Just attribute the parse trees.
   141          */
   142         ATTR_ONLY,
   144         /**
   145          * Just attribute and do flow analysis on the parse trees.
   146          * This should catch most user errors.
   147          */
   148         CHECK_ONLY,
   150         /**
   151          * Attribute everything, then do flow analysis for everything,
   152          * then desugar everything, and only then generate output.
   153          * This means no output will be generated if there are any
   154          * errors in any classes.
   155          */
   156         SIMPLE,
   158         /**
   159          * Groups the classes for each source file together, then process
   160          * each group in a manner equivalent to the {@code SIMPLE} policy.
   161          * This means no output will be generated if there are any
   162          * errors in any of the classes in a source file.
   163          */
   164         BY_FILE,
   166         /**
   167          * Completely process each entry on the todo list in turn.
   168          * -- this is the same for 1.5.
   169          * Means output might be generated for some classes in a compilation unit
   170          * and not others.
   171          */
   172         BY_TODO;
   174         static CompilePolicy decode(String option) {
   175             if (option == null)
   176                 return DEFAULT_COMPILE_POLICY;
   177             else if (option.equals("attr"))
   178                 return ATTR_ONLY;
   179             else if (option.equals("check"))
   180                 return CHECK_ONLY;
   181             else if (option.equals("simple"))
   182                 return SIMPLE;
   183             else if (option.equals("byfile"))
   184                 return BY_FILE;
   185             else if (option.equals("bytodo"))
   186                 return BY_TODO;
   187             else
   188                 return DEFAULT_COMPILE_POLICY;
   189         }
   190     }
   192     private static CompilePolicy DEFAULT_COMPILE_POLICY = CompilePolicy.BY_TODO;
   194     protected static enum ImplicitSourcePolicy {
   195         /** Don't generate or process implicitly read source files. */
   196         NONE,
   197         /** Generate classes for implicitly read source files. */
   198         CLASS,
   199         /** Like CLASS, but generate warnings if annotation processing occurs */
   200         UNSET;
   202         static ImplicitSourcePolicy decode(String option) {
   203             if (option == null)
   204                 return UNSET;
   205             else if (option.equals("none"))
   206                 return NONE;
   207             else if (option.equals("class"))
   208                 return CLASS;
   209             else
   210                 return UNSET;
   211         }
   212     }
   214     /** The log to be used for error reporting.
   215      */
   216     public Log log;
   218     /** Factory for creating diagnostic objects
   219      */
   220     JCDiagnostic.Factory diagFactory;
   222     /** The tree factory module.
   223      */
   224     protected TreeMaker make;
   226     /** The class reader.
   227      */
   228     protected ClassReader reader;
   230     /** The class writer.
   231      */
   232     protected ClassWriter writer;
   234     /** The native header writer.
   235      */
   236     protected JNIWriter jniWriter;
   238     /** The module for the symbol table entry phases.
   239      */
   240     protected Enter enter;
   242     /** The symbol table.
   243      */
   244     protected Symtab syms;
   246     /** The language version.
   247      */
   248     protected Source source;
   250     /** The module for code generation.
   251      */
   252     protected Gen gen;
   254     /** The name table.
   255      */
   256     protected Names names;
   258     /** The attributor.
   259      */
   260     protected Attr attr;
   262     /** The attributor.
   263      */
   264     protected Check chk;
   266     /** The flow analyzer.
   267      */
   268     protected Flow flow;
   270     /** The type eraser.
   271      */
   272     protected TransTypes transTypes;
   274     /** The lambda translator.
   275      */
   276     protected LambdaToMethod lambdaToMethod;
   278     /** The syntactic sugar desweetener.
   279      */
   280     protected Lower lower;
   282     /** The annotation annotator.
   283      */
   284     protected Annotate annotate;
   286     /** Force a completion failure on this name
   287      */
   288     protected final Name completionFailureName;
   290     /** Type utilities.
   291      */
   292     protected Types types;
   294     /** Access to file objects.
   295      */
   296     protected JavaFileManager fileManager;
   298     /** Factory for parsers.
   299      */
   300     protected ParserFactory parserFactory;
   302     /** Broadcasting listener for progress events
   303      */
   304     protected MultiTaskListener taskListener;
   306     /**
   307      * Annotation processing may require and provide a new instance
   308      * of the compiler to be used for the analyze and generate phases.
   309      */
   310     protected JavaCompiler delegateCompiler;
   312     /**
   313      * Command line options.
   314      */
   315     protected Options options;
   317     protected Context context;
   319     /**
   320      * Flag set if any annotation processing occurred.
   321      **/
   322     protected boolean annotationProcessingOccurred;
   324     /**
   325      * Flag set if any implicit source files read.
   326      **/
   327     protected boolean implicitSourceFilesRead;
   329     /** Construct a new compiler using a shared context.
   330      */
   331     public JavaCompiler(Context context) {
   332         this.context = context;
   333         context.put(compilerKey, this);
   335         // if fileManager not already set, register the JavacFileManager to be used
   336         if (context.get(JavaFileManager.class) == null)
   337             JavacFileManager.preRegister(context);
   339         names = Names.instance(context);
   340         log = Log.instance(context);
   341         diagFactory = JCDiagnostic.Factory.instance(context);
   342         reader = ClassReader.instance(context);
   343         make = TreeMaker.instance(context);
   344         writer = ClassWriter.instance(context);
   345         jniWriter = JNIWriter.instance(context);
   346         enter = Enter.instance(context);
   347         todo = Todo.instance(context);
   349         fileManager = context.get(JavaFileManager.class);
   350         parserFactory = ParserFactory.instance(context);
   352         try {
   353             // catch completion problems with predefineds
   354             syms = Symtab.instance(context);
   355         } catch (CompletionFailure ex) {
   356             // inlined Check.completionError as it is not initialized yet
   357             log.error("cant.access", ex.sym, ex.getDetailValue());
   358             if (ex instanceof ClassReader.BadClassFile)
   359                 throw new Abort();
   360         }
   361         source = Source.instance(context);
   362         attr = Attr.instance(context);
   363         chk = Check.instance(context);
   364         gen = Gen.instance(context);
   365         flow = Flow.instance(context);
   366         transTypes = TransTypes.instance(context);
   367         lower = Lower.instance(context);
   368         annotate = Annotate.instance(context);
   369         types = Types.instance(context);
   370         taskListener = MultiTaskListener.instance(context);
   372         reader.sourceCompleter = this;
   374         options = Options.instance(context);
   376         lambdaToMethod = LambdaToMethod.instance(context);
   378         verbose       = options.isSet(VERBOSE);
   379         sourceOutput  = options.isSet(PRINTSOURCE); // used to be -s
   380         stubOutput    = options.isSet("-stubs");
   381         relax         = options.isSet("-relax");
   382         printFlat     = options.isSet("-printflat");
   383         attrParseOnly = options.isSet("-attrparseonly");
   384         encoding      = options.get(ENCODING);
   385         lineDebugInfo = options.isUnset(G_CUSTOM) ||
   386                         options.isSet(G_CUSTOM, "lines");
   387         genEndPos     = options.isSet(XJCOV) ||
   388                         context.get(DiagnosticListener.class) != null;
   389         devVerbose    = options.isSet("dev");
   390         processPcks   = options.isSet("process.packages");
   391         werror        = options.isSet(WERROR);
   393         if (source.compareTo(Source.DEFAULT) < 0) {
   394             if (options.isUnset(XLINT_CUSTOM, "-" + LintCategory.OPTIONS.option)) {
   395                 if (fileManager instanceof BaseFileManager) {
   396                     if (((BaseFileManager) fileManager).isDefaultBootClassPath())
   397                         log.warning(LintCategory.OPTIONS, "source.no.bootclasspath", source.name);
   398                 }
   399             }
   400         }
   402         verboseCompilePolicy = options.isSet("verboseCompilePolicy");
   404         if (attrParseOnly)
   405             compilePolicy = CompilePolicy.ATTR_ONLY;
   406         else
   407             compilePolicy = CompilePolicy.decode(options.get("compilePolicy"));
   409         implicitSourcePolicy = ImplicitSourcePolicy.decode(options.get("-implicit"));
   411         completionFailureName =
   412             options.isSet("failcomplete")
   413             ? names.fromString(options.get("failcomplete"))
   414             : null;
   416         shouldStopPolicyIfError =
   417             options.isSet("shouldStopPolicy") // backwards compatible
   418             ? CompileState.valueOf(options.get("shouldStopPolicy"))
   419             : options.isSet("shouldStopPolicyIfError")
   420             ? CompileState.valueOf(options.get("shouldStopPolicyIfError"))
   421             : CompileState.INIT;
   422         shouldStopPolicyIfNoError =
   423             options.isSet("shouldStopPolicyIfNoError")
   424             ? CompileState.valueOf(options.get("shouldStopPolicyIfNoError"))
   425             : CompileState.GENERATE;
   427         if (options.isUnset("oldDiags"))
   428             log.setDiagnosticFormatter(RichDiagnosticFormatter.instance(context));
   429     }
   431     /* Switches:
   432      */
   434     /** Verbose output.
   435      */
   436     public boolean verbose;
   438     /** Emit plain Java source files rather than class files.
   439      */
   440     public boolean sourceOutput;
   442     /** Emit stub source files rather than class files.
   443      */
   444     public boolean stubOutput;
   446     /** Generate attributed parse tree only.
   447      */
   448     public boolean attrParseOnly;
   450     /** Switch: relax some constraints for producing the jsr14 prototype.
   451      */
   452     boolean relax;
   454     /** Debug switch: Emit Java sources after inner class flattening.
   455      */
   456     public boolean printFlat;
   458     /** The encoding to be used for source input.
   459      */
   460     public String encoding;
   462     /** Generate code with the LineNumberTable attribute for debugging
   463      */
   464     public boolean lineDebugInfo;
   466     /** Switch: should we store the ending positions?
   467      */
   468     public boolean genEndPos;
   470     /** Switch: should we debug ignored exceptions
   471      */
   472     protected boolean devVerbose;
   474     /** Switch: should we (annotation) process packages as well
   475      */
   476     protected boolean processPcks;
   478     /** Switch: treat warnings as errors
   479      */
   480     protected boolean werror;
   482     /** Switch: is annotation processing requested explitly via
   483      * CompilationTask.setProcessors?
   484      */
   485     protected boolean explicitAnnotationProcessingRequested = false;
   487     /**
   488      * The policy for the order in which to perform the compilation
   489      */
   490     protected CompilePolicy compilePolicy;
   492     /**
   493      * The policy for what to do with implicitly read source files
   494      */
   495     protected ImplicitSourcePolicy implicitSourcePolicy;
   497     /**
   498      * Report activity related to compilePolicy
   499      */
   500     public boolean verboseCompilePolicy;
   502     /**
   503      * Policy of how far to continue compilation after errors have occurred.
   504      * Set this to minimum CompileState (INIT) to stop as soon as possible
   505      * after errors.
   506      */
   507     public CompileState shouldStopPolicyIfError;
   509     /**
   510      * Policy of how far to continue compilation when no errors have occurred.
   511      * Set this to maximum CompileState (GENERATE) to perform full compilation.
   512      * Set this lower to perform partial compilation, such as -proc:only.
   513      */
   514     public CompileState shouldStopPolicyIfNoError;
   516     /** A queue of all as yet unattributed classes.oLo
   517      */
   518     public Todo todo;
   520     /** A list of items to be closed when the compilation is complete.
   521      */
   522     public List<Closeable> closeables = List.nil();
   524     /** Ordered list of compiler phases for each compilation unit. */
   525     public enum CompileState {
   526         INIT(0),
   527         PARSE(1),
   528         ENTER(2),
   529         PROCESS(3),
   530         ATTR(4),
   531         FLOW(5),
   532         TRANSTYPES(6),
   533         UNLAMBDA(7),
   534         LOWER(8),
   535         GENERATE(9);
   537         CompileState(int value) {
   538             this.value = value;
   539         }
   540         boolean isAfter(CompileState other) {
   541             return value > other.value;
   542         }
   543         public static CompileState max(CompileState a, CompileState b) {
   544             return a.value > b.value ? a : b;
   545         }
   546         private int value;
   547     };
   548     /** Partial map to record which compiler phases have been executed
   549      * for each compilation unit. Used for ATTR and FLOW phases.
   550      */
   551     protected class CompileStates extends HashMap<Env<AttrContext>,CompileState> {
   552         private static final long serialVersionUID = 1812267524140424433L;
   553         boolean isDone(Env<AttrContext> env, CompileState cs) {
   554             CompileState ecs = get(env);
   555             return (ecs != null) && !cs.isAfter(ecs);
   556         }
   557     }
   558     private CompileStates compileStates = new CompileStates();
   560     /** The set of currently compiled inputfiles, needed to ensure
   561      *  we don't accidentally overwrite an input file when -s is set.
   562      *  initialized by `compile'.
   563      */
   564     protected Set<JavaFileObject> inputFiles = new HashSet<JavaFileObject>();
   566     protected boolean shouldStop(CompileState cs) {
   567         CompileState shouldStopPolicy = (errorCount() > 0 || unrecoverableError())
   568             ? shouldStopPolicyIfError
   569             : shouldStopPolicyIfNoError;
   570         return cs.isAfter(shouldStopPolicy);
   571     }
   573     /** The number of errors reported so far.
   574      */
   575     public int errorCount() {
   576         if (delegateCompiler != null && delegateCompiler != this)
   577             return delegateCompiler.errorCount();
   578         else {
   579             if (werror && log.nerrors == 0 && log.nwarnings > 0) {
   580                 log.error("warnings.and.werror");
   581             }
   582         }
   583         return log.nerrors;
   584     }
   586     protected final <T> Queue<T> stopIfError(CompileState cs, Queue<T> queue) {
   587         return shouldStop(cs) ? ListBuffer.<T>lb() : queue;
   588     }
   590     protected final <T> List<T> stopIfError(CompileState cs, List<T> list) {
   591         return shouldStop(cs) ? List.<T>nil() : list;
   592     }
   594     /** The number of warnings reported so far.
   595      */
   596     public int warningCount() {
   597         if (delegateCompiler != null && delegateCompiler != this)
   598             return delegateCompiler.warningCount();
   599         else
   600             return log.nwarnings;
   601     }
   603     /** Try to open input stream with given name.
   604      *  Report an error if this fails.
   605      *  @param filename   The file name of the input stream to be opened.
   606      */
   607     public CharSequence readSource(JavaFileObject filename) {
   608         try {
   609             inputFiles.add(filename);
   610             return filename.getCharContent(false);
   611         } catch (IOException e) {
   612             log.error("error.reading.file", filename, JavacFileManager.getMessage(e));
   613             return null;
   614         }
   615     }
   617     /** Parse contents of input stream.
   618      *  @param filename     The name of the file from which input stream comes.
   619      *  @param content      The characters to be parsed.
   620      */
   621     protected JCCompilationUnit parse(JavaFileObject filename, CharSequence content) {
   622         long msec = now();
   623         JCCompilationUnit tree = make.TopLevel(List.<JCTree.JCAnnotation>nil(),
   624                                       null, List.<JCTree>nil());
   625         if (content != null) {
   626             if (verbose) {
   627                 log.printVerbose("parsing.started", filename);
   628             }
   629             if (!taskListener.isEmpty()) {
   630                 TaskEvent e = new TaskEvent(TaskEvent.Kind.PARSE, filename);
   631                 taskListener.started(e);
   632             }
   633             Parser parser = parserFactory.newParser(content, keepComments(), genEndPos, lineDebugInfo);
   634             tree = parser.parseCompilationUnit();
   635             if (verbose) {
   636                 log.printVerbose("parsing.done", Long.toString(elapsed(msec)));
   637             }
   638         }
   640         tree.sourcefile = filename;
   642         if (content != null && !taskListener.isEmpty()) {
   643             TaskEvent e = new TaskEvent(TaskEvent.Kind.PARSE, tree);
   644             taskListener.finished(e);
   645         }
   647         return tree;
   648     }
   649     // where
   650         public boolean keepComments = false;
   651         protected boolean keepComments() {
   652             return keepComments || sourceOutput || stubOutput;
   653         }
   656     /** Parse contents of file.
   657      *  @param filename     The name of the file to be parsed.
   658      */
   659     @Deprecated
   660     public JCTree.JCCompilationUnit parse(String filename) {
   661         JavacFileManager fm = (JavacFileManager)fileManager;
   662         return parse(fm.getJavaFileObjectsFromStrings(List.of(filename)).iterator().next());
   663     }
   665     /** Parse contents of file.
   666      *  @param filename     The name of the file to be parsed.
   667      */
   668     public JCTree.JCCompilationUnit parse(JavaFileObject filename) {
   669         JavaFileObject prev = log.useSource(filename);
   670         try {
   671             JCTree.JCCompilationUnit t = parse(filename, readSource(filename));
   672             if (t.endPositions != null)
   673                 log.setEndPosTable(filename, t.endPositions);
   674             return t;
   675         } finally {
   676             log.useSource(prev);
   677         }
   678     }
   680     /** Resolve an identifier which may be the binary name of a class or
   681      * the Java name of a class or package.
   682      * @param name      The name to resolve
   683      */
   684     public Symbol resolveBinaryNameOrIdent(String name) {
   685         try {
   686             Name flatname = names.fromString(name.replace("/", "."));
   687             return reader.loadClass(flatname);
   688         } catch (CompletionFailure ignore) {
   689             return resolveIdent(name);
   690         }
   691     }
   693     /** Resolve an identifier.
   694      * @param name      The identifier to resolve
   695      */
   696     public Symbol resolveIdent(String name) {
   697         if (name.equals(""))
   698             return syms.errSymbol;
   699         JavaFileObject prev = log.useSource(null);
   700         try {
   701             JCExpression tree = null;
   702             for (String s : name.split("\\.", -1)) {
   703                 if (!SourceVersion.isIdentifier(s)) // TODO: check for keywords
   704                     return syms.errSymbol;
   705                 tree = (tree == null) ? make.Ident(names.fromString(s))
   706                                       : make.Select(tree, names.fromString(s));
   707             }
   708             JCCompilationUnit toplevel =
   709                 make.TopLevel(List.<JCTree.JCAnnotation>nil(), null, List.<JCTree>nil());
   710             toplevel.packge = syms.unnamedPackage;
   711             return attr.attribIdent(tree, toplevel);
   712         } finally {
   713             log.useSource(prev);
   714         }
   715     }
   717     /** Emit plain Java source for a class.
   718      *  @param env    The attribution environment of the outermost class
   719      *                containing this class.
   720      *  @param cdef   The class definition to be printed.
   721      */
   722     JavaFileObject printSource(Env<AttrContext> env, JCClassDecl cdef) throws IOException {
   723         JavaFileObject outFile
   724             = fileManager.getJavaFileForOutput(CLASS_OUTPUT,
   725                                                cdef.sym.flatname.toString(),
   726                                                JavaFileObject.Kind.SOURCE,
   727                                                null);
   728         if (inputFiles.contains(outFile)) {
   729             log.error(cdef.pos(), "source.cant.overwrite.input.file", outFile);
   730             return null;
   731         } else {
   732             BufferedWriter out = new BufferedWriter(outFile.openWriter());
   733             try {
   734                 new Pretty(out, true).printUnit(env.toplevel, cdef);
   735                 if (verbose)
   736                     log.printVerbose("wrote.file", outFile);
   737             } finally {
   738                 out.close();
   739             }
   740             return outFile;
   741         }
   742     }
   744     /** Generate code and emit a class file for a given class
   745      *  @param env    The attribution environment of the outermost class
   746      *                containing this class.
   747      *  @param cdef   The class definition from which code is generated.
   748      */
   749     JavaFileObject genCode(Env<AttrContext> env, JCClassDecl cdef) throws IOException {
   750         try {
   751             if (gen.genClass(env, cdef) && (errorCount() == 0))
   752                 return writer.writeClass(cdef.sym);
   753         } catch (ClassWriter.PoolOverflow ex) {
   754             log.error(cdef.pos(), "limit.pool");
   755         } catch (ClassWriter.StringOverflow ex) {
   756             log.error(cdef.pos(), "limit.string.overflow",
   757                       ex.value.substring(0, 20));
   758         } catch (CompletionFailure ex) {
   759             chk.completionError(cdef.pos(), ex);
   760         }
   761         return null;
   762     }
   764     /** Complete compiling a source file that has been accessed
   765      *  by the class file reader.
   766      *  @param c          The class the source file of which needs to be compiled.
   767      */
   768     public void complete(ClassSymbol c) throws CompletionFailure {
   769 //      System.err.println("completing " + c);//DEBUG
   770         if (completionFailureName == c.fullname) {
   771             throw new CompletionFailure(c, "user-selected completion failure by class name");
   772         }
   773         JCCompilationUnit tree;
   774         JavaFileObject filename = c.classfile;
   775         JavaFileObject prev = log.useSource(filename);
   777         try {
   778             tree = parse(filename, filename.getCharContent(false));
   779         } catch (IOException e) {
   780             log.error("error.reading.file", filename, JavacFileManager.getMessage(e));
   781             tree = make.TopLevel(List.<JCTree.JCAnnotation>nil(), null, List.<JCTree>nil());
   782         } finally {
   783             log.useSource(prev);
   784         }
   786         if (!taskListener.isEmpty()) {
   787             TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, tree);
   788             taskListener.started(e);
   789         }
   791         enter.complete(List.of(tree), c);
   793         if (!taskListener.isEmpty()) {
   794             TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, tree);
   795             taskListener.finished(e);
   796         }
   798         if (enter.getEnv(c) == null) {
   799             boolean isPkgInfo =
   800                 tree.sourcefile.isNameCompatible("package-info",
   801                                                  JavaFileObject.Kind.SOURCE);
   802             if (isPkgInfo) {
   803                 if (enter.getEnv(tree.packge) == null) {
   804                     JCDiagnostic diag =
   805                         diagFactory.fragment("file.does.not.contain.package",
   806                                                  c.location());
   807                     throw reader.new BadClassFile(c, filename, diag);
   808                 }
   809             } else {
   810                 JCDiagnostic diag =
   811                         diagFactory.fragment("file.doesnt.contain.class",
   812                                             c.getQualifiedName());
   813                 throw reader.new BadClassFile(c, filename, diag);
   814             }
   815         }
   817         implicitSourceFilesRead = true;
   818     }
   820     /** Track when the JavaCompiler has been used to compile something. */
   821     private boolean hasBeenUsed = false;
   822     private long start_msec = 0;
   823     public long elapsed_msec = 0;
   825     public void compile(List<JavaFileObject> sourceFileObject)
   826         throws Throwable {
   827         compile(sourceFileObject, List.<String>nil(), null);
   828     }
   830     /**
   831      * Main method: compile a list of files, return all compiled classes
   832      *
   833      * @param sourceFileObjects file objects to be compiled
   834      * @param classnames class names to process for annotations
   835      * @param processors user provided annotation processors to bypass
   836      * discovery, {@code null} means that no processors were provided
   837      */
   838     public void compile(List<JavaFileObject> sourceFileObjects,
   839                         List<String> classnames,
   840                         Iterable<? extends Processor> processors)
   841     {
   842         if (processors != null && processors.iterator().hasNext())
   843             explicitAnnotationProcessingRequested = true;
   844         // as a JavaCompiler can only be used once, throw an exception if
   845         // it has been used before.
   846         if (hasBeenUsed)
   847             throw new AssertionError("attempt to reuse JavaCompiler");
   848         hasBeenUsed = true;
   850         // forcibly set the equivalent of -Xlint:-options, so that no further
   851         // warnings about command line options are generated from this point on
   852         options.put(XLINT_CUSTOM.text + "-" + LintCategory.OPTIONS.option, "true");
   853         options.remove(XLINT_CUSTOM.text + LintCategory.OPTIONS.option);
   855         start_msec = now();
   857         try {
   858             initProcessAnnotations(processors);
   860             // These method calls must be chained to avoid memory leaks
   861             delegateCompiler =
   862                 processAnnotations(
   863                     enterTrees(stopIfError(CompileState.PARSE, parseFiles(sourceFileObjects))),
   864                     classnames);
   866             delegateCompiler.compile2();
   867             delegateCompiler.close();
   868             elapsed_msec = delegateCompiler.elapsed_msec;
   869         } catch (Abort ex) {
   870             if (devVerbose)
   871                 ex.printStackTrace(System.err);
   872         } finally {
   873             if (procEnvImpl != null)
   874                 procEnvImpl.close();
   875         }
   876     }
   878     /**
   879      * The phases following annotation processing: attribution,
   880      * desugar, and finally code generation.
   881      */
   882     private void compile2() {
   883         try {
   884             switch (compilePolicy) {
   885             case ATTR_ONLY:
   886                 attribute(todo);
   887                 break;
   889             case CHECK_ONLY:
   890                 flow(attribute(todo));
   891                 break;
   893             case SIMPLE:
   894                 generate(desugar(flow(attribute(todo))));
   895                 break;
   897             case BY_FILE: {
   898                     Queue<Queue<Env<AttrContext>>> q = todo.groupByFile();
   899                     while (!q.isEmpty() && !shouldStop(CompileState.ATTR)) {
   900                         generate(desugar(flow(attribute(q.remove()))));
   901                     }
   902                 }
   903                 break;
   905             case BY_TODO:
   906                 while (!todo.isEmpty())
   907                     generate(desugar(flow(attribute(todo.remove()))));
   908                 break;
   910             default:
   911                 Assert.error("unknown compile policy");
   912             }
   913         } catch (Abort ex) {
   914             if (devVerbose)
   915                 ex.printStackTrace(System.err);
   916         }
   918         if (verbose) {
   919             elapsed_msec = elapsed(start_msec);
   920             log.printVerbose("total", Long.toString(elapsed_msec));
   921         }
   923         reportDeferredDiagnostics();
   925         if (!log.hasDiagnosticListener()) {
   926             printCount("error", errorCount());
   927             printCount("warn", warningCount());
   928         }
   929     }
   931     private List<JCClassDecl> rootClasses;
   933     /**
   934      * Parses a list of files.
   935      */
   936    public List<JCCompilationUnit> parseFiles(Iterable<JavaFileObject> fileObjects) {
   937        if (shouldStop(CompileState.PARSE))
   938            return List.nil();
   940         //parse all files
   941         ListBuffer<JCCompilationUnit> trees = lb();
   942         Set<JavaFileObject> filesSoFar = new HashSet<JavaFileObject>();
   943         for (JavaFileObject fileObject : fileObjects) {
   944             if (!filesSoFar.contains(fileObject)) {
   945                 filesSoFar.add(fileObject);
   946                 trees.append(parse(fileObject));
   947             }
   948         }
   949         return trees.toList();
   950     }
   952     /**
   953      * Enter the symbols found in a list of parse trees if the compilation
   954      * is expected to proceed beyond anno processing into attr.
   955      * As a side-effect, this puts elements on the "todo" list.
   956      * Also stores a list of all top level classes in rootClasses.
   957      */
   958     public List<JCCompilationUnit> enterTreesIfNeeded(List<JCCompilationUnit> roots) {
   959        if (shouldStop(CompileState.ATTR))
   960            return List.nil();
   961         return enterTrees(roots);
   962     }
   964     /**
   965      * Enter the symbols found in a list of parse trees.
   966      * As a side-effect, this puts elements on the "todo" list.
   967      * Also stores a list of all top level classes in rootClasses.
   968      */
   969     public List<JCCompilationUnit> enterTrees(List<JCCompilationUnit> roots) {
   970         //enter symbols for all files
   971         if (!taskListener.isEmpty()) {
   972             for (JCCompilationUnit unit: roots) {
   973                 TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, unit);
   974                 taskListener.started(e);
   975             }
   976         }
   978         enter.main(roots);
   980         if (!taskListener.isEmpty()) {
   981             for (JCCompilationUnit unit: roots) {
   982                 TaskEvent e = new TaskEvent(TaskEvent.Kind.ENTER, unit);
   983                 taskListener.finished(e);
   984             }
   985         }
   987         //If generating source, remember the classes declared in
   988         //the original compilation units listed on the command line.
   989         if (sourceOutput || stubOutput) {
   990             ListBuffer<JCClassDecl> cdefs = lb();
   991             for (JCCompilationUnit unit : roots) {
   992                 for (List<JCTree> defs = unit.defs;
   993                      defs.nonEmpty();
   994                      defs = defs.tail) {
   995                     if (defs.head instanceof JCClassDecl)
   996                         cdefs.append((JCClassDecl)defs.head);
   997                 }
   998             }
   999             rootClasses = cdefs.toList();
  1002         // Ensure the input files have been recorded. Although this is normally
  1003         // done by readSource, it may not have been done if the trees were read
  1004         // in a prior round of annotation processing, and the trees have been
  1005         // cleaned and are being reused.
  1006         for (JCCompilationUnit unit : roots) {
  1007             inputFiles.add(unit.sourcefile);
  1010         return roots;
  1013     /**
  1014      * Set to true to enable skeleton annotation processing code.
  1015      * Currently, we assume this variable will be replaced more
  1016      * advanced logic to figure out if annotation processing is
  1017      * needed.
  1018      */
  1019     boolean processAnnotations = false;
  1021     /**
  1022      * Object to handle annotation processing.
  1023      */
  1024     private JavacProcessingEnvironment procEnvImpl = null;
  1026     /**
  1027      * Check if we should process annotations.
  1028      * If so, and if no scanner is yet registered, then set up the DocCommentScanner
  1029      * to catch doc comments, and set keepComments so the parser records them in
  1030      * the compilation unit.
  1032      * @param processors user provided annotation processors to bypass
  1033      * discovery, {@code null} means that no processors were provided
  1034      */
  1035     public void initProcessAnnotations(Iterable<? extends Processor> processors) {
  1036         // Process annotations if processing is not disabled and there
  1037         // is at least one Processor available.
  1038         if (options.isSet(PROC, "none")) {
  1039             processAnnotations = false;
  1040         } else if (procEnvImpl == null) {
  1041             procEnvImpl = new JavacProcessingEnvironment(context, processors);
  1042             processAnnotations = procEnvImpl.atLeastOneProcessor();
  1044             if (processAnnotations) {
  1045                 options.put("save-parameter-names", "save-parameter-names");
  1046                 reader.saveParameterNames = true;
  1047                 keepComments = true;
  1048                 genEndPos = true;
  1049                 if (!taskListener.isEmpty())
  1050                     taskListener.started(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING));
  1051                 log.deferAll();
  1052             } else { // free resources
  1053                 procEnvImpl.close();
  1058     // TODO: called by JavacTaskImpl
  1059     public JavaCompiler processAnnotations(List<JCCompilationUnit> roots) {
  1060         return processAnnotations(roots, List.<String>nil());
  1063     /**
  1064      * Process any annotations found in the specified compilation units.
  1065      * @param roots a list of compilation units
  1066      * @return an instance of the compiler in which to complete the compilation
  1067      */
  1068     // Implementation note: when this method is called, log.deferredDiagnostics
  1069     // will have been set true by initProcessAnnotations, meaning that any diagnostics
  1070     // that are reported will go into the log.deferredDiagnostics queue.
  1071     // By the time this method exits, log.deferDiagnostics must be set back to false,
  1072     // and all deferredDiagnostics must have been handled: i.e. either reported
  1073     // or determined to be transient, and therefore suppressed.
  1074     public JavaCompiler processAnnotations(List<JCCompilationUnit> roots,
  1075                                            List<String> classnames) {
  1076         if (shouldStop(CompileState.PROCESS)) {
  1077             // Errors were encountered.
  1078             // Unless all the errors are resolve errors, the errors were parse errors
  1079             // or other errors during enter which cannot be fixed by running
  1080             // any annotation processors.
  1081             if (unrecoverableError()) {
  1082                 log.reportDeferredDiagnostics();
  1083                 return this;
  1087         // ASSERT: processAnnotations and procEnvImpl should have been set up by
  1088         // by initProcessAnnotations
  1090         // NOTE: The !classnames.isEmpty() checks should be refactored to Main.
  1092         if (!processAnnotations) {
  1093             // If there are no annotation processors present, and
  1094             // annotation processing is to occur with compilation,
  1095             // emit a warning.
  1096             if (options.isSet(PROC, "only")) {
  1097                 log.warning("proc.proc-only.requested.no.procs");
  1098                 todo.clear();
  1100             // If not processing annotations, classnames must be empty
  1101             if (!classnames.isEmpty()) {
  1102                 log.error("proc.no.explicit.annotation.processing.requested",
  1103                           classnames);
  1105             log.reportDeferredDiagnostics();
  1106             return this; // continue regular compilation
  1109         try {
  1110             List<ClassSymbol> classSymbols = List.nil();
  1111             List<PackageSymbol> pckSymbols = List.nil();
  1112             if (!classnames.isEmpty()) {
  1113                  // Check for explicit request for annotation
  1114                  // processing
  1115                 if (!explicitAnnotationProcessingRequested()) {
  1116                     log.error("proc.no.explicit.annotation.processing.requested",
  1117                               classnames);
  1118                     log.reportDeferredDiagnostics();
  1119                     return this; // TODO: Will this halt compilation?
  1120                 } else {
  1121                     boolean errors = false;
  1122                     for (String nameStr : classnames) {
  1123                         Symbol sym = resolveBinaryNameOrIdent(nameStr);
  1124                         if (sym == null ||
  1125                             (sym.kind == Kinds.PCK && !processPcks) ||
  1126                             sym.kind == Kinds.ABSENT_TYP) {
  1127                             log.error("proc.cant.find.class", nameStr);
  1128                             errors = true;
  1129                             continue;
  1131                         try {
  1132                             if (sym.kind == Kinds.PCK)
  1133                                 sym.complete();
  1134                             if (sym.exists()) {
  1135                                 if (sym.kind == Kinds.PCK)
  1136                                     pckSymbols = pckSymbols.prepend((PackageSymbol)sym);
  1137                                 else
  1138                                     classSymbols = classSymbols.prepend((ClassSymbol)sym);
  1139                                 continue;
  1141                             Assert.check(sym.kind == Kinds.PCK);
  1142                             log.warning("proc.package.does.not.exist", nameStr);
  1143                             pckSymbols = pckSymbols.prepend((PackageSymbol)sym);
  1144                         } catch (CompletionFailure e) {
  1145                             log.error("proc.cant.find.class", nameStr);
  1146                             errors = true;
  1147                             continue;
  1150                     if (errors) {
  1151                         log.reportDeferredDiagnostics();
  1152                         return this;
  1156             try {
  1157                 JavaCompiler c = procEnvImpl.doProcessing(context, roots, classSymbols, pckSymbols);
  1158                 if (c != this)
  1159                     annotationProcessingOccurred = c.annotationProcessingOccurred = true;
  1160                 // doProcessing will have handled deferred diagnostics
  1161                 Assert.check(c.log.deferredDiagFilter == null
  1162                         && c.log.deferredDiagnostics.size() == 0);
  1163                 return c;
  1164             } finally {
  1165                 procEnvImpl.close();
  1167         } catch (CompletionFailure ex) {
  1168             log.error("cant.access", ex.sym, ex.getDetailValue());
  1169             log.reportDeferredDiagnostics();
  1170             return this;
  1174     private boolean unrecoverableError() {
  1175         for (JCDiagnostic d: log.deferredDiagnostics) {
  1176             if (d.getKind() == JCDiagnostic.Kind.ERROR && !d.isFlagSet(RECOVERABLE))
  1177                 return true;
  1179         return false;
  1182     boolean explicitAnnotationProcessingRequested() {
  1183         return
  1184             explicitAnnotationProcessingRequested ||
  1185             explicitAnnotationProcessingRequested(options);
  1188     static boolean explicitAnnotationProcessingRequested(Options options) {
  1189         return
  1190             options.isSet(PROCESSOR) ||
  1191             options.isSet(PROCESSORPATH) ||
  1192             options.isSet(PROC, "only") ||
  1193             options.isSet(XPRINT);
  1196     /**
  1197      * Attribute a list of parse trees, such as found on the "todo" list.
  1198      * Note that attributing classes may cause additional files to be
  1199      * parsed and entered via the SourceCompleter.
  1200      * Attribution of the entries in the list does not stop if any errors occur.
  1201      * @returns a list of environments for attributd classes.
  1202      */
  1203     public Queue<Env<AttrContext>> attribute(Queue<Env<AttrContext>> envs) {
  1204         ListBuffer<Env<AttrContext>> results = lb();
  1205         while (!envs.isEmpty())
  1206             results.append(attribute(envs.remove()));
  1207         return stopIfError(CompileState.ATTR, results);
  1210     /**
  1211      * Attribute a parse tree.
  1212      * @returns the attributed parse tree
  1213      */
  1214     public Env<AttrContext> attribute(Env<AttrContext> env) {
  1215         if (compileStates.isDone(env, CompileState.ATTR))
  1216             return env;
  1218         if (verboseCompilePolicy)
  1219             printNote("[attribute " + env.enclClass.sym + "]");
  1220         if (verbose)
  1221             log.printVerbose("checking.attribution", env.enclClass.sym);
  1223         if (!taskListener.isEmpty()) {
  1224             TaskEvent e = new TaskEvent(TaskEvent.Kind.ANALYZE, env.toplevel, env.enclClass.sym);
  1225             taskListener.started(e);
  1228         JavaFileObject prev = log.useSource(
  1229                                   env.enclClass.sym.sourcefile != null ?
  1230                                   env.enclClass.sym.sourcefile :
  1231                                   env.toplevel.sourcefile);
  1232         try {
  1233             attr.attrib(env);
  1234             if (errorCount() > 0 && !shouldStop(CompileState.ATTR)) {
  1235                 //if in fail-over mode, ensure that AST expression nodes
  1236                 //are correctly initialized (e.g. they have a type/symbol)
  1237                 attr.postAttr(env.tree);
  1239             compileStates.put(env, CompileState.ATTR);
  1241         finally {
  1242             log.useSource(prev);
  1245         return env;
  1248     /**
  1249      * Perform dataflow checks on attributed parse trees.
  1250      * These include checks for definite assignment and unreachable statements.
  1251      * If any errors occur, an empty list will be returned.
  1252      * @returns the list of attributed parse trees
  1253      */
  1254     public Queue<Env<AttrContext>> flow(Queue<Env<AttrContext>> envs) {
  1255         ListBuffer<Env<AttrContext>> results = lb();
  1256         for (Env<AttrContext> env: envs) {
  1257             flow(env, results);
  1259         return stopIfError(CompileState.FLOW, results);
  1262     /**
  1263      * Perform dataflow checks on an attributed parse tree.
  1264      */
  1265     public Queue<Env<AttrContext>> flow(Env<AttrContext> env) {
  1266         ListBuffer<Env<AttrContext>> results = lb();
  1267         flow(env, results);
  1268         return stopIfError(CompileState.FLOW, results);
  1271     /**
  1272      * Perform dataflow checks on an attributed parse tree.
  1273      */
  1274     protected void flow(Env<AttrContext> env, Queue<Env<AttrContext>> results) {
  1275         try {
  1276             if (shouldStop(CompileState.FLOW))
  1277                 return;
  1279             if (relax || compileStates.isDone(env, CompileState.FLOW)) {
  1280                 results.add(env);
  1281                 return;
  1284             if (verboseCompilePolicy)
  1285                 printNote("[flow " + env.enclClass.sym + "]");
  1286             JavaFileObject prev = log.useSource(
  1287                                                 env.enclClass.sym.sourcefile != null ?
  1288                                                 env.enclClass.sym.sourcefile :
  1289                                                 env.toplevel.sourcefile);
  1290             try {
  1291                 make.at(Position.FIRSTPOS);
  1292                 TreeMaker localMake = make.forToplevel(env.toplevel);
  1293                 flow.analyzeTree(env, localMake);
  1294                 compileStates.put(env, CompileState.FLOW);
  1296                 if (shouldStop(CompileState.FLOW))
  1297                     return;
  1299                 results.add(env);
  1301             finally {
  1302                 log.useSource(prev);
  1305         finally {
  1306             if (!taskListener.isEmpty()) {
  1307                 TaskEvent e = new TaskEvent(TaskEvent.Kind.ANALYZE, env.toplevel, env.enclClass.sym);
  1308                 taskListener.finished(e);
  1313     /**
  1314      * Prepare attributed parse trees, in conjunction with their attribution contexts,
  1315      * for source or code generation.
  1316      * If any errors occur, an empty list will be returned.
  1317      * @returns a list containing the classes to be generated
  1318      */
  1319     public Queue<Pair<Env<AttrContext>, JCClassDecl>> desugar(Queue<Env<AttrContext>> envs) {
  1320         ListBuffer<Pair<Env<AttrContext>, JCClassDecl>> results = lb();
  1321         for (Env<AttrContext> env: envs)
  1322             desugar(env, results);
  1323         return stopIfError(CompileState.FLOW, results);
  1326     HashMap<Env<AttrContext>, Queue<Pair<Env<AttrContext>, JCClassDecl>>> desugaredEnvs =
  1327             new HashMap<Env<AttrContext>, Queue<Pair<Env<AttrContext>, JCClassDecl>>>();
  1329     /**
  1330      * Prepare attributed parse trees, in conjunction with their attribution contexts,
  1331      * for source or code generation. If the file was not listed on the command line,
  1332      * the current implicitSourcePolicy is taken into account.
  1333      * The preparation stops as soon as an error is found.
  1334      */
  1335     protected void desugar(final Env<AttrContext> env, Queue<Pair<Env<AttrContext>, JCClassDecl>> results) {
  1336         if (shouldStop(CompileState.TRANSTYPES))
  1337             return;
  1339         if (implicitSourcePolicy == ImplicitSourcePolicy.NONE
  1340                 && !inputFiles.contains(env.toplevel.sourcefile)) {
  1341             return;
  1344         if (compileStates.isDone(env, CompileState.LOWER)) {
  1345             results.addAll(desugaredEnvs.get(env));
  1346             return;
  1349         /**
  1350          * Ensure that superclasses of C are desugared before C itself. This is
  1351          * required for two reasons: (i) as erasure (TransTypes) destroys
  1352          * information needed in flow analysis and (ii) as some checks carried
  1353          * out during lowering require that all synthetic fields/methods have
  1354          * already been added to C and its superclasses.
  1355          */
  1356         class ScanNested extends TreeScanner {
  1357             Set<Env<AttrContext>> dependencies = new LinkedHashSet<Env<AttrContext>>();
  1358             @Override
  1359             public void visitClassDef(JCClassDecl node) {
  1360                 Type st = types.supertype(node.sym.type);
  1361                 if (st.hasTag(CLASS)) {
  1362                     ClassSymbol c = st.tsym.outermostClass();
  1363                     Env<AttrContext> stEnv = enter.getEnv(c);
  1364                     if (stEnv != null && env != stEnv) {
  1365                         if (dependencies.add(stEnv))
  1366                             scan(stEnv.tree);
  1369                 super.visitClassDef(node);
  1372         ScanNested scanner = new ScanNested();
  1373         scanner.scan(env.tree);
  1374         for (Env<AttrContext> dep: scanner.dependencies) {
  1375         if (!compileStates.isDone(dep, CompileState.FLOW))
  1376             desugaredEnvs.put(dep, desugar(flow(attribute(dep))));
  1379         //We need to check for error another time as more classes might
  1380         //have been attributed and analyzed at this stage
  1381         if (shouldStop(CompileState.TRANSTYPES))
  1382             return;
  1384         if (verboseCompilePolicy)
  1385             printNote("[desugar " + env.enclClass.sym + "]");
  1387         JavaFileObject prev = log.useSource(env.enclClass.sym.sourcefile != null ?
  1388                                   env.enclClass.sym.sourcefile :
  1389                                   env.toplevel.sourcefile);
  1390         try {
  1391             //save tree prior to rewriting
  1392             JCTree untranslated = env.tree;
  1394             make.at(Position.FIRSTPOS);
  1395             TreeMaker localMake = make.forToplevel(env.toplevel);
  1397             if (env.tree instanceof JCCompilationUnit) {
  1398                 if (!(stubOutput || sourceOutput || printFlat)) {
  1399                     if (shouldStop(CompileState.LOWER))
  1400                         return;
  1401                     List<JCTree> pdef = lower.translateTopLevelClass(env, env.tree, localMake);
  1402                     if (pdef.head != null) {
  1403                         Assert.check(pdef.tail.isEmpty());
  1404                         results.add(new Pair<Env<AttrContext>, JCClassDecl>(env, (JCClassDecl)pdef.head));
  1407                 return;
  1410             if (stubOutput) {
  1411                 //emit stub Java source file, only for compilation
  1412                 //units enumerated explicitly on the command line
  1413                 JCClassDecl cdef = (JCClassDecl)env.tree;
  1414                 if (untranslated instanceof JCClassDecl &&
  1415                     rootClasses.contains((JCClassDecl)untranslated) &&
  1416                     ((cdef.mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
  1417                      cdef.sym.packge().getQualifiedName() == names.java_lang)) {
  1418                     results.add(new Pair<Env<AttrContext>, JCClassDecl>(env, removeMethodBodies(cdef)));
  1420                 return;
  1423             if (shouldStop(CompileState.TRANSTYPES))
  1424                 return;
  1426             env.tree = transTypes.translateTopLevelClass(env.tree, localMake);
  1427             compileStates.put(env, CompileState.TRANSTYPES);
  1429             if (shouldStop(CompileState.UNLAMBDA))
  1430                 return;
  1432             env.tree = lambdaToMethod.translateTopLevelClass(env, env.tree, localMake);
  1433             compileStates.put(env, CompileState.UNLAMBDA);
  1435             if (shouldStop(CompileState.LOWER))
  1436                 return;
  1438             if (sourceOutput) {
  1439                 //emit standard Java source file, only for compilation
  1440                 //units enumerated explicitly on the command line
  1441                 JCClassDecl cdef = (JCClassDecl)env.tree;
  1442                 if (untranslated instanceof JCClassDecl &&
  1443                     rootClasses.contains((JCClassDecl)untranslated)) {
  1444                     results.add(new Pair<Env<AttrContext>, JCClassDecl>(env, cdef));
  1446                 return;
  1449             //translate out inner classes
  1450             List<JCTree> cdefs = lower.translateTopLevelClass(env, env.tree, localMake);
  1451             compileStates.put(env, CompileState.LOWER);
  1453             if (shouldStop(CompileState.LOWER))
  1454                 return;
  1456             //generate code for each class
  1457             for (List<JCTree> l = cdefs; l.nonEmpty(); l = l.tail) {
  1458                 JCClassDecl cdef = (JCClassDecl)l.head;
  1459                 results.add(new Pair<Env<AttrContext>, JCClassDecl>(env, cdef));
  1462         finally {
  1463             log.useSource(prev);
  1468     /** Generates the source or class file for a list of classes.
  1469      * The decision to generate a source file or a class file is
  1470      * based upon the compiler's options.
  1471      * Generation stops if an error occurs while writing files.
  1472      */
  1473     public void generate(Queue<Pair<Env<AttrContext>, JCClassDecl>> queue) {
  1474         generate(queue, null);
  1477     public void generate(Queue<Pair<Env<AttrContext>, JCClassDecl>> queue, Queue<JavaFileObject> results) {
  1478         if (shouldStop(CompileState.GENERATE))
  1479             return;
  1481         boolean usePrintSource = (stubOutput || sourceOutput || printFlat);
  1483         for (Pair<Env<AttrContext>, JCClassDecl> x: queue) {
  1484             Env<AttrContext> env = x.fst;
  1485             JCClassDecl cdef = x.snd;
  1487             if (verboseCompilePolicy) {
  1488                 printNote("[generate "
  1489                                + (usePrintSource ? " source" : "code")
  1490                                + " " + cdef.sym + "]");
  1493             if (!taskListener.isEmpty()) {
  1494                 TaskEvent e = new TaskEvent(TaskEvent.Kind.GENERATE, env.toplevel, cdef.sym);
  1495                 taskListener.started(e);
  1498             JavaFileObject prev = log.useSource(env.enclClass.sym.sourcefile != null ?
  1499                                       env.enclClass.sym.sourcefile :
  1500                                       env.toplevel.sourcefile);
  1501             try {
  1502                 JavaFileObject file;
  1503                 if (usePrintSource)
  1504                     file = printSource(env, cdef);
  1505                 else {
  1506                     if (fileManager.hasLocation(StandardLocation.NATIVE_HEADER_OUTPUT)
  1507                             && jniWriter.needsHeader(cdef.sym)) {
  1508                         jniWriter.write(cdef.sym);
  1510                     file = genCode(env, cdef);
  1512                 if (results != null && file != null)
  1513                     results.add(file);
  1514             } catch (IOException ex) {
  1515                 log.error(cdef.pos(), "class.cant.write",
  1516                           cdef.sym, ex.getMessage());
  1517                 return;
  1518             } finally {
  1519                 log.useSource(prev);
  1522             if (!taskListener.isEmpty()) {
  1523                 TaskEvent e = new TaskEvent(TaskEvent.Kind.GENERATE, env.toplevel, cdef.sym);
  1524                 taskListener.finished(e);
  1529         // where
  1530         Map<JCCompilationUnit, Queue<Env<AttrContext>>> groupByFile(Queue<Env<AttrContext>> envs) {
  1531             // use a LinkedHashMap to preserve the order of the original list as much as possible
  1532             Map<JCCompilationUnit, Queue<Env<AttrContext>>> map = new LinkedHashMap<JCCompilationUnit, Queue<Env<AttrContext>>>();
  1533             for (Env<AttrContext> env: envs) {
  1534                 Queue<Env<AttrContext>> sublist = map.get(env.toplevel);
  1535                 if (sublist == null) {
  1536                     sublist = new ListBuffer<Env<AttrContext>>();
  1537                     map.put(env.toplevel, sublist);
  1539                 sublist.add(env);
  1541             return map;
  1544         JCClassDecl removeMethodBodies(JCClassDecl cdef) {
  1545             final boolean isInterface = (cdef.mods.flags & Flags.INTERFACE) != 0;
  1546             class MethodBodyRemover extends TreeTranslator {
  1547                 @Override
  1548                 public void visitMethodDef(JCMethodDecl tree) {
  1549                     tree.mods.flags &= ~Flags.SYNCHRONIZED;
  1550                     for (JCVariableDecl vd : tree.params)
  1551                         vd.mods.flags &= ~Flags.FINAL;
  1552                     tree.body = null;
  1553                     super.visitMethodDef(tree);
  1555                 @Override
  1556                 public void visitVarDef(JCVariableDecl tree) {
  1557                     if (tree.init != null && tree.init.type.constValue() == null)
  1558                         tree.init = null;
  1559                     super.visitVarDef(tree);
  1561                 @Override
  1562                 public void visitClassDef(JCClassDecl tree) {
  1563                     ListBuffer<JCTree> newdefs = lb();
  1564                     for (List<JCTree> it = tree.defs; it.tail != null; it = it.tail) {
  1565                         JCTree t = it.head;
  1566                         switch (t.getTag()) {
  1567                         case CLASSDEF:
  1568                             if (isInterface ||
  1569                                 (((JCClassDecl) t).mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
  1570                                 (((JCClassDecl) t).mods.flags & (Flags.PRIVATE)) == 0 && ((JCClassDecl) t).sym.packge().getQualifiedName() == names.java_lang)
  1571                                 newdefs.append(t);
  1572                             break;
  1573                         case METHODDEF:
  1574                             if (isInterface ||
  1575                                 (((JCMethodDecl) t).mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
  1576                                 ((JCMethodDecl) t).sym.name == names.init ||
  1577                                 (((JCMethodDecl) t).mods.flags & (Flags.PRIVATE)) == 0 && ((JCMethodDecl) t).sym.packge().getQualifiedName() == names.java_lang)
  1578                                 newdefs.append(t);
  1579                             break;
  1580                         case VARDEF:
  1581                             if (isInterface || (((JCVariableDecl) t).mods.flags & (Flags.PROTECTED|Flags.PUBLIC)) != 0 ||
  1582                                 (((JCVariableDecl) t).mods.flags & (Flags.PRIVATE)) == 0 && ((JCVariableDecl) t).sym.packge().getQualifiedName() == names.java_lang)
  1583                                 newdefs.append(t);
  1584                             break;
  1585                         default:
  1586                             break;
  1589                     tree.defs = newdefs.toList();
  1590                     super.visitClassDef(tree);
  1593             MethodBodyRemover r = new MethodBodyRemover();
  1594             return r.translate(cdef);
  1597     public void reportDeferredDiagnostics() {
  1598         if (errorCount() == 0
  1599                 && annotationProcessingOccurred
  1600                 && implicitSourceFilesRead
  1601                 && implicitSourcePolicy == ImplicitSourcePolicy.UNSET) {
  1602             if (explicitAnnotationProcessingRequested())
  1603                 log.warning("proc.use.implicit");
  1604             else
  1605                 log.warning("proc.use.proc.or.implicit");
  1607         chk.reportDeferredDiagnostics();
  1610     /** Close the compiler, flushing the logs
  1611      */
  1612     public void close() {
  1613         close(true);
  1616     public void close(boolean disposeNames) {
  1617         rootClasses = null;
  1618         reader = null;
  1619         make = null;
  1620         writer = null;
  1621         enter = null;
  1622         if (todo != null)
  1623             todo.clear();
  1624         todo = null;
  1625         parserFactory = null;
  1626         syms = null;
  1627         source = null;
  1628         attr = null;
  1629         chk = null;
  1630         gen = null;
  1631         flow = null;
  1632         transTypes = null;
  1633         lower = null;
  1634         annotate = null;
  1635         types = null;
  1637         log.flush();
  1638         try {
  1639             fileManager.flush();
  1640         } catch (IOException e) {
  1641             throw new Abort(e);
  1642         } finally {
  1643             if (names != null && disposeNames)
  1644                 names.dispose();
  1645             names = null;
  1647             for (Closeable c: closeables) {
  1648                 try {
  1649                     c.close();
  1650                 } catch (IOException e) {
  1651                     // When javac uses JDK 7 as a baseline, this code would be
  1652                     // better written to set any/all exceptions from all the
  1653                     // Closeables as suppressed exceptions on the FatalError
  1654                     // that is thrown.
  1655                     JCDiagnostic msg = diagFactory.fragment("fatal.err.cant.close");
  1656                     throw new FatalError(msg, e);
  1662     protected void printNote(String lines) {
  1663         log.printRawLines(Log.WriterKind.NOTICE, lines);
  1666     /** Print numbers of errors and warnings.
  1667      */
  1668     protected void printCount(String kind, int count) {
  1669         if (count != 0) {
  1670             String key;
  1671             if (count == 1)
  1672                 key = "count." + kind;
  1673             else
  1674                 key = "count." + kind + ".plural";
  1675             log.printLines(WriterKind.ERROR, key, String.valueOf(count));
  1676             log.flush(Log.WriterKind.ERROR);
  1680     private static long now() {
  1681         return System.currentTimeMillis();
  1684     private static long elapsed(long then) {
  1685         return now() - then;
  1688     public void initRound(JavaCompiler prev) {
  1689         genEndPos = prev.genEndPos;
  1690         keepComments = prev.keepComments;
  1691         start_msec = prev.start_msec;
  1692         hasBeenUsed = true;
  1693         closeables = prev.closeables;
  1694         prev.closeables = List.nil();
  1695         shouldStopPolicyIfError = prev.shouldStopPolicyIfError;
  1696         shouldStopPolicyIfNoError = prev.shouldStopPolicyIfNoError;
  1699     public static void enableLogging() {
  1700         Logger logger = Logger.getLogger(com.sun.tools.javac.Main.class.getPackage().getName());
  1701         logger.setLevel(Level.ALL);
  1702         for (Handler h : logger.getParent().getHandlers()) {
  1703             h.setLevel(Level.ALL);

mercurial