author | katleman |
Thu, 21 Aug 2014 14:16:14 -0700 | |
changeset 25878 | 6d561031123e |
parent 24898 | 88fa65d2ac87 |
child 27319 | 030080f03e4f |
permissions | -rw-r--r-- |
10 | 1 |
/* |
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
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 6395974 |
|
27 |
* @summary files are parsed even after failure to find annotation processor is reported |
|
28 |
*/ |
|
29 |
||
30 |
import java.io.*; |
|
31 |
import java.util.*; |
|
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
32 |
|
10 | 33 |
import javax.tools.*; |
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
34 |
|
10 | 35 |
import com.sun.source.util.*; |
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
36 |
import com.sun.source.util.TaskEvent.Kind; |
10 | 37 |
import com.sun.tools.javac.api.*; |
38 |
||
39 |
||
40 |
public class T6395974 { |
|
41 |
public static void main(String... args) throws Throwable { |
|
42 |
String self = T6395974.class.getName(); |
|
43 |
||
44 |
String testSrc = System.getProperty("test.src"); |
|
45 |
||
46 |
JavacTool tool = JavacTool.create(); |
|
47 |
StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null); |
|
48 |
Iterable<?extends JavaFileObject> f = |
|
49 |
fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(testSrc, self + ".java"))); |
|
50 |
||
51 |
PrintWriter out = new PrintWriter(System.err, true); |
|
52 |
||
53 |
JavacTaskImpl task = (JavacTaskImpl) tool.getTask(out, |
|
54 |
fm, |
|
55 |
null, |
|
56 |
Arrays.asList("-processor", |
|
57 |
"Foo.java"), |
|
58 |
null, |
|
59 |
f); |
|
60 |
||
61 |
MyTaskListener tl = new MyTaskListener(); |
|
62 |
task.setTaskListener(tl); |
|
63 |
||
64 |
task.call(); |
|
65 |
} |
|
66 |
||
67 |
static class MyTaskListener implements TaskListener { |
|
68 |
public void started(TaskEvent e) { |
|
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
69 |
if (e.getKind() != Kind.COMPILATION) { |
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
70 |
throw new AssertionError("Unexpected TaskListener event: " + e); |
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
71 |
} |
10 | 72 |
} |
73 |
public void finished(TaskEvent e) { |
|
74 |
} |
|
75 |
||
76 |
TaskEvent event; |
|
77 |
} |
|
78 |
} |