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

Mon, 09 Mar 2009 13:29:06 -0700

author
xdono
date
Mon, 09 Mar 2009 13:29:06 -0700
changeset 229
03bcd66bd8e7
parent 198
b4b1f7732289
child 331
d043adadc8b6
permissions
-rw-r--r--

6814575: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 03/09
Reviewed-by: katleman, tbell, ohair

     1 /*
     2  * Copyright 2004-2009 Sun Microsystems, Inc.  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.  Sun designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22  * CA 95054 USA or visit www.sun.com if you need additional information or
    23  * have any questions.
    24  */
    26 package com.sun.tools.apt.main;
    28 import java.io.*;
    29 import java.util.Map;
    31 import javax.tools.JavaFileManager;
    32 import javax.tools.JavaFileObject;
    34 import com.sun.tools.javac.file.JavacFileManager;
    35 import com.sun.tools.javac.util.*;
    36 import com.sun.tools.javac.code.*;
    37 import com.sun.tools.javac.jvm.*;
    39 import com.sun.tools.javac.code.Symbol.*;
    40 import com.sun.tools.javac.tree.JCTree.*;
    42 import com.sun.tools.apt.comp.*;
    43 import com.sun.tools.apt.util.Bark;
    44 import com.sun.mirror.apt.AnnotationProcessorFactory;
    45 import com.sun.tools.javac.parser.DocCommentScanner;
    47 /**
    48  *  <p><b>This is NOT part of any API supported by Sun Microsystems.
    49  *  If you write code that depends on this, you do so at your own
    50  *  risk.  This code and its internal interfaces are subject to change
    51  *  or deletion without notice.</b>
    52  */
    53 public class JavaCompiler extends com.sun.tools.javac.main.JavaCompiler {
    54     /** The context key for the compiler. */
    55     protected static final Context.Key<JavaCompiler> compilerKey =
    56         new Context.Key<JavaCompiler>();
    58     /** Get the JavaCompiler instance for this context. */
    59     public static JavaCompiler instance(Context context) {
    60         JavaCompiler instance = context.get(compilerKey);
    61         if (instance == null)
    62             instance = new JavaCompiler(context);
    63         return instance;
    64     }
    67     java.util.Set<String> genSourceFileNames;
    68     java.util.Set<String> genClassFileNames;
    70     public java.util.Set<String> getSourceFileNames() {
    71         return genSourceFileNames;
    72     }
    74     /** List of names of generated class files.
    75      */
    76     public java.util.Set<String> getClassFileNames() {
    77         return genClassFileNames;
    78     }
    80     java.util.Set<java.io.File> aggregateGenFiles = java.util.Collections.emptySet();
    82     public java.util.Set<java.io.File> getAggregateGenFiles() {
    83         return aggregateGenFiles;
    84     }
    86     /** The bark to be used for error reporting.
    87      */
    88     Bark bark;
    90     /** The log to be used for error reporting.
    91      */
    92     Log log;
    94     /** The annotation framework
    95      */
    96     Apt apt;
    98     private static Context preRegister(Context context) {
    99         Bark.preRegister(context);
   101         // force the use of the scanner that captures Javadoc comments
   102         DocCommentScanner.Factory.preRegister(context);
   104         if (context.get(JavaFileManager.class) == null)
   105             JavacFileManager.preRegister(context);
   107         return context;
   108     }
   110     /** Construct a new compiler from a shared context.
   111      */
   112     public JavaCompiler(Context context) {
   113         super(preRegister(context));
   115         context.put(compilerKey, this);
   116         apt = Apt.instance(context);
   118         ClassReader classReader = ClassReader.instance(context);
   119         classReader.preferSource = true;
   121         // TEMPORARY NOTE: bark==log, but while refactoring, we maintain their
   122         // original identities, to remember the original intent.
   123         log = Log.instance(context);
   124         bark = Bark.instance(context);
   126         Options options = Options.instance(context);
   127         classOutput   = options.get("-retrofit")      == null;
   128         nocompile     = options.get("-nocompile")     != null;
   129         print         = options.get("-print")         != null;
   130         classesAsDecls= options.get("-XclassesAsDecls") != null;
   132         genSourceFileNames = new java.util.LinkedHashSet<String>();
   133         genClassFileNames  = new java.util.LinkedHashSet<String>();
   135         // this forces a copy of the line map to be kept in the tree,
   136         // for use by com.sun.mirror.util.SourcePosition.
   137         lineDebugInfo = true;
   138     }
   140     /* Switches:
   141      */
   143     /** Emit class files. This switch is always set, except for the first
   144      *  phase of retrofitting, where signatures are parsed.
   145      */
   146     public boolean classOutput;
   148     /** The internal printing annotation processor should be used.
   149      */
   150     public boolean print;
   152     /** Compilation should not be done after annotation processing.
   153      */
   154     public boolean nocompile;
   156     /** Are class files being treated as declarations
   157      */
   158     public boolean classesAsDecls;
   160     /** Try to open input stream with given name.
   161      *  Report an error if this fails.
   162      *  @param filename   The file name of the input stream to be opened.
   163      */
   164     // PROVIDED FOR EXTREME BACKWARDS COMPATIBILITY
   165     // There are some very obscure errors that can arise while translating
   166     // the contents of a file from bytes to characters. In Tiger, these
   167     // diagnostics were ignored. This method provides compatibility with
   168     // that behavior. It would be better to honor those diagnostics, in which
   169     // case, this method can be deleted.
   170     @Override
   171     public CharSequence readSource(JavaFileObject filename) {
   172         try {
   173             inputFiles.add(filename);
   174             boolean prev = bark.setDiagnosticsIgnored(true);
   175             try {
   176                 return filename.getCharContent(false);
   177             }
   178             finally {
   179                 bark.setDiagnosticsIgnored(prev);
   180             }
   181         } catch (IOException e) {
   182             bark.error(Position.NOPOS, "cant.read.file", filename);
   183             return null;
   184         }
   185     }
   187     /** Parse contents of input stream.
   188      *  @param filename     The name of the file from which input stream comes.
   189      *  @param input        The input stream to be parsed.
   190      */
   191     // PROVIDED FOR BACKWARDS COMPATIBILITY
   192     // In Tiger, diagnostics from the scanner and parser were ignored.
   193     // This method provides compatibility with that behavior.
   194     // It would be better to honor those diagnostics, in which
   195     // case, this method can be deleted.
   196     @Override
   197     protected JCCompilationUnit parse(JavaFileObject filename, CharSequence content) {
   198         boolean prev = bark.setDiagnosticsIgnored(true);
   199         try {
   200             return super.parse(filename, content);
   201         }
   202         finally {
   203             bark.setDiagnosticsIgnored(prev);
   204         }
   205     }
   207     @Override
   208     protected boolean keepComments() {
   209         return true;  // make doc comments available to mirror API impl.
   210     }
   212     /** Track when the JavaCompiler has been used to compile something. */
   213     private boolean hasBeenUsed = false;
   215     /** Main method: compile a list of files, return all compiled classes
   216      *  @param filenames     The names of all files to be compiled.
   217      */
   218     public List<ClassSymbol> compile(List<String> filenames,
   219                                      Map<String, String> origOptions,
   220                                      ClassLoader aptCL,
   221                                      AnnotationProcessorFactory providedFactory,
   222                                      java.util.Set<Class<? extends AnnotationProcessorFactory> > productiveFactories,
   223                                      java.util.Set<java.io.File> aggregateGenFiles)
   224         throws Throwable {
   225         // as a JavaCompiler can only be used once, throw an exception if
   226         // it has been used before.
   227         assert !hasBeenUsed : "attempt to reuse JavaCompiler";
   228         hasBeenUsed = true;
   230         this.aggregateGenFiles = aggregateGenFiles;
   232         long msec = System.currentTimeMillis();
   234         ListBuffer<ClassSymbol> classes = new ListBuffer<ClassSymbol>();
   235         try {
   236             JavacFileManager fm = (JavacFileManager)fileManager;
   237             //parse all files
   238             ListBuffer<JCCompilationUnit> trees = new ListBuffer<JCCompilationUnit>();
   239             for (List<String> l = filenames; l.nonEmpty(); l = l.tail) {
   240                 if (classesAsDecls) {
   241                     if (! l.head.endsWith(".java") ) { // process as class file
   242                         ClassSymbol cs = reader.enterClass(names.fromString(l.head));
   243                         try {
   244                             cs.complete();
   245                         } catch(Symbol.CompletionFailure cf) {
   246                             bark.aptError("CantFindClass", l);
   247                             continue;
   248                         }
   250                         classes.append(cs); // add to list of classes
   251                         continue;
   252                     }
   253                 }
   254                 JavaFileObject fo = fm.getJavaFileObjectsFromStrings(List.of(l.head)).iterator().next();
   255                 trees.append(parse(fo));
   256             }
   258             //enter symbols for all files
   259             List<JCCompilationUnit> roots = trees.toList();
   261             if (errorCount() == 0) {
   262                 boolean prev = bark.setDiagnosticsIgnored(true);
   263                 try {
   264                     enter.main(roots);
   265                 }
   266                 finally {
   267                     bark.setDiagnosticsIgnored(prev);
   268                 }
   269             }
   271             if (errorCount() == 0) {
   272                 apt.main(roots,
   273                          classes,
   274                          origOptions, aptCL,
   275                          providedFactory,
   276                          productiveFactories);
   277                 genSourceFileNames.addAll(apt.getSourceFileNames());
   278                 genClassFileNames.addAll(apt.getClassFileNames());
   279             }
   281         } catch (Abort ex) {
   282         }
   284         if (verbose)
   285             printVerbose("total", Long.toString(System.currentTimeMillis() - msec));
   287         chk.reportDeferredDiagnostics();
   289         printCount("error", errorCount());
   290         printCount("warn", warningCount());
   292         return classes.toList();
   293     }
   294 }

mercurial