langtools/src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java
author jjg
Thu, 13 Sep 2012 14:29:36 -0700
changeset 13844 56339cf983a3
parent 13841 a304aa57c550
child 14044 0070e9c44020
permissions -rw-r--r--
7177970: fix issues in langtools doc comments 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: 11316
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: 5009
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: 5009
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: 5009
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5009
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5009
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.processing;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    28
import java.io.Closeable;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    29
import java.io.File;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    30
import java.io.PrintWriter;
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8847
diff changeset
    31
import java.io.StringWriter;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    32
import java.net.MalformedURLException;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    33
import java.net.URL;
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    34
import java.util.*;
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    35
import java.util.regex.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import javax.annotation.processing.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import javax.lang.model.SourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import javax.lang.model.element.AnnotationMirror;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import javax.lang.model.element.Element;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    41
import javax.lang.model.element.PackageElement;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import javax.lang.model.element.TypeElement;
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
import javax.lang.model.util.*;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    44
import javax.tools.DiagnosticListener;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
import javax.tools.JavaFileManager;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    46
import javax.tools.JavaFileObject;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import javax.tools.StandardJavaFileManager;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    48
import static javax.tools.StandardLocation.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    50
import com.sun.source.util.JavacTask;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    51
import com.sun.source.util.TaskEvent;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    52
import com.sun.tools.javac.api.JavacTaskImpl;
7072
4863847e93a5 6987760: remove 308 support from JDK7
jjg
parents: 6924
diff changeset
    53
import com.sun.tools.javac.api.JavacTrees;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    54
import com.sun.tools.javac.api.MultiTaskListener;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    55
import com.sun.tools.javac.code.*;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    56
import com.sun.tools.javac.code.Symbol.*;
8422
b2ac1acf3937 7018098: CacheFSInfo persists too long
jjg
parents: 8032
diff changeset
    57
import com.sun.tools.javac.file.FSInfo;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    58
import com.sun.tools.javac.file.JavacFileManager;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    59
import com.sun.tools.javac.jvm.*;
9077
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9071
diff changeset
    60
import com.sun.tools.javac.jvm.ClassReader.BadClassFile;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    61
import com.sun.tools.javac.main.JavaCompiler;
3151
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
    62
import com.sun.tools.javac.main.JavaCompiler.CompileState;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    63
import com.sun.tools.javac.model.JavacElements;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    64
import com.sun.tools.javac.model.JavacTypes;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    65
import com.sun.tools.javac.parser.*;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    66
import com.sun.tools.javac.tree.*;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    67
import com.sun.tools.javac.tree.JCTree.*;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    68
import com.sun.tools.javac.util.Abort;
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
    69
import com.sun.tools.javac.util.Assert;
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
    70
import com.sun.tools.javac.util.ClientCodeException;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    71
import com.sun.tools.javac.util.Context;
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
    72
import com.sun.tools.javac.util.Convert;
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
    73
import com.sun.tools.javac.util.JCDiagnostic;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    74
import com.sun.tools.javac.util.JavacMessages;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    75
import com.sun.tools.javac.util.List;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    76
import com.sun.tools.javac.util.Log;
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    77
import com.sun.tools.javac.util.Name;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 735
diff changeset
    78
import com.sun.tools.javac.util.Names;
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 169
diff changeset
    79
import com.sun.tools.javac.util.Options;
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    80
import static com.sun.tools.javac.code.Lint.LintCategory.PROCESSING;
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
    81
import static com.sun.tools.javac.main.Option.*;
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
    82
import static com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
 * Objects of this class hold and manage the state needed to support
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
 * annotation processing.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5841
diff changeset
    88
 * <p><b>This is NOT part of any supported API.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
 * If you write code that depends on this, you do so at your own risk.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
 * This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
 * deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
public class JavacProcessingEnvironment implements ProcessingEnvironment, Closeable {
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    Options options;
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    private final boolean printProcessorInfo;
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
    private final boolean printRounds;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    private final boolean verbose;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    private final boolean lint;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    private final boolean procOnly;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    private final boolean fatalErrors;
6153
277c719ff46e 6403456: -Werror should work with annotation processing
jjg
parents: 6143
diff changeset
   102
    private final boolean werror;
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   103
    private final boolean showResolveErrors;
3151
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
   104
    private boolean foundTypeProcessors;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
    private final JavacFiler filer;
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    private final JavacMessager messager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    private final JavacElements elementUtils;
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    private final JavacTypes typeUtils;
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     * Holds relevant state history of which processors have been
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * used.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    private DiscoveredProcessors discoveredProcs;
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
     * Map of processor-specific options.
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    private final Map<String, String> processorOptions;
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    private final Set<String> unmatchedProcessorOptions;
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     * Annotations implicitly processed and claimed by javac.
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    private final Set<String> platformAnnotations;
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
     * Set of packages given on command line.
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    private Set<PackageSymbol> specifiedPackages = Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    /** The log to be used for error reporting.
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   140
    /** Diagnostic factory.
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   141
     */
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   142
    JCDiagnostic.Factory diags;
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   143
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
     * Source level of the compile.
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    Source source;
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3300
diff changeset
   149
    private ClassLoader processorClassLoader;
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3300
diff changeset
   150
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   151
    /**
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   152
     * JavacMessages object used for localization
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   153
     */
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   154
    private JavacMessages messages;
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   155
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
   156
    private MultiTaskListener taskListener;
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
   157
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    private Context context;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   160
    public JavacProcessingEnvironment(Context context, Iterable<? extends Processor> processors) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        this.context = context;
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        log = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
        source = Source.instance(context);
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   164
        diags = JCDiagnostic.Factory.instance(context);
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   165
        options = Options.instance(context);
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   166
        printProcessorInfo = options.isSet(XPRINTPROCESSORINFO);
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   167
        printRounds = options.isSet(XPRINTROUNDS);
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   168
        verbose = options.isSet(VERBOSE);
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   169
        lint = Lint.instance(context).isEnabled(PROCESSING);
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   170
        procOnly = options.isSet(PROC, "only") || options.isSet(XPRINT);
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   171
        fatalErrors = options.isSet("fatalEnterError");
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   172
        showResolveErrors = options.isSet("showResolveErrors");
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   173
        werror = options.isSet(WERROR);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        platformAnnotations = initPlatformAnnotations();
3151
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
   175
        foundTypeProcessors = false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
   177
        // Initialize services before any processors are initialized
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        // in case processors use them.
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        filer = new JavacFiler(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
        messager = new JavacMessager(context, this);
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
   181
        elementUtils = JavacElements.instance(context);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
   182
        typeUtils = JavacTypes.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        processorOptions = initProcessorOptions(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
        unmatchedProcessorOptions = initUnmatchedProcessorOptions();
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
   185
        messages = JavacMessages.instance(context);
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
   186
        taskListener = MultiTaskListener.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        initProcessorIterator(context, processors);
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    private Set<String> initPlatformAnnotations() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        Set<String> platformAnnotations = new HashSet<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        platformAnnotations.add("java.lang.Deprecated");
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        platformAnnotations.add("java.lang.Override");
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
        platformAnnotations.add("java.lang.SuppressWarnings");
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        platformAnnotations.add("java.lang.annotation.Documented");
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        platformAnnotations.add("java.lang.annotation.Inherited");
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        platformAnnotations.add("java.lang.annotation.Retention");
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        platformAnnotations.add("java.lang.annotation.Target");
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        return Collections.unmodifiableSet(platformAnnotations);
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    private void initProcessorIterator(Context context, Iterable<? extends Processor> processors) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        Log   log   = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        Iterator<? extends Processor> processorIterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   206
        if (options.isSet(XPRINT)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
                Processor processor = PrintingProcessor.class.newInstance();
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
                processorIterator = List.of(processor).iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
            } catch (Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
                AssertionError assertError =
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
                    new AssertionError("Problem instantiating PrintingProcessor.");
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
                assertError.initCause(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
                throw assertError;
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        } else if (processors != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            processorIterator = processors.iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
        } else {
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   219
            String processorNames = options.get(PROCESSOR);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            JavaFileManager fileManager = context.get(JavaFileManager.class);
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
                // If processorpath is not explicitly set, use the classpath.
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3300
diff changeset
   223
                processorClassLoader = fileManager.hasLocation(ANNOTATION_PROCESSOR_PATH)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
                    ? fileManager.getClassLoader(ANNOTATION_PROCESSOR_PATH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
                    : fileManager.getClassLoader(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
10637
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10192
diff changeset
   227
                if (processorClassLoader != null && processorClassLoader instanceof Closeable) {
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10192
diff changeset
   228
                    JavaCompiler compiler = JavaCompiler.instance(context);
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10192
diff changeset
   229
                    compiler.closeables = compiler.closeables.prepend((Closeable) processorClassLoader);
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10192
diff changeset
   230
                }
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10192
diff changeset
   231
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                /*
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
                 * If the "-processor" option is used, search the appropriate
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
                 * path for the named class.  Otherwise, use a service
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
                 * provider mechanism to create the processor iterator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                 */
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
                if (processorNames != null) {
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3300
diff changeset
   238
                    processorIterator = new NameProcessIterator(processorNames, processorClassLoader, log);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                } else {
3656
d4e34b76b0c3 6558476: com/sun/tools/javac/Main.compile don't release file handles on return
jjg
parents: 3300
diff changeset
   240
                    processorIterator = new ServiceIterator(processorClassLoader, log);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
            } catch (SecurityException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                /*
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                 * A security exception will occur if we can't create a classloader.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                 * Ignore the exception if, with hindsight, we didn't need it anyway
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                 * (i.e. no processor was specified either explicitly, or implicitly,
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                 * in service configuration file.) Otherwise, we cannot continue.
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
                 */
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
                processorIterator = handleServiceLoaderUnavailability("proc.cant.create.loader", e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        discoveredProcs = new DiscoveredProcessors(processorIterator);
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     * Returns an empty processor iterator if no processors are on the
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     * relevant path, otherwise if processors are present, logs an
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     * error.  Called when a service loader is unavailable for some
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     * reason, either because a service loader class cannot be found
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     * or because a security policy prevents class loaders from being
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
     * created.
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
     * @param key The resource key to use to log an error message
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     * @param e   If non-null, pass this exception to Abort
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
    private Iterator<Processor> handleServiceLoaderUnavailability(String key, Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
        JavaFileManager fileManager = context.get(JavaFileManager.class);
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
        if (fileManager instanceof JavacFileManager) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            StandardJavaFileManager standardFileManager = (JavacFileManager) fileManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
            Iterable<? extends File> workingPath = fileManager.hasLocation(ANNOTATION_PROCESSOR_PATH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
                ? standardFileManager.getLocation(ANNOTATION_PROCESSOR_PATH)
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
                : standardFileManager.getLocation(CLASS_PATH);
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   275
            if (needClassLoader(options.get(PROCESSOR), workingPath) )
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
                handleException(key, e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
            handleException(key, e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
        java.util.List<Processor> pl = Collections.emptyList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
        return pl.iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     * Handle a security exception thrown during initializing the
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
     * Processor iterator.
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
    private void handleException(String key, Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
        if (e != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
            log.error(key, e.getLocalizedMessage());
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
            throw new Abort(e);
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            log.error(key);
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
            throw new Abort();
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
     * Use a service loader appropriate for the platform to provide an
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   302
     * iterator over annotations processors; fails if a loader is
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   303
     * needed but unavailable.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
    private class ServiceIterator implements Iterator<Processor> {
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   306
        private Iterator<Processor> iterator;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        private Log log;
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   308
        private ServiceLoader<Processor> loader;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
        ServiceIterator(ClassLoader classLoader, Log log) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
            this.log = log;
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
                try {
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   314
                    loader = ServiceLoader.load(Processor.class, classLoader);
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   315
                    this.iterator = loader.iterator();
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   316
                } catch (Exception e) {
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   317
                    // Fail softly if a loader is not actually needed.
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   318
                    this.iterator = handleServiceLoaderUnavailability("proc.no.service", null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            } catch (Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
                log.error("proc.service.problem");
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
                throw new Abort(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
        public boolean hasNext() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
                return iterator.hasNext();
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   329
            } catch(ServiceConfigurationError sce) {
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   330
                log.error("proc.bad.config.file", sce.getLocalizedMessage());
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   331
                throw new Abort(sce);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            } catch (Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
                throw new Abort(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
        public Processor next() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
            try {
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   339
                return iterator.next();
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   340
            } catch (ServiceConfigurationError sce) {
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   341
                log.error("proc.bad.config.file", sce.getLocalizedMessage());
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   342
                throw new Abort(sce);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
            } catch (Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
                throw new Abort(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
        public void remove() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
            throw new UnsupportedOperationException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
        }
3764
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   351
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   352
        public void close() {
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   353
            if (loader != null) {
3764
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   354
                try {
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 10182
diff changeset
   355
                    loader.reload();
3764
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   356
                } catch(Exception e) {
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   357
                    ; // Ignore problems during a call to reload.
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   358
                }
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   359
            }
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   360
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
    private static class NameProcessIterator implements Iterator<Processor> {
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
        Processor nextProc = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
        Iterator<String> names;
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
        ClassLoader processorCL;
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
        Log log;
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        NameProcessIterator(String names, ClassLoader processorCL, Log log) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
            this.names = Arrays.asList(names.split(",")).iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
            this.processorCL = processorCL;
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
            this.log = log;
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        public boolean hasNext() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
            if (nextProc != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
                if (!names.hasNext())
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
                    String processorName = names.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
                    Processor processor;
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
                    try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
                        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
                            processor =
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
                                (Processor) (processorCL.loadClass(processorName).newInstance());
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
                        } catch (ClassNotFoundException cnfe) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
                            log.error("proc.processor.not.found", processorName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
                            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
                        } catch (ClassCastException cce) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
                            log.error("proc.processor.wrong.type", processorName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
                            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
                        } catch (Exception e ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
                            log.error("proc.processor.cant.instantiate", processorName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
                            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
                        }
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   400
                    } catch(ClientCodeException e) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   401
                        throw e;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
                    } catch(Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
                        throw new AnnotationProcessingError(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
                    nextProc = processor;
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
                    return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        public Processor next() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
            if (hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
                Processor p = nextProc;
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
                nextProc = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
                return p;
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
            } else
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
                throw new NoSuchElementException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
        public void remove () {
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            throw new UnsupportedOperationException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
    public boolean atLeastOneProcessor() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        return discoveredProcs.iterator().hasNext();
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
    private Map<String, String> initProcessorOptions(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
        Options options = Options.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
        Set<String> keySet = options.keySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        Map<String, String> tempOptions = new LinkedHashMap<String, String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        for(String key : keySet) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
            if (key.startsWith("-A") && key.length() > 2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
                int sepIndex = key.indexOf('=');
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
                String candidateKey = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
                String candidateValue = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
                if (sepIndex == -1)
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
                    candidateKey = key.substring(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
                else if (sepIndex >= 3) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
                    candidateKey = key.substring(2, sepIndex);
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
                    candidateValue = (sepIndex < key.length()-1)?
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
                        key.substring(sepIndex+1) : null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
                tempOptions.put(candidateKey, candidateValue);
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        return Collections.unmodifiableMap(tempOptions);
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
    private Set<String> initUnmatchedProcessorOptions() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
        Set<String> unmatchedProcessorOptions = new HashSet<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        unmatchedProcessorOptions.addAll(processorOptions.keySet());
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
        return unmatchedProcessorOptions;
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
     * State about how a processor has been used by the tool.  If a
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
     * processor has been used on a prior round, its process method is
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
     * called on all subsequent rounds, perhaps with an empty set of
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
     * annotations to process.  The {@code annotatedSupported} method
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
     * caches the supported annotation information from the first (and
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
     * only) getSupportedAnnotationTypes call to the processor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
    static class ProcessorState {
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
        public Processor processor;
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        public boolean   contributed;
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
        private ArrayList<Pattern> supportedAnnotationPatterns;
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
        private ArrayList<String>  supportedOptionNames;
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
        ProcessorState(Processor p, Log log, Source source, ProcessingEnvironment env) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
            processor = p;
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
            contributed = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
                processor.init(env);
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
                checkSourceVersionCompatibility(source, log);
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
                supportedAnnotationPatterns = new ArrayList<Pattern>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
                for (String importString : processor.getSupportedAnnotationTypes()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
                    supportedAnnotationPatterns.add(importStringToPattern(importString,
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
                                                                          processor,
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
                                                                          log));
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
                supportedOptionNames = new ArrayList<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
                for (String optionName : processor.getSupportedOptions() ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
                    if (checkOptionName(optionName, log))
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
                        supportedOptionNames.add(optionName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   497
            } catch (ClientCodeException e) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   498
                throw e;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
            } catch (Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
                throw new AnnotationProcessingError(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
         * Checks whether or not a processor's source version is
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
         * compatible with the compilation source version.  The
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
         * processor's source version needs to be greater than or
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
         * equal to the source version of the compile.
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
        private void checkSourceVersionCompatibility(Source source, Log log) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
            SourceVersion procSourceVersion = processor.getSupportedSourceVersion();
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
            if (procSourceVersion.compareTo(Source.toSourceVersion(source)) < 0 )  {
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
                log.warning("proc.processor.incompatible.source.version",
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
                            procSourceVersion,
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
                            processor.getClass().getName(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
                            source.name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
        private boolean checkOptionName(String optionName, Log log) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
            boolean valid = isValidOptionName(optionName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
            if (!valid)
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
                log.error("proc.processor.bad.option.name",
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
                            optionName,
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
                            processor.getClass().getName());
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
            return valid;
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
        public boolean annotationSupported(String annotationName) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
            for(Pattern p: supportedAnnotationPatterns) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
                if (p.matcher(annotationName).matches())
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
                    return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
         * Remove options that are matched by this processor.
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
        public void removeSupportedOptions(Set<String> unmatchedProcessorOptions) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
            unmatchedProcessorOptions.removeAll(supportedOptionNames);
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
    // TODO: These two classes can probably be rewritten better...
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
     * This class holds information about the processors that have
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
     * been discoverd so far as well as the means to discover more, if
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
     * necessary.  A single iterator should be used per round of
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
     * annotation processing.  The iterator first visits already
3764
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   552
     * discovered processors then fails over to the service provider
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
     * mechanism if additional queries are made.
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
    class DiscoveredProcessors implements Iterable<ProcessorState> {
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
        class ProcessorStateIterator implements Iterator<ProcessorState> {
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
            DiscoveredProcessors psi;
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
            Iterator<ProcessorState> innerIter;
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
            boolean onProcInterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
            ProcessorStateIterator(DiscoveredProcessors psi) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
                this.psi = psi;
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
                this.innerIter = psi.procStateList.iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
                this.onProcInterator = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
            public ProcessorState next() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
                if (!onProcInterator) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
                    if (innerIter.hasNext())
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
                        return innerIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
                    else
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
                        onProcInterator = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
                if (psi.processorIterator.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
                    ProcessorState ps = new ProcessorState(psi.processorIterator.next(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
                                                           log, source, JavacProcessingEnvironment.this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
                    psi.procStateList.add(ps);
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
                    return ps;
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
                } else
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
                    throw new NoSuchElementException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
            public boolean hasNext() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
                if (onProcInterator)
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
                    return  psi.processorIterator.hasNext();
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
                else
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
                    return innerIter.hasNext() || psi.processorIterator.hasNext();
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
            public void remove () {
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
                throw new UnsupportedOperationException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
            /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
             * Run all remaining processors on the procStateList that
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
             * have not already run this round with an empty set of
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
             * annotations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
             */
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
            public void runContributingProcs(RoundEnvironment re) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
                if (!onProcInterator) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
                    Set<TypeElement> emptyTypeElements = Collections.emptySet();
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
                    while(innerIter.hasNext()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
                        ProcessorState ps = innerIter.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
                        if (ps.contributed)
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
                            callProcessor(ps.processor, emptyTypeElements, re);
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
        Iterator<? extends Processor> processorIterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
        ArrayList<ProcessorState>  procStateList;
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
        public ProcessorStateIterator iterator() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
            return new ProcessorStateIterator(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
        DiscoveredProcessors(Iterator<? extends Processor> processorIterator) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
            this.processorIterator = processorIterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
            this.procStateList = new ArrayList<ProcessorState>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
        }
3764
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   624
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   625
        /**
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   626
         * Free jar files, etc. if using a service loader.
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   627
         */
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   628
        public void close() {
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   629
            if (processorIterator != null &&
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   630
                processorIterator instanceof ServiceIterator) {
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   631
                ((ServiceIterator) processorIterator).close();
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   632
            }
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
   633
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
    private void discoverAndRunProcs(Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
                                     Set<TypeElement> annotationsPresent,
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
                                     List<ClassSymbol> topLevelClasses,
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
                                     List<PackageSymbol> packageInfoFiles) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
        Map<String, TypeElement> unmatchedAnnotations =
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
            new HashMap<String, TypeElement>(annotationsPresent.size());
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
        for(TypeElement a  : annotationsPresent) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
                unmatchedAnnotations.put(a.getQualifiedName().toString(),
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
                                         a);
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
        // Give "*" processors a chance to match
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
        if (unmatchedAnnotations.size() == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
            unmatchedAnnotations.put("", null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        DiscoveredProcessors.ProcessorStateIterator psi = discoveredProcs.iterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
        // TODO: Create proper argument values; need past round
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
        // information to fill in this constructor.  Note that the 1
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
        // st round of processing could be the last round if there
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        // were parse errors on the initial source files; however, we
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        // are not doing processing in that case.
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
        Set<Element> rootElements = new LinkedHashSet<Element>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
        rootElements.addAll(topLevelClasses);
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
        rootElements.addAll(packageInfoFiles);
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        rootElements = Collections.unmodifiableSet(rootElements);
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
        RoundEnvironment renv = new JavacRoundEnvironment(false,
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
                                                          false,
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
                                                          rootElements,
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
                                                          JavacProcessingEnvironment.this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
        while(unmatchedAnnotations.size() > 0 && psi.hasNext() ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
            ProcessorState ps = psi.next();
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
            Set<String>  matchedNames = new HashSet<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
            Set<TypeElement> typeElements = new LinkedHashSet<TypeElement>();
5003
fd0b30cdbe5c 6929645: Address various findbugs warnings in langtools
darcy
parents: 5001
diff changeset
   673
fd0b30cdbe5c 6929645: Address various findbugs warnings in langtools
darcy
parents: 5001
diff changeset
   674
            for (Map.Entry<String, TypeElement> entry: unmatchedAnnotations.entrySet()) {
fd0b30cdbe5c 6929645: Address various findbugs warnings in langtools
darcy
parents: 5001
diff changeset
   675
                String unmatchedAnnotationName = entry.getKey();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
                if (ps.annotationSupported(unmatchedAnnotationName) ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
                    matchedNames.add(unmatchedAnnotationName);
5003
fd0b30cdbe5c 6929645: Address various findbugs warnings in langtools
darcy
parents: 5001
diff changeset
   678
                    TypeElement te = entry.getValue();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
                    if (te != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
                        typeElements.add(te);
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
            if (matchedNames.size() > 0 || ps.contributed) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
                boolean processingResult = callProcessor(ps.processor, typeElements, renv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
                ps.contributed = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
                ps.removeSupportedOptions(unmatchedProcessorOptions);
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
                if (printProcessorInfo || verbose) {
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 10950
diff changeset
   690
                    log.printLines("x.print.processor.info",
6143
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 5847
diff changeset
   691
                            ps.processor.getClass().getName(),
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 5847
diff changeset
   692
                            matchedNames.toString(),
79b7dee406cc 6966732: replace use of static Log.getLocalizedString with non-static alternative where possible
jjg
parents: 5847
diff changeset
   693
                            processingResult);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
                if (processingResult) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
                    unmatchedAnnotations.keySet().removeAll(matchedNames);
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
        unmatchedAnnotations.remove("");
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
        if (lint && unmatchedAnnotations.size() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
            // Remove annotations processed by javac
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
            unmatchedAnnotations.keySet().removeAll(platformAnnotations);
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
            if (unmatchedAnnotations.size() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
                log = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
                log.warning("proc.annotations.without.processors",
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
                            unmatchedAnnotations.keySet());
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
        // Run contributing processors that haven't run yet
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
        psi.runContributingProcs(renv);
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
        // Debugging
6721
d92073844278 6988436: Cleanup javac option handling
jjg
parents: 6717
diff changeset
   718
        if (options.isSet("displayFilerState"))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
            filer.displayState();
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
     * Computes the set of annotations on the symbol in question.
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
     * Leave class public for external testing purposes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
    public static class ComputeAnnotationSet extends
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents: 10186
diff changeset
   727
        ElementScanner8<Set<TypeElement>, Set<TypeElement>> {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
        final Elements elements;
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
        public ComputeAnnotationSet(Elements elements) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
            super();
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
            this.elements = elements;
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
        @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
        public Set<TypeElement> visitPackage(PackageElement e, Set<TypeElement> p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
            // Don't scan enclosed elements of a package
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
            return p;
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
06bc494ca11e Initial load
duke
parents:
diff changeset
   741
        @Override
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   742
        public Set<TypeElement> scan(Element e, Set<TypeElement> p) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
            for (AnnotationMirror annotationMirror :
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
                     elements.getAllAnnotationMirrors(e) ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
                Element e2 = annotationMirror.getAnnotationType().asElement();
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
                p.add((TypeElement) e2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
            return super.scan(e, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
    private boolean callProcessor(Processor proc,
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
                                         Set<? extends TypeElement> tes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
                                         RoundEnvironment renv) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
            return proc.process(tes, renv);
9077
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9071
diff changeset
   757
        } catch (BadClassFile ex) {
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9071
diff changeset
   758
            log.error("proc.cant.access.1", ex.sym, ex.getDetailValue());
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9071
diff changeset
   759
            return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
            StringWriter out = new StringWriter();
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
            ex.printStackTrace(new PrintWriter(out));
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
   763
            log.error("proc.cant.access", ex.sym, ex.getDetailValue(), out.toString());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
            return false;
9071
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   765
        } catch (ClientCodeException e) {
88cd61b4e5aa 6437138: JSR 199: Compiler doesn't diagnose crash in user code
jjg
parents: 9069
diff changeset
   766
            throw e;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
        } catch (Throwable t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
            throw new AnnotationProcessingError(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   770
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   772
    /**
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   773
     * Helper object for a single round of annotation processing.
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   774
     */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   775
    class Round {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   776
        /** The round number. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   777
        final int number;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   778
        /** The context for the round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   779
        final Context context;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   780
        /** The compiler for the round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   781
        final JavaCompiler compiler;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   782
        /** The log for the round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   783
        final Log log;
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   784
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   785
        /** The ASTs to be compiled. */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   786
        List<JCCompilationUnit> roots;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   787
        /** The classes to be compiler that have were generated. */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   788
        Map<String, JavaFileObject> genClassFiles;
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   789
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   790
        /** The set of annotations to be processed this round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   791
        Set<TypeElement> annotationsPresent;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   792
        /** The set of top level classes to be processed this round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   793
        List<ClassSymbol> topLevelClasses;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   794
        /** The set of package-info files to be processed this round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   795
        List<PackageSymbol> packageInfoFiles;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   796
8847
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   797
        /** The number of Messager errors generated in this round. */
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   798
        int nMessagerErrors;
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   799
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   800
        /** Create a round (common code). */
8847
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   801
        private Round(Context context, int number, int priorErrors, int priorWarnings) {
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   802
            this.context = context;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   803
            this.number = number;
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   804
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   805
            compiler = JavaCompiler.instance(context);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   806
            log = Log.instance(context);
8847
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   807
            log.nerrors = priorErrors;
8619
15a69d0db208 7022741: warning counts are wrong after anno processing
jjg
parents: 8614
diff changeset
   808
            log.nwarnings += priorWarnings;
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   809
            log.deferDiagnostics = true;
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   810
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   811
            // the following is for the benefit of JavacProcessingEnvironment.getContext()
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   812
            JavacProcessingEnvironment.this.context = context;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   813
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   814
            // the following will be populated as needed
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   815
            topLevelClasses  = List.nil();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   816
            packageInfoFiles = List.nil();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   817
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   818
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   819
        /** Create the first round. */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   820
        Round(Context context, List<JCCompilationUnit> roots, List<ClassSymbol> classSymbols) {
8847
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   821
            this(context, 1, 0, 0);
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   822
            this.roots = roots;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   823
            genClassFiles = new HashMap<String,JavaFileObject>();
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   824
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   825
            compiler.todo.clear(); // free the compiler's resources
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   826
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   827
            // The reverse() in the following line is to maintain behavioural
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   828
            // compatibility with the previous revision of the code. Strictly speaking,
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   829
            // it should not be necessary, but a javah golden file test fails without it.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   830
            topLevelClasses =
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   831
                getTopLevelClasses(roots).prependList(classSymbols.reverse());
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   832
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   833
            packageInfoFiles = getPackageInfoFiles(roots);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   834
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   835
            findAnnotationsPresent();
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   836
        }
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   837
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   838
        /** Create a new round. */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   839
        private Round(Round prev,
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   840
                Set<JavaFileObject> newSourceFiles, Map<String,JavaFileObject> newClassFiles) {
8847
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   841
            this(prev.nextContext(),
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   842
                    prev.number+1,
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   843
                    prev.nMessagerErrors,
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   844
                    prev.compiler.log.nwarnings);
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   845
            this.genClassFiles = prev.genClassFiles;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   846
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   847
            List<JCCompilationUnit> parsedFiles = compiler.parseFiles(newSourceFiles);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   848
            roots = cleanTrees(prev.roots).appendList(parsedFiles);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   849
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   850
            // Check for errors after parsing
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   851
            if (unrecoverableError())
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   852
                return;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   853
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   854
            enterClassFiles(genClassFiles);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   855
            List<ClassSymbol> newClasses = enterClassFiles(newClassFiles);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   856
            genClassFiles.putAll(newClassFiles);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   857
            enterTrees(roots);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   858
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   859
            if (unrecoverableError())
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   860
                return;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   861
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   862
            topLevelClasses = join(
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   863
                    getTopLevelClasses(parsedFiles),
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   864
                    getTopLevelClassesFromClasses(newClasses));
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   865
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   866
            packageInfoFiles = join(
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   867
                    getPackageInfoFiles(parsedFiles),
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   868
                    getPackageInfoFilesFromClasses(newClasses));
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   869
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   870
            findAnnotationsPresent();
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   871
        }
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   872
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   873
        /** Create the next round to be used. */
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
   874
        Round next(Set<JavaFileObject> newSourceFiles, Map<String, JavaFileObject> newClassFiles) {
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   875
            try {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   876
                return new Round(this, newSourceFiles, newClassFiles);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   877
            } finally {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   878
                compiler.close(false);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   879
            }
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   880
        }
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   881
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   882
        /** Create the compiler to be used for the final compilation. */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   883
        JavaCompiler finalCompiler(boolean errorStatus) {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   884
            try {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   885
                JavaCompiler c = JavaCompiler.instance(nextContext());
8619
15a69d0db208 7022741: warning counts are wrong after anno processing
jjg
parents: 8614
diff changeset
   886
                c.log.nwarnings += compiler.log.nwarnings;
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   887
                if (errorStatus) {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   888
                    c.log.nerrors += compiler.log.nerrors;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   889
                }
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   890
                return c;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   891
            } finally {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   892
                compiler.close(false);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   893
            }
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   894
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   895
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   896
        /** Return the number of errors found so far in this round.
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   897
         * This may include uncoverable errors, such as parse errors,
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   898
         * and transient errors, such as missing symbols. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   899
        int errorCount() {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   900
            return compiler.errorCount();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   901
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   902
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   903
        /** Return the number of warnings found so far in this round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   904
        int warningCount() {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   905
            return compiler.warningCount();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   906
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   907
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   908
        /** Return whether or not an unrecoverable error has occurred. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   909
        boolean unrecoverableError() {
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   910
            if (messager.errorRaised())
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   911
                return true;
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   912
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   913
            for (JCDiagnostic d: log.deferredDiagnostics) {
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   914
                switch (d.getKind()) {
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   915
                    case WARNING:
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   916
                        if (werror)
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   917
                            return true;
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   918
                        break;
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   919
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   920
                    case ERROR:
7076
c96fa26247c8 6994946: option to specify only syntax errors as unrecoverable
jjg
parents: 7072
diff changeset
   921
                        if (fatalErrors || !d.isFlagSet(RECOVERABLE))
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   922
                            return true;
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   923
                        break;
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   924
                }
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   925
            }
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   926
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   927
            return false;
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   928
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   929
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   930
        /** Find the set of annotations present in the set of top level
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   931
         *  classes and package info files to be processed this round. */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   932
        void findAnnotationsPresent() {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   933
            ComputeAnnotationSet annotationComputer = new ComputeAnnotationSet(elementUtils);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   934
            // Use annotation processing to compute the set of annotations present
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   935
            annotationsPresent = new LinkedHashSet<TypeElement>();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   936
            for (ClassSymbol classSym : topLevelClasses)
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   937
                annotationComputer.scan(classSym, annotationsPresent);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   938
            for (PackageSymbol pkgSym : packageInfoFiles)
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   939
                annotationComputer.scan(pkgSym, annotationsPresent);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   940
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   941
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   942
        /** Enter a set of generated class files. */
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   943
        private List<ClassSymbol> enterClassFiles(Map<String, JavaFileObject> classFiles) {
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   944
            ClassReader reader = ClassReader.instance(context);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   945
            Names names = Names.instance(context);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   946
            List<ClassSymbol> list = List.nil();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   947
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   948
            for (Map.Entry<String,JavaFileObject> entry : classFiles.entrySet()) {
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   949
                Name name = names.fromString(entry.getKey());
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   950
                JavaFileObject file = entry.getValue();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   951
                if (file.getKind() != JavaFileObject.Kind.CLASS)
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   952
                    throw new AssertionError(file);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   953
                ClassSymbol cs;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   954
                if (isPkgInfo(file, JavaFileObject.Kind.CLASS)) {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   955
                    Name packageName = Convert.packagePart(name);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   956
                    PackageSymbol p = reader.enterPackage(packageName);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   957
                    if (p.package_info == null)
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   958
                        p.package_info = reader.enterClass(Convert.shortName(name), p);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   959
                    cs = p.package_info;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   960
                    if (cs.classfile == null)
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   961
                        cs.classfile = file;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   962
                } else
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   963
                    cs = reader.enterClass(name, file);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   964
                list = list.prepend(cs);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   965
            }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   966
            return list.reverse();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   967
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   968
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   969
        /** Enter a set of syntax trees. */
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
   970
        private void enterTrees(List<JCCompilationUnit> roots) {
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   971
            compiler.enterTrees(roots);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   972
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   973
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   974
        /** Run a processing round. */
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   975
        void run(boolean lastRound, boolean errorStatus) {
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
   976
            printRoundInfo(lastRound);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   977
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
   978
            if (!taskListener.isEmpty())
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   979
                taskListener.started(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING_ROUND));
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   980
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   981
            try {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   982
                if (lastRound) {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   983
                    filer.setLastRound(true);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   984
                    Set<Element> emptyRootElements = Collections.emptySet(); // immutable
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   985
                    RoundEnvironment renv = new JavacRoundEnvironment(true,
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   986
                            errorStatus,
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   987
                            emptyRootElements,
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   988
                            JavacProcessingEnvironment.this);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   989
                    discoveredProcs.iterator().runContributingProcs(renv);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   990
                } else {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   991
                    discoverAndRunProcs(context, annotationsPresent, topLevelClasses, packageInfoFiles);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   992
                }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   993
            } finally {
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
   994
                if (!taskListener.isEmpty())
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   995
                    taskListener.finished(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING_ROUND));
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   996
            }
8847
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   997
e7494cb250a4 6988079: Errors reported via Messager.printMessage(ERROR,"error message") are not tallied correctly
jjg
parents: 8619
diff changeset
   998
            nMessagerErrors = messager.errorCount();
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
   999
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1000
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1001
        void showDiagnostics(boolean showAll) {
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1002
            Set<JCDiagnostic.Kind> kinds = EnumSet.allOf(JCDiagnostic.Kind.class);
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1003
            if (!showAll) {
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1004
                // suppress errors, which are all presumed to be transient resolve errors
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1005
                kinds.remove(JCDiagnostic.Kind.ERROR);
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1006
            }
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1007
            log.reportDeferredDiagnostics(kinds);
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1008
        }
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1009
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1010
        /** Print info about this round. */
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1011
        private void printRoundInfo(boolean lastRound) {
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1012
            if (printRounds || verbose) {
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1013
                List<ClassSymbol> tlc = lastRound ? List.<ClassSymbol>nil() : topLevelClasses;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1014
                Set<TypeElement> ap = lastRound ? Collections.<TypeElement>emptySet() : annotationsPresent;
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 10950
diff changeset
  1015
                log.printLines("x.print.rounds",
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1016
                        number,
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1017
                        "{" + tlc.toString(", ") + "}",
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1018
                        ap,
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1019
                        lastRound);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1020
            }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1021
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1022
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1023
        /** Get the context for the next round of processing.
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1024
         * Important values are propogated from round to round;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1025
         * other values are implicitly reset.
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1026
         */
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1027
        private Context nextContext() {
8614
06e42328ddab 7021650: fix Context issues
jjg
parents: 8422
diff changeset
  1028
            Context next = new Context(context);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1029
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1030
            Options options = Options.instance(context);
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1031
            Assert.checkNonNull(options);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1032
            next.put(Options.optionsKey, options);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1033
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8847
diff changeset
  1034
            Locale locale = context.get(Locale.class);
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8847
diff changeset
  1035
            if (locale != null)
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8847
diff changeset
  1036
                next.put(Locale.class, locale);
11316
4dcad625e72e 7111022: javac no long prints last round of processing
jjg
parents: 11314
diff changeset
  1037
9069
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8847
diff changeset
  1038
            Assert.checkNonNull(messages);
bcab4a29758f 6597678: JavaCompiler.getStandardFileManager always uses default charset not the one that user specifies
jjg
parents: 8847
diff changeset
  1039
            next.put(JavacMessages.messagesKey, messages);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1040
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1041
            final boolean shareNames = true;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1042
            if (shareNames) {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1043
                Names names = Names.instance(context);
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1044
                Assert.checkNonNull(names);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1045
                next.put(Names.namesKey, names);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1046
            }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1047
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1048
            DiagnosticListener<?> dl = context.get(DiagnosticListener.class);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1049
            if (dl != null)
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1050
                next.put(DiagnosticListener.class, dl);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1051
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
  1052
            MultiTaskListener mtl = context.get(MultiTaskListener.taskListenerKey);
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
  1053
            if (mtl != null)
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
  1054
                next.put(MultiTaskListener.taskListenerKey, mtl);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1055
8422
b2ac1acf3937 7018098: CacheFSInfo persists too long
jjg
parents: 8032
diff changeset
  1056
            FSInfo fsInfo = context.get(FSInfo.class);
b2ac1acf3937 7018098: CacheFSInfo persists too long
jjg
parents: 8032
diff changeset
  1057
            if (fsInfo != null)
b2ac1acf3937 7018098: CacheFSInfo persists too long
jjg
parents: 8032
diff changeset
  1058
                next.put(FSInfo.class, fsInfo);
b2ac1acf3937 7018098: CacheFSInfo persists too long
jjg
parents: 8032
diff changeset
  1059
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1060
            JavaFileManager jfm = context.get(JavaFileManager.class);
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1061
            Assert.checkNonNull(jfm);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1062
            next.put(JavaFileManager.class, jfm);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1063
            if (jfm instanceof JavacFileManager) {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1064
                ((JavacFileManager)jfm).setContext(next);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1065
            }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1066
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1067
            Names names = Names.instance(context);
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1068
            Assert.checkNonNull(names);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1069
            next.put(Names.namesKey, names);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1070
10815
a719aa5f1631 7096014: Javac tokens should retain state
mcimadamore
parents: 10637
diff changeset
  1071
            Tokens tokens = Tokens.instance(context);
a719aa5f1631 7096014: Javac tokens should retain state
mcimadamore
parents: 10637
diff changeset
  1072
            Assert.checkNonNull(tokens);
a719aa5f1631 7096014: Javac tokens should retain state
mcimadamore
parents: 10637
diff changeset
  1073
            next.put(Tokens.tokensKey, tokens);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1074
13841
a304aa57c550 7196760: tree end positions incorrect after anno processing
jjg
parents: 12016
diff changeset
  1075
            Log nextLog = Log.instance(next);
11316
4dcad625e72e 7111022: javac no long prints last round of processing
jjg
parents: 11314
diff changeset
  1076
            // propogate the log's writers directly, instead of going through context
13841
a304aa57c550 7196760: tree end positions incorrect after anno processing
jjg
parents: 12016
diff changeset
  1077
            nextLog.setWriters(log);
a304aa57c550 7196760: tree end positions incorrect after anno processing
jjg
parents: 12016
diff changeset
  1078
            nextLog.setSourceMap(log);
11316
4dcad625e72e 7111022: javac no long prints last round of processing
jjg
parents: 11314
diff changeset
  1079
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1080
            JavaCompiler oldCompiler = JavaCompiler.instance(context);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1081
            JavaCompiler nextCompiler = JavaCompiler.instance(next);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1082
            nextCompiler.initRound(oldCompiler);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1083
6924
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
  1084
            filer.newRound(next);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
  1085
            messager.newRound(next);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
  1086
            elementUtils.setContext(next);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
  1087
            typeUtils.setContext(next);
ef7a9281ad2f 6988836: A new JavacElements is created for each round of annotation processing
jjg
parents: 6721
diff changeset
  1088
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
  1089
            JavacTaskImpl task = (JavacTaskImpl) context.get(JavacTask.class);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1090
            if (task != null) {
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
  1091
                next.put(JavacTask.class, task);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1092
                task.updateContext(next);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1093
            }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1094
6717
0103d76cfe48 6986246: Trees object is round-specific
jjg
parents: 6582
diff changeset
  1095
            JavacTrees trees = context.get(JavacTrees.class);
0103d76cfe48 6986246: Trees object is round-specific
jjg
parents: 6582
diff changeset
  1096
            if (trees != null) {
0103d76cfe48 6986246: Trees object is round-specific
jjg
parents: 6582
diff changeset
  1097
                next.put(JavacTrees.class, trees);
0103d76cfe48 6986246: Trees object is round-specific
jjg
parents: 6582
diff changeset
  1098
                trees.updateContext(next);
0103d76cfe48 6986246: Trees object is round-specific
jjg
parents: 6582
diff changeset
  1099
            }
0103d76cfe48 6986246: Trees object is round-specific
jjg
parents: 6582
diff changeset
  1100
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1101
            context.clear();
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1102
            return next;
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1103
        }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1104
    }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1105
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
06bc494ca11e Initial load
duke
parents:
diff changeset
  1107
    // TODO: internal catch clauses?; catch and rethrow an annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1108
    // processing error
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
    public JavaCompiler doProcessing(Context context,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1110
                                     List<JCCompilationUnit> roots,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
                                     List<ClassSymbol> classSymbols,
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
  1112
                                     Iterable<? extends PackageSymbol> pckSymbols) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
        log = Log.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1114
06bc494ca11e Initial load
duke
parents:
diff changeset
  1115
        Set<PackageSymbol> specifiedPackages = new LinkedHashSet<PackageSymbol>();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1116
        for (PackageSymbol psym : pckSymbols)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1117
            specifiedPackages.add(psym);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1118
        this.specifiedPackages = Collections.unmodifiableSet(specifiedPackages);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1119
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1120
        Round round = new Round(context, roots, classSymbols);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1121
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1122
        boolean errorStatus;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1123
        boolean moreToDo;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1124
        do {
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1125
            // Run processors for round n
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1126
            round.run(false, false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1127
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1128
            // Processors for round n have run to completion.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1129
            // Check for errors and whether there is more work to do.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1130
            errorStatus = round.unrecoverableError();
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1131
            moreToDo = moreToDo();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1132
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1133
            round.showDiagnostics(errorStatus || showResolveErrors);
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1134
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1135
            // Set up next round.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1136
            // Copy mutable collections returned from filer.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1137
            round = round.next(
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1138
                    new LinkedHashSet<JavaFileObject>(filer.getGeneratedSourceFileObjects()),
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1139
                    new LinkedHashMap<String,JavaFileObject>(filer.getGeneratedClasses()));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1140
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1141
             // Check for errors during setup.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1142
            if (round.unrecoverableError())
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1143
                errorStatus = true;
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1144
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1145
        } while (moreToDo && !errorStatus);
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1146
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1147
        // run last round
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1148
        round.run(true, errorStatus);
6582
c7a4fb5a2f86 6403465: javac should defer diagnostics until it can be determined they are persistent
jjg
parents: 6581
diff changeset
  1149
        round.showDiagnostics(true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1150
06bc494ca11e Initial load
duke
parents:
diff changeset
  1151
        filer.warnIfUnclosedFiles();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1152
        warnIfUnmatchedOptions();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1153
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1154
        /*
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1155
         * If an annotation processor raises an error in a round,
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1156
         * that round runs to completion and one last round occurs.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1157
         * The last round may also occur because no more source or
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1158
         * class files have been generated.  Therefore, if an error
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1159
         * was raised on either of the last *two* rounds, the compile
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1160
         * should exit with a nonzero exit code.  The current value of
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1161
         * errorStatus holds whether or not an error was raised on the
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1162
         * second to last round; errorRaised() gives the error status
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1163
         * of the last round.
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1164
         */
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1165
        if (messager.errorRaised()
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1166
                || werror && round.warningCount() > 0 && round.errorCount() > 0)
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1167
            errorStatus = true;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1168
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1169
        Set<JavaFileObject> newSourceFiles =
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1170
                new LinkedHashSet<JavaFileObject>(filer.getGeneratedSourceFileObjects());
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1171
        roots = cleanTrees(round.roots);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1172
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1173
        JavaCompiler compiler = round.finalCompiler(errorStatus);
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1174
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1175
        if (newSourceFiles.size() > 0)
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1176
            roots = roots.appendList(compiler.parseFiles(newSourceFiles));
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1177
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1178
        errorStatus = errorStatus || (compiler.errorCount() > 0);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1179
06bc494ca11e Initial load
duke
parents:
diff changeset
  1180
        // Free resources
06bc494ca11e Initial load
duke
parents:
diff changeset
  1181
        this.close();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1182
12016
1990493b64db 7093891: support multiple task listeners
jjg
parents: 11316
diff changeset
  1183
        if (!taskListener.isEmpty())
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1184
            taskListener.finished(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1185
06bc494ca11e Initial load
duke
parents:
diff changeset
  1186
        if (errorStatus) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1187
            if (compiler.errorCount() == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1188
                compiler.log.nerrors++;
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1189
            return compiler;
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1190
        }
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1191
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1192
        if (procOnly && !foundTypeProcessors) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1193
            compiler.todo.clear();
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1194
        } else {
3151
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
  1195
            if (procOnly && foundTypeProcessors)
41800a86aad3 6854796: update JSR308 impl with latest code from type-annotations repo
jjg
parents: 3149
diff changeset
  1196
                compiler.shouldStopPolicy = CompileState.FLOW;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1197
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1198
            compiler.enterTrees(roots);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1199
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1200
06bc494ca11e Initial load
duke
parents:
diff changeset
  1201
        return compiler;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1202
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1203
06bc494ca11e Initial load
duke
parents:
diff changeset
  1204
    private void warnIfUnmatchedOptions() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1205
        if (!unmatchedProcessorOptions.isEmpty()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1206
            log.warning("proc.unmatched.processor.options", unmatchedProcessorOptions.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1207
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1208
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1209
06bc494ca11e Initial load
duke
parents:
diff changeset
  1210
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1211
     * Free resources related to annotation processing.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1212
     */
6581
f58f0ce45802 6980707: Reduce use of IOException in JavaCompiler
jjg
parents: 6355
diff changeset
  1213
    public void close() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1214
        filer.close();
3764
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
  1215
        if (discoveredProcs != null) // Make calling close idempotent
f0077f165983 6548708: Annotation processing should free service loader if there are no processors
darcy
parents: 3656
diff changeset
  1216
            discoveredProcs.close();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1217
        discoveredProcs = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1218
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1219
06bc494ca11e Initial load
duke
parents:
diff changeset
  1220
    private List<ClassSymbol> getTopLevelClasses(List<? extends JCCompilationUnit> units) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1221
        List<ClassSymbol> classes = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1222
        for (JCCompilationUnit unit : units) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1223
            for (JCTree node : unit.defs) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10815
diff changeset
  1224
                if (node.hasTag(JCTree.Tag.CLASSDEF)) {
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1225
                    ClassSymbol sym = ((JCClassDecl) node).sym;
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
  1226
                    Assert.checkNonNull(sym);
6355
f01ebbf5a5f7 6975005: improve JavacProcessingEnvironment.Round abstraction
jjg
parents: 6162
diff changeset
  1227
                    classes = classes.prepend(sym);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1228
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1229
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1230
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1231
        return classes.reverse();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1232
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1233
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1234
    private List<ClassSymbol> getTopLevelClassesFromClasses(List<? extends ClassSymbol> syms) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1235
        List<ClassSymbol> classes = List.nil();
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1236
        for (ClassSymbol sym : syms) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1237
            if (!isPkgInfo(sym)) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1238
                classes = classes.prepend(sym);
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1239
            }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1240
        }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1241
        return classes.reverse();
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1242
    }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1243
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1244
    private List<PackageSymbol> getPackageInfoFiles(List<? extends JCCompilationUnit> units) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1245
        List<PackageSymbol> packages = List.nil();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1246
        for (JCCompilationUnit unit : units) {
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1247
            if (isPkgInfo(unit.sourcefile, JavaFileObject.Kind.SOURCE)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1248
                packages = packages.prepend(unit.packge);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1249
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1250
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1251
        return packages.reverse();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1252
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1253
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1254
    private List<PackageSymbol> getPackageInfoFilesFromClasses(List<? extends ClassSymbol> syms) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1255
        List<PackageSymbol> packages = List.nil();
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1256
        for (ClassSymbol sym : syms) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1257
            if (isPkgInfo(sym)) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1258
                packages = packages.prepend((PackageSymbol) sym.owner);
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1259
            }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1260
        }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1261
        return packages.reverse();
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1262
    }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1263
6159
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1264
    // avoid unchecked warning from use of varargs
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1265
    private static <T> List<T> join(List<T> list1, List<T> list2) {
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1266
        return list1.appendList(list2);
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1267
    }
88930a1c409e 6966604: JavacFiler not correctly notified of lastRound
jjg
parents: 6153
diff changeset
  1268
4871
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1269
    private boolean isPkgInfo(JavaFileObject fo, JavaFileObject.Kind kind) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1270
        return fo.isNameCompatible("package-info", kind);
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1271
    }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1272
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1273
    private boolean isPkgInfo(ClassSymbol sym) {
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1274
        return isPkgInfo(sym.classfile, JavaFileObject.Kind.CLASS) && (sym.packge().package_info == sym);
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1275
    }
655bba719625 6499119: Created package-info class file modeled improperly
jjg
parents: 3764
diff changeset
  1276
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1277
    /*
06bc494ca11e Initial load
duke
parents:
diff changeset
  1278
     * Called retroactively to determine if a class loader was required,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1279
     * after we have failed to create one.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1280
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1281
    private boolean needClassLoader(String procNames, Iterable<? extends File> workingpath) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1282
        if (procNames != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1283
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1284
06bc494ca11e Initial load
duke
parents:
diff changeset
  1285
        String procPath;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1286
        URL[] urls = new URL[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
  1287
        for(File pathElement : workingpath) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1288
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1289
                urls[0] = pathElement.toURI().toURL();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1290
                if (ServiceProxy.hasService(Processor.class, urls))
06bc494ca11e Initial load
duke
parents:
diff changeset
  1291
                    return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1292
            } catch (MalformedURLException ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1293
                throw new AssertionError(ex);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1294
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1295
            catch (ServiceProxy.ServiceConfigurationError e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1296
                log.error("proc.bad.config.file", e.getLocalizedMessage());
06bc494ca11e Initial load
duke
parents:
diff changeset
  1297
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1298
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1299
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1300
06bc494ca11e Initial load
duke
parents:
diff changeset
  1301
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1302
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1303
06bc494ca11e Initial load
duke
parents:
diff changeset
  1304
    private static <T extends JCTree> List<T> cleanTrees(List<T> nodes) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1305
        for (T node : nodes)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1306
            treeCleaner.scan(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1307
        return nodes;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1308
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1309
06bc494ca11e Initial load
duke
parents:
diff changeset
  1310
    private static TreeScanner treeCleaner = new TreeScanner() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1311
            public void scan(JCTree node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1312
                super.scan(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1313
                if (node != null)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1314
                    node.type = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1315
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1316
            public void visitTopLevel(JCCompilationUnit node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1317
                node.packge = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1318
                super.visitTopLevel(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1319
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1320
            public void visitClassDef(JCClassDecl node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1321
                node.sym = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1322
                super.visitClassDef(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1323
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1324
            public void visitMethodDef(JCMethodDecl node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1325
                node.sym = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1326
                super.visitMethodDef(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1327
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1328
            public void visitVarDef(JCVariableDecl node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1329
                node.sym = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1330
                super.visitVarDef(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1331
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1332
            public void visitNewClass(JCNewClass node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1333
                node.constructor = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1334
                super.visitNewClass(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1335
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1336
            public void visitAssignop(JCAssignOp node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1337
                node.operator = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1338
                super.visitAssignop(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1339
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1340
            public void visitUnary(JCUnary node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1341
                node.operator = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1342
                super.visitUnary(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1343
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1344
            public void visitBinary(JCBinary node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1345
                node.operator = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1346
                super.visitBinary(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1347
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1348
            public void visitSelect(JCFieldAccess node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1349
                node.sym = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1350
                super.visitSelect(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1351
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1352
            public void visitIdent(JCIdent node) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1353
                node.sym = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1354
                super.visitIdent(node);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1355
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1356
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
  1357
06bc494ca11e Initial load
duke
parents:
diff changeset
  1358
06bc494ca11e Initial load
duke
parents:
diff changeset
  1359
    private boolean moreToDo() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1360
        return filer.newFiles();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1361
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1362
06bc494ca11e Initial load
duke
parents:
diff changeset
  1363
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
  1364
     * {@inheritdoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1365
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
  1366
     * Command line options suitable for presenting to annotation
13844
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13841
diff changeset
  1367
     * processors.
56339cf983a3 7177970: fix issues in langtools doc comments
jjg
parents: 13841
diff changeset
  1368
     * {@literal "-Afoo=bar"} should be {@literal "-Afoo" => "bar"}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1369
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1370
    public Map<String,String> getOptions() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1371
        return processorOptions;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1372
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1373
06bc494ca11e Initial load
duke
parents:
diff changeset
  1374
    public Messager getMessager() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1375
        return messager;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1376
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1377
06bc494ca11e Initial load
duke
parents:
diff changeset
  1378
    public Filer getFiler() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1379
        return filer;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1380
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1381
06bc494ca11e Initial load
duke
parents:
diff changeset
  1382
    public JavacElements getElementUtils() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1383
        return elementUtils;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1384
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1385
06bc494ca11e Initial load
duke
parents:
diff changeset
  1386
    public JavacTypes getTypeUtils() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1387
        return typeUtils;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1388
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1389
06bc494ca11e Initial load
duke
parents:
diff changeset
  1390
    public SourceVersion getSourceVersion() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1391
        return Source.toSourceVersion(source);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1392
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1393
06bc494ca11e Initial load
duke
parents:
diff changeset
  1394
    public Locale getLocale() {
1471
57506cdfb7b4 6406133: JCDiagnostic.getMessage ignores locale argument
mcimadamore
parents: 1260
diff changeset
  1395
        return messages.getCurrentLocale();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1396
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1397
06bc494ca11e Initial load
duke
parents:
diff changeset
  1398
    public Set<Symbol.PackageSymbol> getSpecifiedPackages() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1399
        return specifiedPackages;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1400
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1401
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1402
    private static final Pattern allMatches = Pattern.compile(".*");
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1403
    public static final Pattern noMatches  = Pattern.compile("(\\P{all})+");
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1404
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1405
    /**
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1406
     * Convert import-style string for supported annotations into a
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1407
     * regex matching that string.  If the string is a valid
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1408
     * import-style string, return a regex that won't match anything.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1409
     */
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1410
    private static Pattern importStringToPattern(String s, Processor p, Log log) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1411
        if (isValidImportString(s)) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1412
            return validImportStringToPattern(s);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1413
        } else {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1414
            log.warning("proc.malformed.supported.string", s, p.getClass().getName());
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1415
            return noMatches; // won't match any valid identifier
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1416
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1417
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1418
06bc494ca11e Initial load
duke
parents:
diff changeset
  1419
    /**
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1420
     * Return true if the argument string is a valid import-style
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1421
     * string specifying claimed annotations; return false otherwise.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1422
     */
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1423
    public static boolean isValidImportString(String s) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1424
        if (s.equals("*"))
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1425
            return true;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1426
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1427
        boolean valid = true;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1428
        String t = s;
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1429
        int index = t.indexOf('*');
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1430
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1431
        if (index != -1) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1432
            // '*' must be last character...
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1433
            if (index == t.length() -1) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1434
                // ... any and preceding character must be '.'
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1435
                if ( index-1 >= 0 ) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1436
                    valid = t.charAt(index-1) == '.';
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1437
                    // Strip off ".*$" for identifier checks
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1438
                    t = t.substring(0, t.length()-2);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1439
                }
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1440
            } else
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1441
                return false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1442
        }
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1443
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1444
        // Verify string is off the form (javaId \.)+ or javaId
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1445
        if (valid) {
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1446
            String[] javaIds = t.split("\\.", t.length()+2);
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1447
            for(String javaId: javaIds)
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1448
                valid &= SourceVersion.isIdentifier(javaId);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1449
        }
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1450
        return valid;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1451
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1452
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1453
    public static Pattern validImportStringToPattern(String s) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1454
        if (s.equals("*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1455
            return allMatches;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1456
        } else {
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 4934
diff changeset
  1457
            String s_prime = s.replace(".", "\\.");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1458
06bc494ca11e Initial load
duke
parents:
diff changeset
  1459
            if (s_prime.endsWith("*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1460
                s_prime =  s_prime.substring(0, s_prime.length() - 1) + ".+";
06bc494ca11e Initial load
duke
parents:
diff changeset
  1461
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1462
06bc494ca11e Initial load
duke
parents:
diff changeset
  1463
            return Pattern.compile(s_prime);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1464
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1465
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1466
06bc494ca11e Initial load
duke
parents:
diff changeset
  1467
    /**
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5841
diff changeset
  1468
     * For internal use only.  This method will be
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1469
     * removed without warning.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1470
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1471
    public Context getContext() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1472
        return context;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1473
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1474
06bc494ca11e Initial load
duke
parents:
diff changeset
  1475
    public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1476
        return "javac ProcessingEnvironment";
06bc494ca11e Initial load
duke
parents:
diff changeset
  1477
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1478
06bc494ca11e Initial load
duke
parents:
diff changeset
  1479
    public static boolean isValidOptionName(String optionName) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1480
        for(String s : optionName.split("\\.", -1)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1481
            if (!SourceVersion.isIdentifier(s))
06bc494ca11e Initial load
duke
parents:
diff changeset
  1482
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1483
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1484
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1485
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1486
}