plantuml/src/net/sourceforge/plantuml/jsondiagram/SmetanaForJson.java

279 lines
9.1 KiB
Java
Raw Normal View History

2020-12-01 21:39:27 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2020-12-01 21:39:27 +00:00
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*/
package net.sourceforge.plantuml.jsondiagram;
import static gen.lib.cgraph.attr__c.agsafeset;
import static gen.lib.cgraph.edge__c.agedge;
import static gen.lib.cgraph.graph__c.agopen;
import static gen.lib.cgraph.node__c.agnode;
import static gen.lib.gvc.gvc__c.gvContext;
import static gen.lib.gvc.gvlayout__c.gvLayoutJobs;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import h.ST_Agedge_s;
import h.ST_Agedgeinfo_t;
import h.ST_Agnode_s;
import h.ST_Agnodeinfo_t;
import h.ST_Agraph_s;
import h.ST_GVC_s;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.UmlDiagramType;
2022-09-12 20:08:34 +00:00
import net.sourceforge.plantuml.awt.geom.XDimension2D;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.json.JsonValue;
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
2022-03-01 18:11:51 +00:00
import net.sourceforge.plantuml.style.StyleSignatureBasic;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UTranslate;
import net.sourceforge.plantuml.ugraphic.color.HColor;
2023-01-09 19:13:37 +00:00
import net.sourceforge.plantuml.yaml.Highlighted;
2020-12-01 21:39:27 +00:00
import smetana.core.CString;
import smetana.core.Macro;
import smetana.core.Z;
2020-12-06 21:43:09 +00:00
import smetana.core.debug.SmetanaDebug;
2020-12-01 21:39:27 +00:00
public class SmetanaForJson {
2020-12-06 21:43:09 +00:00
private static int NUM = 0;
private final static boolean printFirst = false;
private final static boolean exitAfterFirst = false;
2020-12-01 21:39:27 +00:00
private final UGraphic ug;
private final ISkinParam skinParam;
private int num;
private ST_Agraph_s g;
private StringBounder stringBounder;
2021-05-14 08:42:57 +00:00
private final List<InternalNode> nodes = new ArrayList<>();
private final List<ST_Agedge_s> edges = new ArrayList<>();
2020-12-01 21:39:27 +00:00
private Mirror xMirror;
2021-01-10 20:52:19 +00:00
static class InternalNode {
2020-12-01 21:39:27 +00:00
private final TextBlockJson block;
private final ST_Agnode_s node;
2021-01-10 20:52:19 +00:00
public InternalNode(TextBlockJson block, ST_Agnode_s node) {
2020-12-01 21:39:27 +00:00
this.block = block;
this.node = node;
}
double getMaxX() {
final ST_Agnodeinfo_t data = (ST_Agnodeinfo_t) Macro.AGDATA(node);
final double height = data.height * 72;
double y = data.coord.y;
return y + height / 2;
}
}
public SmetanaForJson(UGraphic ug, ISkinParam skinParam) {
this.stringBounder = ug.getStringBounder();
this.skinParam = skinParam;
this.ug = ug;
2020-12-01 21:39:27 +00:00
}
2021-03-07 12:23:24 +00:00
private SName getDiagramType() {
2022-01-28 21:45:34 +00:00
if (skinParam.getUmlDiagramType() == UmlDiagramType.JSON)
return SName.jsonDiagram;
return SName.yamlDiagram;
2021-03-07 12:23:24 +00:00
}
2021-11-25 21:42:50 +00:00
private Style getStyleArrow() {
2022-03-01 18:11:51 +00:00
return StyleSignatureBasic.of(SName.root, SName.element, getDiagramType(), SName.arrow)
2021-11-25 21:42:50 +00:00
.getMergedStyle(skinParam.getCurrentStyleBuilder());
}
private Style getStyleNode() {
2022-03-01 18:11:51 +00:00
return StyleSignatureBasic.of(SName.root, SName.element, getDiagramType(), SName.node)
2021-11-25 21:42:50 +00:00
.getMergedStyle(skinParam.getCurrentStyleBuilder());
}
2023-01-09 19:13:37 +00:00
private ST_Agnode_s manageOneNode(JsonValue current, List<Highlighted> highlighted) {
final TextBlockJson block = new TextBlockJson(skinParam, current, highlighted);
2020-12-06 21:43:09 +00:00
final ST_Agnode_s node1 = createNode(block.calculateDimension(stringBounder), block.size(), current.isArray(),
(int) block.getWidthColA(stringBounder), (int) block.getWidthColB(stringBounder));
2021-01-10 20:52:19 +00:00
nodes.add(new InternalNode(block, node1));
2020-12-01 21:39:27 +00:00
final List<JsonValue> children = block.children();
final List<String> keys = block.keys();
for (int i = 0; i < children.size(); i++) {
final JsonValue tmp = children.get(i);
if (tmp != null) {
2023-01-09 19:13:37 +00:00
final ST_Agnode_s childBloc = manageOneNode(tmp, upOneLevel(keys.get(i), highlighted));
2020-12-01 21:39:27 +00:00
final ST_Agedge_s edge = createEdge(node1, childBloc, i);
edges.add(edge);
}
}
return node1;
}
2023-01-09 19:13:37 +00:00
private List<Highlighted> upOneLevel(String key, List<Highlighted> list) {
final List<Highlighted> result = new ArrayList<>();
for (Highlighted tmp : list) {
final Highlighted parent = tmp.upOneLevel(key);
if (parent != null)
result.add(parent);
2020-12-01 21:39:27 +00:00
}
return Collections.unmodifiableList(result);
}
2023-01-09 19:13:37 +00:00
public void drawMe(JsonValue root, List<Highlighted> highlighted) {
2020-12-06 21:43:09 +00:00
initGraph(root, highlighted);
double max = 0;
2023-01-09 19:13:37 +00:00
for (InternalNode node : nodes)
2020-12-06 21:43:09 +00:00
max = Math.max(max, node.getMaxX());
2023-01-09 19:13:37 +00:00
2020-12-06 21:43:09 +00:00
xMirror = new Mirror(max);
2023-01-09 19:13:37 +00:00
for (InternalNode node : nodes)
node.block.drawU(getStyleNode().applyStrokeAndLineColor(ug, skinParam.getIHtmlColorSet())
.apply(getPosition(node.node)));
2022-09-18 17:08:06 +00:00
final HColor color = getStyleArrow().value(PName.LineColor).asColor(skinParam.getIHtmlColorSet());
2020-12-01 21:39:27 +00:00
2020-12-06 21:43:09 +00:00
for (ST_Agedge_s edge : edges) {
final JsonCurve curve = getCurve(edge, 13);
2022-09-18 17:08:06 +00:00
curve.drawCurve(color, getStyleArrow().applyStrokeAndLineColor(ug, skinParam.getIHtmlColorSet()));
2023-01-09 19:13:37 +00:00
curve.drawSpot(getStyleArrow().applyStrokeAndLineColor(ug, skinParam.getIHtmlColorSet()).apply(color.bg()));
2020-12-06 21:43:09 +00:00
}
}
2023-01-09 19:13:37 +00:00
private void initGraph(JsonValue root, List<Highlighted> highlighted) {
if (g != null)
2020-12-06 21:43:09 +00:00
return;
2023-01-09 19:13:37 +00:00
2020-12-01 21:39:27 +00:00
Z.open();
try {
2020-12-06 21:43:09 +00:00
2020-12-01 21:39:27 +00:00
g = agopen(new CString("g"), Z.z().Agdirected, null);
manageOneNode(root, highlighted);
final ST_GVC_s gvc = gvContext();
gvLayoutJobs(gvc, g);
} finally {
Z.close();
2020-12-06 21:43:09 +00:00
NUM++;
}
if (exitAfterFirst) {
System.err.println("-----------------------------------");
SmetanaDebug.printMe();
System.err.println("-----------------------------------");
System.exit(0);
2020-12-01 21:39:27 +00:00
}
}
private UTranslate getPosition(ST_Agnode_s node) {
final ST_Agnodeinfo_t data = (ST_Agnodeinfo_t) Macro.AGDATA(node);
final double width = data.width * 72;
final double height = data.height * 72;
double x = data.coord.x;
double y = data.coord.y;
return new UTranslate(x - width / 2, xMirror.inv(y + height / 2)).sym();
}
2020-12-06 21:43:09 +00:00
private JsonCurve getCurve(ST_Agedge_s e, double veryFirstLine) {
2020-12-01 21:39:27 +00:00
final ST_Agedgeinfo_t data = (ST_Agedgeinfo_t) Macro.AGDATA(e);
2020-12-06 21:43:09 +00:00
return new JsonCurve(data, xMirror, veryFirstLine);
2020-12-01 21:39:27 +00:00
}
private ST_Agedge_s createEdge(ST_Agnode_s a0, ST_Agnode_s a1, int num) {
final ST_Agedge_s edge = agedge(g, a0, a1, null, true);
2020-12-06 21:43:09 +00:00
edge.NAME = a0.NAME + "-" + a1.NAME;
2020-12-01 21:39:27 +00:00
agsafeset(edge, new CString("arrowsize"), new CString(".75"), new CString(""));
agsafeset(edge, new CString("arrowtail"), new CString("none"), new CString(""));
agsafeset(edge, new CString("arrowhead"), new CString("normal"), new CString(""));
agsafeset(edge, new CString("tailport"), new CString("P" + num), new CString(""));
2020-12-06 21:43:09 +00:00
StringBuilder sb = new StringBuilder();
sb.append("N" + a0.UID + " -> N" + a1.UID + " [tailport=\"P" + num + "\", arrowsize=.75]");
if (NUM == 0 && printFirst)
System.err.println(sb);
2020-12-01 21:39:27 +00:00
return edge;
}
2022-09-12 20:08:34 +00:00
private ST_Agnode_s createNode(XDimension2D dim, int size, boolean isArray, int colAwidth, int colBwidth) {
2020-12-01 21:39:27 +00:00
final String width = "" + (dim.getWidth() / 72);
final String height = "" + (dim.getHeight() / 72);
final ST_Agnode_s node = agnode(g, new CString("N" + num), true);
2020-12-06 21:43:09 +00:00
node.NAME = "N " + num;
2020-12-01 21:39:27 +00:00
num++;
agsafeset(node, new CString("shape"), new CString("record"), new CString(""));
agsafeset(node, new CString("height"), new CString("" + width), new CString(""));
agsafeset(node, new CString("width"), new CString("" + height), new CString(""));
final int lineHeight = 0;
final String dotLabel = getDotLabel(size, isArray, colAwidth - 8, colBwidth - 8, lineHeight);
2023-01-09 19:13:37 +00:00
if (size > 0)
2020-12-06 21:43:09 +00:00
agsafeset(node, new CString("label"), new CString(dotLabel), new CString(""));
2020-12-01 21:39:27 +00:00
2020-12-06 21:43:09 +00:00
StringBuilder sb = new StringBuilder();
sb.append("N" + node.UID + " [");
sb.append("shape=record, height=" + width + ", width=" + height + ", label=\"" + dotLabel.replace('x', '.')
+ "\"]");
if (NUM == 0 && printFirst)
System.err.println(sb);
2020-12-01 21:39:27 +00:00
return node;
}
private String getDotLabel(int size, boolean isArray, int widthA, int widthB, int height) {
2020-12-01 21:39:27 +00:00
final StringBuilder sb = new StringBuilder("");
2023-01-09 19:13:37 +00:00
if (isArray == false)
sb.append("{_dim_" + height + "_" + widthA + "_|{");
2023-01-09 19:13:37 +00:00
2020-12-01 21:39:27 +00:00
for (int i = 0; i < size; i++) {
sb.append("<P" + i + ">");
sb.append("_dim_" + height + "_" + widthB + "_");
2020-12-01 21:39:27 +00:00
if (i < size - 1)
sb.append("|");
}
2023-01-09 19:13:37 +00:00
if (isArray == false)
2020-12-06 21:43:09 +00:00
sb.append("}}");
2020-12-01 21:39:27 +00:00
return sb.toString();
}
}