1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-29 22:50:48 +00:00
plantuml/src/net/sourceforge/plantuml/ditaa/PSystemDitaaFactory.java
2022-02-10 19:16:18 +01:00

111 lines
3.5 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* 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
*
* 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.ditaa;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.sourceforge.plantuml.api.ThemeStyle;
import net.sourceforge.plantuml.command.PSystemBasicFactory;
import net.sourceforge.plantuml.core.DiagramType;
import net.sourceforge.plantuml.core.UmlSource;
public class PSystemDitaaFactory extends PSystemBasicFactory<PSystemDitaa> {
// private StringBuilder data;
// // -E,--no-separation
// private boolean performSeparationOfCommonEdges;
//
// // -S,--no-shadows
// private boolean dropShadows;
public PSystemDitaaFactory(DiagramType diagramType) {
super(diagramType);
}
@Override
public PSystemDitaa initDiagram(ThemeStyle style, UmlSource source, String startLine) {
boolean performSeparationOfCommonEdges = true;
if (startLine != null && (startLine.contains("-E") || startLine.contains("--no-separation")))
performSeparationOfCommonEdges = false;
boolean dropShadows = true;
if (startLine != null && (startLine.contains("-S") || startLine.contains("--no-shadows")))
dropShadows = false;
final float scale = extractScale(startLine);
if (getDiagramType() == DiagramType.UML) {
return null;
} else if (getDiagramType() == DiagramType.DITAA) {
return new PSystemDitaa(source, "", performSeparationOfCommonEdges, dropShadows, scale);
} else {
throw new IllegalStateException(getDiagramType().name());
}
}
@Override
public PSystemDitaa executeLine(ThemeStyle style, UmlSource source, PSystemDitaa system, String line) {
if (system == null && (line.equals("ditaa") || line.startsWith("ditaa("))) {
boolean performSeparationOfCommonEdges = true;
if (line.contains("-E") || line.contains("--no-separation"))
performSeparationOfCommonEdges = false;
boolean dropShadows = true;
if (line.contains("-S") || line.contains("--no-shadows"))
dropShadows = false;
final float scale = extractScale(line);
return new PSystemDitaa(source, "", performSeparationOfCommonEdges, dropShadows, scale);
}
if (system == null)
return null;
return system.add(line);
}
private float extractScale(String line) {
if (line == null)
return 1;
final Pattern p = Pattern.compile("scale=([\\d.]+)");
final Matcher m = p.matcher(line);
if (m.find()) {
final String number = m.group(1);
return Float.parseFloat(number);
}
return 1;
}
}