1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 02:10:53 +00:00
plantuml/src/net/sourceforge/plantuml/FileFormat.java

311 lines
9.0 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://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
*
2017-03-15 19:13:31 +00:00
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
2022-08-17 17:34:24 +00:00
*
2010-11-15 20:35:36 +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
2010-11-15 20:35:36 +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;
2017-10-07 09:46:53 +00:00
import java.awt.Font;
2016-08-25 20:45:37 +00:00
import java.awt.FontMetrics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
2016-08-25 20:45:37 +00:00
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
2019-09-14 18:12:04 +00:00
import java.io.IOException;
2013-12-10 19:36:50 +00:00
2022-09-12 20:08:34 +00:00
import net.sourceforge.plantuml.awt.geom.XDimension2D;
2016-08-25 20:45:37 +00:00
import net.sourceforge.plantuml.braille.BrailleCharFactory;
import net.sourceforge.plantuml.braille.UGraphicBraille;
import net.sourceforge.plantuml.graphic.StringBounder;
2021-02-02 10:12:15 +00:00
import net.sourceforge.plantuml.graphic.StringBounderRaw;
2022-08-17 17:34:24 +00:00
import net.sourceforge.plantuml.log.Logme;
2019-09-14 18:12:04 +00:00
import net.sourceforge.plantuml.png.MetadataTag;
2020-05-30 15:20:23 +00:00
import net.sourceforge.plantuml.security.SFile;
2019-09-14 18:12:04 +00:00
import net.sourceforge.plantuml.svg.SvgGraphics;
2016-08-25 20:45:37 +00:00
import net.sourceforge.plantuml.ugraphic.UFont;
import net.sourceforge.plantuml.ugraphic.debug.StringBounderDebug;
2016-08-25 20:45:37 +00:00
2013-12-10 19:36:50 +00:00
/**
* Format for output files generated by PlantUML.
2022-08-17 17:34:24 +00:00
*
2013-12-10 19:36:50 +00:00
* @author Arnaud Roques
2022-08-17 17:34:24 +00:00
*
2013-12-10 19:36:50 +00:00
*/
2010-11-15 20:35:36 +00:00
public enum FileFormat {
PNG("image/png"), //
SVG("image/svg+xml"), //
EPS("application/postscript"), //
EPS_TEXT("application/postscript"), //
ATXT("text/plain"), //
UTXT("text/plain;charset=UTF-8"), //
XMI_STANDARD("application/vnd.xmi+xml"), //
XMI_STAR("application/vnd.xmi+xml"), //
XMI_ARGO("application/vnd.xmi+xml"), //
SCXML("application/scxml+xml"), //
GRAPHML("application/graphml+xml"), //
PDF("application/pdf"), //
MJPEG("video/x-msvideo"), //
ANIMATED_GIF("image/gif"), //
HTML("text/html"), //
HTML5("text/html"), //
VDX("application/vnd.visio.xml"), //
LATEX("application/x-latex"), //
LATEX_NO_PREAMBLE("application/x-latex"), //
BASE64("text/plain; charset=x-user-defined"), //
BRAILLE_PNG("image/png"), //
PREPROC("text/plain"), //
DEBUG("text/plain"); //
private final String mimeType;
FileFormat(String mimeType) {
this.mimeType = mimeType;
}
public String getMimeType() {
return mimeType;
}
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
/**
* Returns the file format to be used for that format.
2022-08-17 17:34:24 +00:00
*
2013-12-10 19:36:50 +00:00
* @return a string starting by a point.
*/
2010-11-15 20:35:36 +00:00
public String getFileSuffix() {
if (name().startsWith("XMI"))
2013-12-10 19:36:50 +00:00
return ".xmi";
if (this == MJPEG)
2015-04-07 18:18:37 +00:00
return ".avi";
if (this == LATEX || this == LATEX_NO_PREAMBLE)
return ".tex";
if (this == ANIMATED_GIF)
2015-04-07 18:18:37 +00:00
return ".gif";
if (this == BRAILLE_PNG)
2016-07-25 19:25:28 +00:00
return ".braille.png";
if (this == EPS_TEXT)
2011-08-08 17:48:29 +00:00
return EPS.getFileSuffix();
2015-04-07 18:18:37 +00:00
return "." + StringUtils.goLowerCase(name());
2010-11-15 20:35:36 +00:00
}
2011-08-08 17:48:29 +00:00
2016-09-29 19:51:18 +00:00
final static private BufferedImage imDummy = new BufferedImage(800, 100, BufferedImage.TYPE_INT_RGB);
2020-05-30 15:20:23 +00:00
final static public Graphics2D gg = imDummy.createGraphics();
static {
// KEY_FRACTIONALMETRICS
gg.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
}
2016-08-25 20:45:37 +00:00
public StringBounder getDefaultStringBounder() {
return getDefaultStringBounder(TikzFontDistortion.getDefault(), SvgCharSizeHack.NO_HACK);
}
2020-12-06 21:43:09 +00:00
public StringBounder getDefaultStringBounder(TikzFontDistortion tikzFontDistortion, SvgCharSizeHack charSizeHack) {
if (this == LATEX || this == LATEX_NO_PREAMBLE)
2017-10-07 09:46:53 +00:00
return getTikzStringBounder(tikzFontDistortion);
if (this == BRAILLE_PNG)
2017-10-07 09:46:53 +00:00
return getBrailleStringBounder();
if (this == SVG)
2020-12-06 21:43:09 +00:00
return getSvgStringBounder(charSizeHack);
if (this == DEBUG)
return new StringBounderDebug();
2017-10-07 09:46:53 +00:00
return getNormalStringBounder();
}
2020-12-06 21:43:09 +00:00
private StringBounder getSvgStringBounder(final SvgCharSizeHack charSizeHack) {
2021-02-02 10:12:15 +00:00
return new StringBounderRaw() {
2020-12-06 21:43:09 +00:00
public String toString() {
return "FileFormat::getSvgStringBounder";
}
2022-09-12 20:08:34 +00:00
protected XDimension2D calculateDimensionInternal(UFont font, String text) {
2020-12-06 21:43:09 +00:00
text = charSizeHack.transformStringForSizeHack(text);
return getJavaDimension(font, text);
}
};
}
2017-10-07 09:46:53 +00:00
private StringBounder getNormalStringBounder() {
2021-02-02 10:12:15 +00:00
return new StringBounderRaw() {
2017-10-07 09:46:53 +00:00
@Override
public String toString() {
return "FileFormat::getNormalStringBounder";
}
2022-09-12 20:08:34 +00:00
protected XDimension2D calculateDimensionInternal(UFont font, String text) {
2017-10-07 09:46:53 +00:00
return getJavaDimension(font, text);
}
};
}
2022-09-12 20:08:34 +00:00
static private XDimension2D getJavaDimension(UFont font, String text) {
final Font javaFont = font.getUnderlayingFont();
2021-02-02 10:12:15 +00:00
final FontMetrics fm = gg.getFontMetrics(javaFont);
final Rectangle2D rect = fm.getStringBounds(text, gg);
2022-09-12 20:08:34 +00:00
return new XDimension2D(rect.getWidth(), rect.getHeight());
2017-10-07 09:46:53 +00:00
}
private StringBounder getBrailleStringBounder() {
2021-02-02 10:12:15 +00:00
return new StringBounderRaw() {
2017-10-07 09:46:53 +00:00
@Override
public String toString() {
return "FileFormat::getBrailleStringBounder";
}
2022-09-12 20:08:34 +00:00
protected XDimension2D calculateDimensionInternal(UFont font, String text) {
2017-10-07 09:46:53 +00:00
final int nb = BrailleCharFactory.build(text).size();
final double quanta = UGraphicBraille.QUANTA;
final double height = 5 * quanta;
final double width = 3 * nb * quanta + 1;
2022-09-12 20:08:34 +00:00
return new XDimension2D(width, height);
2017-10-07 09:46:53 +00:00
}
2021-10-29 04:12:57 +00:00
@Override
public double getDescent(UFont font, String text) {
return UGraphicBraille.QUANTA;
}
2017-10-07 09:46:53 +00:00
};
}
private StringBounder getTikzStringBounder(final TikzFontDistortion tikzFontDistortion) {
2021-02-02 10:12:15 +00:00
return new StringBounderRaw() {
2017-10-07 09:46:53 +00:00
@Override
public String toString() {
return "FileFormat::getTikzStringBounder";
}
2022-09-12 20:08:34 +00:00
protected XDimension2D calculateDimensionInternal(UFont font, String text) {
2022-05-21 09:41:00 +00:00
text = text.replace("\t", " ");
2022-09-12 20:08:34 +00:00
final XDimension2D w1 = getJavaDimension(font.goTikz(-1), text);
final XDimension2D w2 = getJavaDimension(font.goTikz(0), text);
final XDimension2D w3 = getJavaDimension(font.goTikz(1), text);
2017-10-07 09:46:53 +00:00
final double factor = (w3.getWidth() - w1.getWidth()) / w2.getWidth();
final double distortion = tikzFontDistortion.getDistortion();
final double magnify = tikzFontDistortion.getMagnify();
final double delta = (w2.getWidth() - w1.getWidth()) * factor * distortion;
return w2.withWidth(Math.max(w1.getWidth(), magnify * w2.getWidth() - delta));
2016-08-25 20:45:37 +00:00
}
};
}
2013-12-10 19:36:50 +00:00
/**
* Check if this file format is Encapsulated PostScript.
2022-08-17 17:34:24 +00:00
*
2013-12-10 19:36:50 +00:00
* @return <code>true</code> for EPS.
*/
2011-08-08 17:48:29 +00:00
public boolean isEps() {
if (this == EPS)
2011-08-08 17:48:29 +00:00
return true;
if (this == EPS_TEXT)
2011-08-08 17:48:29 +00:00
return true;
2011-08-08 17:48:29 +00:00
return false;
}
public String changeName(String fileName, int cpt) {
if (cpt == 0)
2013-12-10 19:36:50 +00:00
return changeName(fileName, getFileSuffix());
return changeName(fileName,
OptionFlags.getInstance().getFileSeparator() + String.format("%03d", cpt) + getFileSuffix());
2013-12-10 19:36:50 +00:00
}
2020-05-30 15:20:23 +00:00
private SFile computeFilename(SFile pngFile, int i) {
if (i == 0)
2017-04-19 18:30:16 +00:00
return pngFile;
2020-05-30 15:20:23 +00:00
final SFile dir = pngFile.getParentFile();
return dir.file(computeFilenameInternal(pngFile.getName(), i));
2017-04-19 18:30:16 +00:00
}
2013-12-10 19:36:50 +00:00
private String changeName(String fileName, String replacement) {
String result = fileName.replaceAll("\\.\\w+$", replacement);
if (result.equals(fileName))
2013-12-10 19:36:50 +00:00
result = fileName + replacement;
2013-12-10 19:36:50 +00:00
return result;
}
2017-04-19 18:30:16 +00:00
private String computeFilenameInternal(String name, int i) {
if (i == 0)
2013-12-10 19:36:50 +00:00
return name;
2016-11-18 21:12:09 +00:00
return name.replaceAll("\\" + getFileSuffix() + "$",
OptionFlags.getInstance().getFileSeparator() + String.format("%03d", i) + getFileSuffix());
2011-08-08 17:48:29 +00:00
}
2019-09-14 18:12:04 +00:00
public boolean doesSupportMetadata() {
return this == PNG || this == SVG;
}
2020-05-30 15:20:23 +00:00
public boolean equalsMetadata(String currentMetadata, SFile existingFile) {
2019-09-14 18:12:04 +00:00
try {
if (this == PNG) {
final MetadataTag tag = new MetadataTag(existingFile, "plantuml");
final String previousMetadata = tag.getData();
final boolean sameMetadata = currentMetadata.equals(previousMetadata);
return sameMetadata;
}
if (this == SVG) {
final String svg = FileUtils.readSvg(existingFile);
if (svg == null)
2020-05-30 15:20:23 +00:00
return false;
2022-12-06 19:47:32 +00:00
final String currentSignature = SvgGraphics.getMetadataHex(currentMetadata);
final int idx = svg.lastIndexOf(SvgGraphics.META_HEADER);
2019-09-14 18:12:04 +00:00
if (idx != -1) {
2022-12-06 19:47:32 +00:00
final String part = svg.substring(idx + SvgGraphics.META_HEADER.length());
return part.startsWith(currentSignature + "]");
2019-09-14 18:12:04 +00:00
}
}
} catch (IOException e) {
2022-08-17 17:34:24 +00:00
Logme.error(e);
2019-09-14 18:12:04 +00:00
}
return false;
}
2010-11-15 20:35:36 +00:00
}