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

346 lines
11 KiB
Java
Raw Normal View History

2020-11-21 17:33:24 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2020-11-21 17:33:24 +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 java.util.ArrayList;
2020-12-01 21:39:27 +00:00
import java.util.Collections;
2020-11-21 17:33:24 +00:00
import java.util.List;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.LineBreakStrategy;
2023-01-09 19:13:37 +00:00
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.creole.CreoleMode;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.AbstractTextBlock;
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.json.JsonArray;
import net.sourceforge.plantuml.json.JsonObject;
import net.sourceforge.plantuml.json.JsonObject.Member;
import net.sourceforge.plantuml.json.JsonValue;
import net.sourceforge.plantuml.style.PName;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
2023-01-09 19:13:37 +00:00
import net.sourceforge.plantuml.style.StyleBuilder;
import net.sourceforge.plantuml.style.StyleSignature;
import net.sourceforge.plantuml.style.StyleSignatureBasic;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.svek.TextBlockBackcolored;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.ULine;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.ugraphic.URectangle;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.ugraphic.UTranslate;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColor;
2023-01-09 19:13:37 +00:00
import net.sourceforge.plantuml.yaml.Highlighted;
2020-11-21 17:33:24 +00:00
//See TextBlockMap
2020-12-01 21:39:27 +00:00
public class TextBlockJson extends AbstractTextBlock implements TextBlockBackcolored {
2021-05-14 08:42:57 +00:00
private final List<Line> lines = new ArrayList<>();
2020-11-21 17:33:24 +00:00
private final ISkinParam skinParam;
private double totalWidth;
2020-12-01 21:39:27 +00:00
private final JsonValue root;
2023-01-09 19:13:37 +00:00
private final StyleBuilder styleBuilder;
private final SName diagramType;
2020-12-01 21:39:27 +00:00
static class Line {
final TextBlock b1;
final TextBlock b2;
2023-01-09 19:13:37 +00:00
final Highlighted highlighted;
2020-12-01 21:39:27 +00:00
2023-01-09 19:13:37 +00:00
Line(TextBlock b1, TextBlock b2, Highlighted highlighted) {
2020-12-01 21:39:27 +00:00
this.b1 = b1;
this.b2 = b2;
this.highlighted = highlighted;
}
2023-01-09 19:13:37 +00:00
Line(TextBlock b1, Highlighted highlighted) {
2020-12-01 21:39:27 +00:00
this(b1, null, highlighted);
}
2020-11-21 17:33:24 +00:00
2020-12-01 21:39:27 +00:00
double getHeightOfRow(StringBounder stringBounder) {
final double height = b1.calculateDimension(stringBounder).getHeight();
2021-11-25 21:42:50 +00:00
if (b2 == null)
2020-12-01 21:39:27 +00:00
return height;
2021-11-25 21:42:50 +00:00
2020-12-01 21:39:27 +00:00
return Math.max(height, b2.calculateDimension(stringBounder).getHeight());
}
}
2023-01-09 19:13:37 +00:00
TextBlockJson(ISkinParam skinParam, JsonValue root, List<Highlighted> allHighlighteds) {
this.styleBuilder = skinParam.getCurrentStyleBuilder();
this.diagramType = skinParam.getUmlDiagramType() == UmlDiagramType.JSON ? SName.jsonDiagram : SName.yamlDiagram;
2020-11-21 17:33:24 +00:00
this.skinParam = skinParam;
2023-01-09 19:13:37 +00:00
2020-12-01 21:39:27 +00:00
this.root = root;
if (root instanceof JsonObject)
for (Member member : (JsonObject) root) {
final String key = member.getName();
final String value = getShortString(member.getValue());
2023-01-09 19:13:37 +00:00
final Highlighted highlighted = isHighlighted(key, allHighlighteds);
2021-11-25 21:42:50 +00:00
final TextBlock block1 = getTextBlock(getStyleToUse(true, highlighted), key);
final TextBlock block2 = getTextBlock(getStyleToUse(false, highlighted), value);
2021-03-07 12:23:24 +00:00
this.lines.add(new Line(block1, block2, highlighted));
2020-12-01 21:39:27 +00:00
}
if (root instanceof JsonArray) {
int i = 0;
for (JsonValue value : (JsonArray) root) {
2023-01-09 19:13:37 +00:00
final Highlighted highlighted = isHighlighted("" + i, allHighlighteds);
2021-11-25 21:42:50 +00:00
final TextBlock block2 = getTextBlock(getStyleToUse(false, highlighted), getShortString(value));
2021-03-07 12:23:24 +00:00
this.lines.add(new Line(block2, highlighted));
2020-12-01 21:39:27 +00:00
i++;
}
}
}
2023-01-09 19:13:37 +00:00
private Style getStyleToUse(boolean header, Highlighted highlighted) {
final StyleSignature signature;
if (header && highlighted != null)
signature = StyleSignatureBasic
.of(SName.root, SName.element, diagramType, SName.header, SName.node, SName.highlight)
.withTOBECHANGED(highlighted.getStereotype());
else if (highlighted != null)
signature = StyleSignatureBasic.of(SName.root, SName.element, diagramType, SName.node, SName.highlight)
.withTOBECHANGED(highlighted.getStereotype());
else if (header)
signature = StyleSignatureBasic.of(SName.root, SName.element, diagramType, SName.header, SName.node);
else
signature = StyleSignatureBasic.of(SName.root, SName.element, diagramType, SName.node);
return signature.getMergedStyle(styleBuilder);
2021-03-07 12:23:24 +00:00
}
2023-01-09 19:13:37 +00:00
private Highlighted isHighlighted(String key, List<Highlighted> highlighted) {
for (Highlighted tmp : highlighted)
if (tmp.isKeyHighlight(key))
return tmp;
2021-11-25 21:42:50 +00:00
2023-01-09 19:13:37 +00:00
return null;
2020-12-01 21:39:27 +00:00
}
public int size() {
int size = 0;
2021-11-25 21:42:50 +00:00
if (root instanceof JsonObject)
2020-12-01 21:39:27 +00:00
for (Member member : (JsonObject) root)
size++;
2021-11-25 21:42:50 +00:00
if (root instanceof JsonArray)
2020-12-01 21:39:27 +00:00
for (JsonValue value : (JsonArray) root)
size++;
2021-11-25 21:42:50 +00:00
2020-12-01 21:39:27 +00:00
return size;
}
private String getShortString(JsonValue value) {
2021-11-25 21:42:50 +00:00
if (value.isString())
2020-12-01 21:39:27 +00:00
return value.asString();
2021-11-25 21:42:50 +00:00
if (value.isNull())
2020-12-14 18:31:06 +00:00
return "<U+2400>";
2021-11-25 21:42:50 +00:00
// return "<U+2205> null";
if (value.isNumber())
2020-12-01 21:39:27 +00:00
return value.toString();
2021-11-25 21:42:50 +00:00
if (value.isBoolean())
if (value.isTrue())
2020-12-14 18:31:06 +00:00
return "<U+2611> true";
2021-11-25 21:42:50 +00:00
else
2020-12-14 18:31:06 +00:00
return "<U+2610> false";
2021-11-25 21:42:50 +00:00
2020-12-01 21:39:27 +00:00
return " ";
}
public List<JsonValue> children() {
2021-05-14 08:42:57 +00:00
final List<JsonValue> result = new ArrayList<>();
2021-11-25 21:42:50 +00:00
if (root instanceof JsonObject)
2020-12-01 21:39:27 +00:00
for (Member member : (JsonObject) root) {
final JsonValue value = member.getValue();
2021-11-25 21:42:50 +00:00
if (value instanceof JsonObject || value instanceof JsonArray)
2020-12-01 21:39:27 +00:00
result.add(value);
2021-11-25 21:42:50 +00:00
else
2020-12-01 21:39:27 +00:00
result.add(null);
}
2021-11-25 21:42:50 +00:00
if (root instanceof JsonArray)
for (JsonValue value : (JsonArray) root)
if (value instanceof JsonObject || value instanceof JsonArray)
2020-12-01 21:39:27 +00:00
result.add(value);
2021-11-25 21:42:50 +00:00
else
2020-12-01 21:39:27 +00:00
result.add(null);
2021-11-25 21:42:50 +00:00
2020-12-01 21:39:27 +00:00
return Collections.unmodifiableList(result);
}
public List<String> keys() {
2021-05-14 08:42:57 +00:00
final List<String> result = new ArrayList<>();
2021-11-25 21:42:50 +00:00
if (root instanceof JsonObject)
2020-12-01 21:39:27 +00:00
for (Member member : (JsonObject) root) {
final String key = member.getName();
result.add(key);
}
2021-11-25 21:42:50 +00:00
2020-12-01 21:39:27 +00:00
if (root instanceof JsonArray) {
int i = 0;
for (JsonValue value : (JsonArray) root) {
result.add("" + i);
i++;
}
}
return Collections.unmodifiableList(result);
2020-11-21 17:33:24 +00:00
}
2022-09-12 20:08:34 +00:00
public XDimension2D calculateDimension(StringBounder stringBounder) {
return new XDimension2D(getWidthColA(stringBounder) + getWidthColB(stringBounder),
2020-11-21 17:33:24 +00:00
getTotalHeight(stringBounder));
}
2020-12-06 21:43:09 +00:00
public double getWidthColA(StringBounder stringBounder) {
2020-12-01 21:39:27 +00:00
double width = 0;
2021-11-25 21:42:50 +00:00
for (Line line : lines)
2020-12-01 21:39:27 +00:00
width = Math.max(width, line.b1.calculateDimension(stringBounder).getWidth());
2021-11-25 21:42:50 +00:00
2020-12-01 21:39:27 +00:00
return width;
2020-11-21 17:33:24 +00:00
}
2020-12-06 21:43:09 +00:00
public double getWidthColB(StringBounder stringBounder) {
2020-11-21 17:33:24 +00:00
double width = 0;
2021-11-25 21:42:50 +00:00
for (Line line : lines)
if (line.b2 != null)
2020-12-01 21:39:27 +00:00
width = Math.max(width, line.b2.calculateDimension(stringBounder).getWidth());
2021-11-25 21:42:50 +00:00
2020-11-21 17:33:24 +00:00
return width;
}
public void drawU(final UGraphic ug) {
2020-11-21 17:33:24 +00:00
final StringBounder stringBounder = ug.getStringBounder();
2022-09-12 20:08:34 +00:00
final XDimension2D fullDim = calculateDimension(stringBounder);
2020-12-01 21:39:27 +00:00
double trueWidth = Math.max(fullDim.getWidth(), totalWidth);
2020-11-21 17:33:24 +00:00
final double widthColA = getWidthColA(stringBounder);
final double widthColB = getWidthColB(stringBounder);
2020-12-01 21:39:27 +00:00
2020-11-21 17:33:24 +00:00
double y = 0;
2023-01-09 19:13:37 +00:00
final Style styleNode = StyleSignatureBasic.of(SName.root, SName.element, diagramType, SName.node)
.getMergedStyle(styleBuilder);
2022-09-18 17:08:06 +00:00
final UGraphic ugNode = styleNode.applyStrokeAndLineColor(ug, skinParam.getIHtmlColorSet());
2020-12-01 21:39:27 +00:00
for (Line line : lines) {
final double heightOfRow = line.getHeightOfRow(stringBounder);
y += heightOfRow;
}
if (y == 0)
y = 15;
if (trueWidth == 0)
trueWidth = 30;
2021-11-25 21:42:50 +00:00
final double round = styleNode.value(PName.RoundCorner).asDouble();
final URectangle fullNodeRectangle = new URectangle(trueWidth, y).rounded(round);
2022-09-18 17:08:06 +00:00
final HColor backColor = styleNode.value(PName.BackGroundColor).asColor(skinParam.getIHtmlColorSet());
ugNode.apply(backColor.bg()).apply(backColor).draw(fullNodeRectangle);
2021-11-25 21:42:50 +00:00
final Style styleSeparator = styleNode.getSignature().add(SName.separator)
.getMergedStyle(skinParam.getCurrentStyleBuilder());
2022-09-18 17:08:06 +00:00
final UGraphic ugSeparator = styleSeparator.applyStrokeAndLineColor(ug, skinParam.getIHtmlColorSet());
y = 0;
for (Line line : lines) {
final UGraphic ugline = ugSeparator.apply(UTranslate.dy(y));
2020-12-01 21:39:27 +00:00
final double heightOfRow = line.getHeightOfRow(stringBounder);
2023-01-09 19:13:37 +00:00
if (line.highlighted != null) {
2020-12-01 21:39:27 +00:00
final URectangle back = new URectangle(trueWidth - 2, heightOfRow).rounded(4);
2023-01-09 19:13:37 +00:00
final Style styleNodeHighlight = StyleSignatureBasic
.of(SName.root, SName.element, diagramType, SName.node, SName.highlight)
.withTOBECHANGED(line.highlighted.getStereotype()).getMergedStyle(styleBuilder);
final HColor cellBackColor = styleNodeHighlight.value(PName.BackGroundColor)
.asColor(skinParam.getIHtmlColorSet());
ugline.apply(cellBackColor).apply(cellBackColor.bg()).apply(new UTranslate(1.5, 0)).draw(back);
2020-12-01 21:39:27 +00:00
}
2020-11-21 17:33:24 +00:00
2020-12-01 21:39:27 +00:00
if (y > 0)
ugline.draw(ULine.hline(trueWidth));
2021-11-25 21:42:50 +00:00
final HorizontalAlignment horizontalAlignment = styleNode.getHorizontalAlignment();
horizontalAlignment.draw(ugline, line.b1, 0, widthColA);
2020-12-01 21:39:27 +00:00
if (line.b2 != null) {
final UGraphic uglineColB = ugline.apply(UTranslate.dx(widthColA));
horizontalAlignment.draw(uglineColB, line.b2, 0, widthColB);
uglineColB.draw(ULine.vline(heightOfRow));
2020-12-01 21:39:27 +00:00
}
2020-11-21 17:33:24 +00:00
y += heightOfRow;
}
ugNode.draw(fullNodeRectangle);
2020-12-01 21:39:27 +00:00
2020-11-21 17:33:24 +00:00
}
private double getTotalHeight(StringBounder stringBounder) {
double height = 0;
2021-11-25 21:42:50 +00:00
for (Line line : lines)
2020-12-01 21:39:27 +00:00
height += line.getHeightOfRow(stringBounder);
2021-11-25 21:42:50 +00:00
2020-11-21 17:33:24 +00:00
return height;
}
2021-03-07 12:23:24 +00:00
private TextBlock getTextBlock(Style style, String key) {
2020-11-21 17:33:24 +00:00
final Display display = Display.getWithNewlines(key);
2022-09-18 17:08:06 +00:00
final FontConfiguration fontConfiguration = style.getFontConfiguration(skinParam.getIHtmlColorSet());
final LineBreakStrategy wrap = style.wrapWidth();
final HorizontalAlignment horizontalAlignment = style.getHorizontalAlignment();
TextBlock result = display.create0(fontConfiguration, horizontalAlignment, skinParam, wrap,
CreoleMode.NO_CREOLE, null, null);
2020-11-21 17:33:24 +00:00
result = TextBlockUtils.withMargin(result, 5, 2);
return result;
}
public void setTotalWidth(double totalWidth) {
this.totalWidth = totalWidth;
}
2020-12-01 21:39:27 +00:00
public HColor getBackcolor() {
return null;
}
2020-11-21 17:33:24 +00:00
}