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

333 lines
7.9 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +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
*
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.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.util.concurrent.atomic.AtomicBoolean;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.core.Diagram;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.cucadiagram.dot.GraphvizUtils;
2016-09-29 19:51:18 +00:00
import net.sourceforge.plantuml.ugraphic.ImageBuilder;
2011-08-08 17:48:29 +00:00
2010-11-15 20:35:36 +00:00
public class OptionFlags {
2011-08-08 17:48:29 +00:00
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;
2016-11-18 21:12:09 +00:00
2016-09-29 19:51:18 +00:00
static public void setMaxPixel(int max) {
ImageBuilder.setMaxPixel(max);
}
2013-12-10 19:36:50 +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;
static public final boolean STRICT_SELFMESSAGE_POSITION = true;
2016-01-09 12:15:40 +00:00
// static public final boolean USE_IF_VERTICAL = true;
2015-04-07 18:18:37 +00:00
static public final boolean FORCE_TEOZ = false;
static public final boolean USE_INTERFACE_EYE1 = false;
static public final boolean USE_INTERFACE_EYE2 = false;
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;
2016-02-07 21:13:01 +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;
2016-03-06 16:47:34 +00:00
// static public final boolean USE_JDOT = false;
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);
}
2016-05-31 19:41:55 +00:00
public final void setDotExecutable(String dotExecutable) {
GraphvizUtils.setDotExecutable(dotExecutable);
}
2011-08-08 17:48:29 +00:00
private void reset(boolean exit) {
2016-05-11 21:31:47 +00:00
// keepTmpFiles = false;
2010-11-15 20:35:36 +00:00
verbose = false;
metadata = false;
word = false;
2011-08-08 17:48:29 +00:00
systemExit = exit;
2016-04-04 19:05:10 +00:00
GraphvizUtils.setDotExecutable(null);
2011-08-08 17:48:29 +00:00
gui = false;
quiet = false;
checkDotError = false;
printFonts = false;
useSuggestEngine = true;
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;
}
private static final OptionFlags singleton = new OptionFlags();
2016-05-11 21:31:47 +00:00
// private boolean keepTmpFiles;
2011-08-08 17:48:29 +00:00
private boolean verbose;
private boolean metadata;
private boolean word;
private boolean systemExit;
private boolean gui;
private boolean quiet;
private boolean checkDotError;
private boolean printFonts;
private boolean useSuggestEngine;
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();
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
2011-08-08 17:48:29 +00:00
private File logData;
2010-11-15 20:35:36 +00:00
private OptionFlags() {
2011-08-08 17:48:29 +00:00
reset(true);
2010-11-15 20:35:36 +00:00
}
public static OptionFlags getInstance() {
return singleton;
}
public final boolean isVerbose() {
return verbose;
}
public final void setVerbose(boolean verbose) {
this.verbose = verbose;
}
public final boolean isMetadata() {
return metadata;
}
public final void setMetadata(boolean metadata) {
this.metadata = metadata;
}
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;
}
2011-02-14 11:56:34 +00:00
public final boolean isCheckDotError() {
return checkDotError;
}
public final void setCheckDotError(boolean checkDotError) {
this.checkDotError = checkDotError;
}
2011-08-08 17:48:29 +00:00
private final AtomicBoolean logDataInitized = new AtomicBoolean(false);
2013-12-10 19:36:50 +00:00
public void logData(File file, Diagram system) {
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) {
setLogData(new File(s));
}
logDataInitized.set(true);
}
if (logData == null) {
return;
}
2013-12-10 19:36:50 +00:00
// final PSystemError systemError = (PSystemError) system;
2011-08-08 17:48:29 +00:00
PrintStream ps = null;
try {
ps = new PrintStream(new FileOutputStream(logData, true));
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);
e.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
}
}
}
public final void setLogData(File logData) {
this.logData = logData;
logData.delete();
PrintStream ps = null;
try {
ps = new PrintStream(new FileOutputStream(logData));
ps.println();
} catch (FileNotFoundException e) {
Log.error("Cannot open " + logData);
e.printStackTrace();
} finally {
if (ps != null) {
ps.close();
}
}
}
public final boolean isPrintFonts() {
return printFonts;
}
public final void setPrintFonts(boolean printFonts) {
this.printFonts = printFonts;
}
public final boolean isUseSuggestEngine() {
return useSuggestEngine;
}
public final void setUseSuggestEngine(boolean useSuggestEngine) {
this.useSuggestEngine = useSuggestEngine;
}
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) {
return "on".equalsIgnoreCase(value) || "true".equalsIgnoreCase(value) || "on".equalsIgnoreCase(value);
}
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;
}
2010-11-15 20:35:36 +00:00
}