langtools/test/tools/jdeps/APIDeps.java
author mchung
Tue, 08 Jul 2014 18:26:34 -0700
changeset 25442 755ff386d1ac
parent 22448 a85fbad9d687
child 25692 39537fdca12c
permissions -rw-r--r--
8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API 8031092: jdeps does not recognize --help option. 8048063: (jdeps) Add filtering capability Reviewed-by: alanb, dfuchs
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
/*
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
     2
 * Copyright (c) 2012, 2014, 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
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    26
 * @bug 8015912 8029216 8048063
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
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    28
 * @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
    29
 * @run main APIDeps
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    30
 */
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    31
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    32
import java.io.File;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    33
import java.io.IOException;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    34
import java.io.PrintWriter;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    35
import java.io.StringWriter;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    36
import java.nio.file.Path;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    37
import java.nio.file.Paths;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    38
import java.util.*;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    39
import java.util.regex.*;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    40
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    41
public class APIDeps {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    42
    private static boolean symbolFileExist = initProfiles();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    43
    private static boolean initProfiles() {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    44
        // check if ct.sym exists; if not use the profiles.properties file
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    45
        Path home = Paths.get(System.getProperty("java.home"));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    46
        if (home.endsWith("jre")) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    47
            home = home.getParent();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    48
        }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    49
        Path ctsym = home.resolve("lib").resolve("ct.sym");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    50
        boolean symbolExists = ctsym.toFile().exists();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    51
        if (!symbolExists) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    52
            Path testSrcProfiles =
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    53
                Paths.get(System.getProperty("test.src", "."), "profiles.properties");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    54
            if (!testSrcProfiles.toFile().exists())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    55
                throw new Error(testSrcProfiles + " does not exist");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    56
            System.out.format("%s doesn't exist.%nUse %s to initialize profiles info%n",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    57
                ctsym, testSrcProfiles);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    58
            System.setProperty("jdeps.profiles", testSrcProfiles.toString());
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    59
        }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    60
        return symbolExists;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    61
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    62
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    63
    public static void main(String... args) throws Exception {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    64
        int errors = 0;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    65
        errors += new APIDeps().run();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    66
        if (errors > 0)
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    67
            throw new Exception(errors + " errors found");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    68
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    69
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    70
    int run() throws IOException {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    71
        File testDir = new File(System.getProperty("test.classes", "."));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    72
        String testDirBasename = testDir.toPath().getFileName().toString();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    73
        File mDir = new File(testDir, "m");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    74
        // all dependencies
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    75
        test(new File(mDir, "Bar.class"),
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    76
             new String[] {"java.lang.Object", "java.lang.String",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    77
                           "java.util.Set", "java.util.HashSet",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    78
                           "java.lang.management.ManagementFactory",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    79
                           "java.lang.management.RuntimeMXBean",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    80
                           "b.B", "c.C", "d.D", "f.F", "g.G"},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    81
             new String[] {"compact1", "compact3", testDirBasename},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    82
             new String[] {"-classpath", testDir.getPath(), "-verbose", "-P"});
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    83
        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
    84
             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
    85
             new String[] {testDirBasename},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    86
             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
    87
        test(new File(mDir, "Foo.class"),
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    88
             new String[] {"c.I", "e.E", "f.F", "m.Bar"},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
    89
             new String[] {testDirBasename},
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
    90
             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
    91
        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
    92
             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
    93
                           "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
    94
             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
    95
             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
    96
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    97
        // -jdkinternals
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
    98
        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
    99
             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
   100
             new String[] {"JDK internal API"},
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
   101
             new String[] {"-jdkinternals"});
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
   102
        // -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
   103
        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
   104
             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
   105
                           "sun.misc.Lock", "sun.misc.Unsafe"},
22007
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
   106
             new String[] {"JDK internal API"},
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
   107
             new String[] {"-classpath", testDir.getPath(), "-jdkinternals"});
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
   108
907f7054db16 8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents: 21046
diff changeset
   109
        // parse only APIs
25442
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
   110
        test(mDir,
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
   111
             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
   112
                           "java.util.Set",
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
   113
                           "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
   114
             new String[] {"compact1", testDirBasename},
755ff386d1ac 8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents: 22448
diff changeset
   115
             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
   116
21046
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   117
        test(mDir,
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   118
             new String[] {"java.lang.Object", "java.lang.String",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   119
                           "java.util.Set",
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   120
                           "c.C", "d.D", "c.I", "e.E", "m.Bar"},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   121
             new String[] {"compact1", testDirBasename, mDir.getName()},
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   122
             new String[] {"-classpath", testDir.getPath(), "-verbose", "-P", "-apionly"});
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   123
        return errors;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   124
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   125
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   126
    void test(File file, String[] expect, String[] profiles) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   127
        test(file, expect, profiles, new String[0]);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   128
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   129
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   130
    void test(File file, String[] expect, String[] profiles, String[] options) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   131
        List<String> args = new ArrayList<>(Arrays.asList(options));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   132
        if (file != null) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   133
            args.add(file.getPath());
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
        checkResult("api-dependencies", expect, profiles,
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   136
                    jdeps(args.toArray(new String[0])));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   137
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   138
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   139
    Map<String,String> jdeps(String... args) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   140
        StringWriter sw = new StringWriter();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   141
        PrintWriter pw = new PrintWriter(sw);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   142
        System.err.println("jdeps " + Arrays.toString(args));
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   143
        int rc = com.sun.tools.jdeps.Main.run(args, pw);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   144
        pw.close();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   145
        String out = sw.toString();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   146
        if (!out.isEmpty())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   147
            System.err.println(out);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   148
        if (rc != 0)
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   149
            throw new Error("jdeps failed: rc=" + rc);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   150
        return findDeps(out);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   151
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   152
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   153
    // Pattern used to parse lines
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   154
    private static Pattern linePattern = Pattern.compile(".*\r?\n");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   155
    private static Pattern pattern = Pattern.compile("\\s+ -> (\\S+) +(.*)");
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   156
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   157
    // 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
   158
    // 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
   159
    private static Map<String,String> findDeps(String out) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   160
        Map<String,String> result = new HashMap<>();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   161
        Matcher lm = linePattern.matcher(out);  // Line matcher
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   162
        Matcher pm = null;                      // Pattern matcher
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   163
        int lines = 0;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   164
        while (lm.find()) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   165
            lines++;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   166
            CharSequence cs = lm.group();       // The current line
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   167
            if (pm == null)
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   168
                pm = pattern.matcher(cs);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   169
            else
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   170
                pm.reset(cs);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   171
            if (pm.find())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   172
                result.put(pm.group(1), pm.group(2).trim());
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   173
            if (lm.end() == out.length())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   174
                break;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   175
        }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   176
        return result;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   177
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   178
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   179
    void checkResult(String label, String[] expect, Collection<String> found) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   180
        List<String> list = Arrays.asList(expect);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   181
        if (!isEqual(list, found))
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   182
            error("Unexpected " + label + " found: '" + found + "', expected: '" + list + "'");
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
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   185
    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
   186
        // check the dependencies
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   187
        checkResult(label, expect, result.keySet());
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   188
        // check profile information
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   189
        Set<String> values = new TreeSet<>();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   190
        String internal = "JDK internal API";
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   191
        for (String s: result.values()) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   192
            if (s.startsWith(internal)){
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   193
                values.add(internal);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   194
            } else {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   195
                values.add(s);
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
        checkResult(label, profiles, values);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   199
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   200
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   201
    boolean isEqual(List<String> expected, Collection<String> found) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   202
        if (expected.size() != found.size())
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   203
            return false;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   204
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   205
        List<String> list = new ArrayList<>(found);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   206
        list.removeAll(expected);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   207
        return list.isEmpty();
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   208
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   209
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   210
    void error(String msg) {
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   211
        System.err.println("Error: " + msg);
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   212
        errors++;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   213
    }
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   214
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   215
    int errors;
ebf16a1a6328 8015912: jdeps support to output in dot file format
mchung
parents:
diff changeset
   216
}