src/share/classes/com/sun/source/util/JavacTask.java

Mon, 17 Dec 2012 07:47:05 -0800

author
jjg
date
Mon, 17 Dec 2012 07:47:05 -0800
changeset 1455
75ab654b5cd5
parent 1210
62e611704863
child 1590
011cf7e0a148
permissions
-rw-r--r--

8004832: Add new doclint package
Reviewed-by: mcimadamore

     1 /*
     2  * Copyright (c) 2005, 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.source.util;
    28 import java.io.IOException;
    30 import javax.annotation.processing.ProcessingEnvironment;
    31 import javax.lang.model.element.Element;
    32 import javax.lang.model.type.TypeMirror;
    33 import javax.lang.model.util.Elements;
    34 import javax.lang.model.util.Types;
    35 import javax.tools.JavaCompiler.CompilationTask;
    36 import javax.tools.JavaFileObject;
    38 import com.sun.source.tree.CompilationUnitTree;
    39 import com.sun.source.tree.Tree;
    40 import com.sun.tools.javac.api.BasicJavacTask;
    41 import com.sun.tools.javac.processing.JavacProcessingEnvironment;
    42 import com.sun.tools.javac.util.Context;
    44 /**
    45  * Provides access to functionality specific to the JDK Java Compiler, javac.
    46  *
    47  * @author Peter von der Ahé
    48  * @author Jonathan Gibbons
    49  * @since 1.6
    50  */
    51 public abstract class JavacTask implements CompilationTask {
    53     /**
    54      * Get the {@code JavacTask} for a {@code ProcessingEnvironment}.
    55      * If the compiler is being invoked using a
    56      * {@link javax.tools.JavaCompiler.CompilationTask CompilationTask},
    57      * then that task will be returned.
    58      * @param processingEnvironment
    59      * @return the {@code JavacTask} for a {@code ProcessingEnvironment}
    60      * @since 1.8
    61      */
    62     public static JavacTask instance(ProcessingEnvironment processingEnvironment) {
    63         if (!processingEnvironment.getClass().getName().equals(
    64                 "com.sun.tools.javac.processing.JavacProcessingEnvironment"))
    65             throw new IllegalArgumentException();
    66         Context c = ((JavacProcessingEnvironment) processingEnvironment).getContext();
    67         JavacTask t = c.get(JavacTask.class);
    68         return (t != null) ? t : new BasicJavacTask(c, true);
    69     }
    71     /**
    72      * Parse the specified files returning a list of abstract syntax trees.
    73      *
    74      * @return a list of abstract syntax trees
    75      * @throws IOException if an unhandled I/O error occurred in the compiler.
    76      * @throws IllegalStateException if the operation cannot be performed at this time.
    77      */
    78     public abstract Iterable<? extends CompilationUnitTree> parse()
    79         throws IOException;
    81     /**
    82      * Complete all analysis.
    83      *
    84      * @return a list of elements that were analyzed
    85      * @throws IOException if an unhandled I/O error occurred in the compiler.
    86      * @throws IllegalStateException if the operation cannot be performed at this time.
    87      */
    88     public abstract Iterable<? extends Element> analyze() throws IOException;
    90     /**
    91      * Generate code.
    92      *
    93      * @return a list of files that were generated
    94      * @throws IOException if an unhandled I/O error occurred in the compiler.
    95      * @throws IllegalStateException if the operation cannot be performed at this time.
    96      */
    97     public abstract Iterable<? extends JavaFileObject> generate() throws IOException;
    99     /**
   100      * The specified listener will receive notification of events
   101      * describing the progress of this compilation task.
   102      *
   103      * If another listener is receiving notifications as a result of a prior
   104      * call of this method, then that listener will no longer receive notifications.
   105      *
   106      * Informally, this method is equivalent to calling {@code removeTaskListener} for
   107      * any listener that has been previously set, followed by {@code addTaskListener}
   108      * for the new listener.
   109      *
   110      * @throws IllegalStateException if the specified listener has already been added.
   111      */
   112     public abstract void setTaskListener(TaskListener taskListener);
   114     /**
   115      * The specified listener will receive notification of events
   116      * describing the progress of this compilation task.
   117      *
   118      * This method may be called at any time before or during the compilation.
   119      *
   120      * @throws IllegalStateException if the specified listener has already been added.
   121      * @since 1.8
   122      */
   123     public abstract void addTaskListener(TaskListener taskListener);
   125     /**
   126      * The specified listener will no longer receive notification of events
   127      * describing the progress of this compilation task.
   128      *
   129      * This method may be called at any time before or during the compilation.
   130      *
   131      * @since 1.8
   132      */
   133     public abstract void removeTaskListener(TaskListener taskListener);
   135     /**
   136      * Get a type mirror of the tree node determined by the specified path.
   137      * This method has been superceded by methods on
   138      * {@link com.sun.source.util.Trees Trees}.
   139      * @see com.sun.source.util.Trees#getTypeMirror
   140      */
   141     public abstract TypeMirror getTypeMirror(Iterable<? extends Tree> path);
   143     /**
   144      * Get a utility object for dealing with program elements.
   145      */
   146     public abstract Elements getElements();
   148     /**
   149      * Get a utility object for dealing with type mirrors.
   150      */
   151     public abstract Types getTypes();
   152 }

mercurial