test/tools/javac/failover/CheckAttributedTree.java

Tue, 07 Sep 2010 17:33:43 +0100

author
mcimadamore
date
Tue, 07 Sep 2010 17:33:43 +0100
changeset 676
bfdfc13fe641
child 683
bbc9765d9ec6
permissions
-rw-r--r--

6970584: Flow.java should be more error-friendly
Summary: Added a post-attribution visitor that fixup uninitialized types/symbol in AST after erroneous attribution
Reviewed-by: jjg

mcimadamore@676 1 /*
mcimadamore@676 2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
mcimadamore@676 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@676 4 *
mcimadamore@676 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@676 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@676 7 * published by the Free Software Foundation.
mcimadamore@676 8 *
mcimadamore@676 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@676 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@676 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@676 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@676 13 * accompanied this code).
mcimadamore@676 14 *
mcimadamore@676 15 * You should have received a copy of the GNU General Public License version
mcimadamore@676 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@676 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@676 18 *
mcimadamore@676 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
mcimadamore@676 20 * or visit www.oracle.com if you need additional information or have any
mcimadamore@676 21 * questions.
mcimadamore@676 22 */
mcimadamore@676 23
mcimadamore@676 24 import com.sun.source.util.TaskEvent;
mcimadamore@676 25 import java.awt.BorderLayout;
mcimadamore@676 26 import java.awt.Color;
mcimadamore@676 27 import java.awt.Dimension;
mcimadamore@676 28 import java.awt.EventQueue;
mcimadamore@676 29 import java.awt.Font;
mcimadamore@676 30 import java.awt.GridBagConstraints;
mcimadamore@676 31 import java.awt.GridBagLayout;
mcimadamore@676 32 import java.awt.Rectangle;
mcimadamore@676 33 import java.awt.event.ActionEvent;
mcimadamore@676 34 import java.awt.event.ActionListener;
mcimadamore@676 35 import java.awt.event.MouseAdapter;
mcimadamore@676 36 import java.awt.event.MouseEvent;
mcimadamore@676 37 import javax.swing.DefaultComboBoxModel;
mcimadamore@676 38 import javax.swing.JComboBox;
mcimadamore@676 39 import javax.swing.JComponent;
mcimadamore@676 40 import javax.swing.JFrame;
mcimadamore@676 41 import javax.swing.JLabel;
mcimadamore@676 42 import javax.swing.JPanel;
mcimadamore@676 43 import javax.swing.JScrollPane;
mcimadamore@676 44 import javax.swing.JTextArea;
mcimadamore@676 45 import javax.swing.JTextField;
mcimadamore@676 46 import javax.swing.SwingUtilities;
mcimadamore@676 47 import javax.swing.event.CaretEvent;
mcimadamore@676 48 import javax.swing.event.CaretListener;
mcimadamore@676 49 import javax.swing.text.BadLocationException;
mcimadamore@676 50 import javax.swing.text.DefaultHighlighter;
mcimadamore@676 51 import javax.swing.text.Highlighter;
mcimadamore@676 52 import java.io.File;
mcimadamore@676 53 import java.io.IOException;
mcimadamore@676 54 import java.io.PrintStream;
mcimadamore@676 55 import java.io.PrintWriter;
mcimadamore@676 56 import java.io.StringWriter;
mcimadamore@676 57 import java.lang.reflect.Field;
mcimadamore@676 58 import java.lang.reflect.Modifier;
mcimadamore@676 59 import java.nio.charset.Charset;
mcimadamore@676 60 import java.util.ArrayList;
mcimadamore@676 61 import java.util.HashMap;
mcimadamore@676 62 import java.util.List;
mcimadamore@676 63 import java.util.Map;
mcimadamore@676 64 import javax.tools.Diagnostic;
mcimadamore@676 65 import javax.tools.DiagnosticListener;
mcimadamore@676 66 import javax.tools.JavaFileObject;
mcimadamore@676 67 import javax.tools.StandardJavaFileManager;
mcimadamore@676 68
mcimadamore@676 69 import com.sun.source.tree.CompilationUnitTree;
mcimadamore@676 70 import com.sun.source.util.JavacTask;
mcimadamore@676 71 import com.sun.source.util.TaskListener;
mcimadamore@676 72 import com.sun.tools.javac.api.JavacTool;
mcimadamore@676 73 import com.sun.tools.javac.code.Symbol;
mcimadamore@676 74 import com.sun.tools.javac.code.Type;
mcimadamore@676 75 import com.sun.tools.javac.tree.JCTree;
mcimadamore@676 76 import com.sun.tools.javac.tree.JCTree.JCClassDecl;
mcimadamore@676 77 import com.sun.tools.javac.tree.JCTree.JCCompilationUnit;
mcimadamore@676 78 import com.sun.tools.javac.tree.JCTree.JCImport;
mcimadamore@676 79 import com.sun.tools.javac.tree.TreeInfo;
mcimadamore@676 80 import com.sun.tools.javac.tree.TreeScanner;
mcimadamore@676 81 import com.sun.tools.javac.util.Pair;
mcimadamore@676 82
mcimadamore@676 83 import java.util.Arrays;
mcimadamore@676 84 import java.util.HashSet;
mcimadamore@676 85 import java.util.Set;
mcimadamore@676 86 import javax.lang.model.element.Element;
mcimadamore@676 87
mcimadamore@676 88 /**
mcimadamore@676 89 * Utility and test program to check validity of tree positions for tree nodes.
mcimadamore@676 90 * The program can be run standalone, or as a jtreg test. In standalone mode,
mcimadamore@676 91 * errors can be displayed in a gui viewer. For info on command line args,
mcimadamore@676 92 * run program with no args.
mcimadamore@676 93 *
mcimadamore@676 94 * <p>
mcimadamore@676 95 * jtreg: Note that by using the -r switch in the test description below, this test
mcimadamore@676 96 * will process all java files in the langtools/test directory, thus implicitly
mcimadamore@676 97 * covering any new language features that may be tested in this test suite.
mcimadamore@676 98 */
mcimadamore@676 99
mcimadamore@676 100 /*
mcimadamore@676 101 * @test
mcimadamore@676 102 * @bug 6970584
mcimadamore@676 103 * @summary assorted position errors in compiler syntax trees
mcimadamore@676 104 * @run main CheckAttributedTree -q -r -et ERRONEOUS .
mcimadamore@676 105 */
mcimadamore@676 106 public class CheckAttributedTree {
mcimadamore@676 107 /**
mcimadamore@676 108 * Main entry point.
mcimadamore@676 109 * If test.src is set, program runs in jtreg mode, and will throw an Error
mcimadamore@676 110 * if any errors arise, otherwise System.exit will be used, unless the gui
mcimadamore@676 111 * viewer is being used. In jtreg mode, the default base directory for file
mcimadamore@676 112 * args is the value of ${test.src}. In jtreg mode, the -r option can be
mcimadamore@676 113 * given to change the default base directory to the root test directory.
mcimadamore@676 114 */
mcimadamore@676 115 public static void main(String... args) {
mcimadamore@676 116 String testSrc = System.getProperty("test.src");
mcimadamore@676 117 File baseDir = (testSrc == null) ? null : new File(testSrc);
mcimadamore@676 118 boolean ok = new CheckAttributedTree().run(baseDir, args);
mcimadamore@676 119 if (!ok) {
mcimadamore@676 120 if (testSrc != null) // jtreg mode
mcimadamore@676 121 throw new Error("failed");
mcimadamore@676 122 else
mcimadamore@676 123 System.exit(1);
mcimadamore@676 124 }
mcimadamore@676 125 }
mcimadamore@676 126
mcimadamore@676 127 /**
mcimadamore@676 128 * Run the program. A base directory can be provided for file arguments.
mcimadamore@676 129 * In jtreg mode, the -r option can be given to change the default base
mcimadamore@676 130 * directory to the test root directory. For other options, see usage().
mcimadamore@676 131 * @param baseDir base directory for any file arguments.
mcimadamore@676 132 * @param args command line args
mcimadamore@676 133 * @return true if successful or in gui mode
mcimadamore@676 134 */
mcimadamore@676 135 boolean run(File baseDir, String... args) {
mcimadamore@676 136 if (args.length == 0) {
mcimadamore@676 137 usage(System.out);
mcimadamore@676 138 return true;
mcimadamore@676 139 }
mcimadamore@676 140
mcimadamore@676 141 List<File> files = new ArrayList<File>();
mcimadamore@676 142 for (int i = 0; i < args.length; i++) {
mcimadamore@676 143 String arg = args[i];
mcimadamore@676 144 if (arg.equals("-encoding") && i + 1 < args.length)
mcimadamore@676 145 encoding = args[++i];
mcimadamore@676 146 else if (arg.equals("-gui"))
mcimadamore@676 147 gui = true;
mcimadamore@676 148 else if (arg.equals("-q"))
mcimadamore@676 149 quiet = true;
mcimadamore@676 150 else if (arg.equals("-v"))
mcimadamore@676 151 verbose = true;
mcimadamore@676 152 else if (arg.equals("-t") && i + 1 < args.length)
mcimadamore@676 153 tags.add(args[++i]);
mcimadamore@676 154 else if (arg.equals("-ef") && i + 1 < args.length)
mcimadamore@676 155 excludeFiles.add(new File(baseDir, args[++i]));
mcimadamore@676 156 else if (arg.equals("-et") && i + 1 < args.length)
mcimadamore@676 157 excludeTags.add(args[++i]);
mcimadamore@676 158 else if (arg.equals("-r")) {
mcimadamore@676 159 if (excludeFiles.size() > 0)
mcimadamore@676 160 throw new Error("-r must be used before -ef");
mcimadamore@676 161 File d = baseDir;
mcimadamore@676 162 while (!new File(d, "TEST.ROOT").exists()) {
mcimadamore@676 163 if (d == null)
mcimadamore@676 164 throw new Error("cannot find TEST.ROOT");
mcimadamore@676 165 d = d.getParentFile();
mcimadamore@676 166 }
mcimadamore@676 167 baseDir = d;
mcimadamore@676 168 }
mcimadamore@676 169 else if (arg.startsWith("-"))
mcimadamore@676 170 throw new Error("unknown option: " + arg);
mcimadamore@676 171 else {
mcimadamore@676 172 while (i < args.length)
mcimadamore@676 173 files.add(new File(baseDir, args[i++]));
mcimadamore@676 174 }
mcimadamore@676 175 }
mcimadamore@676 176
mcimadamore@676 177 for (File file: files) {
mcimadamore@676 178 if (file.exists())
mcimadamore@676 179 test(file);
mcimadamore@676 180 else
mcimadamore@676 181 error("File not found: " + file);
mcimadamore@676 182 }
mcimadamore@676 183
mcimadamore@676 184 if (fileCount != 1)
mcimadamore@676 185 System.err.println(fileCount + " files read");
mcimadamore@676 186 if (errors > 0)
mcimadamore@676 187 System.err.println(errors + " errors");
mcimadamore@676 188
mcimadamore@676 189 return (gui || errors == 0);
mcimadamore@676 190 }
mcimadamore@676 191
mcimadamore@676 192 /**
mcimadamore@676 193 * Print command line help.
mcimadamore@676 194 * @param out output stream
mcimadamore@676 195 */
mcimadamore@676 196 void usage(PrintStream out) {
mcimadamore@676 197 out.println("Usage:");
mcimadamore@676 198 out.println(" java CheckAttributedTree options... files...");
mcimadamore@676 199 out.println("");
mcimadamore@676 200 out.println("where options include:");
mcimadamore@676 201 out.println("-q Quiet: don't report on inapplicable files");
mcimadamore@676 202 out.println("-gui Display returns in a GUI viewer");
mcimadamore@676 203 out.println("-v Verbose: report on files as they are being read");
mcimadamore@676 204 out.println("-t tag Limit checks to tree nodes with this tag");
mcimadamore@676 205 out.println(" Can be repeated if desired");
mcimadamore@676 206 out.println("-ef file Exclude file or directory");
mcimadamore@676 207 out.println("-et tag Exclude tree nodes with given tag name");
mcimadamore@676 208 out.println("");
mcimadamore@676 209 out.println("files may be directories or files");
mcimadamore@676 210 out.println("directories will be scanned recursively");
mcimadamore@676 211 out.println("non java files, or java files which cannot be parsed, will be ignored");
mcimadamore@676 212 out.println("");
mcimadamore@676 213 }
mcimadamore@676 214
mcimadamore@676 215 /**
mcimadamore@676 216 * Test a file. If the file is a directory, it will be recursively scanned
mcimadamore@676 217 * for java files.
mcimadamore@676 218 * @param file the file or directory to test
mcimadamore@676 219 */
mcimadamore@676 220 void test(File file) {
mcimadamore@676 221 if (excludeFiles.contains(file)) {
mcimadamore@676 222 if (!quiet)
mcimadamore@676 223 error("File " + file + " excluded");
mcimadamore@676 224 return;
mcimadamore@676 225 }
mcimadamore@676 226
mcimadamore@676 227 if (file.isDirectory()) {
mcimadamore@676 228 for (File f: file.listFiles()) {
mcimadamore@676 229 test(f);
mcimadamore@676 230 }
mcimadamore@676 231 return;
mcimadamore@676 232 }
mcimadamore@676 233
mcimadamore@676 234 if (file.isFile() && file.getName().endsWith(".java")) {
mcimadamore@676 235 try {
mcimadamore@676 236 if (verbose)
mcimadamore@676 237 System.err.println(file);
mcimadamore@676 238 fileCount++;
mcimadamore@676 239 NPETester p = new NPETester();
mcimadamore@676 240 p.test(read(file));
mcimadamore@676 241 } catch (AttributionException e) {
mcimadamore@676 242 if (!quiet) {
mcimadamore@676 243 error("Error attributing " + file + "\n" + e.getMessage());
mcimadamore@676 244 }
mcimadamore@676 245 } catch (IOException e) {
mcimadamore@676 246 error("Error reading " + file + ": " + e);
mcimadamore@676 247 }
mcimadamore@676 248 return;
mcimadamore@676 249 }
mcimadamore@676 250
mcimadamore@676 251 if (!quiet)
mcimadamore@676 252 error("File " + file + " ignored");
mcimadamore@676 253 }
mcimadamore@676 254
mcimadamore@676 255 /**
mcimadamore@676 256 * Read a file.
mcimadamore@676 257 * @param file the file to be read
mcimadamore@676 258 * @return the tree for the content of the file
mcimadamore@676 259 * @throws IOException if any IO errors occur
mcimadamore@676 260 * @throws TreePosTest.ParseException if any errors occur while parsing the file
mcimadamore@676 261 */
mcimadamore@676 262 List<Pair<JCCompilationUnit, JCTree>> read(File file) throws IOException, AttributionException {
mcimadamore@676 263 StringWriter sw = new StringWriter();
mcimadamore@676 264 PrintWriter pw = new PrintWriter(sw);
mcimadamore@676 265 Reporter r = new Reporter(pw);
mcimadamore@676 266 JavacTool tool = JavacTool.create();
mcimadamore@676 267 Charset cs = (encoding == null ? null : Charset.forName(encoding));
mcimadamore@676 268 StandardJavaFileManager fm = tool.getStandardFileManager(r, null, null);
mcimadamore@676 269 Iterable<? extends JavaFileObject> files = fm.getJavaFileObjects(file);
mcimadamore@676 270 String[] opts = { "-XDshouldStopPolicy=ATTR", "-XDverboseCompilePolicy" };
mcimadamore@676 271 JavacTask task = tool.getTask(pw, fm, r, Arrays.asList(opts), null, files);
mcimadamore@676 272 final List<Element> analyzedElems = new ArrayList<>();
mcimadamore@676 273 task.setTaskListener(new TaskListener() {
mcimadamore@676 274 public void started(TaskEvent e) {
mcimadamore@676 275 if (e.getKind() == TaskEvent.Kind.ANALYZE)
mcimadamore@676 276 analyzedElems.add(e.getTypeElement());
mcimadamore@676 277 }
mcimadamore@676 278 public void finished(TaskEvent e) { }
mcimadamore@676 279 });
mcimadamore@676 280
mcimadamore@676 281 try {
mcimadamore@676 282 Iterable<? extends CompilationUnitTree> trees = task.parse();
mcimadamore@676 283 task.analyze();
mcimadamore@676 284 List<Pair<JCCompilationUnit, JCTree>> res = new ArrayList<>();
mcimadamore@676 285 System.out.println("Try to add pairs. Elems are " + analyzedElems);
mcimadamore@676 286 for (CompilationUnitTree t : trees) {
mcimadamore@676 287 JCCompilationUnit cu = (JCCompilationUnit)t;
mcimadamore@676 288 for (JCTree def : cu.defs) {
mcimadamore@676 289 if (def.getTag() == JCTree.CLASSDEF &&
mcimadamore@676 290 analyzedElems.contains(((JCTree.JCClassDecl)def).sym)) {
mcimadamore@676 291 System.out.println("Adding pair...");
mcimadamore@676 292 res.add(new Pair<>(cu, def));
mcimadamore@676 293 }
mcimadamore@676 294 }
mcimadamore@676 295 }
mcimadamore@676 296 return res;
mcimadamore@676 297 }
mcimadamore@676 298 catch (Throwable t) {
mcimadamore@676 299 throw new AttributionException("Exception while attributing file: " + file);
mcimadamore@676 300 }
mcimadamore@676 301 }
mcimadamore@676 302
mcimadamore@676 303 /**
mcimadamore@676 304 * Report an error. When the program is complete, the program will either
mcimadamore@676 305 * exit or throw an Error if any errors have been reported.
mcimadamore@676 306 * @param msg the error message
mcimadamore@676 307 */
mcimadamore@676 308 void error(String msg) {
mcimadamore@676 309 System.err.println(msg);
mcimadamore@676 310 errors++;
mcimadamore@676 311 }
mcimadamore@676 312
mcimadamore@676 313 /** Number of files that have been analyzed. */
mcimadamore@676 314 int fileCount;
mcimadamore@676 315 /** Number of errors reported. */
mcimadamore@676 316 int errors;
mcimadamore@676 317 /** Flag: don't report irrelevant files. */
mcimadamore@676 318 boolean quiet;
mcimadamore@676 319 /** Flag: show errors in GUI viewer. */
mcimadamore@676 320 boolean gui;
mcimadamore@676 321 /** The GUI viewer for errors. */
mcimadamore@676 322 Viewer viewer;
mcimadamore@676 323 /** Flag: report files as they are processed. */
mcimadamore@676 324 boolean verbose;
mcimadamore@676 325 /** Option: encoding for test files. */
mcimadamore@676 326 String encoding;
mcimadamore@676 327 /** The set of tags for tree nodes to be analyzed; if empty, all tree nodes
mcimadamore@676 328 * are analyzed. */
mcimadamore@676 329 Set<String> tags = new HashSet<String>();
mcimadamore@676 330 /** Set of files and directories to be excluded from analysis. */
mcimadamore@676 331 Set<File> excludeFiles = new HashSet<File>();
mcimadamore@676 332 /** Set of tag names to be excluded from analysis. */
mcimadamore@676 333 Set<String> excludeTags = new HashSet<String>();
mcimadamore@676 334 /** Utility class for trees */
mcimadamore@676 335 TreeUtil treeUtil = new TreeUtil();
mcimadamore@676 336
mcimadamore@676 337 /**
mcimadamore@676 338 * Main class for testing assertions concerning types/symbol
mcimadamore@676 339 * left uninitialized after attribution
mcimadamore@676 340 */
mcimadamore@676 341 private class NPETester extends TreeScanner {
mcimadamore@676 342 void test(List<Pair<JCCompilationUnit, JCTree>> trees) {
mcimadamore@676 343 for (Pair<JCCompilationUnit, JCTree> p : trees) {
mcimadamore@676 344 sourcefile = p.fst.sourcefile;
mcimadamore@676 345 endPosTable = p.fst.endPositions;
mcimadamore@676 346 encl = new Info(p.snd, endPosTable);
mcimadamore@676 347 p.snd.accept(this);
mcimadamore@676 348 }
mcimadamore@676 349 }
mcimadamore@676 350
mcimadamore@676 351 @Override
mcimadamore@676 352 public void scan(JCTree tree) {
mcimadamore@676 353 if (tree == null ||
mcimadamore@676 354 excludeTags.contains(treeUtil.nameFromTag(tree.getTag()))) {
mcimadamore@676 355 return;
mcimadamore@676 356 }
mcimadamore@676 357
mcimadamore@676 358 Info self = new Info(tree, endPosTable);
mcimadamore@676 359 check(!mandatoryType(tree) ||
mcimadamore@676 360 (tree.type != null &&
mcimadamore@676 361 checkFields(tree)),
mcimadamore@676 362 "'null' found in tree ",
mcimadamore@676 363 self);
mcimadamore@676 364
mcimadamore@676 365 Info prevEncl = encl;
mcimadamore@676 366 encl = self;
mcimadamore@676 367 tree.accept(this);
mcimadamore@676 368 encl = prevEncl;
mcimadamore@676 369 }
mcimadamore@676 370
mcimadamore@676 371 private boolean mandatoryType(JCTree that) {
mcimadamore@676 372 return that instanceof JCTree.JCExpression ||
mcimadamore@676 373 that.getTag() == JCTree.VARDEF ||
mcimadamore@676 374 that.getTag() == JCTree.METHODDEF ||
mcimadamore@676 375 that.getTag() == JCTree.CLASSDEF;
mcimadamore@676 376 }
mcimadamore@676 377
mcimadamore@676 378 private final List<String> excludedFields = Arrays.asList("varargsElement");
mcimadamore@676 379
mcimadamore@676 380 void check(boolean ok, String label, Info self) {
mcimadamore@676 381 if (!ok) {
mcimadamore@676 382 if (gui) {
mcimadamore@676 383 if (viewer == null)
mcimadamore@676 384 viewer = new Viewer();
mcimadamore@676 385 viewer.addEntry(sourcefile, label, encl, self);
mcimadamore@676 386 }
mcimadamore@676 387 error(label + self.toString() + " encl: " + encl.toString() + " in file: " + sourcefile + " " + self.tree);
mcimadamore@676 388 }
mcimadamore@676 389 }
mcimadamore@676 390
mcimadamore@676 391 boolean checkFields(JCTree t) {
mcimadamore@676 392 List<Field> fieldsToCheck = treeUtil.getFieldsOfType(t,
mcimadamore@676 393 excludedFields,
mcimadamore@676 394 Symbol.class,
mcimadamore@676 395 Type.class);
mcimadamore@676 396 for (Field f : fieldsToCheck) {
mcimadamore@676 397 try {
mcimadamore@676 398 if (f.get(t) == null) {
mcimadamore@676 399 return false;
mcimadamore@676 400 }
mcimadamore@676 401 }
mcimadamore@676 402 catch (IllegalAccessException e) {
mcimadamore@676 403 System.err.println("Cannot read field: " + f);
mcimadamore@676 404 //swallow it
mcimadamore@676 405 }
mcimadamore@676 406 }
mcimadamore@676 407 return true;
mcimadamore@676 408 }
mcimadamore@676 409
mcimadamore@676 410 @Override
mcimadamore@676 411 public void visitImport(JCImport tree) { }
mcimadamore@676 412
mcimadamore@676 413 @Override
mcimadamore@676 414 public void visitTopLevel(JCCompilationUnit tree) {
mcimadamore@676 415 scan(tree.defs);
mcimadamore@676 416 }
mcimadamore@676 417
mcimadamore@676 418 JavaFileObject sourcefile;
mcimadamore@676 419 Map<JCTree, Integer> endPosTable;
mcimadamore@676 420 Info encl;
mcimadamore@676 421 }
mcimadamore@676 422
mcimadamore@676 423 /**
mcimadamore@676 424 * Utility class providing easy access to position and other info for a tree node.
mcimadamore@676 425 */
mcimadamore@676 426 private class Info {
mcimadamore@676 427 Info() {
mcimadamore@676 428 tree = null;
mcimadamore@676 429 tag = JCTree.ERRONEOUS;
mcimadamore@676 430 start = 0;
mcimadamore@676 431 pos = 0;
mcimadamore@676 432 end = Integer.MAX_VALUE;
mcimadamore@676 433 }
mcimadamore@676 434
mcimadamore@676 435 Info(JCTree tree, Map<JCTree, Integer> endPosTable) {
mcimadamore@676 436 this.tree = tree;
mcimadamore@676 437 tag = tree.getTag();
mcimadamore@676 438 start = TreeInfo.getStartPos(tree);
mcimadamore@676 439 pos = tree.pos;
mcimadamore@676 440 end = TreeInfo.getEndPos(tree, endPosTable);
mcimadamore@676 441 }
mcimadamore@676 442
mcimadamore@676 443 @Override
mcimadamore@676 444 public String toString() {
mcimadamore@676 445 return treeUtil.nameFromTag(tree.getTag()) + "[start:" + start + ",pos:" + pos + ",end:" + end + "]";
mcimadamore@676 446 }
mcimadamore@676 447
mcimadamore@676 448 final JCTree tree;
mcimadamore@676 449 final int tag;
mcimadamore@676 450 final int start;
mcimadamore@676 451 final int pos;
mcimadamore@676 452 final int end;
mcimadamore@676 453 }
mcimadamore@676 454
mcimadamore@676 455 /**
mcimadamore@676 456 * Names for tree tags.
mcimadamore@676 457 * javac does not provide an API to convert tag values to strings, so this class uses
mcimadamore@676 458 * reflection to determine names of public static final int values in JCTree.
mcimadamore@676 459 */
mcimadamore@676 460 private static class TreeUtil {
mcimadamore@676 461 String nameFromTag(int tag) {
mcimadamore@676 462 if (names == null) {
mcimadamore@676 463 names = new HashMap<Integer, String>();
mcimadamore@676 464 Class c = JCTree.class;
mcimadamore@676 465 for (Field f : c.getDeclaredFields()) {
mcimadamore@676 466 if (f.getType().equals(int.class)) {
mcimadamore@676 467 int mods = f.getModifiers();
mcimadamore@676 468 if (Modifier.isPublic(mods) && Modifier.isStatic(mods) && Modifier.isFinal(mods)) {
mcimadamore@676 469 try {
mcimadamore@676 470 names.put(f.getInt(null), f.getName());
mcimadamore@676 471 } catch (IllegalAccessException e) {
mcimadamore@676 472 }
mcimadamore@676 473 }
mcimadamore@676 474 }
mcimadamore@676 475 }
mcimadamore@676 476 }
mcimadamore@676 477 String name = names.get(tag);
mcimadamore@676 478 return (name == null) ? "??" : name;
mcimadamore@676 479 }
mcimadamore@676 480
mcimadamore@676 481 List<Field> getFieldsOfType(JCTree t, List<String> excludeNames, Class<?>... types) {
mcimadamore@676 482 List<Field> buf = new ArrayList<Field>();
mcimadamore@676 483 for (Field f : t.getClass().getDeclaredFields()) {
mcimadamore@676 484 if (!excludeNames.contains(f.getName())) {
mcimadamore@676 485 for (Class<?> type : types) {
mcimadamore@676 486 if (type.isAssignableFrom(f.getType())) {
mcimadamore@676 487 f.setAccessible(true);
mcimadamore@676 488 buf.add(f);
mcimadamore@676 489 break;
mcimadamore@676 490 }
mcimadamore@676 491 }
mcimadamore@676 492 }
mcimadamore@676 493 }
mcimadamore@676 494 return buf;
mcimadamore@676 495 }
mcimadamore@676 496
mcimadamore@676 497 private Map<Integer, String> names;
mcimadamore@676 498 }
mcimadamore@676 499
mcimadamore@676 500 /**
mcimadamore@676 501 * Thrown when errors are found parsing a java file.
mcimadamore@676 502 */
mcimadamore@676 503 private static class ParseException extends Exception {
mcimadamore@676 504 ParseException(String msg) {
mcimadamore@676 505 super(msg);
mcimadamore@676 506 }
mcimadamore@676 507 }
mcimadamore@676 508
mcimadamore@676 509 private static class AttributionException extends Exception {
mcimadamore@676 510 AttributionException(String msg) {
mcimadamore@676 511 super(msg);
mcimadamore@676 512 }
mcimadamore@676 513 }
mcimadamore@676 514
mcimadamore@676 515 /**
mcimadamore@676 516 * DiagnosticListener to report diagnostics and count any errors that occur.
mcimadamore@676 517 */
mcimadamore@676 518 private static class Reporter implements DiagnosticListener<JavaFileObject> {
mcimadamore@676 519 Reporter(PrintWriter out) {
mcimadamore@676 520 this.out = out;
mcimadamore@676 521 }
mcimadamore@676 522
mcimadamore@676 523 public void report(Diagnostic<? extends JavaFileObject> diagnostic) {
mcimadamore@676 524 out.println(diagnostic);
mcimadamore@676 525 switch (diagnostic.getKind()) {
mcimadamore@676 526 case ERROR:
mcimadamore@676 527 errors++;
mcimadamore@676 528 }
mcimadamore@676 529 }
mcimadamore@676 530 int errors;
mcimadamore@676 531 PrintWriter out;
mcimadamore@676 532 }
mcimadamore@676 533
mcimadamore@676 534 /**
mcimadamore@676 535 * GUI viewer for issues found by TreePosTester. The viewer provides a drop
mcimadamore@676 536 * down list for selecting error conditions, a header area providing details
mcimadamore@676 537 * about an error, and a text area with the ranges of text highlighted as
mcimadamore@676 538 * appropriate.
mcimadamore@676 539 */
mcimadamore@676 540 private class Viewer extends JFrame {
mcimadamore@676 541 /**
mcimadamore@676 542 * Create a viewer.
mcimadamore@676 543 */
mcimadamore@676 544 Viewer() {
mcimadamore@676 545 initGUI();
mcimadamore@676 546 }
mcimadamore@676 547
mcimadamore@676 548 /**
mcimadamore@676 549 * Add another entry to the list of errors.
mcimadamore@676 550 * @param file The file containing the error
mcimadamore@676 551 * @param check The condition that was being tested, and which failed
mcimadamore@676 552 * @param encl the enclosing tree node
mcimadamore@676 553 * @param self the tree node containing the error
mcimadamore@676 554 */
mcimadamore@676 555 void addEntry(JavaFileObject file, String check, Info encl, Info self) {
mcimadamore@676 556 Entry e = new Entry(file, check, encl, self);
mcimadamore@676 557 DefaultComboBoxModel m = (DefaultComboBoxModel) entries.getModel();
mcimadamore@676 558 m.addElement(e);
mcimadamore@676 559 if (m.getSize() == 1)
mcimadamore@676 560 entries.setSelectedItem(e);
mcimadamore@676 561 }
mcimadamore@676 562
mcimadamore@676 563 /**
mcimadamore@676 564 * Initialize the GUI window.
mcimadamore@676 565 */
mcimadamore@676 566 private void initGUI() {
mcimadamore@676 567 JPanel head = new JPanel(new GridBagLayout());
mcimadamore@676 568 GridBagConstraints lc = new GridBagConstraints();
mcimadamore@676 569 GridBagConstraints fc = new GridBagConstraints();
mcimadamore@676 570 fc.anchor = GridBagConstraints.WEST;
mcimadamore@676 571 fc.fill = GridBagConstraints.HORIZONTAL;
mcimadamore@676 572 fc.gridwidth = GridBagConstraints.REMAINDER;
mcimadamore@676 573
mcimadamore@676 574 entries = new JComboBox();
mcimadamore@676 575 entries.addActionListener(new ActionListener() {
mcimadamore@676 576 public void actionPerformed(ActionEvent e) {
mcimadamore@676 577 showEntry((Entry) entries.getSelectedItem());
mcimadamore@676 578 }
mcimadamore@676 579 });
mcimadamore@676 580 fc.insets.bottom = 10;
mcimadamore@676 581 head.add(entries, fc);
mcimadamore@676 582 fc.insets.bottom = 0;
mcimadamore@676 583 head.add(new JLabel("check:"), lc);
mcimadamore@676 584 head.add(checkField = createTextField(80), fc);
mcimadamore@676 585 fc.fill = GridBagConstraints.NONE;
mcimadamore@676 586 head.add(setBackground(new JLabel("encl:"), enclColor), lc);
mcimadamore@676 587 head.add(enclPanel = new InfoPanel(), fc);
mcimadamore@676 588 head.add(setBackground(new JLabel("self:"), selfColor), lc);
mcimadamore@676 589 head.add(selfPanel = new InfoPanel(), fc);
mcimadamore@676 590 add(head, BorderLayout.NORTH);
mcimadamore@676 591
mcimadamore@676 592 body = new JTextArea();
mcimadamore@676 593 body.setFont(Font.decode(Font.MONOSPACED));
mcimadamore@676 594 body.addCaretListener(new CaretListener() {
mcimadamore@676 595 public void caretUpdate(CaretEvent e) {
mcimadamore@676 596 int dot = e.getDot();
mcimadamore@676 597 int mark = e.getMark();
mcimadamore@676 598 if (dot == mark)
mcimadamore@676 599 statusText.setText("dot: " + dot);
mcimadamore@676 600 else
mcimadamore@676 601 statusText.setText("dot: " + dot + ", mark:" + mark);
mcimadamore@676 602 }
mcimadamore@676 603 });
mcimadamore@676 604 JScrollPane p = new JScrollPane(body,
mcimadamore@676 605 JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
mcimadamore@676 606 JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
mcimadamore@676 607 p.setPreferredSize(new Dimension(640, 480));
mcimadamore@676 608 add(p, BorderLayout.CENTER);
mcimadamore@676 609
mcimadamore@676 610 statusText = createTextField(80);
mcimadamore@676 611 add(statusText, BorderLayout.SOUTH);
mcimadamore@676 612
mcimadamore@676 613 pack();
mcimadamore@676 614 setLocationRelativeTo(null); // centered on screen
mcimadamore@676 615 setVisible(true);
mcimadamore@676 616 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mcimadamore@676 617 }
mcimadamore@676 618
mcimadamore@676 619 /** Show an entry that has been selected. */
mcimadamore@676 620 private void showEntry(Entry e) {
mcimadamore@676 621 try {
mcimadamore@676 622 // update simple fields
mcimadamore@676 623 setTitle(e.file.getName());
mcimadamore@676 624 checkField.setText(e.check);
mcimadamore@676 625 enclPanel.setInfo(e.encl);
mcimadamore@676 626 selfPanel.setInfo(e.self);
mcimadamore@676 627 // show file text with highlights
mcimadamore@676 628 body.setText(e.file.getCharContent(true).toString());
mcimadamore@676 629 Highlighter highlighter = body.getHighlighter();
mcimadamore@676 630 highlighter.removeAllHighlights();
mcimadamore@676 631 addHighlight(highlighter, e.encl, enclColor);
mcimadamore@676 632 addHighlight(highlighter, e.self, selfColor);
mcimadamore@676 633 scroll(body, getMinPos(enclPanel.info, selfPanel.info));
mcimadamore@676 634 } catch (IOException ex) {
mcimadamore@676 635 body.setText("Cannot read " + e.file.getName() + ": " + e);
mcimadamore@676 636 }
mcimadamore@676 637 }
mcimadamore@676 638
mcimadamore@676 639 /** Create a test field. */
mcimadamore@676 640 private JTextField createTextField(int width) {
mcimadamore@676 641 JTextField f = new JTextField(width);
mcimadamore@676 642 f.setEditable(false);
mcimadamore@676 643 f.setBorder(null);
mcimadamore@676 644 return f;
mcimadamore@676 645 }
mcimadamore@676 646
mcimadamore@676 647 /** Add a highlighted region based on the positions in an Info object. */
mcimadamore@676 648 private void addHighlight(Highlighter h, Info info, Color c) {
mcimadamore@676 649 int start = info.start;
mcimadamore@676 650 int end = info.end;
mcimadamore@676 651 if (start == -1 && end == -1)
mcimadamore@676 652 return;
mcimadamore@676 653 if (start == -1)
mcimadamore@676 654 start = end;
mcimadamore@676 655 if (end == -1)
mcimadamore@676 656 end = start;
mcimadamore@676 657 try {
mcimadamore@676 658 h.addHighlight(info.start, info.end,
mcimadamore@676 659 new DefaultHighlighter.DefaultHighlightPainter(c));
mcimadamore@676 660 if (info.pos != -1) {
mcimadamore@676 661 Color c2 = new Color(c.getRed(), c.getGreen(), c.getBlue(), (int)(.4f * 255)); // 40%
mcimadamore@676 662 h.addHighlight(info.pos, info.pos + 1,
mcimadamore@676 663 new DefaultHighlighter.DefaultHighlightPainter(c2));
mcimadamore@676 664 }
mcimadamore@676 665 } catch (BadLocationException e) {
mcimadamore@676 666 e.printStackTrace();
mcimadamore@676 667 }
mcimadamore@676 668 }
mcimadamore@676 669
mcimadamore@676 670 /** Get the minimum valid position in a set of info objects. */
mcimadamore@676 671 private int getMinPos(Info... values) {
mcimadamore@676 672 int i = Integer.MAX_VALUE;
mcimadamore@676 673 for (Info info: values) {
mcimadamore@676 674 if (info.start >= 0) i = Math.min(i, info.start);
mcimadamore@676 675 if (info.pos >= 0) i = Math.min(i, info.pos);
mcimadamore@676 676 if (info.end >= 0) i = Math.min(i, info.end);
mcimadamore@676 677 }
mcimadamore@676 678 return (i == Integer.MAX_VALUE) ? 0 : i;
mcimadamore@676 679 }
mcimadamore@676 680
mcimadamore@676 681 /** Set the background on a component. */
mcimadamore@676 682 private JComponent setBackground(JComponent comp, Color c) {
mcimadamore@676 683 comp.setOpaque(true);
mcimadamore@676 684 comp.setBackground(c);
mcimadamore@676 685 return comp;
mcimadamore@676 686 }
mcimadamore@676 687
mcimadamore@676 688 /** Scroll a text area to display a given position near the middle of the visible area. */
mcimadamore@676 689 private void scroll(final JTextArea t, final int pos) {
mcimadamore@676 690 // Using invokeLater appears to give text a chance to sort itself out
mcimadamore@676 691 // before the scroll happens; otherwise scrollRectToVisible doesn't work.
mcimadamore@676 692 // Maybe there's a better way to sync with the text...
mcimadamore@676 693 EventQueue.invokeLater(new Runnable() {
mcimadamore@676 694 public void run() {
mcimadamore@676 695 try {
mcimadamore@676 696 Rectangle r = t.modelToView(pos);
mcimadamore@676 697 JScrollPane p = (JScrollPane) SwingUtilities.getAncestorOfClass(JScrollPane.class, t);
mcimadamore@676 698 r.y = Math.max(0, r.y - p.getHeight() * 2 / 5);
mcimadamore@676 699 r.height += p.getHeight() * 4 / 5;
mcimadamore@676 700 t.scrollRectToVisible(r);
mcimadamore@676 701 } catch (BadLocationException ignore) {
mcimadamore@676 702 }
mcimadamore@676 703 }
mcimadamore@676 704 });
mcimadamore@676 705 }
mcimadamore@676 706
mcimadamore@676 707 private JComboBox entries;
mcimadamore@676 708 private JTextField checkField;
mcimadamore@676 709 private InfoPanel enclPanel;
mcimadamore@676 710 private InfoPanel selfPanel;
mcimadamore@676 711 private JTextArea body;
mcimadamore@676 712 private JTextField statusText;
mcimadamore@676 713
mcimadamore@676 714 private Color selfColor = new Color(0.f, 1.f, 0.f, 0.2f); // 20% green
mcimadamore@676 715 private Color enclColor = new Color(1.f, 0.f, 0.f, 0.2f); // 20% red
mcimadamore@676 716
mcimadamore@676 717 /** Panel to display an Info object. */
mcimadamore@676 718 private class InfoPanel extends JPanel {
mcimadamore@676 719 InfoPanel() {
mcimadamore@676 720 add(tagName = createTextField(20));
mcimadamore@676 721 add(new JLabel("start:"));
mcimadamore@676 722 add(addListener(start = createTextField(6)));
mcimadamore@676 723 add(new JLabel("pos:"));
mcimadamore@676 724 add(addListener(pos = createTextField(6)));
mcimadamore@676 725 add(new JLabel("end:"));
mcimadamore@676 726 add(addListener(end = createTextField(6)));
mcimadamore@676 727 }
mcimadamore@676 728
mcimadamore@676 729 void setInfo(Info info) {
mcimadamore@676 730 this.info = info;
mcimadamore@676 731 tagName.setText(treeUtil.nameFromTag(info.tag));
mcimadamore@676 732 start.setText(String.valueOf(info.start));
mcimadamore@676 733 pos.setText(String.valueOf(info.pos));
mcimadamore@676 734 end.setText(String.valueOf(info.end));
mcimadamore@676 735 }
mcimadamore@676 736
mcimadamore@676 737 JTextField addListener(final JTextField f) {
mcimadamore@676 738 f.addMouseListener(new MouseAdapter() {
mcimadamore@676 739 @Override
mcimadamore@676 740 public void mouseClicked(MouseEvent e) {
mcimadamore@676 741 body.setCaretPosition(Integer.valueOf(f.getText()));
mcimadamore@676 742 body.getCaret().setVisible(true);
mcimadamore@676 743 }
mcimadamore@676 744 });
mcimadamore@676 745 return f;
mcimadamore@676 746 }
mcimadamore@676 747
mcimadamore@676 748 Info info;
mcimadamore@676 749 JTextField tagName;
mcimadamore@676 750 JTextField start;
mcimadamore@676 751 JTextField pos;
mcimadamore@676 752 JTextField end;
mcimadamore@676 753 }
mcimadamore@676 754
mcimadamore@676 755 /** Object to record information about an error to be displayed. */
mcimadamore@676 756 private class Entry {
mcimadamore@676 757 Entry(JavaFileObject file, String check, Info encl, Info self) {
mcimadamore@676 758 this.file = file;
mcimadamore@676 759 this.check = check;
mcimadamore@676 760 this.encl = encl;
mcimadamore@676 761 this.self= self;
mcimadamore@676 762 }
mcimadamore@676 763
mcimadamore@676 764 @Override
mcimadamore@676 765 public String toString() {
mcimadamore@676 766 return file.getName() + " " + check + " " + getMinPos(encl, self);
mcimadamore@676 767 }
mcimadamore@676 768
mcimadamore@676 769 final JavaFileObject file;
mcimadamore@676 770 final String check;
mcimadamore@676 771 final Info encl;
mcimadamore@676 772 final Info self;
mcimadamore@676 773 }
mcimadamore@676 774 }
mcimadamore@676 775 }

mercurial