1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 00:20:49 +00:00
plantuml/src/net/sourceforge/plantuml/ditaa/PSystemDitaa.java

189 lines
7.7 KiB
Java
Raw Normal View History

2011-04-19 16:50:40 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
2011-04-19 16:50:40 +00:00
*
2023-02-22 18:43:48 +00:00
* Project Info: https://plantuml.com
2022-08-17 17:34:24 +00:00
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
2022-08-17 17:34:24 +00:00
*
2023-02-22 18:43:48 +00:00
* https://plantuml.com/patreon (only 1$ per month!)
* https://plantuml.com/paypal
2022-08-17 17:34:24 +00:00
*
2011-04-19 16:50:40 +00:00
* 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
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2011-04-19 16:50:40 +00:00
* 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.ditaa;
import java.awt.Color;
import java.awt.Font;
2011-04-19 16:50:40 +00:00
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
2019-03-29 22:14:07 +00:00
import java.lang.reflect.Field;
import java.lang.reflect.Method;
2020-05-17 21:15:50 +00:00
import java.util.ArrayList;
import java.util.List;
2011-04-19 16:50:40 +00:00
import net.sourceforge.plantuml.AbstractPSystem;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.FileFormat;
2011-04-19 16:50:40 +00:00
import net.sourceforge.plantuml.FileFormatOption;
2020-05-17 21:15:50 +00:00
import net.sourceforge.plantuml.UmlDiagram;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.api.ImageDataSimple;
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;
2022-08-17 17:34:24 +00:00
import net.sourceforge.plantuml.log.Logme;
import net.sourceforge.plantuml.security.SImageIO;
2020-05-17 21:15:50 +00:00
import net.sourceforge.plantuml.svek.GraphvizCrash;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.text.BackSlash;
2011-04-19 16:50:40 +00:00
public class PSystemDitaa extends AbstractPSystem {
2023-02-28 21:22:51 +00:00
// ::remove folder when __CORE__
2011-04-19 16:50:40 +00:00
2019-03-29 22:14:07 +00:00
// private ProcessingOptions processingOptions;
private Object processingOptions;
2013-12-10 19:36:50 +00:00
private final boolean dropShadows;
private final String data;
2016-09-29 19:51:18 +00:00
private final float scale;
private final boolean transparentBackground;
private final Font font;
private final boolean forceFontSize;
2019-03-29 22:14:07 +00:00
private final boolean performSeparationOfCommonEdges;
2022-02-24 18:18:19 +00:00
private final boolean allCornersAreRound;
2011-08-08 17:48:29 +00:00
2022-02-24 18:18:19 +00:00
public PSystemDitaa(UmlSource source, String data, boolean performSeparationOfCommonEdges, boolean dropShadows,
boolean allCornersAreRound, boolean transparentBackground, float scale, Font font, boolean forceFontSize) {
2021-05-23 15:35:13 +00:00
super(source);
2013-12-10 19:36:50 +00:00
this.data = data;
this.dropShadows = dropShadows;
2019-03-29 22:14:07 +00:00
this.performSeparationOfCommonEdges = performSeparationOfCommonEdges;
2022-02-24 18:18:19 +00:00
this.allCornersAreRound = allCornersAreRound;
2019-03-29 22:14:07 +00:00
try {
this.processingOptions = Class.forName("org.stathissideris.ascii2image.core.ProcessingOptions")
.newInstance();
// this.processingOptions.setPerformSeparationOfCommonEdges(performSeparationOfCommonEdges);
this.processingOptions.getClass().getMethod("setPerformSeparationOfCommonEdges", boolean.class)
.invoke(this.processingOptions, performSeparationOfCommonEdges);
2022-02-24 18:18:19 +00:00
this.processingOptions.getClass().getMethod("setAllCornersAreRound", boolean.class)
.invoke(this.processingOptions, allCornersAreRound);
2019-03-29 22:14:07 +00:00
} catch (Exception e) {
2022-08-17 17:34:24 +00:00
Logme.error(e);
2019-03-29 22:14:07 +00:00
this.processingOptions = null;
}
this.transparentBackground = transparentBackground;
2016-09-29 19:51:18 +00:00
this.scale = scale;
this.font = font;
this.forceFontSize = forceFontSize;
2011-04-19 16:50:40 +00:00
}
2013-12-10 19:36:50 +00:00
PSystemDitaa add(String line) {
2022-02-24 18:18:19 +00:00
return new PSystemDitaa(getSource(), data + line + BackSlash.NEWLINE, performSeparationOfCommonEdges,
dropShadows, allCornersAreRound, transparentBackground, scale, font, forceFontSize);
2011-04-19 16:50:40 +00:00
}
2013-12-10 19:36:50 +00:00
public DiagramDescription getDescription() {
2017-03-12 17:22:02 +00:00
return new DiagramDescription("(Ditaa)");
2013-12-10 19:36:50 +00:00
}
2011-04-19 16:50:40 +00:00
2016-12-01 20:29:25 +00:00
@Override
2021-03-23 13:06:33 +00:00
final protected ImageData exportDiagramNow(OutputStream os, int num, FileFormatOption fileFormat)
2016-12-01 20:29:25 +00:00
throws IOException {
2013-12-10 19:36:50 +00:00
if (fileFormat.getFileFormat() == FileFormat.ATXT) {
os.write(getSource().getPlainString(BackSlash.lineSeparator()).getBytes());
2018-05-01 17:26:04 +00:00
return ImageDataSimple.ok();
2013-12-10 19:36:50 +00:00
}
2019-03-29 22:14:07 +00:00
2013-12-10 19:36:50 +00:00
// ditaa can only export png so file format is mostly ignored
2019-03-29 22:14:07 +00:00
try {
// ditaa0_9.jar
// final ConversionOptions options = new ConversionOptions();
final Object options = Class.forName("org.stathissideris.ascii2image.core.ConversionOptions").newInstance();
// final RenderingOptions renderingOptions = options.renderingOptions;
final Field f_renderingOptions = options.getClass().getField("renderingOptions");
final Object renderingOptions = f_renderingOptions.get(options);
// renderingOptions.setBackgroundColor(font);
final Method setBackgroundColor = renderingOptions.getClass().getMethod("setBackgroundColor", Color.class);
setBackgroundColor.invoke(renderingOptions, transparentBackground ? new Color(0, 0, 0, 0) : Color.WHITE);
// renderingOptions.setFont(font);
final Method setFont = renderingOptions.getClass().getMethod("setFont", Font.class);
setFont.invoke(renderingOptions, font);
// renderingOptions.setForceFontSize(font);
final Method setForceFontSize = renderingOptions.getClass().getMethod("setForceFontSize", boolean.class);
setForceFontSize.invoke(renderingOptions, forceFontSize);
2019-03-29 22:14:07 +00:00
// renderingOptions.setScale(scale);
final Method setScale = renderingOptions.getClass().getMethod("setScale", float.class);
setScale.invoke(renderingOptions, scale);
// options.setDropShadows(dropShadows);
final Method setDropShadows = options.getClass().getMethod("setDropShadows", boolean.class);
setDropShadows.invoke(options, dropShadows);
// final TextGrid grid = new TextGrid();
final Object grid = Class.forName("org.stathissideris.ascii2image.text.TextGrid").newInstance();
// grid.initialiseWithText(data, null);
final Method initialiseWithText = grid.getClass().getMethod("initialiseWithText", String.class,
Class.forName("org.stathissideris.ascii2image.core.ProcessingOptions"));
initialiseWithText.invoke(grid, data, null);
// final Diagram diagram = new Diagram(grid, options, processingOptions);
final Class<?> clDiagram = Class.forName("org.stathissideris.ascii2image.graphics.Diagram");
2020-05-17 21:15:50 +00:00
clDiagram.getConstructor(grid.getClass(), options.getClass(), processingOptions.getClass())
.newInstance(grid, options, processingOptions);
final Object diagram = clDiagram
.getConstructor(grid.getClass(), options.getClass(), processingOptions.getClass())
.newInstance(grid, options, processingOptions);
2019-03-29 22:14:07 +00:00
// final BitmapRenderer bitmapRenderer = new BitmapRenderer();
final Object bitmapRenderer = Class.forName("org.stathissideris.ascii2image.graphics.BitmapRenderer")
.newInstance();
2020-05-17 21:15:50 +00:00
// final BufferedImage image = (BufferedImage)
// bitmapRenderer.renderToImage(diagram, renderingOptions);
2019-03-29 22:14:07 +00:00
final Method renderToImage = bitmapRenderer.getClass().getMethod("renderToImage", diagram.getClass(),
renderingOptions.getClass());
final BufferedImage image = (BufferedImage) renderToImage.invoke(bitmapRenderer, diagram, renderingOptions);
SImageIO.write(image, "png", os);
2019-03-29 22:14:07 +00:00
final int width = image.getWidth();
final int height = image.getHeight();
return new ImageDataSimple(width, height);
2020-05-17 21:15:50 +00:00
} catch (Throwable e) {
2021-05-14 08:42:57 +00:00
final List<String> strings = new ArrayList<>();
2020-05-17 21:15:50 +00:00
strings.add("DITAA has crashed");
strings.add(" ");
GraphvizCrash.youShouldSendThisDiagram(strings);
strings.add(" ");
UmlDiagram.exportDiagramError(os, e, new FileFormatOption(FileFormat.PNG), seed(), null, null, strings);
return ImageDataSimple.error();
2019-03-29 22:14:07 +00:00
}
2011-04-19 16:50:40 +00:00
}
}