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

145 lines
5.0 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.io.IOException;
import java.io.OutputStream;
2020-12-01 21:39:27 +00:00
import java.util.List;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.FileFormatOption;
2022-12-13 17:30:41 +00:00
import net.sourceforge.plantuml.ScaleSimple;
import net.sourceforge.plantuml.TitledDiagram;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.UmlDiagramType;
2022-09-12 20:08:34 +00:00
import net.sourceforge.plantuml.awt.geom.XDimension2D;
import net.sourceforge.plantuml.awt.geom.XRectangle2D;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.core.DiagramDescription;
import net.sourceforge.plantuml.core.ImageData;
2021-05-23 15:35:13 +00:00
import net.sourceforge.plantuml.core.UmlSource;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.graphic.InnerStrategy;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2020-12-06 21:43:09 +00:00
import net.sourceforge.plantuml.json.JsonArray;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.json.JsonValue;
import net.sourceforge.plantuml.svek.TextBlockBackcolored;
import net.sourceforge.plantuml.ugraphic.MinMax;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.ugraphic.UFont;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.color.HColor;
2022-12-13 17:30:41 +00:00
import net.sourceforge.plantuml.ugraphic.hand.UGraphicHandwritten;
2023-01-09 19:13:37 +00:00
import net.sourceforge.plantuml.yaml.Highlighted;
2020-11-21 17:33:24 +00:00
public class JsonDiagram extends TitledDiagram {
2020-11-21 17:33:24 +00:00
2020-12-01 21:39:27 +00:00
private final JsonValue root;
2023-01-09 19:13:37 +00:00
private final List<Highlighted> highlighted;
2022-12-13 17:30:41 +00:00
private final boolean handwritten;
2020-12-01 21:39:27 +00:00
2023-01-09 19:13:37 +00:00
public JsonDiagram(UmlSource source, UmlDiagramType type, JsonValue json, List<Highlighted> highlighted,
2022-12-13 17:30:41 +00:00
StyleExtractor styleExtractor) {
2022-09-18 17:08:06 +00:00
super(source, type, null);
2022-12-13 17:30:41 +00:00
this.handwritten = styleExtractor.isHandwritten();
2020-12-14 18:31:06 +00:00
if (json != null && (json.isString() || json.isBoolean() || json.isNumber())) {
2020-12-06 21:43:09 +00:00
this.root = new JsonArray();
((JsonArray) this.root).add(json);
} else {
this.root = json;
}
2020-12-01 21:39:27 +00:00
this.highlighted = highlighted;
2022-12-13 17:30:41 +00:00
setScale(new ScaleSimple(styleExtractor.getScale()));
2020-11-21 17:33:24 +00:00
}
public DiagramDescription getDescription() {
2022-09-23 16:53:33 +00:00
if (getUmlDiagramType() == UmlDiagramType.YAML)
2021-01-10 20:52:19 +00:00
return new DiagramDescription("(Yaml)");
2022-09-23 16:53:33 +00:00
if (getUmlDiagramType() == UmlDiagramType.HCL)
2022-01-28 21:45:34 +00:00
return new DiagramDescription("(HCL)");
2022-09-23 16:53:33 +00:00
2020-11-21 17:33:24 +00:00
return new DiagramDescription("(Json)");
}
@Override
2021-03-23 13:06:33 +00:00
protected ImageData exportDiagramNow(OutputStream os, int index, FileFormatOption fileFormatOption)
2020-11-21 17:33:24 +00:00
throws IOException {
2021-11-09 17:47:19 +00:00
return createImageBuilder(fileFormatOption).drawable(getTextBlock()).write(os);
2020-11-21 17:33:24 +00:00
}
2020-12-01 21:39:27 +00:00
private void drawInternal(UGraphic ug) {
2022-12-13 17:30:41 +00:00
if (handwritten)
ug = new UGraphicHandwritten(ug);
2020-12-01 21:39:27 +00:00
if (root == null) {
2021-01-10 20:52:19 +00:00
final Display display = Display
.getWithNewlines("Your data does not sound like " + getUmlDiagramType() + " data");
2020-12-01 21:39:27 +00:00
final FontConfiguration fontConfiguration = FontConfiguration.blackBlueTrue(UFont.courier(14));
TextBlock result = display.create(fontConfiguration, HorizontalAlignment.LEFT, getSkinParam());
result = TextBlockUtils.withMargin(result, 5, 2);
result.drawU(ug);
} else {
new SmetanaForJson(ug, getSkinParam()).drawMe(root, highlighted);
}
}
2020-11-21 17:33:24 +00:00
private TextBlockBackcolored getTextBlock() {
return new TextBlockBackcolored() {
public void drawU(UGraphic ug) {
2020-12-01 21:39:27 +00:00
drawInternal(ug);
2020-11-21 17:33:24 +00:00
}
public MinMax getMinMax(StringBounder stringBounder) {
return null;
}
2022-09-12 20:08:34 +00:00
public XRectangle2D getInnerPosition(String member, StringBounder stringBounder, InnerStrategy strategy) {
2020-11-21 17:33:24 +00:00
return null;
}
2022-09-12 20:08:34 +00:00
public XDimension2D calculateDimension(StringBounder stringBounder) {
2021-11-09 17:47:19 +00:00
return TextBlockUtils.getMinMax(getTextBlock(), stringBounder, true).getDimension();
2020-11-21 17:33:24 +00:00
}
public HColor getBackcolor() {
return null;
}
};
}
}