1 /*
   2  * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.tools.javac.processing;
  27 
  28 import java.io.Closeable;
  29 import java.io.IOException;
  30 import java.io.PrintWriter;
  31 import java.io.StringWriter;
  32 import java.lang.reflect.Method;
  33 import java.net.MalformedURLException;
  34 import java.net.URL;
  35 import java.nio.file.Path;
  36 import java.util.*;
  37 import java.util.Map.Entry;
  38 import java.util.function.Predicate;
  39 import java.util.regex.*;
  40 import java.util.stream.Collectors;
  41 
  42 import javax.annotation.processing.*;
  43 import javax.lang.model.SourceVersion;
  44 import javax.lang.model.element.*;
  45 import javax.lang.model.util.*;
  46 import javax.tools.JavaFileManager;
  47 import javax.tools.JavaFileObject;
  48 import javax.tools.JavaFileObject.Kind;
  49 import javax.tools.StandardJavaFileManager;
  50 
  51 import static javax.tools.StandardLocation.*;
  52 
  53 import com.sun.source.util.TaskEvent;
  54 import com.sun.tools.javac.api.MultiTaskListener;
  55 import com.sun.tools.javac.code.*;
  56 import com.sun.tools.javac.code.DeferredCompletionFailureHandler.Handler;
  57 import com.sun.tools.javac.code.Scope.WriteableScope;
  58 import com.sun.tools.javac.code.Source.Feature;
  59 import com.sun.tools.javac.code.Symbol.*;
  60 import com.sun.tools.javac.code.Type.ClassType;
  61 import com.sun.tools.javac.code.Types;
  62 import com.sun.tools.javac.comp.AttrContext;
  63 import com.sun.tools.javac.comp.Check;
  64 import com.sun.tools.javac.comp.Enter;
  65 import com.sun.tools.javac.comp.Env;
  66 import com.sun.tools.javac.comp.Modules;
  67 import com.sun.tools.javac.file.JavacFileManager;
  68 import com.sun.tools.javac.main.JavaCompiler;
  69 import com.sun.tools.javac.main.Option;
  70 import com.sun.tools.javac.model.JavacElements;
  71 import com.sun.tools.javac.model.JavacTypes;
  72 import com.sun.tools.javac.platform.PlatformDescription;
  73 import com.sun.tools.javac.platform.PlatformDescription.PluginInfo;
  74 import com.sun.tools.javac.resources.CompilerProperties.Errors;
  75 import com.sun.tools.javac.resources.CompilerProperties.Warnings;
  76 import com.sun.tools.javac.tree.*;
  77 import com.sun.tools.javac.tree.JCTree.*;
  78 import com.sun.tools.javac.util.Abort;
  79 import com.sun.tools.javac.util.Assert;
  80 import com.sun.tools.javac.util.ClientCodeException;
  81 import com.sun.tools.javac.util.Context;
  82 import com.sun.tools.javac.util.Convert;
  83 import com.sun.tools.javac.util.DefinedBy;
  84 import com.sun.tools.javac.util.DefinedBy.Api;
  85 import com.sun.tools.javac.util.Iterators;
  86 import com.sun.tools.javac.util.JCDiagnostic;
  87 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag;
  88 import com.sun.tools.javac.util.JavacMessages;
  89 import com.sun.tools.javac.util.List;
  90 import com.sun.tools.javac.util.Log;
  91 import com.sun.tools.javac.util.MatchingUtils;
  92 import com.sun.tools.javac.util.ModuleHelper;
  93 import com.sun.tools.javac.util.Name;
  94 import com.sun.tools.javac.util.Names;
  95 import com.sun.tools.javac.util.Options;
  96 
  97 import static com.sun.tools.javac.code.Lint.LintCategory.PROCESSING;
  98 import static com.sun.tools.javac.code.Kinds.Kind.*;
  99 import com.sun.tools.javac.comp.Annotate;
 100 import static com.sun.tools.javac.comp.CompileStates.CompileState;
 101 import static com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag.*;
 102 
 103 /**
 104  * Objects of this class hold and manage the state needed to support
 105  * annotation processing.
 106  *
 107  * <p><b>This is NOT part of any supported API.
 108  * If you write code that depends on this, you do so at your own risk.
 109  * This code and its internal interfaces are subject to change or
 110  * deletion without notice.</b>
 111  */
 112 public class JavacProcessingEnvironment implements ProcessingEnvironment, Closeable {
 113     private final Options options;
 114 
 115     private final boolean printProcessorInfo;
 116     private final boolean printRounds;
 117     private final boolean verbose;
 118     private final boolean lint;
 119     private final boolean fatalErrors;
 120     private final boolean werror;
 121     private final boolean showResolveErrors;
 122 
 123     private final JavacFiler filer;
 124     private final JavacMessager messager;
 125     private final JavacElements elementUtils;
 126     private final JavacTypes typeUtils;
 127     private final JavaCompiler compiler;
 128     private final Modules modules;
 129     private final Types types;
 130     private final Annotate annotate;
 131 
 132     /**
 133      * Holds relevant state history of which processors have been
 134      * used.
 135      */
 136     private DiscoveredProcessors discoveredProcs;
 137 
 138     /**
 139      * Map of processor-specific options.
 140      */
 141     private final Map<String, String> processorOptions;
 142 
 143     /**
 144      */
 145     private final Set<String> unmatchedProcessorOptions;
 146 
 147     /**
 148      * Annotations implicitly processed and claimed by javac.
 149      */
 150     private final Set<String> platformAnnotations;
 151 
 152     /**
 153      * Set of packages given on command line.
 154      */
 155     private Set<PackageSymbol> specifiedPackages = Collections.emptySet();
 156 
 157     /** The log to be used for error reporting.
 158      */
 159     final Log log;
 160 
 161     /** Diagnostic factory.
 162      */
 163     JCDiagnostic.Factory diags;
 164 
 165     /**
 166      * Source level of the compile.
 167      */
 168     Source source;
 169 
 170     private ClassLoader processorClassLoader;
 171     private ServiceLoader<Processor> serviceLoader;
 172     private SecurityException processorLoaderException;
 173 
 174     private final JavaFileManager fileManager;
 175 
 176     /**
 177      * JavacMessages object used for localization
 178      */
 179     private JavacMessages messages;
 180 
 181     private MultiTaskListener taskListener;
 182     private final Symtab symtab;
 183     private final DeferredCompletionFailureHandler dcfh;
 184     private final Names names;
 185     private final Enter enter;
 186     private final Completer initialCompleter;
 187     private final Check chk;
 188 
 189     private final Context context;
 190 
 191     /**
 192      * Support for preview language features.
 193      */
 194     private final Preview preview;
 195 
 196     /** Get the JavacProcessingEnvironment instance for this context. */
 197     public static JavacProcessingEnvironment instance(Context context) {
 198         JavacProcessingEnvironment instance = context.get(JavacProcessingEnvironment.class);
 199         if (instance == null)
 200             instance = new JavacProcessingEnvironment(context);
 201         return instance;
 202     }
 203 
 204     protected JavacProcessingEnvironment(Context context) {
 205         this.context = context;
 206         context.put(JavacProcessingEnvironment.class, this);
 207         log = Log.instance(context);
 208         source = Source.instance(context);
 209         diags = JCDiagnostic.Factory.instance(context);
 210         options = Options.instance(context);
 211         printProcessorInfo = options.isSet(Option.XPRINTPROCESSORINFO);
 212         printRounds = options.isSet(Option.XPRINTROUNDS);
 213         verbose = options.isSet(Option.VERBOSE);
 214         lint = Lint.instance(context).isEnabled(PROCESSING);
 215         compiler = JavaCompiler.instance(context);
 216         if (options.isSet(Option.PROC, "only") || options.isSet(Option.XPRINT)) {
 217             compiler.shouldStopPolicyIfNoError = CompileState.PROCESS;
 218         }
 219         fatalErrors = options.isSet("fatalEnterError");
 220         showResolveErrors = options.isSet("showResolveErrors");
 221         werror = options.isSet(Option.WERROR);
 222         fileManager = context.get(JavaFileManager.class);
 223         platformAnnotations = initPlatformAnnotations();
 224 
 225         // Initialize services before any processors are initialized
 226         // in case processors use them.
 227         filer = new JavacFiler(context);
 228         messager = new JavacMessager(context, this);
 229         elementUtils = JavacElements.instance(context);
 230         typeUtils = JavacTypes.instance(context);
 231         modules = Modules.instance(context);
 232         types = Types.instance(context);
 233         annotate = Annotate.instance(context);
 234         processorOptions = initProcessorOptions();
 235         unmatchedProcessorOptions = initUnmatchedProcessorOptions();
 236         messages = JavacMessages.instance(context);
 237         taskListener = MultiTaskListener.instance(context);
 238         symtab = Symtab.instance(context);
 239         dcfh = DeferredCompletionFailureHandler.instance(context);
 240         names = Names.instance(context);
 241         enter = Enter.instance(context);
 242         initialCompleter = ClassFinder.instance(context).getCompleter();
 243         chk = Check.instance(context);
 244         preview = Preview.instance(context);
 245         initProcessorLoader();
 246     }
 247 
 248     public void setProcessors(Iterable<? extends Processor> processors) {
 249         Assert.checkNull(discoveredProcs);
 250         initProcessorIterator(processors);
 251     }
 252 
 253     private Set<String> initPlatformAnnotations() {
 254         final String module_prefix =
 255             Feature.MODULES.allowedInSource(source) ? "java.base/" : "";
 256         return Set.of(module_prefix + "java.lang.Deprecated",
 257                       module_prefix + "java.lang.FunctionalInterface",
 258                       module_prefix + "java.lang.Override",
 259                       module_prefix + "java.lang.SafeVarargs",
 260                       module_prefix + "java.lang.SuppressWarnings",
 261 
 262                       module_prefix + "java.lang.annotation.Documented",
 263                       module_prefix + "java.lang.annotation.Inherited",
 264                       module_prefix + "java.lang.annotation.Native",
 265                       module_prefix + "java.lang.annotation.Repeatable",
 266                       module_prefix + "java.lang.annotation.Retention",
 267                       module_prefix + "java.lang.annotation.Target",
 268 
 269                       module_prefix + "java.io.Serial");
 270     }
 271 
 272     private void initProcessorLoader() {
 273         try {
 274             if (fileManager.hasLocation(ANNOTATION_PROCESSOR_MODULE_PATH)) {
 275                 try {
 276                     serviceLoader = fileManager.getServiceLoader(ANNOTATION_PROCESSOR_MODULE_PATH, Processor.class);
 277                 } catch (IOException e) {
 278                     throw new Abort(e);
 279                 }
 280             } else {
 281                 // If processorpath is not explicitly set, use the classpath.
 282                 processorClassLoader = fileManager.hasLocation(ANNOTATION_PROCESSOR_PATH)
 283                     ? fileManager.getClassLoader(ANNOTATION_PROCESSOR_PATH)
 284                     : fileManager.getClassLoader(CLASS_PATH);
 285 
 286                 if (options.isSet("accessInternalAPI"))
 287                     ModuleHelper.addExports(getClass().getModule(), processorClassLoader.getUnnamedModule());
 288 
 289                 if (processorClassLoader != null && processorClassLoader instanceof Closeable) {
 290                     compiler.closeables = compiler.closeables.prepend((Closeable) processorClassLoader);
 291                 }
 292             }
 293         } catch (SecurityException e) {
 294             processorLoaderException = e;
 295         }
 296     }
 297 
 298     private void initProcessorIterator(Iterable<? extends Processor> processors) {
 299         Iterator<? extends Processor> processorIterator;
 300 
 301         if (options.isSet(Option.XPRINT)) {
 302             try {
 303                 processorIterator = List.of(new PrintingProcessor()).iterator();
 304             } catch (Throwable t) {
 305                 AssertionError assertError =
 306                     new AssertionError("Problem instantiating PrintingProcessor.");
 307                 assertError.initCause(t);
 308                 throw assertError;
 309             }
 310         } else if (processors != null) {
 311             processorIterator = processors.iterator();
 312         } else {
 313             if (processorLoaderException == null) {
 314                 /*
 315                  * If the "-processor" option is used, search the appropriate
 316                  * path for the named class.  Otherwise, use a service
 317                  * provider mechanism to create the processor iterator.
 318                  */
 319                 String processorNames = options.get(Option.PROCESSOR);
 320                 if (fileManager.hasLocation(ANNOTATION_PROCESSOR_MODULE_PATH)) {
 321                     processorIterator = (processorNames == null) ?
 322                             new ServiceIterator(serviceLoader, log) :
 323                             new NameServiceIterator(serviceLoader, log, processorNames);
 324                 } else if (processorNames != null) {
 325                     processorIterator = new NameProcessIterator(processorNames, processorClassLoader, log);
 326                 } else {
 327                     processorIterator = new ServiceIterator(processorClassLoader, log);
 328                 }
 329             } else {
 330                 /*
 331                  * A security exception will occur if we can't create a classloader.
 332                  * Ignore the exception if, with hindsight, we didn't need it anyway
 333                  * (i.e. no processor was specified either explicitly, or implicitly,
 334                  * in service configuration file.) Otherwise, we cannot continue.
 335                  */
 336                 processorIterator = handleServiceLoaderUnavailability("proc.cant.create.loader",
 337                         processorLoaderException);
 338             }
 339         }
 340         PlatformDescription platformProvider = context.get(PlatformDescription.class);
 341         java.util.List<Processor> platformProcessors = Collections.emptyList();
 342         if (platformProvider != null) {
 343             platformProcessors = platformProvider.getAnnotationProcessors()
 344                                                  .stream()
 345                                                  .map(PluginInfo::getPlugin)
 346                                                  .collect(Collectors.toList());
 347         }
 348         List<Iterator<? extends Processor>> iterators = List.of(processorIterator,
 349                                                                 platformProcessors.iterator());
 350         Iterator<? extends Processor> compoundIterator =
 351                 Iterators.createCompoundIterator(iterators, i -> i);
 352         discoveredProcs = new DiscoveredProcessors(compoundIterator);
 353     }
 354 
 355     public <S> ServiceLoader<S> getServiceLoader(Class<S> service) {
 356         if (fileManager.hasLocation(ANNOTATION_PROCESSOR_MODULE_PATH)) {
 357             try {
 358                 return fileManager.getServiceLoader(ANNOTATION_PROCESSOR_MODULE_PATH, service);
 359             } catch (IOException e) {
 360                 throw new Abort(e);
 361             }
 362         } else {
 363             return ServiceLoader.load(service, getProcessorClassLoader());
 364         }
 365     }
 366 
 367     /**
 368      * Returns an empty processor iterator if no processors are on the
 369      * relevant path, otherwise if processors are present, logs an
 370      * error.  Called when a service loader is unavailable for some
 371      * reason, either because a service loader class cannot be found
 372      * or because a security policy prevents class loaders from being
 373      * created.
 374      *
 375      * @param key The resource key to use to log an error message
 376      * @param e   If non-null, pass this exception to Abort
 377      */
 378     private Iterator<Processor> handleServiceLoaderUnavailability(String key, Exception e) {
 379         if (fileManager instanceof JavacFileManager) {
 380             StandardJavaFileManager standardFileManager = (JavacFileManager) fileManager;
 381             Iterable<? extends Path> workingPath = fileManager.hasLocation(ANNOTATION_PROCESSOR_PATH)
 382                 ? standardFileManager.getLocationAsPaths(ANNOTATION_PROCESSOR_PATH)
 383                 : standardFileManager.getLocationAsPaths(CLASS_PATH);
 384 
 385             if (needClassLoader(options.get(Option.PROCESSOR), workingPath) )
 386                 handleException(key, e);
 387 
 388         } else {
 389             handleException(key, e);
 390         }
 391 
 392         java.util.List<Processor> pl = Collections.emptyList();
 393         return pl.iterator();
 394     }
 395 
 396     /**
 397      * Handle a security exception thrown during initializing the
 398      * Processor iterator.
 399      */
 400     private void handleException(String key, Exception e) {
 401         if (e != null) {
 402             log.error(key, e.getLocalizedMessage());
 403             throw new Abort(e);
 404         } else {
 405             log.error(key);
 406             throw new Abort();
 407         }
 408     }
 409 
 410     /**
 411      * Use a service loader appropriate for the platform to provide an
 412      * iterator over annotations processors; fails if a loader is
 413      * needed but unavailable.
 414      */
 415     private class ServiceIterator implements Iterator<Processor> {
 416         Iterator<Processor> iterator;
 417         Log log;
 418         ServiceLoader<Processor> loader;
 419 
 420         ServiceIterator(ClassLoader classLoader, Log log) {
 421             this.log = log;
 422             try {
 423                 try {
 424                     loader = ServiceLoader.load(Processor.class, classLoader);
 425                     this.iterator = loader.iterator();
 426                 } catch (Exception e) {
 427                     // Fail softly if a loader is not actually needed.
 428                     this.iterator = handleServiceLoaderUnavailability("proc.no.service", null);
 429                 }
 430             } catch (Throwable t) {
 431                 log.error(Errors.ProcServiceProblem);
 432                 throw new Abort(t);
 433             }
 434         }
 435 
 436         ServiceIterator(ServiceLoader<Processor> loader, Log log) {
 437             this.log = log;
 438             this.loader = loader;
 439             this.iterator = loader.iterator();
 440         }
 441 
 442         @Override
 443         public boolean hasNext() {
 444             try {
 445                 return internalHasNext();
 446             } catch(ServiceConfigurationError sce) {
 447                 log.error(Errors.ProcBadConfigFile(sce.getLocalizedMessage()));
 448                 throw new Abort(sce);
 449             } catch (UnsupportedClassVersionError ucve) {
 450                 log.error(Errors.ProcCantLoadClass(ucve.getLocalizedMessage()));
 451                 throw new Abort(ucve);
 452             } catch (ClassFormatError cfe) {
 453                 log.error(Errors.ProcCantLoadClass(cfe.getLocalizedMessage()));
 454                 throw new Abort(cfe);
 455             } catch (Throwable t) {
 456                 log.error(Errors.ProcBadConfigFile(t.getLocalizedMessage()));
 457                 throw new Abort(t);
 458             }
 459         }
 460 
 461         boolean internalHasNext() {
 462             return iterator.hasNext();
 463         }
 464 
 465         @Override
 466         public Processor next() {
 467             try {
 468                 return internalNext();
 469             } catch (ServiceConfigurationError sce) {
 470                 log.error(Errors.ProcBadConfigFile(sce.getLocalizedMessage()));
 471                 throw new Abort(sce);
 472             } catch (Throwable t) {
 473                 log.error(Errors.ProcBadConfigFile(t.getLocalizedMessage()));
 474                 throw new Abort(t);
 475             }
 476         }
 477 
 478         Processor internalNext() {
 479             return iterator.next();
 480         }
 481 
 482         @Override
 483         public void remove() {
 484             throw new UnsupportedOperationException();
 485         }
 486 
 487         public void close() {
 488             if (loader != null) {
 489                 try {
 490                     loader.reload();
 491                 } catch(Exception e) {
 492                     // Ignore problems during a call to reload.
 493                 }
 494             }
 495         }
 496     }
 497 
 498     private class NameServiceIterator extends ServiceIterator {
 499         private Map<String, Processor> namedProcessorsMap = new HashMap<>();;
 500         private Iterator<String> processorNames = null;
 501         private Processor nextProc = null;
 502 
 503         public NameServiceIterator(ServiceLoader<Processor> loader, Log log, String theNames) {
 504             super(loader, log);
 505             this.processorNames = Arrays.asList(theNames.split(",")).iterator();
 506         }
 507 
 508         @Override
 509         boolean internalHasNext() {
 510             if (nextProc != null) {
 511                 return true;
 512             }
 513             if (!processorNames.hasNext()) {
 514                 namedProcessorsMap = null;
 515                 return false;
 516             }
 517             String processorName = processorNames.next();
 518             Processor theProcessor = namedProcessorsMap.get(processorName);
 519             if (theProcessor != null) {
 520                 namedProcessorsMap.remove(processorName);
 521                 nextProc = theProcessor;
 522                 return true;
 523             } else {
 524                 while (iterator.hasNext()) {
 525                     theProcessor = iterator.next();
 526                     String name = theProcessor.getClass().getName();
 527                     if (name.equals(processorName)) {
 528                         nextProc = theProcessor;
 529                         return true;
 530                     } else {
 531                         namedProcessorsMap.put(name, theProcessor);
 532                     }
 533                 }
 534                 log.error(Errors.ProcProcessorNotFound(processorName));
 535                 return false;
 536             }
 537         }
 538 
 539         @Override
 540         Processor internalNext() {
 541             if (hasNext()) {
 542                 Processor p = nextProc;
 543                 nextProc = null;
 544                 return p;
 545             } else {
 546                 throw new NoSuchElementException();
 547             }
 548         }
 549     }
 550 
 551     private static class NameProcessIterator implements Iterator<Processor> {
 552         Processor nextProc = null;
 553         Iterator<String> names;
 554         ClassLoader processorCL;
 555         Log log;
 556 
 557         NameProcessIterator(String names, ClassLoader processorCL, Log log) {
 558             this.names = Arrays.asList(names.split(",")).iterator();
 559             this.processorCL = processorCL;
 560             this.log = log;
 561         }
 562 
 563         public boolean hasNext() {
 564             if (nextProc != null)
 565                 return true;
 566             else {
 567                 if (!names.hasNext()) {
 568                     return false;
 569                 } else {
 570                     Processor processor = getNextProcessor(names.next());
 571                     if (processor == null) {
 572                         return false;
 573                     } else {
 574                         nextProc = processor;
 575                         return true;
 576                     }
 577                 }
 578             }
 579         }
 580 
 581         private Processor getNextProcessor(String processorName) {
 582             try {
 583                 try {
 584                     Class<?> processorClass = processorCL.loadClass(processorName);
 585                     ensureReadable(processorClass);
 586                     return (Processor) processorClass.getConstructor().newInstance();
 587                 } catch (ClassNotFoundException cnfe) {
 588                     log.error(Errors.ProcProcessorNotFound(processorName));
 589                     return null;
 590                 } catch (ClassCastException cce) {
 591                     log.error(Errors.ProcProcessorWrongType(processorName));
 592                     return null;
 593                 } catch (Exception e ) {
 594                     log.error(Errors.ProcProcessorCantInstantiate(processorName));
 595                     return null;
 596                 }
 597             } catch (ClientCodeException e) {
 598                 throw e;
 599             } catch (Throwable t) {
 600                 throw new AnnotationProcessingError(t);
 601             }
 602         }
 603 
 604         public Processor next() {
 605             if (hasNext()) {
 606                 Processor p = nextProc;
 607                 nextProc = null;
 608                 return p;
 609             } else
 610                 throw new NoSuchElementException();
 611         }
 612 
 613         public void remove () {
 614             throw new UnsupportedOperationException();
 615         }
 616 
 617         /**
 618          * Ensures that the module of the given class is readable to this
 619          * module.
 620          */
 621         private void ensureReadable(Class<?> targetClass) {
 622             try {
 623                 Method getModuleMethod = Class.class.getMethod("getModule");
 624                 Object thisModule = getModuleMethod.invoke(this.getClass());
 625                 Object targetModule = getModuleMethod.invoke(targetClass);
 626 
 627                 Class<?> moduleClass = getModuleMethod.getReturnType();
 628                 Method addReadsMethod = moduleClass.getMethod("addReads", moduleClass);
 629                 addReadsMethod.invoke(thisModule, targetModule);
 630             } catch (NoSuchMethodException e) {
 631                 // ignore
 632             } catch (Exception e) {
 633                 throw new InternalError(e);
 634             }
 635         }
 636     }
 637 
 638     public boolean atLeastOneProcessor() {
 639         return discoveredProcs.iterator().hasNext();
 640     }
 641 
 642     private Map<String, String> initProcessorOptions() {
 643         Set<String> keySet = options.keySet();
 644         Map<String, String> tempOptions = new LinkedHashMap<>();
 645 
 646         for(String key : keySet) {
 647             if (key.startsWith("-A") && key.length() > 2) {
 648                 int sepIndex = key.indexOf('=');
 649                 String candidateKey = null;
 650                 String candidateValue = null;
 651 
 652                 if (sepIndex == -1)
 653                     candidateKey = key.substring(2);
 654                 else if (sepIndex >= 3) {
 655                     candidateKey = key.substring(2, sepIndex);
 656                     candidateValue = (sepIndex < key.length()-1)?
 657                         key.substring(sepIndex+1) : null;
 658                 }
 659                 tempOptions.put(candidateKey, candidateValue);
 660             }
 661         }
 662 
 663         PlatformDescription platformProvider = context.get(PlatformDescription.class);
 664 
 665         if (platformProvider != null) {
 666             for (PluginInfo<Processor> ap : platformProvider.getAnnotationProcessors()) {
 667                 tempOptions.putAll(ap.getOptions());
 668             }
 669         }
 670 
 671         return Collections.unmodifiableMap(tempOptions);
 672     }
 673 
 674     private Set<String> initUnmatchedProcessorOptions() {
 675         Set<String> unmatchedProcessorOptions = new HashSet<>();
 676         unmatchedProcessorOptions.addAll(processorOptions.keySet());
 677         return unmatchedProcessorOptions;
 678     }
 679 
 680     /**
 681      * State about how a processor has been used by the tool.  If a
 682      * processor has been used on a prior round, its process method is
 683      * called on all subsequent rounds, perhaps with an empty set of
 684      * annotations to process.  The {@code annotationSupported} method
 685      * caches the supported annotation information from the first (and
 686      * only) getSupportedAnnotationTypes call to the processor.
 687      */
 688     static class ProcessorState {
 689         public Processor processor;
 690         public boolean   contributed;
 691         private Set<String> supportedAnnotationStrings; // Used for warning generation
 692         private Set<Pattern> supportedAnnotationPatterns;
 693         private Set<String> supportedOptionNames;
 694 
 695         ProcessorState(Processor p, Log log, Source source, DeferredCompletionFailureHandler dcfh,
 696                        boolean allowModules, ProcessingEnvironment env, boolean lint) {
 697             processor = p;
 698             contributed = false;
 699 
 700             Handler prevDeferredHandler = dcfh.setHandler(dcfh.userCodeHandler);
 701             try {
 702                 processor.init(env);
 703 
 704                 checkSourceVersionCompatibility(source, log);
 705 
 706 
 707                 // Check for direct duplicates in the strings of
 708                 // supported annotation types. Do not check for
 709                 // duplicates that would result after stripping of
 710                 // module prefixes.
 711                 supportedAnnotationStrings = new LinkedHashSet<>();
 712                 supportedAnnotationPatterns = new LinkedHashSet<>();
 713                 for (String annotationPattern : processor.getSupportedAnnotationTypes()) {
 714                     boolean patternAdded = supportedAnnotationStrings.add(annotationPattern);
 715 
 716                     supportedAnnotationPatterns.
 717                         add(importStringToPattern(allowModules, annotationPattern,
 718                                                   processor, log, lint));
 719                     if (lint && !patternAdded) {
 720                         log.warning(Warnings.ProcDuplicateSupportedAnnotation(annotationPattern,
 721                                                                               p.getClass().getName()));
 722                     }
 723                 }
 724 
 725                 // If a processor supports "*", that matches
 726                 // everything and other entries are redundant. With
 727                 // more work, it could be checked that the supported
 728                 // annotation types were otherwise non-overlapping
 729                 // with each other in other cases, for example "foo.*"
 730                 // and "foo.bar.*".
 731                 if (lint &&
 732                     supportedAnnotationPatterns.contains(MatchingUtils.validImportStringToPattern("*")) &&
 733                     supportedAnnotationPatterns.size() > 1) {
 734                     log.warning(Warnings.ProcRedundantTypesWithWildcard(p.getClass().getName()));
 735                 }
 736 
 737                 supportedOptionNames = new LinkedHashSet<>();
 738                 for (String optionName : processor.getSupportedOptions() ) {
 739                     if (checkOptionName(optionName, log)) {
 740                         boolean optionAdded = supportedOptionNames.add(optionName);
 741                         if (lint && !optionAdded) {
 742                             log.warning(Warnings.ProcDuplicateOptionName(optionName,
 743                                                                          p.getClass().getName()));
 744                         }
 745                     }
 746                 }
 747 
 748             } catch (ClientCodeException e) {
 749                 throw e;
 750             } catch (Throwable t) {
 751                 throw new AnnotationProcessingError(t);
 752             } finally {
 753                 dcfh.setHandler(prevDeferredHandler);
 754             }
 755         }
 756 
 757         /**
 758          * Checks whether or not a processor's source version is
 759          * compatible with the compilation source version.  The
 760          * processor's source version needs to be greater than or
 761          * equal to the source version of the compile.
 762          */
 763         private void checkSourceVersionCompatibility(Source source, Log log) {
 764             SourceVersion procSourceVersion = processor.getSupportedSourceVersion();
 765             if (procSourceVersion.compareTo(Source.toSourceVersion(source)) < 0 )  {
 766                 log.warning(Warnings.ProcProcessorIncompatibleSourceVersion(procSourceVersion,
 767                                                                             processor.getClass().getName(),
 768                                                                             source.name));
 769             }
 770         }
 771 
 772         private boolean checkOptionName(String optionName, Log log) {
 773             boolean valid = isValidOptionName(optionName);
 774             if (!valid)
 775                 log.error(Errors.ProcProcessorBadOptionName(optionName,
 776                                                             processor.getClass().getName()));
 777             return valid;
 778         }
 779 
 780         public boolean annotationSupported(String annotationName) {
 781             for(Pattern p: supportedAnnotationPatterns) {
 782                 if (p.matcher(annotationName).matches())
 783                     return true;
 784             }
 785             return false;
 786         }
 787 
 788         /**
 789          * Remove options that are matched by this processor.
 790          */
 791         public void removeSupportedOptions(Set<String> unmatchedProcessorOptions) {
 792             unmatchedProcessorOptions.removeAll(supportedOptionNames);
 793         }
 794     }
 795 
 796     // TODO: These two classes can probably be rewritten better...
 797     /**
 798      * This class holds information about the processors that have
 799      * been discovered so far as well as the means to discover more, if
 800      * necessary.  A single iterator should be used per round of
 801      * annotation processing.  The iterator first visits already
 802      * discovered processors then fails over to the service provider
 803      * mechanism if additional queries are made.
 804      */
 805     class DiscoveredProcessors implements Iterable<ProcessorState> {
 806 
 807         class ProcessorStateIterator implements Iterator<ProcessorState> {
 808             DiscoveredProcessors psi;
 809             Iterator<ProcessorState> innerIter;
 810             boolean onProcInterator;
 811 
 812             ProcessorStateIterator(DiscoveredProcessors psi) {
 813                 this.psi = psi;
 814                 this.innerIter = psi.procStateList.iterator();
 815                 this.onProcInterator = false;
 816             }
 817 
 818             public ProcessorState next() {
 819                 if (!onProcInterator) {
 820                     if (innerIter.hasNext())
 821                         return innerIter.next();
 822                     else
 823                         onProcInterator = true;
 824                 }
 825 
 826                 if (psi.processorIterator.hasNext()) {
 827                     ProcessorState ps = new ProcessorState(psi.processorIterator.next(),
 828                                                            log, source, dcfh,
 829                                                            Feature.MODULES.allowedInSource(source),
 830                                                            JavacProcessingEnvironment.this,
 831                                                            lint);
 832                     psi.procStateList.add(ps);
 833                     return ps;
 834                 } else
 835                     throw new NoSuchElementException();
 836             }
 837 
 838             public boolean hasNext() {
 839                 if (onProcInterator)
 840                     return  psi.processorIterator.hasNext();
 841                 else
 842                     return innerIter.hasNext() || psi.processorIterator.hasNext();
 843             }
 844 
 845             public void remove () {
 846                 throw new UnsupportedOperationException();
 847             }
 848 
 849             /**
 850              * Run all remaining processors on the procStateList that
 851              * have not already run this round with an empty set of
 852              * annotations.
 853              */
 854             public void runContributingProcs(RoundEnvironment re) {
 855                 if (!onProcInterator) {
 856                     Set<TypeElement> emptyTypeElements = Collections.emptySet();
 857                     while(innerIter.hasNext()) {
 858                         ProcessorState ps = innerIter.next();
 859                         if (ps.contributed)
 860                             callProcessor(ps.processor, emptyTypeElements, re);
 861                     }
 862                 }
 863             }
 864         }
 865 
 866         Iterator<? extends Processor> processorIterator;
 867         ArrayList<ProcessorState>  procStateList;
 868 
 869         public ProcessorStateIterator iterator() {
 870             return new ProcessorStateIterator(this);
 871         }
 872 
 873         DiscoveredProcessors(Iterator<? extends Processor> processorIterator) {
 874             this.processorIterator = processorIterator;
 875             this.procStateList = new ArrayList<>();
 876         }
 877 
 878         /**
 879          * Free jar files, etc. if using a service loader.
 880          */
 881         public void close() {
 882             if (processorIterator != null &&
 883                 processorIterator instanceof ServiceIterator) {
 884                 ((ServiceIterator) processorIterator).close();
 885             }
 886         }
 887     }
 888 
 889     private void discoverAndRunProcs(Set<TypeElement> annotationsPresent,
 890                                      List<ClassSymbol> topLevelClasses,
 891                                      List<PackageSymbol> packageInfoFiles,
 892                                      List<ModuleSymbol> moduleInfoFiles) {
 893         Map<String, TypeElement> unmatchedAnnotations = new HashMap<>(annotationsPresent.size());
 894 
 895         for(TypeElement a  : annotationsPresent) {
 896             ModuleElement mod = elementUtils.getModuleOf(a);
 897             String moduleSpec = Feature.MODULES.allowedInSource(source) && mod != null ? mod.getQualifiedName() + "/" : "";
 898             unmatchedAnnotations.put(moduleSpec + a.getQualifiedName().toString(),
 899                                      a);
 900         }
 901 
 902         // Give "*" processors a chance to match
 903         if (unmatchedAnnotations.size() == 0)
 904             unmatchedAnnotations.put("", null);
 905 
 906         DiscoveredProcessors.ProcessorStateIterator psi = discoveredProcs.iterator();
 907         // TODO: Create proper argument values; need past round
 908         // information to fill in this constructor.  Note that the 1
 909         // st round of processing could be the last round if there
 910         // were parse errors on the initial source files; however, we
 911         // are not doing processing in that case.
 912 
 913         Set<Element> rootElements = new LinkedHashSet<>();
 914         rootElements.addAll(topLevelClasses);
 915         rootElements.addAll(packageInfoFiles);
 916         rootElements.addAll(moduleInfoFiles);
 917         rootElements = Collections.unmodifiableSet(rootElements);
 918 
 919         RoundEnvironment renv = new JavacRoundEnvironment(false,
 920                                                           false,
 921                                                           rootElements,
 922                                                           JavacProcessingEnvironment.this);
 923 
 924         while(unmatchedAnnotations.size() > 0 && psi.hasNext() ) {
 925             ProcessorState ps = psi.next();
 926             Set<String>  matchedNames = new HashSet<>();
 927             Set<TypeElement> typeElements = new LinkedHashSet<>();
 928 
 929             for (Map.Entry<String, TypeElement> entry: unmatchedAnnotations.entrySet()) {
 930                 String unmatchedAnnotationName = entry.getKey();
 931                 if (ps.annotationSupported(unmatchedAnnotationName) ) {
 932                     matchedNames.add(unmatchedAnnotationName);
 933                     TypeElement te = entry.getValue();
 934                     if (te != null)
 935                         typeElements.add(te);
 936                 }
 937             }
 938 
 939             if (matchedNames.size() > 0 || ps.contributed) {
 940                 boolean processingResult = callProcessor(ps.processor, typeElements, renv);
 941                 ps.contributed = true;
 942                 ps.removeSupportedOptions(unmatchedProcessorOptions);
 943 
 944                 if (printProcessorInfo || verbose) {
 945                     log.printLines("x.print.processor.info",
 946                             ps.processor.getClass().getName(),
 947                             matchedNames.toString(),
 948                             processingResult);
 949                 }
 950 
 951                 if (processingResult) {
 952                     unmatchedAnnotations.keySet().removeAll(matchedNames);
 953                 }
 954 
 955             }
 956         }
 957         unmatchedAnnotations.remove("");
 958 
 959         if (lint && unmatchedAnnotations.size() > 0) {
 960             // Remove annotations processed by javac
 961             unmatchedAnnotations.keySet().removeAll(platformAnnotations);
 962             if (unmatchedAnnotations.size() > 0) {
 963                 log.warning(Warnings.ProcAnnotationsWithoutProcessors(unmatchedAnnotations.keySet()));
 964             }
 965         }
 966 
 967         // Run contributing processors that haven't run yet
 968         psi.runContributingProcs(renv);
 969     }
 970 
 971     /**
 972      * Computes the set of annotations on the symbol in question.
 973      * Leave class public for external testing purposes.
 974      */
 975     public static class ComputeAnnotationSet extends
 976         ElementScanner9<Set<TypeElement>, Set<TypeElement>> {
 977         final Elements elements;
 978 
 979         public ComputeAnnotationSet(Elements elements) {
 980             super();
 981             this.elements = elements;
 982         }
 983 
 984         @Override @DefinedBy(Api.LANGUAGE_MODEL)
 985         public Set<TypeElement> visitPackage(PackageElement e, Set<TypeElement> p) {
 986             // Don't scan enclosed elements of a package
 987             return p;
 988         }
 989 
 990         @Override @DefinedBy(Api.LANGUAGE_MODEL)
 991         public Set<TypeElement> visitType(TypeElement e, Set<TypeElement> p) {
 992             // Type parameters are not considered to be enclosed by a type
 993             scan(e.getTypeParameters(), p);
 994             return super.visitType(e, p);
 995         }
 996 
 997         @Override @DefinedBy(Api.LANGUAGE_MODEL)
 998         public Set<TypeElement> visitExecutable(ExecutableElement e, Set<TypeElement> p) {
 999             // Type parameters are not considered to be enclosed by an executable
1000             scan(e.getTypeParameters(), p);
1001             return super.visitExecutable(e, p);
1002         }
1003 
1004         void addAnnotations(Element e, Set<TypeElement> p) {
1005             for (AnnotationMirror annotationMirror :
1006                      elements.getAllAnnotationMirrors(e) ) {
1007                 Element e2 = annotationMirror.getAnnotationType().asElement();
1008                 p.add((TypeElement) e2);
1009             }
1010         }
1011 
1012         @Override @DefinedBy(Api.LANGUAGE_MODEL)
1013         public Set<TypeElement> scan(Element e, Set<TypeElement> p) {
1014             addAnnotations(e, p);
1015             return super.scan(e, p);
1016         }
1017     }
1018 
1019     private boolean callProcessor(Processor proc,
1020                                          Set<? extends TypeElement> tes,
1021                                          RoundEnvironment renv) {
1022         Handler prevDeferredHandler = dcfh.setHandler(dcfh.userCodeHandler);
1023         try {
1024             return proc.process(tes, renv);
1025         } catch (ClassFinder.BadClassFile ex) {
1026             log.error(Errors.ProcCantAccess1(ex.sym, ex.getDetailValue()));
1027             return false;
1028         } catch (CompletionFailure ex) {
1029             StringWriter out = new StringWriter();
1030             ex.printStackTrace(new PrintWriter(out));
1031             log.error(Errors.ProcCantAccess(ex.sym, ex.getDetailValue(), out.toString()));
1032             return false;
1033         } catch (ClientCodeException e) {
1034             throw e;
1035         } catch (Throwable t) {
1036             throw new AnnotationProcessingError(t);
1037         } finally {
1038             dcfh.setHandler(prevDeferredHandler);
1039         }
1040     }
1041 
1042     /**
1043      * Helper object for a single round of annotation processing.
1044      */
1045     class Round {
1046         /** The round number. */
1047         final int number;
1048         /** The diagnostic handler for the round. */
1049         final Log.DeferredDiagnosticHandler deferredDiagnosticHandler;
1050 
1051         /** The ASTs to be compiled. */
1052         List<JCCompilationUnit> roots;
1053         /** The trees that need to be cleaned - includes roots and implicitly parsed trees. */
1054         Set<JCCompilationUnit> treesToClean;
1055         /** The classes to be compiler that have were generated. */
1056         Map<ModuleSymbol, Map<String, JavaFileObject>> genClassFiles;
1057 
1058         /** The set of annotations to be processed this round. */
1059         Set<TypeElement> annotationsPresent;
1060         /** The set of top level classes to be processed this round. */
1061         List<ClassSymbol> topLevelClasses;
1062         /** The set of package-info files to be processed this round. */
1063         List<PackageSymbol> packageInfoFiles;
1064         /** The set of module-info files to be processed this round. */
1065         List<ModuleSymbol> moduleInfoFiles;
1066 
1067         /** Create a round (common code). */
1068         private Round(int number, Set<JCCompilationUnit> treesToClean,
1069                 Log.DeferredDiagnosticHandler deferredDiagnosticHandler) {
1070             this.number = number;
1071 
1072             if (number == 1) {
1073                 Assert.checkNonNull(deferredDiagnosticHandler);
1074                 this.deferredDiagnosticHandler = deferredDiagnosticHandler;
1075             } else {
1076                 this.deferredDiagnosticHandler = new Log.DeferredDiagnosticHandler(log);
1077                 compiler.setDeferredDiagnosticHandler(this.deferredDiagnosticHandler);
1078             }
1079 
1080             // the following will be populated as needed
1081             topLevelClasses  = List.nil();
1082             packageInfoFiles = List.nil();
1083             moduleInfoFiles = List.nil();
1084             this.treesToClean = treesToClean;
1085         }
1086 
1087         /** Create the first round. */
1088         Round(List<JCCompilationUnit> roots,
1089               List<ClassSymbol> classSymbols,
1090               Set<JCCompilationUnit> treesToClean,
1091               Log.DeferredDiagnosticHandler deferredDiagnosticHandler) {
1092             this(1, treesToClean, deferredDiagnosticHandler);
1093             this.roots = roots;
1094             genClassFiles = new HashMap<>();
1095 
1096             // The reverse() in the following line is to maintain behavioural
1097             // compatibility with the previous revision of the code. Strictly speaking,
1098             // it should not be necessary, but a javah golden file test fails without it.
1099             topLevelClasses =
1100                 getTopLevelClasses(roots).prependList(classSymbols.reverse());
1101 
1102             packageInfoFiles = getPackageInfoFiles(roots);
1103 
1104             moduleInfoFiles = getModuleInfoFiles(roots);
1105 
1106             findAnnotationsPresent();
1107         }
1108 
1109         /** Create a new round. */
1110         private Round(Round prev,
1111                 Set<JavaFileObject> newSourceFiles, Map<ModuleSymbol, Map<String,JavaFileObject>> newClassFiles) {
1112             this(prev.number+1, prev.treesToClean, null);
1113             prev.newRound();
1114             this.genClassFiles = prev.genClassFiles;
1115 
1116             //parse the generated files even despite errors reported so far, to eliminate
1117             //recoverable errors related to the type declared in the generated files:
1118             List<JCCompilationUnit> parsedFiles = compiler.parseFiles(newSourceFiles, true);
1119             roots = prev.roots.appendList(parsedFiles);
1120 
1121             // Check for errors after parsing
1122             if (unrecoverableError()) {
1123                 compiler.initModules(List.nil());
1124                 return;
1125             }
1126 
1127             roots = compiler.initModules(roots);
1128 
1129             enterClassFiles(genClassFiles);
1130             List<ClassSymbol> newClasses = enterClassFiles(newClassFiles);
1131             for (Entry<ModuleSymbol, Map<String, JavaFileObject>> moduleAndClassFiles : newClassFiles.entrySet()) {
1132                 genClassFiles.computeIfAbsent(moduleAndClassFiles.getKey(), m -> new LinkedHashMap<>()).putAll(moduleAndClassFiles.getValue());
1133             }
1134             enterTrees(roots);
1135 
1136             if (unrecoverableError())
1137                 return;
1138 
1139             topLevelClasses = join(
1140                     getTopLevelClasses(parsedFiles),
1141                     getTopLevelClassesFromClasses(newClasses));
1142 
1143             packageInfoFiles = join(
1144                     getPackageInfoFiles(parsedFiles),
1145                     getPackageInfoFilesFromClasses(newClasses));
1146 
1147             moduleInfoFiles = List.nil(); //module-info cannot be generated
1148 
1149             findAnnotationsPresent();
1150         }
1151 
1152         /** Create the next round to be used. */
1153         Round next(Set<JavaFileObject> newSourceFiles, Map<ModuleSymbol, Map<String, JavaFileObject>> newClassFiles) {
1154             return new Round(this, newSourceFiles, newClassFiles);
1155         }
1156 
1157         /** Prepare the compiler for the final compilation. */
1158         void finalCompiler() {
1159             newRound();
1160         }
1161 
1162         /** Return the number of errors found so far in this round.
1163          * This may include uncoverable errors, such as parse errors,
1164          * and transient errors, such as missing symbols. */
1165         int errorCount() {
1166             return compiler.errorCount();
1167         }
1168 
1169         /** Return the number of warnings found so far in this round. */
1170         int warningCount() {
1171             return compiler.warningCount();
1172         }
1173 
1174         /** Return whether or not an unrecoverable error has occurred. */
1175         boolean unrecoverableError() {
1176             if (messager.errorRaised())
1177                 return true;
1178 
1179             for (JCDiagnostic d: deferredDiagnosticHandler.getDiagnostics()) {
1180                 switch (d.getKind()) {
1181                     case WARNING:
1182                         if (werror)
1183                             return true;
1184                         break;
1185 
1186                     case ERROR:
1187                         if (fatalErrors || !d.isFlagSet(RECOVERABLE))
1188                             return true;
1189                         break;
1190                 }
1191             }
1192 
1193             return false;
1194         }
1195 
1196         /** Find the set of annotations present in the set of top level
1197          *  classes and package info files to be processed this round. */
1198         void findAnnotationsPresent() {
1199             ComputeAnnotationSet annotationComputer = new ComputeAnnotationSet(elementUtils);
1200             // Use annotation processing to compute the set of annotations present
1201             annotationsPresent = new LinkedHashSet<>();
1202             for (ClassSymbol classSym : topLevelClasses)
1203                 annotationComputer.scan(classSym, annotationsPresent);
1204             for (PackageSymbol pkgSym : packageInfoFiles)
1205                 annotationComputer.scan(pkgSym, annotationsPresent);
1206             for (ModuleSymbol mdlSym : moduleInfoFiles)
1207                 annotationComputer.scan(mdlSym, annotationsPresent);
1208         }
1209 
1210         /** Enter a set of generated class files. */
1211         private List<ClassSymbol> enterClassFiles(Map<ModuleSymbol, Map<String, JavaFileObject>> modulesAndClassFiles) {
1212             List<ClassSymbol> list = List.nil();
1213 
1214             for (Entry<ModuleSymbol, Map<String, JavaFileObject>> moduleAndClassFiles : modulesAndClassFiles.entrySet()) {
1215                 for (Map.Entry<String,JavaFileObject> entry : moduleAndClassFiles.getValue().entrySet()) {
1216                     Name name = names.fromString(entry.getKey());
1217                     JavaFileObject file = entry.getValue();
1218                     if (file.getKind() != JavaFileObject.Kind.CLASS)
1219                         throw new AssertionError(file);
1220                     ClassSymbol cs;
1221                     if (isPkgInfo(file, JavaFileObject.Kind.CLASS)) {
1222                         Name packageName = Convert.packagePart(name);
1223                         PackageSymbol p = symtab.enterPackage(moduleAndClassFiles.getKey(), packageName);
1224                         if (p.package_info == null)
1225                             p.package_info = symtab.enterClass(moduleAndClassFiles.getKey(), Convert.shortName(name), p);
1226                         cs = p.package_info;
1227                         cs.reset();
1228                         if (cs.classfile == null)
1229                             cs.classfile = file;
1230                         cs.completer = initialCompleter;
1231                     } else {
1232                         cs = symtab.enterClass(moduleAndClassFiles.getKey(), name);
1233                         cs.reset();
1234                         cs.classfile = file;
1235                         cs.completer = initialCompleter;
1236                         if (cs.owner.kind == PCK) {
1237                             cs.owner.members().enter(cs); //XXX - OverwriteBetweenCompilations; syms.getClass is not sufficient anymore
1238                         }
1239                     }
1240                     list = list.prepend(cs);
1241                 }
1242             }
1243             return list.reverse();
1244         }
1245 
1246         /** Enter a set of syntax trees. */
1247         private void enterTrees(List<JCCompilationUnit> roots) {
1248             compiler.enterTrees(roots);
1249         }
1250 
1251         /** Run a processing round. */
1252         void run(boolean lastRound, boolean errorStatus) {
1253             printRoundInfo(lastRound);
1254 
1255             if (!taskListener.isEmpty())
1256                 taskListener.started(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING_ROUND));
1257 
1258             try {
1259                 if (lastRound) {
1260                     filer.setLastRound(true);
1261                     Set<Element> emptyRootElements = Collections.emptySet(); // immutable
1262                     RoundEnvironment renv = new JavacRoundEnvironment(true,
1263                             errorStatus,
1264                             emptyRootElements,
1265                             JavacProcessingEnvironment.this);
1266                     discoveredProcs.iterator().runContributingProcs(renv);
1267                 } else {
1268                     discoverAndRunProcs(annotationsPresent, topLevelClasses, packageInfoFiles, moduleInfoFiles);
1269                 }
1270             } catch (Throwable t) {
1271                 // we're specifically expecting Abort here, but if any Throwable
1272                 // comes by, we should flush all deferred diagnostics, rather than
1273                 // drop them on the ground.
1274                 deferredDiagnosticHandler.reportDeferredDiagnostics();
1275                 log.popDiagnosticHandler(deferredDiagnosticHandler);
1276                 compiler.setDeferredDiagnosticHandler(null);
1277                 throw t;
1278             } finally {
1279                 if (!taskListener.isEmpty())
1280                     taskListener.finished(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING_ROUND));
1281             }
1282         }
1283 
1284         void showDiagnostics(boolean showAll) {
1285             deferredDiagnosticHandler.reportDeferredDiagnostics(showAll ? ACCEPT_ALL
1286                                                                         : ACCEPT_NON_RECOVERABLE);
1287             log.popDiagnosticHandler(deferredDiagnosticHandler);
1288             compiler.setDeferredDiagnosticHandler(null);
1289         }
1290         //where:
1291             private final Predicate<JCDiagnostic> ACCEPT_NON_RECOVERABLE =
1292                     d -> d.getKind() != JCDiagnostic.Kind.ERROR ||
1293                          !d.isFlagSet(DiagnosticFlag.RECOVERABLE) ||
1294                          d.isFlagSet(DiagnosticFlag.API);
1295             private final Predicate<JCDiagnostic> ACCEPT_ALL = d -> true;
1296 
1297         /** Print info about this round. */
1298         private void printRoundInfo(boolean lastRound) {
1299             if (printRounds || verbose) {
1300                 List<ClassSymbol> tlc = lastRound ? List.nil() : topLevelClasses;
1301                 Set<TypeElement> ap = lastRound ? Collections.emptySet() : annotationsPresent;
1302                 log.printLines("x.print.rounds",
1303                         number,
1304                         "{" + tlc.toString(", ") + "}",
1305                         ap,
1306                         lastRound);
1307             }
1308         }
1309 
1310         /** Prepare for new round of annotation processing. Cleans trees, resets symbols, and
1311          * asks selected services to prepare to a new round of annotation processing.
1312          */
1313         private void newRound() {
1314             //ensure treesToClean contains all trees, including implicitly parsed ones
1315             for (Env<AttrContext> env : enter.getEnvs()) {
1316                 treesToClean.add(env.toplevel);
1317             }
1318             for (JCCompilationUnit node : treesToClean) {
1319                 treeCleaner.scan(node);
1320             }
1321             chk.newRound();
1322             enter.newRound();
1323             filer.newRound();
1324             messager.newRound();
1325             compiler.newRound();
1326             modules.newRound();
1327             types.newRound();
1328             annotate.newRound();
1329             elementUtils.newRound();
1330 
1331             boolean foundError = false;
1332 
1333             for (ClassSymbol cs : symtab.getAllClasses()) {
1334                 if (cs.kind == ERR) {
1335                     foundError = true;
1336                     break;
1337                 }
1338             }
1339 
1340             if (foundError) {
1341                 for (ClassSymbol cs : symtab.getAllClasses()) {
1342                     if (cs.classfile != null || cs.kind == ERR) {
1343                         cs.reset();
1344                         if (cs.kind == ERR) {
1345                             cs.type = new ClassType(cs.type.getEnclosingType(), null, cs);
1346                         }
1347                         if (cs.isCompleted()) {
1348                             cs.completer = initialCompleter;
1349                         }
1350                     }
1351                 }
1352             }
1353         }
1354     }
1355 
1356 
1357     // TODO: internal catch clauses?; catch and rethrow an annotation
1358     // processing error
1359     public boolean doProcessing(List<JCCompilationUnit> roots,
1360                                 List<ClassSymbol> classSymbols,
1361                                 Iterable<? extends PackageSymbol> pckSymbols,
1362                                 Log.DeferredDiagnosticHandler deferredDiagnosticHandler) {
1363         final Set<JCCompilationUnit> treesToClean =
1364                 Collections.newSetFromMap(new IdentityHashMap<JCCompilationUnit, Boolean>());
1365 
1366         //fill already attributed implicit trees:
1367         for (Env<AttrContext> env : enter.getEnvs()) {
1368             treesToClean.add(env.toplevel);
1369         }
1370 
1371         Set<PackageSymbol> specifiedPackages = new LinkedHashSet<>();
1372         for (PackageSymbol psym : pckSymbols)
1373             specifiedPackages.add(psym);
1374         this.specifiedPackages = Collections.unmodifiableSet(specifiedPackages);
1375 
1376         Round round = new Round(roots, classSymbols, treesToClean, deferredDiagnosticHandler);
1377 
1378         boolean errorStatus;
1379         boolean moreToDo;
1380         do {
1381             // Run processors for round n
1382             round.run(false, false);
1383 
1384             // Processors for round n have run to completion.
1385             // Check for errors and whether there is more work to do.
1386             errorStatus = round.unrecoverableError();
1387             moreToDo = moreToDo();
1388 
1389             round.showDiagnostics(showResolveErrors);
1390 
1391             // Set up next round.
1392             // Copy mutable collections returned from filer.
1393             round = round.next(
1394                     new LinkedHashSet<>(filer.getGeneratedSourceFileObjects()),
1395                     new LinkedHashMap<>(filer.getGeneratedClasses()));
1396 
1397              // Check for errors during setup.
1398             if (round.unrecoverableError())
1399                 errorStatus = true;
1400 
1401         } while (moreToDo && !errorStatus);
1402 
1403         // run last round
1404         round.run(true, errorStatus);
1405         round.showDiagnostics(true);
1406 
1407         filer.warnIfUnclosedFiles();
1408         warnIfUnmatchedOptions();
1409 
1410         /*
1411          * If an annotation processor raises an error in a round,
1412          * that round runs to completion and one last round occurs.
1413          * The last round may also occur because no more source or
1414          * class files have been generated.  Therefore, if an error
1415          * was raised on either of the last *two* rounds, the compile
1416          * should exit with a nonzero exit code.  The current value of
1417          * errorStatus holds whether or not an error was raised on the
1418          * second to last round; errorRaised() gives the error status
1419          * of the last round.
1420          */
1421         if (messager.errorRaised()
1422                 || werror && round.warningCount() > 0 && round.errorCount() > 0)
1423             errorStatus = true;
1424 
1425         Set<JavaFileObject> newSourceFiles =
1426                 new LinkedHashSet<>(filer.getGeneratedSourceFileObjects());
1427         roots = round.roots;
1428 
1429         errorStatus = errorStatus || (compiler.errorCount() > 0);
1430 
1431         round.finalCompiler();
1432 
1433         if (newSourceFiles.size() > 0)
1434             roots = roots.appendList(compiler.parseFiles(newSourceFiles));
1435 
1436         errorStatus = errorStatus || (compiler.errorCount() > 0);
1437 
1438         // Free resources
1439         this.close();
1440 
1441         if (errorStatus && compiler.errorCount() == 0) {
1442             compiler.log.nerrors++;
1443         }
1444 
1445         compiler.enterTreesIfNeeded(roots);
1446 
1447         if (!taskListener.isEmpty())
1448             taskListener.finished(new TaskEvent(TaskEvent.Kind.ANNOTATION_PROCESSING));
1449 
1450         return true;
1451     }
1452 
1453     private void warnIfUnmatchedOptions() {
1454         if (!unmatchedProcessorOptions.isEmpty()) {
1455             log.warning(Warnings.ProcUnmatchedProcessorOptions(unmatchedProcessorOptions.toString()));
1456         }
1457     }
1458 
1459     /**
1460      * Free resources related to annotation processing.
1461      */
1462     public void close() {
1463         filer.close();
1464         if (discoveredProcs != null) // Make calling close idempotent
1465             discoveredProcs.close();
1466         discoveredProcs = null;
1467     }
1468 
1469     private List<ClassSymbol> getTopLevelClasses(List<? extends JCCompilationUnit> units) {
1470         List<ClassSymbol> classes = List.nil();
1471         for (JCCompilationUnit unit : units) {
1472             for (JCTree node : unit.defs) {
1473                 if (node.hasTag(JCTree.Tag.CLASSDEF)) {
1474                     ClassSymbol sym = ((JCClassDecl) node).sym;
1475                     Assert.checkNonNull(sym);
1476                     classes = classes.prepend(sym);
1477                 }
1478             }
1479         }
1480         return classes.reverse();
1481     }
1482 
1483     private List<ClassSymbol> getTopLevelClassesFromClasses(List<? extends ClassSymbol> syms) {
1484         List<ClassSymbol> classes = List.nil();
1485         for (ClassSymbol sym : syms) {
1486             if (!isPkgInfo(sym)) {
1487                 classes = classes.prepend(sym);
1488             }
1489         }
1490         return classes.reverse();
1491     }
1492 
1493     private List<PackageSymbol> getPackageInfoFiles(List<? extends JCCompilationUnit> units) {
1494         List<PackageSymbol> packages = List.nil();
1495         for (JCCompilationUnit unit : units) {
1496             if (isPkgInfo(unit.sourcefile, JavaFileObject.Kind.SOURCE)) {
1497                 packages = packages.prepend(unit.packge);
1498             }
1499         }
1500         return packages.reverse();
1501     }
1502 
1503     private List<PackageSymbol> getPackageInfoFilesFromClasses(List<? extends ClassSymbol> syms) {
1504         List<PackageSymbol> packages = List.nil();
1505         for (ClassSymbol sym : syms) {
1506             if (isPkgInfo(sym)) {
1507                 packages = packages.prepend((PackageSymbol) sym.owner);
1508             }
1509         }
1510         return packages.reverse();
1511     }
1512 
1513     private List<ModuleSymbol> getModuleInfoFiles(List<? extends JCCompilationUnit> units) {
1514         List<ModuleSymbol> modules = List.nil();
1515         for (JCCompilationUnit unit : units) {
1516             if (isModuleInfo(unit.sourcefile, JavaFileObject.Kind.SOURCE) &&
1517                 unit.defs.nonEmpty() &&
1518                 unit.defs.head.hasTag(Tag.MODULEDEF)) {
1519                 modules = modules.prepend(unit.modle);
1520             }
1521         }
1522         return modules.reverse();
1523     }
1524 
1525     // avoid unchecked warning from use of varargs
1526     private static <T> List<T> join(List<T> list1, List<T> list2) {
1527         return list1.appendList(list2);
1528     }
1529 
1530     private boolean isPkgInfo(JavaFileObject fo, JavaFileObject.Kind kind) {
1531         return fo.isNameCompatible("package-info", kind);
1532     }
1533 
1534     private boolean isPkgInfo(ClassSymbol sym) {
1535         return isPkgInfo(sym.classfile, JavaFileObject.Kind.CLASS) && (sym.packge().package_info == sym);
1536     }
1537 
1538     private boolean isModuleInfo(JavaFileObject fo, JavaFileObject.Kind kind) {
1539         return fo.isNameCompatible("module-info", kind);
1540     }
1541 
1542     /*
1543      * Called retroactively to determine if a class loader was required,
1544      * after we have failed to create one.
1545      */
1546     private boolean needClassLoader(String procNames, Iterable<? extends Path> workingpath) {
1547         if (procNames != null)
1548             return true;
1549 
1550         URL[] urls = new URL[1];
1551         for(Path pathElement : workingpath) {
1552             try {
1553                 urls[0] = pathElement.toUri().toURL();
1554                 if (ServiceProxy.hasService(Processor.class, urls))
1555                     return true;
1556             } catch (MalformedURLException ex) {
1557                 throw new AssertionError(ex);
1558             }
1559             catch (ServiceProxy.ServiceConfigurationError e) {
1560                 log.error(Errors.ProcBadConfigFile(e.getLocalizedMessage()));
1561                 return true;
1562             }
1563         }
1564 
1565         return false;
1566     }
1567 
1568     class ImplicitCompleter implements Completer {
1569 
1570         private final JCCompilationUnit topLevel;
1571 
1572         public ImplicitCompleter(JCCompilationUnit topLevel) {
1573             this.topLevel = topLevel;
1574         }
1575 
1576         @Override public void complete(Symbol sym) throws CompletionFailure {
1577             compiler.readSourceFile(topLevel, (ClassSymbol) sym);
1578         }
1579     }
1580 
1581     private final TreeScanner treeCleaner = new TreeScanner() {
1582             public void scan(JCTree node) {
1583                 super.scan(node);
1584                 if (node != null)
1585                     node.type = null;
1586             }
1587             JCCompilationUnit topLevel;
1588             public void visitTopLevel(JCCompilationUnit node) {
1589                 if (node.packge != null) {
1590                     if (isPkgInfo(node.sourcefile, Kind.SOURCE)) {
1591                         node.packge.package_info.reset();
1592                     }
1593                     node.packge.reset();
1594                 }
1595                 if (isModuleInfo(node.sourcefile, Kind.SOURCE)) {
1596                     node.modle.reset();
1597                     node.modle.completer = sym -> modules.enter(List.of(node), node.modle.module_info);
1598                     node.modle.module_info.reset();
1599                     node.modle.module_info.members_field = WriteableScope.create(node.modle.module_info);
1600                 }
1601                 node.packge = null;
1602                 topLevel = node;
1603                 try {
1604                     super.visitTopLevel(node);
1605                 } finally {
1606                     topLevel = null;
1607                 }
1608             }
1609             public void visitClassDef(JCClassDecl node) {
1610                 super.visitClassDef(node);
1611                 // remove generated constructor that may have been added during attribution:
1612                 List<JCTree> beforeConstructor = List.nil();
1613                 List<JCTree> defs = node.defs;
1614                 while (defs.nonEmpty() && !defs.head.hasTag(Tag.METHODDEF)) {
1615                     beforeConstructor = beforeConstructor.prepend(defs.head);
1616                     defs = defs.tail;
1617                 }
1618                 if (defs.nonEmpty() &&
1619                     (((JCMethodDecl) defs.head).mods.flags & Flags.GENERATEDCONSTR) != 0) {
1620                     defs = defs.tail;
1621                     while (beforeConstructor.nonEmpty()) {
1622                         defs = defs.prepend(beforeConstructor.head);
1623                         beforeConstructor = beforeConstructor.tail;
1624                     }
1625                     node.defs = defs;
1626                 }
1627                 if (node.sym != null) {
1628                     node.sym.completer = new ImplicitCompleter(topLevel);
1629                 }
1630                 node.sym = null;
1631             }
1632             public void visitMethodDef(JCMethodDecl node) {
1633                 // remove super constructor call that may have been added during attribution:
1634                 if (TreeInfo.isConstructor(node) && node.sym != null && node.sym.owner.isEnum() &&
1635                     node.body.stats.nonEmpty() && TreeInfo.isSuperCall(node.body.stats.head) &&
1636                     node.body.stats.head.pos == node.body.pos) {
1637                     node.body.stats = node.body.stats.tail;
1638                 }
1639                 node.sym = null;
1640                 super.visitMethodDef(node);
1641             }
1642             public void visitVarDef(JCVariableDecl node) {
1643                 node.sym = null;
1644                 super.visitVarDef(node);
1645             }
1646             public void visitNewClass(JCNewClass node) {
1647                 node.constructor = null;
1648                 super.visitNewClass(node);
1649             }
1650             public void visitAssignop(JCAssignOp node) {
1651                 node.operator = null;
1652                 super.visitAssignop(node);
1653             }
1654             public void visitUnary(JCUnary node) {
1655                 node.operator = null;
1656                 super.visitUnary(node);
1657             }
1658             public void visitBinary(JCBinary node) {
1659                 node.operator = null;
1660                 super.visitBinary(node);
1661             }
1662             public void visitSelect(JCFieldAccess node) {
1663                 node.sym = null;
1664                 super.visitSelect(node);
1665             }
1666             public void visitIdent(JCIdent node) {
1667                 node.sym = null;
1668                 super.visitIdent(node);
1669             }
1670             public void visitAnnotation(JCAnnotation node) {
1671                 node.attribute = null;
1672                 super.visitAnnotation(node);
1673             }
1674         };
1675 
1676 
1677     private boolean moreToDo() {
1678         return filer.newFiles();
1679     }
1680 
1681     /**
1682      * {@inheritDoc}
1683      *
1684      * Command line options suitable for presenting to annotation
1685      * processors.
1686      * {@literal "-Afoo=bar"} should be {@literal "-Afoo" => "bar"}.
1687      */
1688     @DefinedBy(Api.ANNOTATION_PROCESSING)
1689     public Map<String,String> getOptions() {
1690         return processorOptions;
1691     }
1692 
1693     @DefinedBy(Api.ANNOTATION_PROCESSING)
1694     public Messager getMessager() {
1695         return messager;
1696     }
1697 
1698     @DefinedBy(Api.ANNOTATION_PROCESSING)
1699     public JavacFiler getFiler() {
1700         return filer;
1701     }
1702 
1703     @DefinedBy(Api.ANNOTATION_PROCESSING)
1704     public JavacElements getElementUtils() {
1705         return elementUtils;
1706     }
1707 
1708     @DefinedBy(Api.ANNOTATION_PROCESSING)
1709     public JavacTypes getTypeUtils() {
1710         return typeUtils;
1711     }
1712 
1713     @DefinedBy(Api.ANNOTATION_PROCESSING)
1714     public SourceVersion getSourceVersion() {
1715         return Source.toSourceVersion(source);
1716     }
1717 
1718     @DefinedBy(Api.ANNOTATION_PROCESSING)
1719     public Locale getLocale() {
1720         return messages.getCurrentLocale();
1721     }
1722 
1723     @DefinedBy(Api.ANNOTATION_PROCESSING)
1724     public boolean isPreviewEnabled() {
1725         return preview.isEnabled();
1726     }
1727 
1728     public Set<Symbol.PackageSymbol> getSpecifiedPackages() {
1729         return specifiedPackages;
1730     }
1731 
1732     public static final Pattern noMatches  = Pattern.compile("(\\P{all})+");
1733 
1734     /**
1735      * Convert import-style string for supported annotations into a
1736      * regex matching that string.  If the string is not a valid
1737      * import-style string, return a regex that won't match anything.
1738      */
1739     private static Pattern importStringToPattern(boolean allowModules, String s, Processor p, Log log, boolean lint) {
1740         String module;
1741         String pkg;
1742         int slash = s.indexOf('/');
1743         if (slash == (-1)) {
1744             if (s.equals("*")) {
1745                 return MatchingUtils.validImportStringToPattern(s);
1746             }
1747             module = allowModules ? ".*/" : "";
1748             pkg = s;
1749         } else {
1750             String moduleName = s.substring(0, slash);
1751             if (!SourceVersion.isIdentifier(moduleName)) {
1752                 return warnAndNoMatches(s, p, log, lint);
1753             }
1754             module = Pattern.quote(moduleName + "/");
1755             // And warn if module is specified if modules aren't supported, conditional on -Xlint:proc?
1756             pkg = s.substring(slash + 1);
1757         }
1758         if (MatchingUtils.isValidImportString(pkg)) {
1759             return Pattern.compile(module + MatchingUtils.validImportStringToPatternString(pkg));
1760         } else {
1761             return warnAndNoMatches(s, p, log, lint);
1762         }
1763     }
1764 
1765     private static Pattern warnAndNoMatches(String s, Processor p, Log log, boolean lint) {
1766         if (lint) {
1767             log.warning(Warnings.ProcMalformedSupportedString(s, p.getClass().getName()));
1768         }
1769         return noMatches; // won't match any valid identifier
1770     }
1771 
1772     /**
1773      * For internal use only.  This method may be removed without warning.
1774      */
1775     public Context getContext() {
1776         return context;
1777     }
1778 
1779     /**
1780      * For internal use only.  This method may be removed without warning.
1781      */
1782     public ClassLoader getProcessorClassLoader() {
1783         return processorClassLoader;
1784     }
1785 
1786     public String toString() {
1787         return "javac ProcessingEnvironment";
1788     }
1789 
1790     public static boolean isValidOptionName(String optionName) {
1791         for(String s : optionName.split("\\.", -1)) {
1792             if (!SourceVersion.isIdentifier(s))
1793                 return false;
1794         }
1795         return true;
1796     }
1797 }