author | katleman |
Thu, 21 Aug 2014 14:16:14 -0700 | |
changeset 25878 | 6d561031123e |
parent 24897 | 655b72d7b96e |
child 26264 | a09fedde76be |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23810
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
10193
diff
changeset
|
2 |
* Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
* |
|
5520 | 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. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 6358168 |
|
27 |
* @summary JavaCompiler.hasBeenUsed is not set in delegateCompiler |
|
28 |
*/ |
|
29 |
||
30 |
import java.io.*; |
|
31 |
import java.net.*; |
|
32 |
import java.util.*; |
|
33 |
import javax.annotation.processing.*; |
|
34 |
import javax.lang.model.element.*; |
|
35 |
import javax.tools.*; |
|
731
1dd22bdb9ca5
6714364: refactor javac File handling code into new javac.file package
jjg
parents:
10
diff
changeset
|
36 |
import com.sun.tools.javac.file.*; |
811
687d51cb403b
6716866: some javac regression tests fail to compile with re-orged file manager
jjg
parents:
731
diff
changeset
|
37 |
import com.sun.tools.javac.file.JavacFileManager; |
10 | 38 |
import com.sun.tools.javac.main.JavaCompiler; |
39 |
import com.sun.tools.javac.main.*; |
|
40 |
import com.sun.tools.javac.util.*; |
|
41 |
import com.sun.tools.javac.util.List; // disambiguate |
|
42 |
||
43 |
||
44 |
@SupportedAnnotationTypes("*") |
|
45 |
public class T6358168 extends AbstractProcessor { |
|
46 |
private static String testClasses = System.getProperty("test.classes"); |
|
47 |
private static String testSrc = System.getProperty("test.src"); |
|
48 |
private static String self = T6358168.class.getName(); |
|
49 |
||
50 |
public static void main(String... args) throws Throwable { |
|
51 |
||
52 |
JavacFileManager fm = new JavacFileManager(new Context(), false, null); |
|
53 |
JavaFileObject f = fm.getFileForInput(testSrc + File.separatorChar + T6358168.class.getName() + ".java"); |
|
54 |
||
55 |
try { |
|
56 |
// first, test case with no annotation processing |
|
57 |
testNoAnnotationProcessing(fm, f); |
|
58 |
||
59 |
// now, test case with annotation processing |
|
60 |
testAnnotationProcessing(fm, f); |
|
61 |
} |
|
62 |
catch (Throwable t) { |
|
63 |
AssertionError e = new AssertionError(); |
|
64 |
e.initCause(t); |
|
65 |
throw e; |
|
66 |
} |
|
67 |
} |
|
68 |
||
69 |
static void testNoAnnotationProcessing(JavacFileManager fm, JavaFileObject f) throws Throwable { |
|
70 |
Context context = new Context(); |
|
71 |
||
24897
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
72 |
String[] args = { "-d", "." }; |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
73 |
Main compilerMain = initCompilerMain(context, fm, args); |
10 | 74 |
|
75 |
JavaCompiler compiler = JavaCompiler.instance(context); |
|
76 |
compiler.compile(List.of(f)); |
|
77 |
try { |
|
78 |
compiler.compile(List.of(f)); |
|
79 |
throw new Error("Error: AssertionError not thrown after second call of compile"); |
|
80 |
} catch (AssertionError e) { |
|
81 |
System.err.println("Exception from compiler (expected): " + e); |
|
82 |
} |
|
83 |
} |
|
84 |
||
85 |
static void testAnnotationProcessing(JavacFileManager fm, JavaFileObject f) throws Throwable { |
|
86 |
Context context = new Context(); |
|
87 |
||
24897
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
88 |
String[] args = { |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
89 |
"-XprintRounds", |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
90 |
"-processorpath", testClasses, |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
91 |
"-processor", self, |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
92 |
"-d", "." |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
93 |
}; |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
94 |
Main compilerMain = initCompilerMain(context, fm, args); |
10 | 95 |
|
96 |
JavaCompiler compiler = JavaCompiler.instance(context); |
|
23810
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
10193
diff
changeset
|
97 |
compiler.compile(List.of(f)); |
10 | 98 |
try { |
23810
b92eb80925f0
8038455: Use single Context for all rounds of annotation processing
jlahoda
parents:
10193
diff
changeset
|
99 |
compiler.compile(List.of(f)); |
10 | 100 |
throw new Error("Error: AssertionError not thrown after second call of compile"); |
101 |
} catch (AssertionError e) { |
|
102 |
System.err.println("Exception from compiler (expected): " + e); |
|
103 |
} |
|
104 |
} |
|
105 |
||
24897
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
106 |
static Main initCompilerMain(Context context, JavacFileManager fm, String... args) { |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
107 |
fm.setContext(context); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
108 |
context.put(JavaFileManager.class, fm); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
109 |
|
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
110 |
Main compilerMain = new Main("javac", new PrintWriter(System.err, true)); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
111 |
compilerMain.setOptions(Options.instance(context)); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
112 |
compilerMain.filenames = new LinkedHashSet<File>(); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
113 |
compilerMain.deferredFileManagerOptions = new LinkedHashMap<>(); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
114 |
compilerMain.processArgs(args); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
115 |
fm.handleOptions(compilerMain.deferredFileManagerOptions); |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
116 |
return compilerMain; |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
117 |
} |
655b72d7b96e
7026941: 199: path options ignored when reusing filemanager across tasks
jjg
parents:
23810
diff
changeset
|
118 |
|
10 | 119 |
public boolean process(Set<? extends TypeElement> tes, RoundEnvironment renv) { |
120 |
return true; |
|
121 |
} |
|
122 |
} |