1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-03 09:00:48 +00:00
plantuml/src/net/sourceforge/plantuml/wbs/WBSDiagram.java

213 lines
6.7 KiB
Java
Raw Normal View History

2019-03-29 22:14:07 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2019-03-29 22:14:07 +00:00
*
* Project Info: http://plantuml.com
*
2019-03-29 22:14:07 +00:00
* If you like this project or if you find it useful, you can support us at:
*
2019-03-29 22:14:07 +00:00
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2019-03-29 22:14:07 +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.wbs;
import java.awt.geom.Rectangle2D;
import java.io.IOException;
import java.io.OutputStream;
import net.sourceforge.plantuml.Direction;
import net.sourceforge.plantuml.FileFormatOption;
import net.sourceforge.plantuml.UmlDiagram;
import net.sourceforge.plantuml.UmlDiagramType;
2022-02-10 18:16:18 +00:00
import net.sourceforge.plantuml.api.ThemeStyle;
import net.sourceforge.plantuml.awt.geom.Dimension2D;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.command.CommandExecutionResult;
2019-08-26 17:07:21 +00:00
import net.sourceforge.plantuml.command.regex.Matcher2;
import net.sourceforge.plantuml.command.regex.MyPattern;
import net.sourceforge.plantuml.command.regex.Pattern2;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.core.DiagramDescription;
import net.sourceforge.plantuml.core.ImageData;
2021-05-23 15:35:13 +00:00
import net.sourceforge.plantuml.core.UmlSource;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.InnerStrategy;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.mindmap.IdeaShape;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.style.NoStyleAvailableException;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.svek.TextBlockBackcolored;
import net.sourceforge.plantuml.ugraphic.MinMax;
import net.sourceforge.plantuml.ugraphic.UGraphic;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColor;
2019-03-29 22:14:07 +00:00
public class WBSDiagram extends UmlDiagram {
public DiagramDescription getDescription() {
return new DiagramDescription("Work Breakdown Structure");
}
2022-02-10 18:16:18 +00:00
public WBSDiagram(ThemeStyle style, UmlSource source) {
2022-03-19 12:48:23 +00:00
super(style, source, UmlDiagramType.WBS, null);
2019-03-29 22:14:07 +00:00
}
@Override
protected ImageData exportDiagramInternal(OutputStream os, int index, FileFormatOption fileFormatOption)
throws IOException {
return createImageBuilder(fileFormatOption).drawable(getTextBlock()).write(os);
2019-03-29 22:14:07 +00:00
}
private TextBlockBackcolored getTextBlock() {
return new TextBlockBackcolored() {
public void drawU(UGraphic ug) {
drawMe(ug);
}
public Rectangle2D getInnerPosition(String member, StringBounder stringBounder, InnerStrategy strategy) {
return null;
}
public Dimension2D calculateDimension(StringBounder stringBounder) {
return getDrawingElement().calculateDimension(stringBounder);
}
public MinMax getMinMax(StringBounder stringBounder) {
throw new UnsupportedOperationException();
}
2020-03-18 10:50:02 +00:00
public HColor getBackcolor() {
2019-03-29 22:14:07 +00:00
return null;
}
};
}
private void drawMe(UGraphic ug) {
getDrawingElement().drawU(ug);
}
private TextBlock getDrawingElement() {
2019-08-26 17:07:21 +00:00
return new Fork(getSkinParam(), root);
2019-03-29 22:14:07 +00:00
}
public final static Pattern2 patternStereotype = MyPattern
.cmpile("^\\s*(.*?)(?:\\s*\\<\\<\\s*(.*)\\s*\\>\\>)\\s*$");
2019-08-26 17:07:21 +00:00
2020-11-21 17:33:24 +00:00
public CommandExecutionResult addIdea(HColor backColor, int level, String label, Direction direction,
IdeaShape shape) {
2021-06-27 16:50:40 +00:00
final Matcher2 m = patternStereotype.matcher(label);
String stereotype = null;
if (m.matches()) {
label = m.group(1);
stereotype = m.group(2);
}
final Display display = Display.getWithNewlines(label);
return addIdea(backColor, level, display, stereotype, direction, shape);
}
public CommandExecutionResult addIdea(HColor backColor, int level, Display display, String stereotype,
Direction direction, IdeaShape shape) {
2020-12-01 21:39:27 +00:00
try {
if (level == 0) {
if (root != null)
2020-12-01 21:39:27 +00:00
return CommandExecutionResult.error("Error 44");
2021-06-27 16:50:40 +00:00
initRoot(backColor, display, stereotype, shape);
2020-12-01 21:39:27 +00:00
return CommandExecutionResult.ok();
2019-03-29 22:14:07 +00:00
}
2021-06-27 16:50:40 +00:00
return add(backColor, level, display, stereotype, direction, shape);
2020-12-01 21:39:27 +00:00
} catch (NoStyleAvailableException e) {
// Logger.error(e);
2020-12-01 21:39:27 +00:00
return CommandExecutionResult.error("General failure: no style available.");
2019-03-29 22:14:07 +00:00
}
}
private WElement root;
private WElement last;
private String first;
2019-03-29 22:14:07 +00:00
2021-06-27 16:50:40 +00:00
private void initRoot(HColor backColor, Display display, String stereotype, IdeaShape shape) {
root = new WElement(backColor, display, stereotype, getSkinParam().getCurrentStyleBuilder(), shape);
2019-03-29 22:14:07 +00:00
last = root;
}
private WElement getParentOfLast(int nb) {
WElement result = last;
for (int i = 0; i < nb; i++)
2019-03-29 22:14:07 +00:00
result = result.getParent();
2019-03-29 22:14:07 +00:00
return result;
}
public int getSmartLevel(String type) {
if (root == null) {
assert first == null;
first = type;
return 0;
}
type = type.replace('\t', ' ');
if (type.contains(" ") == false)
return type.length() - 1;
if (type.endsWith(first))
2021-05-06 21:23:05 +00:00
return type.length() - first.length();
if (type.trim().length() == 1)
return type.length() - 1;
if (type.startsWith(first))
return type.length() - first.length();
throw new UnsupportedOperationException("type=<" + type + ">[" + first + "]");
}
2021-06-27 16:50:40 +00:00
private CommandExecutionResult add(HColor backColor, int level, Display display, String stereotype,
2020-11-21 17:33:24 +00:00
Direction direction, IdeaShape shape) {
2020-12-01 21:39:27 +00:00
try {
if (level == last.getLevel() + 1) {
2021-06-27 16:50:40 +00:00
final WElement newIdea = last.createElement(backColor, level, display, stereotype, direction, shape,
getSkinParam().getCurrentStyleBuilder());
2020-12-01 21:39:27 +00:00
last = newIdea;
return CommandExecutionResult.ok();
}
if (level <= last.getLevel()) {
final int diff = last.getLevel() - level + 1;
2021-06-27 16:50:40 +00:00
final WElement newIdea = getParentOfLast(diff).createElement(backColor, level, display, stereotype,
direction, shape, getSkinParam().getCurrentStyleBuilder());
2020-12-01 21:39:27 +00:00
last = newIdea;
return CommandExecutionResult.ok();
}
return CommandExecutionResult.error("Bad tree structure");
2020-12-01 21:39:27 +00:00
} catch (NoStyleAvailableException e) {
// Logger.error(e);
2020-12-01 21:39:27 +00:00
return CommandExecutionResult.error("General failure: no style available.");
2019-03-29 22:14:07 +00:00
}
}
}