test/tools/javac/api/6468404/T6468404.java

Wed, 14 Nov 2018 10:18:25 -0800

author
diazhou
date
Wed, 14 Nov 2018 10:18:25 -0800
changeset 3762
7909abb85562
parent 1733
e39669aea0bd
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8u201-b04 for changeset a7f48b9dfb82

     1 /*
     2  * Copyright (c) 2006, 2013, 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.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  */
    24 /*
    25  * @test
    26  * @bug     6468404
    27  * @summary ExecutableElement.getParameters() uses raw type for class loaded from -g bytecode
    28  * @author  jesse.glick@...
    29  * @author  Peter von der Ah\u00e9
    30  * @library ../lib
    31  * @build ToolTester
    32  * @compile T6468404.java
    33  * @run main T6468404
    34  */
    36 import java.io.IOException;
    37 import java.net.URI;
    38 import java.util.Arrays;
    39 import java.util.Collections;
    40 import java.util.Set;
    41 import javax.annotation.processing.AbstractProcessor;
    42 import javax.annotation.processing.RoundEnvironment;
    43 import javax.annotation.processing.SupportedAnnotationTypes;
    44 import javax.annotation.processing.SupportedSourceVersion;
    45 import javax.annotation.processing.ProcessingEnvironment;
    46 import javax.lang.model.SourceVersion;
    47 import javax.lang.model.element.ExecutableElement;
    48 import javax.lang.model.element.TypeElement;
    49 import javax.lang.model.type.ExecutableType;
    50 import javax.lang.model.type.DeclaredType;
    51 import javax.lang.model.type.TypeMirror;
    52 import javax.lang.model.util.Elements;
    53 import javax.tools.JavaCompiler;
    54 import javax.tools.JavaFileObject;
    55 import javax.tools.SimpleJavaFileObject;
    56 import javax.tools.ToolProvider;
    58 public class T6468404 extends ToolTester {
    59     void test(String... args) {
    60         System.err.println("Compiling with sources:");
    61         task = tool.getTask(
    62                 null, fm, null, null,
    63                 null, Collections.singleton(new DummyFO("C")));
    64         task.setProcessors(Collections.singleton(new P()));
    65         if (!task.call())
    66             throw new AssertionError();
    68         System.err.println("Compiling with binaries w/o -g:");
    69         task = tool.getTask(
    70                 null, fm, null, null,
    71                 null, Collections.singleton(new DummyFO("Dummy")));
    72         task.setProcessors(Collections.singleton(new P()));
    73         if (!task.call())
    74             throw new AssertionError();
    76         task = tool.getTask(
    77                 null, fm, null,
    78                 Arrays.asList("-g"),
    79                 null, Collections.singleton(new DummyFO("C")));
    80         if (!task.call())
    81             throw new AssertionError();
    83         System.err.println("Compiling with binaries w/ -g:");
    84         task = tool.getTask(
    85                 null, fm, null, null,
    86                 null, Collections.singleton(new DummyFO("Dummy")));
    87         task.setProcessors(Collections.singleton(new P()));
    88         if (!task.call())
    89             throw new AssertionError();
    90     }
    91     public static void main(String... args) {
    92         new T6468404().test(args);
    93     }
    95 }
    97 class DummyFO extends SimpleJavaFileObject {
    98     String n;
    99     public DummyFO(String n) {
   100         super(URI.create("nowhere:/" + n + ".java"), JavaFileObject.Kind.SOURCE);
   101         this.n = n;
   102     }
   103     public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException {
   104         return "public class " + n + " {" + n + "(java.util.List<String> l) {}}";
   105     }
   106 }
   108 @SupportedAnnotationTypes("*")
   109 class P extends AbstractProcessor {
   110     boolean ran = false;
   112     Elements elements;
   114     @Override
   115     public synchronized void init(ProcessingEnvironment processingEnv) {
   116         super.init(processingEnv);
   117         elements = processingEnv.getElementUtils();
   118     }
   120     ExecutableElement getFirstMethodIn(String name) {
   121         return (ExecutableElement)elements.getTypeElement(name).getEnclosedElements().get(0);
   122     }
   124     boolean isParameterized(TypeMirror type) {
   125         return !((DeclaredType)type).getTypeArguments().isEmpty();
   126     }
   128     @Override
   129     public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
   130         if (!ran) {
   131             ran = true;
   132             ExecutableElement m = getFirstMethodIn("C");
   133             System.err.println("method: " + m);
   135             TypeMirror type = (DeclaredType)m.getParameters().get(0).asType();
   136             System.err.println("parameters[0]: " + type);
   137             if (!isParameterized(type))
   138                 throw new AssertionError(type);
   140             type = ((ExecutableType)m.asType()).getParameterTypes().get(0);
   141             System.err.println("parameterTypes[0]: " + type);
   142             if (!isParameterized(type))
   143                 throw new AssertionError(type);
   144             System.err.println();
   145         }
   146         return true;
   147     }
   149     @Override
   150     public SourceVersion getSupportedSourceVersion() {
   151         return SourceVersion.latest();
   152     }
   153 }

mercurial