langtools/test/tools/jdeps/APIDeps.java
author mchung
Wed, 27 May 2015 13:25:18 -0700
changeset 30846 2b3f379840f0
parent 30730 d3ce7619db2c
child 33021 8a0d5889acea
permissions -rw-r--r--
8074432: Move jdeps and javap to jdk.jdeps module Reviewed-by: jjg, alanb, erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
     2
 * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     4
 *
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     7
 * published by the Free Software Foundation.
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     8
 *
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    13
 * accompanied this code).
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    14
 *
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    18
 *
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    21
 * questions.
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    22
 */
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    23
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    24
/*
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    25
 * @test
25692
39537fdca12c 8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents: 25442
diff changeset
    26
 * @bug 8015912 8029216 8048063 8050804
22007
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    27
 * @summary Test -apionly and -jdkinternals options
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    28
 * @modules java.base/sun.misc
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 27579
diff changeset
    29
 *          java.management
30846
2b3f379840f0 8074432: Move jdeps and javap to jdk.jdeps module
mchung
parents: 30730
diff changeset
    30
 *          jdk.jdeps/com.sun.tools.classfile
2b3f379840f0 8074432: Move jdeps and javap to jdk.jdeps module
mchung
parents: 30730
diff changeset
    31
 *          jdk.jdeps/com.sun.tools.jdeps
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    32
 * @build m.Bar m.Foo m.Gee b.B c.C c.I d.D e.E f.F g.G
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    33
 * @run main APIDeps
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    34
 */
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    35
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    36
import java.io.File;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    37
import java.io.IOException;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    38
import java.io.PrintWriter;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    39
import java.io.StringWriter;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    40
import java.nio.file.Path;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    41
import java.nio.file.Paths;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    42
import java.util.*;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    43
import java.util.regex.*;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    44
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    45
public class APIDeps {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    46
    public static void main(String... args) throws Exception {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    47
        int errors = 0;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    48
        errors += new APIDeps().run();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    49
        if (errors > 0)
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    50
            throw new Exception(errors + " errors found");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    51
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    52
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    53
    int run() throws IOException {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    54
        File testDir = new File(System.getProperty("test.classes", "."));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    55
        String testDirBasename = testDir.toPath().getFileName().toString();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    56
        File mDir = new File(testDir, "m");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    57
        // all dependencies
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    58
        test(new File(mDir, "Bar.class"),
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    59
             new String[] {"java.lang.Object", "java.lang.String",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    60
                           "java.util.Set", "java.util.HashSet",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    61
                           "java.lang.management.ManagementFactory",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    62
                           "java.lang.management.RuntimeMXBean",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    63
                           "b.B", "c.C", "d.D", "f.F", "g.G"},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    64
             new String[] {"compact1", "compact3", testDirBasename},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    65
             new String[] {"-classpath", testDir.getPath(), "-verbose", "-P"});
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    66
        test(new File(mDir, "Foo.class"),
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    67
             new String[] {"c.I", "e.E", "f.F"},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    68
             new String[] {testDirBasename},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    69
             new String[] {"-classpath", testDir.getPath(), "-verbose:class", "-P"});
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    70
        test(new File(mDir, "Foo.class"),
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    71
             new String[] {"c.I", "e.E", "f.F", "m.Bar"},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    72
             new String[] {testDirBasename},
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    73
             new String[] {"-classpath", testDir.getPath(), "-verbose:class", "-filter:none", "-P"});
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    74
        test(new File(mDir, "Gee.class"),
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    75
             new String[] {"g.G", "sun.misc.Lock", "com.sun.tools.classfile.ClassFile",
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    76
                           "com.sun.management.ThreadMXBean", "com.sun.source.tree.BinaryTree"},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    77
             new String[] {testDirBasename, "JDK internal API", "compact3", ""},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    78
             new String[] {"-classpath", testDir.getPath(), "-verbose", "-P"});
22007
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    79
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    80
        // -jdkinternals
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    81
        test(new File(mDir, "Gee.class"),
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    82
             new String[] {"sun.misc.Lock", "com.sun.tools.classfile.ClassFile"},
22007
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    83
             new String[] {"JDK internal API"},
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    84
             new String[] {"-jdkinternals"});
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    85
        // -jdkinternals parses all classes on -classpath and the input arguments
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    86
        test(new File(mDir, "Gee.class"),
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    87
             new String[] {"com.sun.tools.jdeps.Main", "com.sun.tools.classfile.ClassFile",
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    88
                           "sun.misc.Lock", "sun.misc.Unsafe"},
22007
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    89
             new String[] {"JDK internal API"},
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    90
             new String[] {"-classpath", testDir.getPath(), "-jdkinternals"});
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    91
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    92
        // parse only APIs
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    93
        test(mDir,
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    94
             new String[] {"java.lang.Object", "java.lang.String",
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    95
                           "java.util.Set",
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    96
                           "c.C", "d.D", "c.I", "e.E"},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    97
             new String[] {"compact1", testDirBasename},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    98
             new String[] {"-classpath", testDir.getPath(), "-verbose:class", "-P", "-apionly"});
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    99
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   100
        test(mDir,
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   101
             new String[] {"java.lang.Object", "java.lang.String",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   102
                           "java.util.Set",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   103
                           "c.C", "d.D", "c.I", "e.E", "m.Bar"},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   104
             new String[] {"compact1", testDirBasename, mDir.getName()},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   105
             new String[] {"-classpath", testDir.getPath(), "-verbose", "-P", "-apionly"});
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   106
        return errors;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   107
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   108
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   109
    void test(File file, String[] expect, String[] profiles) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   110
        test(file, expect, profiles, new String[0]);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   111
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   112
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   113
    void test(File file, String[] expect, String[] profiles, String[] options) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   114
        List<String> args = new ArrayList<>(Arrays.asList(options));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   115
        if (file != null) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   116
            args.add(file.getPath());
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   117
        }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   118
        checkResult("api-dependencies", expect, profiles,
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   119
                    jdeps(args.toArray(new String[0])));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   120
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   121
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   122
    Map<String,String> jdeps(String... args) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   123
        StringWriter sw = new StringWriter();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   124
        PrintWriter pw = new PrintWriter(sw);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   125
        System.err.println("jdeps " + Arrays.toString(args));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   126
        int rc = com.sun.tools.jdeps.Main.run(args, pw);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   127
        pw.close();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   128
        String out = sw.toString();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   129
        if (!out.isEmpty())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   130
            System.err.println(out);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   131
        if (rc != 0)
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   132
            throw new Error("jdeps failed: rc=" + rc);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   133
        return findDeps(out);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   134
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   135
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   136
    // Pattern used to parse lines
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   137
    private static Pattern linePattern = Pattern.compile(".*\r?\n");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   138
    private static Pattern pattern = Pattern.compile("\\s+ -> (\\S+) +(.*)");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   139
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   140
    // Use the linePattern to break the given String into lines, applying
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   141
    // the pattern to each line to see if we have a match
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   142
    private static Map<String,String> findDeps(String out) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   143
        Map<String,String> result = new HashMap<>();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   144
        Matcher lm = linePattern.matcher(out);  // Line matcher
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   145
        Matcher pm = null;                      // Pattern matcher
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   146
        int lines = 0;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   147
        while (lm.find()) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   148
            lines++;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   149
            CharSequence cs = lm.group();       // The current line
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   150
            if (pm == null)
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   151
                pm = pattern.matcher(cs);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   152
            else
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   153
                pm.reset(cs);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   154
            if (pm.find())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   155
                result.put(pm.group(1), pm.group(2).trim());
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   156
            if (lm.end() == out.length())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   157
                break;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   158
        }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   159
        return result;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   160
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   161
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   162
    void checkResult(String label, String[] expect, Collection<String> found) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   163
        List<String> list = Arrays.asList(expect);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   164
        if (!isEqual(list, found))
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   165
            error("Unexpected " + label + " found: '" + found + "', expected: '" + list + "'");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   166
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   167
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   168
    void checkResult(String label, String[] expect, String[] profiles, Map<String,String> result) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   169
        // check the dependencies
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   170
        checkResult(label, expect, result.keySet());
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   171
        // check profile information
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   172
        Set<String> values = new TreeSet<>();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   173
        String internal = "JDK internal API";
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   174
        for (String s: result.values()) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   175
            if (s.startsWith(internal)){
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   176
                values.add(internal);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   177
            } else {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   178
                values.add(s);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   179
            }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   180
        }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   181
        checkResult(label, profiles, values);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   182
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   183
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   184
    boolean isEqual(List<String> expected, Collection<String> found) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   185
        if (expected.size() != found.size())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   186
            return false;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   187
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   188
        List<String> list = new ArrayList<>(found);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   189
        list.removeAll(expected);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   190
        return list.isEmpty();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   191
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   192
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   193
    void error(String msg) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   194
        System.err.println("Error: " + msg);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   195
        errors++;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   196
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   197
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   198
    int errors;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   199
}