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