1 /*
   2  * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package build.tools.jigsaw;
  27 
  28 import com.sun.tools.jdeps.ModuleDotGraph;
  29 
  30 import java.io.IOException;
  31 import java.lang.module.Configuration;
  32 import java.lang.module.ModuleDescriptor;
  33 import java.lang.module.ModuleFinder;
  34 import java.lang.module.ModuleReference;
  35 import java.nio.file.Files;
  36 import java.nio.file.Path;
  37 import java.nio.file.Paths;
  38 import java.util.ArrayList;
  39 import java.util.HashMap;
  40 import java.util.HashSet;
  41 import java.util.List;
  42 import java.util.Map;
  43 import java.util.Properties;
  44 import java.util.Set;
  45 import java.util.function.Function;
  46 import java.util.stream.Collectors;
  47 
  48 /**
  49  * Generate the DOT file for a module graph for each module in the JDK
  50  * after transitive reduction.
  51  */
  52 public class GenGraphs {
  53 
  54     public static void main(String[] args) throws Exception {
  55         Path dir = null;
  56         boolean spec = false;
  57         Properties props = null;
  58         for (int i=0; i < args.length; i++) {
  59             String arg = args[i];
  60             if (arg.equals("--spec")) {
  61                 spec = true;
  62             } else if (arg.equals("--dot-attributes")) {
  63                 if (i++ == args.length) {
  64                     throw new IllegalArgumentException("Missing argument: --dot-attributes option");
  65                 }
  66                 props = new Properties();
  67                 props.load(Files.newInputStream(Paths.get(args[i])));
  68             } else if (arg.equals("--output")) {
  69                 dir = ++i < args.length ? Paths.get(args[i]) : null;
  70             } else if (arg.startsWith("-")) {
  71                 throw new IllegalArgumentException("Invalid option: " + arg);
  72             }
  73         }
  74 
  75         if (dir == null) {
  76             System.err.println("ERROR: must specify --output argument");
  77             System.exit(1);
  78         }
  79 
  80         Files.createDirectories(dir);
  81         ModuleGraphAttributes attributes;
  82         if (props != null) {
  83             attributes = new ModuleGraphAttributes(props);
  84         } else {
  85             attributes = new ModuleGraphAttributes();
  86         }
  87         GenGraphs genGraphs = new GenGraphs(dir, spec, attributes);
  88 
  89         // print dot file for each module
  90         Map<String, Configuration> configurations = new HashMap<>();
  91         Set<String> modules = new HashSet<>();
  92         ModuleFinder finder = ModuleFinder.ofSystem();
  93         for (ModuleReference mref : finder.findAll()) {
  94             String name = (mref.descriptor().name());
  95             modules.add(name);
  96             if (genGraphs.accept(name, mref.descriptor())) {
  97                 configurations.put(name, Configuration.empty()
  98                                                       .resolve(finder,
  99                                                                ModuleFinder.of(),
 100                                                                Set.of(name)));
 101             }
 102         }
 103 
 104         if (genGraphs.accept("jdk", null)) {
 105             // print a graph of all JDK modules
 106             configurations.put("jdk", Configuration.empty()
 107                                                    .resolve(finder,
 108                                                             ModuleFinder.of(),
 109                                                             modules));
 110         }
 111 
 112         genGraphs.genDotFiles(configurations);
 113     }
 114 
 115     /**
 116      * Custom dot file attributes.
 117      */
 118     static class ModuleGraphAttributes implements ModuleDotGraph.Attributes {
 119         static Map<String, String> DEFAULT_ATTRIBUTES = Map.of(
 120             "ranksep", "0.6",
 121             "fontsize", "12",
 122             "fontcolor", BLACK,
 123             "fontname", "DejaVuSans",
 124             "arrowsize", "1",
 125             "arrowwidth", "2",
 126             "arrowcolor", DARK_GRAY,
 127             // custom
 128             "requiresMandatedColor", LIGHT_GRAY,
 129             "javaSubgraphColor", ORANGE,
 130             "jdkSubgraphColor", BLUE
 131         );
 132 
 133         final Map<String, Integer> weights = new HashMap<>();
 134         final List<Set<String>> ranks = new ArrayList<>();
 135         final Map<String, String> attrs;
 136         ModuleGraphAttributes(Map<String, String> attrs) {
 137             int h = 1000;
 138             weight("java.se", "java.sql.rowset", h * 10);
 139             weight("java.sql.rowset", "java.sql", h * 10);
 140             weight("java.sql", "java.xml", h * 10);
 141             weight("java.xml", "java.base", h * 10);
 142 
 143             ranks.add(Set.of("java.logging", "java.scripting", "java.xml"));
 144             ranks.add(Set.of("java.sql"));
 145             ranks.add(Set.of("java.transaction.xa"));
 146             ranks.add(Set.of("java.compiler", "java.instrument"));
 147             ranks.add(Set.of("java.desktop", "java.management"));
 148 
 149             this.attrs = attrs;
 150         }
 151 
 152         ModuleGraphAttributes() {
 153             this(DEFAULT_ATTRIBUTES);
 154         }
 155         ModuleGraphAttributes(Properties props) {
 156             this(toAttributes(props));
 157         }
 158 
 159         @Override
 160         public double rankSep() {
 161             return Double.valueOf(attrs.get("ranksep"));
 162         }
 163 
 164         @Override
 165         public int fontSize() {
 166             return Integer.valueOf(attrs.get("fontsize"));
 167         }
 168 
 169         @Override
 170         public String fontName() {
 171             return attrs.get("fontname");
 172         }
 173 
 174         @Override
 175         public String fontColor() {
 176             return attrs.get("fontcolor");
 177         }
 178 
 179         @Override
 180         public int arrowSize() {
 181             return Integer.valueOf(attrs.get("arrowsize"));
 182         }
 183 
 184         @Override
 185         public int arrowWidth() {
 186             return Integer.valueOf(attrs.get("arrowwidth"));
 187         }
 188 
 189         @Override
 190         public String arrowColor() {
 191             return attrs.get("arrowcolor");
 192         }
 193 
 194         @Override
 195         public List<Set<String>> ranks() {
 196             return ranks;
 197         }
 198 
 199         @Override
 200         public String requiresMandatedColor() {
 201             return attrs.get("requiresMandatedColor");
 202         }
 203 
 204         @Override
 205         public String javaSubgraphColor() {
 206             return attrs.get("javaSubgraphColor");
 207         }
 208 
 209         @Override
 210         public String jdkSubgraphColor() {
 211             return attrs.get("jdkSubgraphColor");
 212         }
 213 
 214         @Override
 215         public int weightOf(String s, String t) {
 216             int w = weights.getOrDefault(s + ":" + t, 1);
 217             if (w != 1)
 218                 return w;
 219             if (s.startsWith("java.") && t.startsWith("java."))
 220                 return 10;
 221             return 1;
 222         }
 223 
 224         public void weight(String s, String t, int w) {
 225             weights.put(s + ":" + t, w);
 226         }
 227 
 228         static Map<String, String> toAttributes(Properties props) {
 229             return DEFAULT_ATTRIBUTES.keySet().stream()
 230                 .collect(Collectors.toMap(Function.identity(),
 231                     k -> props.getProperty(k, DEFAULT_ATTRIBUTES.get(k))));
 232         }
 233     }
 234 
 235     private final Path dir;
 236     private final boolean spec;
 237     private final ModuleGraphAttributes attributes;
 238     GenGraphs(Path dir, boolean spec, ModuleGraphAttributes attributes) {
 239         this.dir = dir;
 240         this.spec = spec;
 241         this.attributes = attributes;
 242     }
 243 
 244     void genDotFiles(Map<String, Configuration> configurations) throws IOException {
 245         ModuleDotGraph dotGraph = new ModuleDotGraph(configurations, spec);
 246         dotGraph.genDotFiles(dir, attributes);
 247     }
 248 
 249     /**
 250      * Returns true for any name if generating graph for non-spec;
 251      * otherwise, returns true except "jdk" and name with "jdk.internal." prefix
 252      */
 253     boolean accept(String name, ModuleDescriptor descriptor) {
 254         if (!spec)
 255             return true;
 256 
 257         return !name.equals("jdk") && !name.startsWith("jdk.internal.");
 258     }
 259 }