langtools/test/tools/javac/tree/TreePosTest.java
author jjg
Tue, 08 Nov 2011 11:51:05 -0800
changeset 10950 e87b50888909
parent 7846 f72ce57eb9c1
child 11055 ec1418effa77
permissions -rw-r--r--
6921494: provide way to print javac tree tag values Reviewed-by: jjg, mcimadamore Contributed-by: vicenterz@yahoo.es
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
/*
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
     2
 * Copyright (c) 2010, 2011, 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
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
    83
import static com.sun.tools.javac.tree.JCTree.Tag.*;
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
    84
import static com.sun.tools.javac.util.Position.NOPOS;
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
/**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
    87
 * 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
    88
 * 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
    89
 * 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
    90
 * run program with no args.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
    91
 *
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
    92
 * <p>
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
    93
 * 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
    94
 * 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
    95
 * 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
    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
/*
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
    99
 * @test
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   100
 * @bug 6919889
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   101
 * @summary assorted position errors in compiler syntax trees
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   102
 * @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
   103
 */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   104
public class TreePosTest {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   105
    /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   106
     * Main entry point.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   107
     * 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
   108
     * 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
   109
     * 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
   110
     * 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
   111
     * 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
   112
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   113
    public static void main(String... args) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   114
        String testSrc = System.getProperty("test.src");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   115
        File baseDir = (testSrc == null) ? null : new File(testSrc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   116
        boolean ok = new TreePosTest().run(baseDir, args);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   117
        if (!ok) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   118
            if (testSrc != null)  // jtreg mode
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   119
                throw new Error("failed");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   120
            else
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   121
                System.exit(1);
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
    /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   126
     * 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
   127
     * 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
   128
     * directory to the test root directory. For other options, see usage().
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   129
     * @param baseDir base directory for any file arguments.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   130
     * @param args command line args
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   131
     * @return true if successful or in gui mode
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   132
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   133
    boolean run(File baseDir, String... args) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   134
        if (args.length == 0) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   135
            usage(System.out);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   136
            return true;
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   139
        List<File> files = new ArrayList<File>();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   140
        for (int i = 0; i < args.length; i++) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   141
            String arg = args[i];
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   142
            if (arg.equals("-encoding") && i + 1 < args.length)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   143
                encoding = args[++i];
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   144
            else if (arg.equals("-gui"))
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   145
                gui = true;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   146
            else if (arg.equals("-q"))
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   147
                quiet = true;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   148
            else if (arg.equals("-v"))
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   149
                verbose = true;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   150
            else if (arg.equals("-t") && i + 1 < args.length)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   151
                tags.add(args[++i]);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   152
            else if (arg.equals("-ef") && i + 1 < args.length)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   153
                excludeFiles.add(new File(baseDir, args[++i]));
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   154
            else if (arg.equals("-et") && i + 1 < args.length)
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   155
                excludeTags.add(args[++i]);
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   156
            else if (arg.equals("-r")) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   157
                if (excludeFiles.size() > 0)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   158
                    throw new Error("-r must be used before -ef");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   159
                File d = baseDir;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   160
                while (!new File(d, "TEST.ROOT").exists()) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   161
                    d = d.getParentFile();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   162
                    if (d == null)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   163
                        throw new Error("cannot find TEST.ROOT");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   164
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   165
                baseDir = d;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   166
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   167
            else if (arg.startsWith("-"))
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   168
                throw new Error("unknown option: " + arg);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   169
            else {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   170
                while (i < args.length)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   171
                    files.add(new File(baseDir, args[i++]));
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   175
        for (File file: files) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   176
            if (file.exists())
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   177
                test(file);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   178
            else
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   179
                error("File not found: " + file);
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   182
        if (fileCount != 1)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   183
            System.err.println(fileCount + " files read");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   184
        if (errors > 0)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   185
            System.err.println(errors + " errors");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   186
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   187
        return (gui || errors == 0);
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
    /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   191
     * Print command line help.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   192
     * @param out output stream
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   193
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   194
    void usage(PrintStream out) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   195
        out.println("Usage:");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   196
        out.println("  java TreePosTest options... files...");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   197
        out.println("");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   198
        out.println("where options include:");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   199
        out.println("-gui      Display returns in a GUI viewer");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   200
        out.println("-q        Quiet: don't report on inapplicable files");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   201
        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
   202
        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
   203
        out.println("          Can be repeated if desired");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   204
        out.println("-ef file  Exclude file or directory");
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   205
        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
   206
        out.println("");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   207
        out.println("files may be directories or files");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   208
        out.println("directories will be scanned recursively");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   209
        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
   210
        out.println("");
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
    /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   214
     * 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
   215
     * for java files.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   216
     * @param file the file or directory to test
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   217
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   218
    void test(File file) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   219
        if (excludeFiles.contains(file)) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   220
            if (!quiet)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   221
                error("File " + file + " excluded");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   222
            return;
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   225
        if (file.isDirectory()) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   226
            for (File f: file.listFiles()) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   227
                test(f);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   228
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   229
            return;
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   232
        if (file.isFile() && file.getName().endsWith(".java")) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   233
            try {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   234
                if (verbose)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   235
                    System.err.println(file);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   236
                fileCount++;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   237
                PosTester p = new PosTester();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   238
                p.test(read(file));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   239
            } catch (ParseException e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   240
                if (!quiet) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   241
                    error("Error parsing " + file + "\n" + e.getMessage());
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   242
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   243
            } catch (IOException e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   244
                error("Error reading " + file + ": " + e);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   245
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   246
            return;
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   249
        if (!quiet)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   250
            error("File " + file + " ignored");
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
7846
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   253
    // See CR:  6982992 Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   254
    StringWriter sw = new StringWriter();
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   255
    PrintWriter pw = new PrintWriter(sw);
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   256
    Reporter r = new Reporter(pw);
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   257
    JavacTool tool = JavacTool.create();
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   258
    StandardJavaFileManager fm = tool.getStandardFileManager(r, null, null);
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   259
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   260
    /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   261
     * Read a file.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   262
     * @param file the file to be read
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   263
     * @return the tree for the content of the file
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   264
     * @throws IOException if any IO errors occur
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   265
     * @throws TreePosTest.ParseException if any errors occur while parsing the file
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   266
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   267
    JCCompilationUnit read(File file) throws IOException, ParseException {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   268
        JavacTool tool = JavacTool.create();
7846
f72ce57eb9c1 6982992: Tests CheckAttributedTree.java, JavacTreeScannerTest.java, and SourceTreeeScannerTest.java timeout
jjh
parents: 7072
diff changeset
   269
        r.errors = 0;
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   270
        Iterable<? extends JavaFileObject> files = fm.getJavaFileObjects(file);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   271
        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
   272
        Iterable<? extends CompilationUnitTree> trees = task.parse();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   273
        pw.flush();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   274
        if (r.errors > 0)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   275
            throw new ParseException(sw.toString());
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   276
        Iterator<? extends CompilationUnitTree> iter = trees.iterator();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   277
        if (!iter.hasNext())
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   278
            throw new Error("no trees found");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   279
        JCCompilationUnit t = (JCCompilationUnit) iter.next();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   280
        if (iter.hasNext())
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   281
            throw new Error("too many trees found");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   282
        return t;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   283
    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   284
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
     * 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
   287
     * exit or throw an Error if any errors have been reported.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   288
     * @param msg the error message
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
    void error(String msg) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   291
        System.err.println(msg);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   292
        errors++;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   293
    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   294
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   295
    /**
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   296
     * Names for tree tags.
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   297
     */
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   298
    private static String getTagName(JCTree.Tag tag) {
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   299
        String name = tag.name();
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   300
        return (name == null) ? "??" : name;
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   301
    }
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   302
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   303
    /** Number of files that have been analyzed. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   304
    int fileCount;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   305
    /** Number of errors reported. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   306
    int errors;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   307
    /** Flag: don't report irrelevant files. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   308
    boolean quiet;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   309
    /** Flag: report files as they are processed. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   310
    boolean verbose;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   311
    /** Flag: show errors in GUI viewer. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   312
    boolean gui;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   313
    /** Option: encoding for test files. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   314
    String encoding;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   315
    /** The GUI viewer for errors. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   316
    Viewer viewer;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   317
    /** 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
   318
     * are analyzed. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   319
    Set<String> tags = new HashSet<String>();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   320
    /** Set of files and directories to be excluded from analysis. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   321
    Set<File> excludeFiles = new HashSet<File>();
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   322
    /** Set of tag names to be excluded from analysis. */
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   323
    Set<String> excludeTags = new HashSet<String>();
4870
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
     * Main class for testing assertions concerning tree positions for tree nodes.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   327
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   328
    private class PosTester extends TreeScanner {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   329
        void test(JCCompilationUnit tree) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   330
            sourcefile = tree.sourcefile;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   331
            endPosTable = tree.endPositions;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   332
            encl = new Info();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   333
            tree.accept(this);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   334
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   335
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   336
        @Override
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   337
        public void scan(JCTree tree) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   338
            if (tree == null)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   339
                return;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   340
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   341
            Info self = new Info(tree, endPosTable);
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   342
            if (check(encl, self)) {
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   343
                // Modifiers nodes are present throughout the tree even where
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   344
                // there is no corresponding source text.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   345
                // Redundant semicolons in a class definition can cause empty
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   346
                // initializer blocks with no positions.
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   347
                if ((self.tag == MODIFIERS || self.tag == BLOCK)
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   348
                        && self.pos == NOPOS) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   349
                    // 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
   350
                    check("start == NOPOS", encl, self, self.start == NOPOS);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   351
                    check("end == NOPOS", encl, self, self.end == NOPOS);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   352
                } else {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   353
                    // For this node, start , pos, and endpos should be all defined
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   354
                    check("start != NOPOS", encl, self, self.start != NOPOS);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   355
                    check("pos != NOPOS", encl, self, self.pos != NOPOS);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   356
                    check("end != NOPOS", encl, self, self.end != NOPOS);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   357
                    // The following should normally be ordered
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   358
                    // encl.start <= start <= pos <= end <= encl.end
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   359
                    // In addition, the position of the enclosing node should be
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   360
                    // within this node.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   361
                    // The primary exceptions are for array type nodes, because of the
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   362
                    // need to support legacy syntax:
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   363
                    //    e.g.    int a[];    int[] b[];    int f()[] { return null; }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   364
                    // and because of inconsistent nesting of left and right of
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   365
                    // array declarations:
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   366
                    //    e.g.    int[][] a = new int[2][];
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   367
                    check("encl.start <= start", encl, self, encl.start <= self.start);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   368
                    check("start <= pos", encl, self, self.start <= self.pos);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   369
                    if (!(self.tag == TYPEARRAY
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   370
                            && (encl.tag == VARDEF ||
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   371
                                encl.tag == METHODDEF ||
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   372
                                encl.tag == TYPEARRAY))) {
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   373
                        check("encl.pos <= start || end <= encl.pos",
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   374
                                encl, self, encl.pos <= self.start || self.end <= encl.pos);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   375
                    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   376
                    check("pos <= end", encl, self, self.pos <= self.end);
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   377
                    if (!(self.tag == TYPEARRAY && encl.tag == TYPEARRAY)) {
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   378
                        check("end <= encl.end", encl, self, self.end <= encl.end);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   379
                    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   380
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   381
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   382
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   383
            Info prevEncl = encl;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   384
            encl = self;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   385
            tree.accept(this);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   386
            encl = prevEncl;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   387
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   388
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   389
        @Override
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   390
        public void visitVarDef(JCVariableDecl tree) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   391
            // enum member declarations are desugared in the parser and have
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   392
            // ill-defined semantics for tree positions, so for now, we
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   393
            // skip the synthesized bits and just check parts which came from
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   394
            // the original source text
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   395
            if ((tree.mods.flags & Flags.ENUM) != 0) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   396
                scan(tree.mods);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   397
                if (tree.init != null) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   398
                    if (tree.init.hasTag(NEWCLASS)) {
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   399
                        JCNewClass init = (JCNewClass) tree.init;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   400
                        if (init.args != null && init.args.nonEmpty()) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   401
                            scan(init.args);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   402
                        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   403
                        if (init.def != null && init.def.defs != null) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   404
                            scan(init.def.defs);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   405
                        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   406
                    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   407
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   408
            } else
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   409
                super.visitVarDef(tree);
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
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   412
        boolean check(Info encl, Info self) {
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   413
            if (excludeTags.size() > 0) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   414
                if (encl != null && excludeTags.contains(getTagName(encl.tag))
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   415
                        || excludeTags.contains(getTagName(self.tag)))
4933
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   416
                    return false;
57f71400ba29 6926555: 6921979 breaks TreePosTest
jjg
parents: 4874
diff changeset
   417
            }
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   418
            return tags.size() == 0 || tags.contains(getTagName(self.tag));
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   419
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   420
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   421
        void check(String label, Info encl, Info self, boolean ok) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   422
            if (!ok) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   423
                if (gui) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   424
                    if (viewer == null)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   425
                        viewer = new Viewer();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   426
                    viewer.addEntry(sourcefile, label, encl, self);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   427
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   428
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   429
                String s = self.tree.toString();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   430
                String msg = sourcefile.getName() + ": " + label + ": " +
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   431
                        "encl:" + encl + " this:" + self + "\n" +
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   432
                        s.substring(0, Math.min(80, s.length())).replaceAll("[\r\n]+", " ");
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   433
                error(msg);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   434
            }
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   437
        JavaFileObject sourcefile;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   438
        Map<JCTree, Integer> endPosTable;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   439
        Info encl;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   440
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   441
    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   442
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
     * 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
   445
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   446
    private class Info {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   447
        Info() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   448
            tree = null;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   449
            tag = ERRONEOUS;
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   450
            start = 0;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   451
            pos = 0;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   452
            end = Integer.MAX_VALUE;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   453
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   454
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   455
        Info(JCTree tree, Map<JCTree, Integer> endPosTable) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   456
            this.tree = tree;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   457
            tag = tree.getTag();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   458
            start = TreeInfo.getStartPos(tree);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   459
            pos = tree.pos;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   460
            end = TreeInfo.getEndPos(tree, endPosTable);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   461
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   462
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   463
        @Override
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   464
        public String toString() {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   465
            return getTagName(tree.getTag()) + "[start:" + start + ",pos:" + pos + ",end:" + end + "]";
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   466
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   467
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   468
        final JCTree tree;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   469
        final JCTree.Tag tag;
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   470
        final int start;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   471
        final int pos;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   472
        final int end;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   473
    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   474
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   475
    /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   476
     * Thrown when errors are found parsing a java file.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   477
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   478
    private static class ParseException extends Exception {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   479
        ParseException(String msg) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   480
            super(msg);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   481
        }
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
     * DiagnosticListener to report diagnostics and count any errors that occur.
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
    private static class Reporter implements DiagnosticListener<JavaFileObject> {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   488
        Reporter(PrintWriter out) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   489
            this.out = out;
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   492
        public void report(Diagnostic<? extends JavaFileObject> diagnostic) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   493
            out.println(diagnostic);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   494
            switch (diagnostic.getKind()) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   495
                case ERROR:
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   496
                    errors++;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   497
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   498
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   499
        int errors;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   500
        PrintWriter out;
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
     * 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
   505
     * down list for selecting error conditions, a header area providing details
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   506
     * 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
   507
     * appropriate.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   508
     */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   509
    private class Viewer extends JFrame {
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
         * Create a viewer.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   512
         */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   513
        Viewer() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   514
            initGUI();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   515
        }
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
         * Add another entry to the list of errors.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   519
         * @param file The file containing the error
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   520
         * @param check The condition that was being tested, and which failed
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   521
         * @param encl the enclosing tree node
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   522
         * @param self the tree node containing the error
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   523
         */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   524
        void addEntry(JavaFileObject file, String check, Info encl, Info self) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   525
            Entry e = new Entry(file, check, encl, self);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   526
            DefaultComboBoxModel m = (DefaultComboBoxModel) entries.getModel();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   527
            m.addElement(e);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   528
            if (m.getSize() == 1)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   529
                entries.setSelectedItem(e);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   530
        }
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
        /**
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   533
         * Initialize the GUI window.
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
        private void initGUI() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   536
            JPanel head = new JPanel(new GridBagLayout());
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   537
            GridBagConstraints lc = new GridBagConstraints();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   538
            GridBagConstraints fc = new GridBagConstraints();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   539
            fc.anchor = GridBagConstraints.WEST;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   540
            fc.fill = GridBagConstraints.HORIZONTAL;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   541
            fc.gridwidth = GridBagConstraints.REMAINDER;
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
            entries = new JComboBox();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   544
            entries.addActionListener(new ActionListener() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   545
                public void actionPerformed(ActionEvent e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   546
                    showEntry((Entry) entries.getSelectedItem());
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   547
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   548
            });
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   549
            fc.insets.bottom = 10;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   550
            head.add(entries, fc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   551
            fc.insets.bottom = 0;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   552
            head.add(new JLabel("check:"), lc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   553
            head.add(checkField = createTextField(80), fc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   554
            fc.fill = GridBagConstraints.NONE;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   555
            head.add(setBackground(new JLabel("encl:"), enclColor), lc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   556
            head.add(enclPanel = new InfoPanel(), fc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   557
            head.add(setBackground(new JLabel("self:"), selfColor), lc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   558
            head.add(selfPanel = new InfoPanel(), fc);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   559
            add(head, BorderLayout.NORTH);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   560
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   561
            body = new JTextArea();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   562
            body.setFont(Font.decode(Font.MONOSPACED));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   563
            body.addCaretListener(new CaretListener() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   564
                public void caretUpdate(CaretEvent e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   565
                    int dot = e.getDot();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   566
                    int mark = e.getMark();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   567
                    if (dot == mark)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   568
                        statusText.setText("dot: " + dot);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   569
                    else
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   570
                        statusText.setText("dot: " + dot + ", mark:" + mark);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   571
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   572
            });
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   573
            JScrollPane p = new JScrollPane(body,
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   574
                    JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   575
                    JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   576
            p.setPreferredSize(new Dimension(640, 480));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   577
            add(p, BorderLayout.CENTER);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   578
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   579
            statusText = createTextField(80);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   580
            add(statusText, BorderLayout.SOUTH);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   581
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   582
            pack();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   583
            setLocationRelativeTo(null); // centered on screen
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   584
            setVisible(true);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   585
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   586
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   587
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   588
        /** Show an entry that has been selected. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   589
        private void showEntry(Entry e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   590
            try {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   591
                // update simple fields
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   592
                setTitle(e.file.getName());
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   593
                checkField.setText(e.check);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   594
                enclPanel.setInfo(e.encl);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   595
                selfPanel.setInfo(e.self);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   596
                // show file text with highlights
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   597
                body.setText(e.file.getCharContent(true).toString());
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   598
                Highlighter highlighter = body.getHighlighter();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   599
                highlighter.removeAllHighlights();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   600
                addHighlight(highlighter, e.encl, enclColor);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   601
                addHighlight(highlighter, e.self, selfColor);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   602
                scroll(body, getMinPos(enclPanel.info, selfPanel.info));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   603
            } catch (IOException ex) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   604
                body.setText("Cannot read " + e.file.getName() + ": " + e);
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   608
        /** Create a test field. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   609
        private JTextField createTextField(int width) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   610
            JTextField f = new JTextField(width);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   611
            f.setEditable(false);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   612
            f.setBorder(null);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   613
            return f;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   614
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   615
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   616
        /** 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
   617
        private void addHighlight(Highlighter h, Info info, Color c) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   618
            int start = info.start;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   619
            int end = info.end;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   620
            if (start == -1 && end == -1)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   621
                return;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   622
            if (start == -1)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   623
                start = end;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   624
            if (end == -1)
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   625
                end = start;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   626
            try {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   627
                h.addHighlight(info.start, info.end,
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   628
                        new DefaultHighlighter.DefaultHighlightPainter(c));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   629
                if (info.pos != -1) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   630
                    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
   631
                    h.addHighlight(info.pos, info.pos + 1,
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   632
                        new DefaultHighlighter.DefaultHighlightPainter(c2));
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
            } catch (BadLocationException e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   635
                e.printStackTrace();
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   636
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   637
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   638
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   639
        /** Get the minimum valid position in a set of info objects. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   640
        private int getMinPos(Info... values) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   641
            int i = Integer.MAX_VALUE;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   642
            for (Info info: values) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   643
                if (info.start >= 0) i = Math.min(i, info.start);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   644
                if (info.pos   >= 0) i = Math.min(i, info.pos);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   645
                if (info.end   >= 0) i = Math.min(i, info.end);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   646
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   647
            return (i == Integer.MAX_VALUE) ? 0 : i;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   648
        }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   649
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   650
        /** Set the background on a component. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   651
        private JComponent setBackground(JComponent comp, Color c) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   652
            comp.setOpaque(true);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   653
            comp.setBackground(c);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   654
            return comp;
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
        /** 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
   658
        private void scroll(final JTextArea t, final int pos) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   659
            // 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
   660
            // before the scroll happens; otherwise scrollRectToVisible doesn't work.
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   661
            // Maybe there's a better way to sync with the text...
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   662
            EventQueue.invokeLater(new Runnable() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   663
                public void run() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   664
                    try {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   665
                        Rectangle r = t.modelToView(pos);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   666
                        JScrollPane p = (JScrollPane) SwingUtilities.getAncestorOfClass(JScrollPane.class, t);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   667
                        r.y = Math.max(0, r.y - p.getHeight() * 2 / 5);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   668
                        r.height += p.getHeight() * 4 / 5;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   669
                        t.scrollRectToVisible(r);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   670
                    } catch (BadLocationException ignore) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   671
                    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   672
                }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   673
            });
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
        private JComboBox entries;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   677
        private JTextField checkField;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   678
        private InfoPanel enclPanel;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   679
        private InfoPanel selfPanel;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   680
        private JTextArea body;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   681
        private JTextField statusText;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   682
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   683
        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
   684
        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
   685
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   686
        /** Panel to display an Info object. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   687
        private class InfoPanel extends JPanel {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   688
            InfoPanel() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   689
                add(tagName = createTextField(20));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   690
                add(new JLabel("start:"));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   691
                add(addListener(start = createTextField(6)));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   692
                add(new JLabel("pos:"));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   693
                add(addListener(pos = createTextField(6)));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   694
                add(new JLabel("end:"));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   695
                add(addListener(end = createTextField(6)));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   696
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   697
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   698
            void setInfo(Info info) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   699
                this.info = info;
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 7846
diff changeset
   700
                tagName.setText(getTagName(info.tag));
4870
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   701
                start.setText(String.valueOf(info.start));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   702
                pos.setText(String.valueOf(info.pos));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   703
                end.setText(String.valueOf(info.end));
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
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   706
            JTextField addListener(final JTextField f) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   707
                f.addMouseListener(new MouseAdapter() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   708
                    @Override
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   709
                    public void mouseClicked(MouseEvent e) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   710
                        body.setCaretPosition(Integer.valueOf(f.getText()));
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   711
                        body.getCaret().setVisible(true);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   712
                    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   713
                });
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   714
                return f;
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
            Info info;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   718
            JTextField tagName;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   719
            JTextField start;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   720
            JTextField pos;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   721
            JTextField end;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   722
        }
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
        /** Object to record information about an error to be displayed. */
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   725
        private class Entry {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   726
            Entry(JavaFileObject file, String check, Info encl, Info self) {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   727
                this.file = file;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   728
                this.check = check;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   729
                this.encl = encl;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   730
                this.self= self;
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
            @Override
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   734
            public String toString() {
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   735
                return file.getName() + " " + check + " " + getMinPos(encl, self);
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   736
            }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   737
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   738
            final JavaFileObject file;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   739
            final String check;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   740
            final Info encl;
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   741
            final Info self;
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
    }
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   744
}
a132763160d7 6919889: assorted position errors in compiler syntax trees
jjg
parents:
diff changeset
   745