author | lana |
Thu, 21 Jan 2016 09:46:01 -0800 | |
changeset 35340 | 38f7386ed942 |
parent 34560 | b6a567b677f7 |
child 36526 | 3b41f1c69604 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
24898
diff
changeset
|
2 |
* Copyright (c) 2006, 2015, 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 6358024 |
|
27 |
* @summary TaskListener should be propogated between processing rounds |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
24898
diff
changeset
|
28 |
* @modules jdk.compiler/com.sun.tools.javac.api |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
24898
diff
changeset
|
29 |
* jdk.compiler/com.sun.tools.javac.file |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
24898
diff
changeset
|
30 |
* jdk.compiler/com.sun.tools.javac.util |
10 | 31 |
*/ |
32 |
||
33 |
import java.io.*; |
|
34 |
import java.util.*; |
|
35 |
import java.util.List; |
|
36 |
import javax.annotation.processing.*; |
|
37 |
import javax.lang.model.element.*; |
|
38 |
import javax.tools.*; |
|
39 |
import com.sun.source.util.*; |
|
40 |
import com.sun.tools.javac.api.*; |
|
731
1dd22bdb9ca5
6714364: refactor javac File handling code into new javac.file package
jjg
parents:
10
diff
changeset
|
41 |
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
|
42 |
import com.sun.tools.javac.file.JavacFileManager; |
10 | 43 |
import com.sun.tools.javac.main.*; |
44 |
import com.sun.tools.javac.util.*; |
|
45 |
||
46 |
||
47 |
@SupportedAnnotationTypes("*") |
|
48 |
public class T6358024 extends AbstractProcessor { |
|
49 |
static JavacFileManager fm; |
|
50 |
public static void main(String... args) throws Throwable { |
|
51 |
String self = T6358024.class.getName(); |
|
52 |
||
53 |
String testSrc = System.getProperty("test.src"); |
|
54 |
||
55 |
fm = new JavacFileManager(new Context(), false, null); |
|
34560
b6a567b677f7
8059976: Convert JavacFileManager to use java.nio.file internally
jjg
parents:
30730
diff
changeset
|
56 |
JavaFileObject f = fm.getJavaFileObject(testSrc + File.separatorChar + self + ".java"); |
10 | 57 |
|
58 |
test(fm, f, |
|
59 |
new Option[] { new Option("-d", ".")}, |
|
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
7681
diff
changeset
|
60 |
8); |
10 | 61 |
|
62 |
test(fm, f, |
|
63 |
new Option[] { new XOption("-XprintRounds"), |
|
64 |
new Option("-processorpath", "."), |
|
65 |
new Option("-processor", self) }, |
|
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
7681
diff
changeset
|
66 |
13); |
10 | 67 |
} |
68 |
||
69 |
static void test(JavacFileManager fm, JavaFileObject f, Option[] opts, int expect) throws Throwable { |
|
70 |
PrintWriter out = new PrintWriter(System.err, true); |
|
71 |
||
72 |
JavacTool tool = JavacTool.create(); |
|
73 |
List<String> flags = new ArrayList<String>(); |
|
74 |
for (Option opt: opts) { |
|
75 |
flags.add(opt.name); |
|
76 |
for (Object arg : opt.args) |
|
77 |
flags.add(arg.toString()); |
|
78 |
} |
|
79 |
||
80 |
JavacTaskImpl task = (JavacTaskImpl) tool.getTask(out, |
|
81 |
fm, |
|
82 |
null, |
|
83 |
flags, |
|
84 |
null, |
|
85 |
Arrays.asList(f)); |
|
86 |
MyTaskListener tl = new MyTaskListener(); |
|
87 |
task.setTaskListener(tl); |
|
88 |
task.call(); |
|
89 |
if (tl.started != expect) |
|
90 |
throw new AssertionError("Unexpected number of TaskListener events; " |
|
91 |
+ "expected " + expect + ", found " + tl.started); |
|
92 |
} |
|
93 |
||
94 |
public boolean process(Set<? extends TypeElement> tes, RoundEnvironment renv) { |
|
95 |
return true; |
|
96 |
} |
|
97 |
||
98 |
static class MyTaskListener implements TaskListener { |
|
99 |
public void started(TaskEvent e) { |
|
100 |
System.err.println("Started: " + e); |
|
101 |
started++; |
|
102 |
} |
|
103 |
public void finished(TaskEvent e) { |
|
104 |
} |
|
105 |
||
106 |
int started = 0; |
|
107 |
} |
|
108 |
||
109 |
static class Option { |
|
110 |
Option(String name, String... args) { |
|
111 |
this.name = name; |
|
112 |
this.args = args; |
|
113 |
} |
|
114 |
public final String name; |
|
115 |
public final String[] args; |
|
116 |
} |
|
117 |
||
118 |
static class XOption extends Option { |
|
119 |
XOption(String name, String... args) { |
|
120 |
super(name, args); |
|
121 |
} |
|
122 |
} |
|
123 |
} |