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