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

375 lines
9.2 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
2010-11-15 20:35:36 +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
*
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;
2011-08-08 17:48:29 +00:00
import java.io.FileNotFoundException;
import java.io.PrintStream;
import java.util.concurrent.atomic.AtomicBoolean;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.core.Diagram;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.dot.GraphvizUtils;
2022-08-17 17:34:24 +00:00
import net.sourceforge.plantuml.log.Logme;
2020-05-30 15:20:23 +00:00
import net.sourceforge.plantuml.security.SFile;
import net.sourceforge.plantuml.security.SecurityUtils;
2022-12-17 11:01:10 +00:00
import net.sourceforge.plantuml.utils.Log;
2011-08-08 17:48:29 +00:00
2010-11-15 20:35:36 +00:00
public class OptionFlags {
2023-02-28 21:22:51 +00:00
// ::remove file when __HAXE__
2011-08-08 17:48:29 +00:00
2017-05-10 19:51:15 +00:00
private static final OptionFlags singleton = new OptionFlags();
2023-02-22 18:43:48 +00:00
static public final boolean STRICT_SELFMESSAGE_POSITION = true;
static public final boolean USE_INTERFACE_EYE1 = false;
static public final boolean USE_INTERFACE_EYE2 = false;
static public final boolean FORCE_TEOZ = false;
private boolean replaceWhiteBackgroundByTransparent;
public static OptionFlags getInstance() {
return singleton;
}
2017-05-10 19:51:15 +00:00
2023-02-22 18:43:48 +00:00
public final boolean isReplaceWhiteBackgroundByTransparent() {
return replaceWhiteBackgroundByTransparent;
}
public final void setReplaceWhiteBackgroundByTransparent(boolean replaceWhiteBackgroundByTransparent) {
this.replaceWhiteBackgroundByTransparent = replaceWhiteBackgroundByTransparent;
}
2023-02-28 21:22:51 +00:00
// ::comment when __CORE__
2013-12-10 19:36:50 +00:00
// static public final boolean PBBACK = false;
2015-04-07 18:18:37 +00:00
// static public boolean GRAPHVIZCACHE = false;
2016-05-11 21:31:47 +00:00
// static public final boolean TRACE_DOT = false;
2013-12-10 19:36:50 +00:00
// static public boolean ALLOW_INCLUDE = true;
//
// static public void setAllowIncludeFalse() {
// ALLOW_INCLUDE = false;
// }
2020-01-12 22:13:17 +00:00
2016-09-29 19:51:18 +00:00
static public void setMaxPixel(int max) {
}
2013-12-10 19:36:50 +00:00
2023-10-22 10:15:29 +00:00
// static public final boolean USE_HECTOR = false;
2015-04-07 18:18:37 +00:00
static public boolean ADD_NICE_FOR_DOT = false;
2016-01-09 12:15:40 +00:00
// static public final boolean USE_IF_VERTICAL = true;
2017-01-21 22:25:28 +00:00
// static public final boolean SWI2 = false;
2016-03-06 16:47:34 +00:00
// static public final boolean USE_COMPOUND = false;
2021-03-22 18:00:32 +00:00
// static public final boolean OMEGA_CROSSING = false;
2016-11-18 21:12:09 +00:00
2016-07-04 19:06:50 +00:00
// static public final boolean LINK_BETWEEN_FIELDS = true;
2010-11-15 20:35:36 +00:00
2015-04-20 19:45:13 +00:00
public void reset() {
2011-08-08 17:48:29 +00:00
reset(false);
2017-05-10 19:51:15 +00:00
GraphvizUtils.setDotExecutable(null);
2011-08-08 17:48:29 +00:00
}
2016-05-31 19:41:55 +00:00
public final void setDotExecutable(String dotExecutable) {
GraphvizUtils.setDotExecutable(dotExecutable);
}
2017-05-10 19:51:15 +00:00
private OptionFlags() {
reset(true);
}
2011-08-08 17:48:29 +00:00
private void reset(boolean exit) {
2010-11-15 20:35:36 +00:00
verbose = false;
2017-04-19 18:30:16 +00:00
extractFromMetadata = false;
2010-11-15 20:35:36 +00:00
word = false;
2011-08-08 17:48:29 +00:00
systemExit = exit;
gui = false;
quiet = false;
2024-04-14 09:29:32 +00:00
// checkDotError = false;
2011-08-08 17:48:29 +00:00
printFonts = false;
2015-04-07 18:18:37 +00:00
// failOnError = false;
2013-12-10 19:36:50 +00:00
encodesprite = false;
// PIC_LINE = false;
2010-11-15 20:35:36 +00:00
}
public boolean useJavaInsteadOfDot() {
return false;
}
2011-08-08 17:48:29 +00:00
private boolean verbose;
2017-04-19 18:30:16 +00:00
private boolean extractFromMetadata;
2011-08-08 17:48:29 +00:00
private boolean word;
private boolean systemExit;
private boolean gui;
private boolean quiet;
2024-04-14 09:29:32 +00:00
// private boolean checkDotError;
2011-08-08 17:48:29 +00:00
private boolean printFonts;
2013-12-10 19:36:50 +00:00
private boolean encodesprite;
2016-12-01 20:29:25 +00:00
private boolean dumpHtmlStats;
private boolean dumpStats;
private boolean loopStats;
2013-12-10 19:36:50 +00:00
private boolean overwrite;
2016-12-14 21:01:03 +00:00
private boolean enableStats = defaultForStats();
2018-06-12 20:50:45 +00:00
private boolean stdLib;
2018-11-26 18:46:22 +00:00
private boolean silentlyCompletelyIgnoreErrors;
2017-12-11 21:02:10 +00:00
private boolean extractStdLib;
2018-06-12 20:50:45 +00:00
private boolean clipboardLoop;
private boolean clipboard;
2016-11-18 21:12:09 +00:00
private String fileSeparator = "_";
2017-04-05 17:37:42 +00:00
private long timeoutMs = 15 * 60 * 1000L; // 15 minutes
2020-05-30 15:20:23 +00:00
private SFile logData;
2010-11-15 20:35:36 +00:00
public final boolean isVerbose() {
return verbose;
}
public final void setVerbose(boolean verbose) {
this.verbose = verbose;
}
2017-04-19 18:30:16 +00:00
public final boolean isExtractFromMetadata() {
return extractFromMetadata;
2010-11-15 20:35:36 +00:00
}
2017-04-19 18:30:16 +00:00
public final void setExtractFromMetadata(boolean extractFromMetadata) {
this.extractFromMetadata = extractFromMetadata;
2010-11-15 20:35:36 +00:00
}
public final boolean isWord() {
return word;
}
public final void setWord(boolean word) {
this.word = word;
}
public final boolean isSystemExit() {
return systemExit;
}
public final void setSystemExit(boolean systemExit) {
this.systemExit = systemExit;
}
public final boolean isGui() {
return gui;
}
public final void setGui(boolean gui) {
this.gui = gui;
}
public final boolean isQuiet() {
return quiet;
}
public final void setQuiet(boolean quiet) {
this.quiet = quiet;
}
2024-04-14 09:29:32 +00:00
// public final boolean isCheckDotError() {
// return checkDotError;
// }
2011-02-14 11:56:34 +00:00
public final void setCheckDotError(boolean checkDotError) {
2024-04-14 09:29:32 +00:00
// this.checkDotError = checkDotError;
2011-02-14 11:56:34 +00:00
}
2011-08-08 17:48:29 +00:00
private final AtomicBoolean logDataInitized = new AtomicBoolean(false);
2020-05-30 15:20:23 +00:00
public void logData(final SFile file, Diagram system) {
2013-12-10 19:36:50 +00:00
final String warnOrError = system.getWarningOrError();
if (warnOrError == null) {
2011-08-08 17:48:29 +00:00
return;
}
synchronized (logDataInitized) {
if (logData == null && logDataInitized.get() == false) {
final String s = GraphvizUtils.getenvLogData();
if (s != null) {
2020-05-30 15:20:23 +00:00
setLogData(new SFile(s));
2011-08-08 17:48:29 +00:00
}
logDataInitized.set(true);
}
if (logData == null) {
return;
}
2013-12-10 19:36:50 +00:00
// final PSystemError systemError = (PSystemError) system;
try (PrintStream ps = SecurityUtils.createPrintStream(logData.createFileOutputStream(true))) {
2011-08-08 17:48:29 +00:00
ps.println("Start of " + file.getName());
2013-12-10 19:36:50 +00:00
ps.println(warnOrError);
2011-08-08 17:48:29 +00:00
ps.println("End of " + file.getName());
ps.println();
} catch (FileNotFoundException e) {
Log.error("Cannot open " + logData);
2022-08-17 17:34:24 +00:00
Logme.error(e);
2011-08-08 17:48:29 +00:00
}
}
}
2020-05-30 15:20:23 +00:00
public final void setLogData(SFile logData) {
2011-08-08 17:48:29 +00:00
this.logData = logData;
logData.delete();
try (PrintStream ps = SecurityUtils.createPrintStream(logData.createFileOutputStream())) {
2011-08-08 17:48:29 +00:00
ps.println();
} catch (FileNotFoundException e) {
Log.error("Cannot open " + logData);
2022-08-17 17:34:24 +00:00
Logme.error(e);
2011-08-08 17:48:29 +00:00
}
}
public final boolean isPrintFonts() {
return printFonts;
}
public final void setPrintFonts(boolean printFonts) {
this.printFonts = printFonts;
}
2017-11-20 16:10:36 +00:00
public final boolean isUseSuggestEngine2() {
return false;
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
public final boolean isEncodesprite() {
return encodesprite;
}
public final void setEncodesprite(boolean encodesprite) {
this.encodesprite = encodesprite;
}
public final boolean isOverwrite() {
return overwrite;
}
public final void setOverwrite(boolean overwrite) {
this.overwrite = overwrite;
}
2015-04-07 18:18:37 +00:00
2016-12-01 20:29:25 +00:00
public final String getFileSeparator() {
2016-11-18 21:12:09 +00:00
return fileSeparator;
}
2016-12-01 20:29:25 +00:00
public final void setFileSeparator(String fileSeparator) {
2016-11-18 21:12:09 +00:00
this.fileSeparator = fileSeparator;
}
2016-12-01 20:29:25 +00:00
public final boolean isDumpHtmlStats() {
return dumpHtmlStats;
}
public final void setDumpHtmlStats(boolean value) {
this.dumpHtmlStats = value;
}
public final boolean isDumpStats() {
return dumpStats;
}
public final void setDumpStats(boolean dumpStats) {
this.dumpStats = dumpStats;
}
public final boolean isLoopStats() {
return loopStats;
}
public final void setLoopStats(boolean loopStats) {
this.loopStats = loopStats;
}
2016-12-14 21:01:03 +00:00
private static boolean defaultForStats() {
return isTrue(System.getProperty("PLANTUML_STATS")) || isTrue(System.getenv("PLANTUML_STATS"));
}
private static boolean isTrue(final String value) {
2017-10-07 09:46:53 +00:00
return "on".equalsIgnoreCase(value) || "true".equalsIgnoreCase(value);
2016-12-14 21:01:03 +00:00
}
public boolean isEnableStats() {
return enableStats;
}
public void setEnableStats(boolean enableStats) {
this.enableStats = enableStats;
}
2017-04-05 17:37:42 +00:00
public final long getTimeoutMs() {
return timeoutMs;
}
public final void setTimeoutMs(long timeoutMs) {
this.timeoutMs = timeoutMs;
}
2017-12-11 21:02:10 +00:00
public void setExtractStdLib(boolean extractStdLib) {
this.extractStdLib = extractStdLib;
}
2018-06-12 20:50:45 +00:00
public boolean isExtractStdLib() {
2017-12-11 21:02:10 +00:00
return extractStdLib;
}
2018-06-12 20:50:45 +00:00
public final boolean isClipboardLoop() {
return clipboardLoop;
}
public final void setClipboardLoop(boolean clipboardLoop) {
this.clipboardLoop = clipboardLoop;
}
public final boolean isClipboard() {
return clipboard;
}
public final void setClipboard(boolean clipboard) {
this.clipboard = clipboard;
}
public final boolean isStdLib() {
return stdLib;
}
public final void setStdLib(boolean stdLib) {
this.stdLib = stdLib;
}
2018-11-26 18:46:22 +00:00
public final boolean isSilentlyCompletelyIgnoreErrors() {
return silentlyCompletelyIgnoreErrors;
}
public final void setSilentlyCompletelyIgnoreErrors(boolean silentlyCompletelyIgnoreErrors) {
this.silentlyCompletelyIgnoreErrors = silentlyCompletelyIgnoreErrors;
}
2021-07-25 10:41:36 +00:00
2023-02-22 18:43:48 +00:00
// ::done
2010-11-15 20:35:36 +00:00
}