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

288 lines
6.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
*
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
2016-05-11 21:31:47 +00:00
* Revision $Revision: 19636 $
2010-11-15 20:35:36 +00:00
*
*/
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;
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;
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;
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-05-11 21:31:47 +00:00
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);
}
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;
2015-04-07 18:18:37 +00:00
// private boolean failOnError;
2013-12-10 19:36:50 +00:00
private boolean encodesprite;
private boolean overwrite;
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;
}
2016-05-11 21:31:47 +00:00
// public synchronized final boolean isKeepTmpFiles() {
// return keepTmpFiles;
// }
//
// public synchronized final void setKeepTmpFiles(boolean keepTmpFiles) {
// this.keepTmpFiles = keepTmpFiles;
// }
2010-11-15 20:35:36 +00:00
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();
}
}
}
}
2013-12-10 19:36:50 +00:00
// public static void logErrorFile(final PSystemError systemError, PrintStream ps) {
// ps.println(systemError.getDescription());
// for (CharSequence t : systemError.getTitle()) {
// ps.println(t);
// }
// systemError.print(ps);
// for (String s : systemError.getSuggest()) {
// ps.println(s);
// }
// }
2011-08-08 17:48:29 +00:00
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;
}
2015-04-07 18:18:37 +00:00
// public final boolean isFailOnError() {
// return failOnError;
// }
//
// public final void setFailOnError(boolean failOnError) {
// this.failOnError = failOnError;
// }
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
2010-11-15 20:35:36 +00:00
}