1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-09-29 07:29:00 +00:00
plantuml/src/net/sourceforge/plantuml/PSystemUtils.java

326 lines
12 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2013-12-10 19:36:50 +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:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2013-12-10 19:36:50 +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
* 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;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import net.sourceforge.plantuml.activitydiagram3.ActivityDiagram3;
import net.sourceforge.plantuml.core.Diagram;
import net.sourceforge.plantuml.core.ImageData;
import net.sourceforge.plantuml.cucadiagram.CucaDiagram;
import net.sourceforge.plantuml.html.CucaDiagramHtmlMaker;
import net.sourceforge.plantuml.png.PngSplitter;
2020-02-18 21:24:31 +00:00
import net.sourceforge.plantuml.project.GanttDiagram;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.sequencediagram.SequenceDiagram;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColorUtils;
2013-12-10 19:36:50 +00:00
public class PSystemUtils {
2018-05-01 17:26:04 +00:00
public static List<FileImageData> exportDiagrams(Diagram system, SuggestedFile suggested,
2017-03-12 17:22:02 +00:00
FileFormatOption fileFormatOption) throws IOException {
2018-05-01 17:26:04 +00:00
return exportDiagrams(system, suggested, fileFormatOption, false);
}
public static List<FileImageData> exportDiagrams(Diagram system, SuggestedFile suggestedFile,
FileFormatOption fileFormatOption, boolean checkMetadata) throws IOException {
2019-09-14 18:12:04 +00:00
final File existingFile = suggestedFile.getFile(0);
if (checkMetadata && fileFormatOption.getFileFormat().doesSupportMetadata() && existingFile.exists()
&& system.getNbImages() == 1) {
2018-05-01 17:26:04 +00:00
// final String version = Version.versionString();
// System.out.println(system.getMetadata());
// System.out.println(data);
// System.out.println(version);
// System.out.println(data.contains(version));
2019-09-14 18:12:04 +00:00
final boolean sameMetadata = fileFormatOption.getFileFormat().equalsMetadata(system.getMetadata(),
existingFile);
2018-05-01 17:26:04 +00:00
if (sameMetadata) {
2019-09-14 18:12:04 +00:00
Log.info("Skipping " + existingFile.getAbsolutePath() + " because metadata has not changed.");
return Arrays.asList(new FileImageData(existingFile, null));
2018-05-01 17:26:04 +00:00
}
}
2016-12-01 20:29:25 +00:00
if (system instanceof NewpagedDiagram) {
return exportDiagramsNewpaged((NewpagedDiagram) system, suggestedFile, fileFormatOption);
2013-12-10 19:36:50 +00:00
}
2016-12-01 20:29:25 +00:00
if (system instanceof SequenceDiagram) {
return exportDiagramsSequence((SequenceDiagram) system, suggestedFile, fileFormatOption);
}
if (system instanceof CucaDiagram) {
return exportDiagramsCuca((CucaDiagram) system, suggestedFile, fileFormatOption);
}
2018-04-06 20:36:30 +00:00
if (system instanceof GanttDiagram) {
return exportDiagramsGantt2((GanttDiagram) system, suggestedFile, fileFormatOption);
}
2016-12-01 20:29:25 +00:00
if (system instanceof ActivityDiagram3) {
return exportDiagramsActivityDiagram3((ActivityDiagram3) system, suggestedFile, fileFormatOption);
}
return exportDiagramsDefault(system, suggestedFile, fileFormatOption);
2013-12-10 19:36:50 +00:00
}
2017-04-19 18:30:16 +00:00
private static List<FileImageData> exportDiagramsNewpaged(NewpagedDiagram system, SuggestedFile suggestedFile,
2013-12-10 19:36:50 +00:00
FileFormatOption fileFormat) throws IOException {
2017-03-12 17:22:02 +00:00
final List<FileImageData> result = new ArrayList<FileImageData>();
2013-12-10 19:36:50 +00:00
final int nbImages = system.getNbImages();
for (int i = 0; i < nbImages; i++) {
2017-04-19 18:30:16 +00:00
final File f = suggestedFile.getFile(i);
2013-12-10 19:36:50 +00:00
if (canFileBeWritten(f) == false) {
return result;
}
final OutputStream fos = new BufferedOutputStream(new FileOutputStream(f));
2017-03-12 17:22:02 +00:00
ImageData cmap = null;
2013-12-10 19:36:50 +00:00
try {
2017-03-12 17:22:02 +00:00
system.exportDiagram(fos, i, fileFormat);
2013-12-10 19:36:50 +00:00
} finally {
fos.close();
}
// if (system.hasUrl() && cmap != null && cmap.containsCMapData()) {
// system.exportCmap(suggestedFile, cmap);
// }
Log.info("File size : " + f.length());
2017-03-12 17:22:02 +00:00
result.add(new FileImageData(f, cmap));
2013-12-10 19:36:50 +00:00
}
return result;
}
public static boolean canFileBeWritten(final File f) {
Log.info("Creating file: " + f);
if (f.exists() && f.canWrite() == false) {
if (OptionFlags.getInstance().isOverwrite()) {
Log.info("Overwrite " + f);
f.setWritable(true);
f.delete();
return true;
}
Log.error("Cannot write to file " + f);
return false;
}
return true;
}
2017-04-19 18:30:16 +00:00
static private List<FileImageData> exportDiagramsDefault(Diagram system, SuggestedFile suggestedFile,
2017-03-12 17:22:02 +00:00
FileFormatOption fileFormat) throws IOException {
2017-04-19 18:30:16 +00:00
if (suggestedFile.getFile(0).exists() && suggestedFile.getFile(0).isDirectory()) {
2013-12-10 19:36:50 +00:00
throw new IllegalArgumentException("File is a directory " + suggestedFile);
}
OutputStream os = null;
2017-03-12 17:22:02 +00:00
ImageData imageData = null;
2013-12-10 19:36:50 +00:00
try {
2017-04-19 18:30:16 +00:00
if (PSystemUtils.canFileBeWritten(suggestedFile.getFile(0)) == false) {
2013-12-10 19:36:50 +00:00
return Collections.emptyList();
}
2017-04-19 18:30:16 +00:00
os = new BufferedOutputStream(new FileOutputStream(suggestedFile.getFile(0)));
2013-12-10 19:36:50 +00:00
// system.exportDiagram(os, null, 0, fileFormat);
2017-03-12 17:22:02 +00:00
imageData = system.exportDiagram(os, 0, fileFormat);
2013-12-10 19:36:50 +00:00
} finally {
if (os != null) {
os.close();
}
}
2017-04-19 18:30:16 +00:00
return Arrays.asList(new FileImageData(suggestedFile.getFile(0), imageData));
2013-12-10 19:36:50 +00:00
}
2017-04-19 18:30:16 +00:00
static private List<FileImageData> exportDiagramsActivityDiagram3(ActivityDiagram3 system,
SuggestedFile suggestedFile, FileFormatOption fileFormat) throws IOException {
if (suggestedFile.getFile(0).exists() && suggestedFile.getFile(0).isDirectory()) {
2013-12-10 19:36:50 +00:00
throw new IllegalArgumentException("File is a directory " + suggestedFile);
}
OutputStream os = null;
ImageData cmap = null;
2017-03-12 17:22:02 +00:00
ImageData imageData = null;
2013-12-10 19:36:50 +00:00
try {
2017-04-19 18:30:16 +00:00
if (PSystemUtils.canFileBeWritten(suggestedFile.getFile(0)) == false) {
2013-12-10 19:36:50 +00:00
return Collections.emptyList();
}
2017-04-19 18:30:16 +00:00
os = new BufferedOutputStream(new FileOutputStream(suggestedFile.getFile(0)));
2017-03-12 17:22:02 +00:00
imageData = cmap = system.exportDiagram(os, 0, fileFormat);
2013-12-10 19:36:50 +00:00
} finally {
if (os != null) {
os.close();
}
}
2015-04-07 18:18:37 +00:00
if (cmap != null && cmap.containsCMapData()) {
2017-04-19 18:30:16 +00:00
system.exportCmap(suggestedFile, 0, cmap);
2013-12-10 19:36:50 +00:00
}
2017-04-19 18:30:16 +00:00
return Arrays.asList(new FileImageData(suggestedFile.getFile(0), imageData));
2013-12-10 19:36:50 +00:00
}
2017-04-19 18:30:16 +00:00
private static List<FileImageData> exportDiagramsSequence(SequenceDiagram system, SuggestedFile suggestedFile,
2013-12-10 19:36:50 +00:00
FileFormatOption fileFormat) throws IOException {
2017-03-12 17:22:02 +00:00
final List<FileImageData> result = new ArrayList<FileImageData>();
2013-12-10 19:36:50 +00:00
final int nbImages = system.getNbImages();
for (int i = 0; i < nbImages; i++) {
2017-04-19 18:30:16 +00:00
final File f = suggestedFile.getFile(i);
if (PSystemUtils.canFileBeWritten(suggestedFile.getFile(i)) == false) {
2013-12-10 19:36:50 +00:00
return result;
}
final OutputStream fos = new BufferedOutputStream(new FileOutputStream(f));
ImageData cmap = null;
try {
cmap = system.exportDiagram(fos, i, fileFormat);
} finally {
fos.close();
}
2015-04-07 18:18:37 +00:00
if (cmap != null && cmap.containsCMapData()) {
2017-04-19 18:30:16 +00:00
system.exportCmap(suggestedFile, i, cmap);
2013-12-10 19:36:50 +00:00
}
Log.info("File size : " + f.length());
2017-03-12 17:22:02 +00:00
result.add(new FileImageData(f, cmap));
2013-12-10 19:36:50 +00:00
}
return result;
}
2017-04-19 18:30:16 +00:00
static private List<FileImageData> exportDiagramsCuca(CucaDiagram system, SuggestedFile suggestedFile,
2017-03-12 17:22:02 +00:00
FileFormatOption fileFormat) throws IOException {
2017-04-19 18:30:16 +00:00
if (suggestedFile.getFile(0).exists() && suggestedFile.getFile(0).isDirectory()) {
2013-12-10 19:36:50 +00:00
throw new IllegalArgumentException("File is a directory " + suggestedFile);
}
if (fileFormat.getFileFormat() == FileFormat.HTML) {
return createFilesHtml(system, suggestedFile);
}
ImageData cmap = null;
OutputStream os = null;
try {
2017-04-19 18:30:16 +00:00
if (PSystemUtils.canFileBeWritten(suggestedFile.getFile(0)) == false) {
2013-12-10 19:36:50 +00:00
return Collections.emptyList();
}
2016-05-11 21:31:47 +00:00
// System.err.println("FOO11=" + suggestedFile);
// os = new BufferedOutputStream(new FileOutputStream(suggestedFile));
2017-04-19 18:30:16 +00:00
os = new NamedOutputStream(suggestedFile.getFile(0));
2013-12-10 19:36:50 +00:00
cmap = system.exportDiagram(os, 0, fileFormat);
} finally {
if (os != null) {
os.close();
}
}
2017-04-19 18:30:16 +00:00
List<File> result = Arrays.asList(suggestedFile.getFile(0));
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
if (cmap != null && cmap.containsCMapData()) {
2017-04-19 18:30:16 +00:00
system.exportCmap(suggestedFile, 0, cmap);
2013-12-10 19:36:50 +00:00
}
if (fileFormat.getFileFormat() == FileFormat.PNG) {
result = new PngSplitter(suggestedFile, system.getHorizontalPages(), system.getVerticalPages(),
2019-03-29 22:14:07 +00:00
system.getMetadata(), (int) (system.getScaleCoef(fileFormat) * 96), fileFormat.isWithMetadata(),
system.getSkinParam().getSplitParam()).getFiles();
2013-12-10 19:36:50 +00:00
}
2017-03-12 17:22:02 +00:00
final List<FileImageData> result2 = new ArrayList<FileImageData>();
for (File f : result) {
result2.add(new FileImageData(f, cmap));
}
return result2;
2013-12-10 19:36:50 +00:00
}
2018-04-06 20:36:30 +00:00
// static private List<FileImageData> exportDiagramsGantt1(GanttDiagram system, SuggestedFile suggestedFile,
// FileFormatOption fileFormat) throws IOException {
// if (suggestedFile.getFile(0).exists() && suggestedFile.getFile(0).isDirectory()) {
// throw new IllegalArgumentException("File is a directory " + suggestedFile);
// }
// OutputStream os = null;
// ImageData imageData = null;
// try {
// if (PSystemUtils.canFileBeWritten(suggestedFile.getFile(0)) == false) {
// return Collections.emptyList();
// }
// os = new BufferedOutputStream(new FileOutputStream(suggestedFile.getFile(0)));
// imageData = system.exportDiagram(os, 0, fileFormat);
// } finally {
// if (os != null) {
// os.close();
// }
// }
// return Arrays.asList(new FileImageData(suggestedFile.getFile(0), imageData));
// }
static private List<FileImageData> exportDiagramsGantt2(GanttDiagram system, SuggestedFile suggestedFile,
FileFormatOption fileFormat) throws IOException {
if (suggestedFile.getFile(0).exists() && suggestedFile.getFile(0).isDirectory()) {
throw new IllegalArgumentException("File is a directory " + suggestedFile);
}
ImageData cmap = null;
OutputStream os = null;
try {
if (PSystemUtils.canFileBeWritten(suggestedFile.getFile(0)) == false) {
return Collections.emptyList();
}
os = new NamedOutputStream(suggestedFile.getFile(0));
cmap = system.exportDiagram(os, 0, fileFormat);
} finally {
if (os != null) {
os.close();
}
}
List<File> result = Arrays.asList(suggestedFile.getFile(0));
if (fileFormat.getFileFormat() == FileFormat.PNG) {
2020-03-18 10:50:02 +00:00
final SplitParam splitParam = new SplitParam(HColorUtils.BLACK, null, 5);
2018-04-06 20:36:30 +00:00
result = new PngSplitter(suggestedFile, system.getHorizontalPages(), system.getVerticalPages(),
system.getMetadata(), system.getDpi(fileFormat), fileFormat.isWithMetadata(), splitParam)
.getFiles();
}
final List<FileImageData> result2 = new ArrayList<FileImageData>();
for (File f : result) {
result2.add(new FileImageData(f, cmap));
}
return result2;
}
2017-04-19 18:30:16 +00:00
private static List<FileImageData> createFilesHtml(CucaDiagram system, SuggestedFile suggestedFile)
throws IOException {
2013-12-10 19:36:50 +00:00
final String name = suggestedFile.getName();
final int idx = name.lastIndexOf('.');
final File dir = new File(suggestedFile.getParentFile(), name.substring(0, idx));
final CucaDiagramHtmlMaker maker = new CucaDiagramHtmlMaker(system, dir);
return maker.create();
}
}