plantuml/src/net/sourceforge/plantuml/wbs/WBSDiagram.java

249 lines
8.1 KiB
Java
Raw Normal View History

2019-03-29 22:14:07 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
2019-03-29 22:14:07 +00:00
*
2023-02-22 18:43:48 +00:00
* Project Info: https://plantuml.com
2022-08-17 17:34:24 +00:00
*
2019-03-29 22:14:07 +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
*
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.io.IOException;
import java.io.OutputStream;
2022-12-04 18:59:49 +00:00
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.FileFormatOption;
import net.sourceforge.plantuml.UmlDiagram;
import net.sourceforge.plantuml.command.CommandExecutionResult;
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;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.UTranslate;
import net.sourceforge.plantuml.klimt.color.ColorType;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.color.Colors;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.color.HColor;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.creole.Display;
import net.sourceforge.plantuml.klimt.drawing.AbstractCommonUGraphic;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.font.StringBounder;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.geom.XDimension2D;
2023-02-26 18:51:17 +00:00
import net.sourceforge.plantuml.klimt.shape.AbstractTextBlock;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.mindmap.IdeaShape;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.regex.Matcher2;
import net.sourceforge.plantuml.regex.MyPattern;
import net.sourceforge.plantuml.regex.Pattern2;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.skin.UmlDiagramType;
import net.sourceforge.plantuml.stereo.Stereotype;
2020-12-01 21:39:27 +00:00
import net.sourceforge.plantuml.style.NoStyleAvailableException;
2022-12-13 17:30:41 +00:00
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleSignatureBasic;
2022-12-17 11:01:10 +00:00
import net.sourceforge.plantuml.utils.Direction;
2019-03-29 22:14:07 +00:00
public class WBSDiagram extends UmlDiagram {
2022-12-04 18:59:49 +00:00
private WElement root;
private WElement last;
private String first;
private final Map<String, WElement> codes = new LinkedHashMap<>();
private final List<WBSLink> links = new ArrayList<>();
2019-03-29 22:14:07 +00:00
public DiagramDescription getDescription() {
return new DiagramDescription("Work Breakdown Structure");
}
2022-09-18 17:08:06 +00:00
public WBSDiagram(UmlSource source) {
super(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
}
2023-02-22 18:43:48 +00:00
@Override
2023-02-26 18:51:17 +00:00
protected TextBlock getTextBlock() {
return new AbstractTextBlock() {
2019-03-29 22:14:07 +00:00
public void drawU(UGraphic ug) {
drawMe(ug);
}
2022-09-12 20:08:34 +00:00
public XDimension2D calculateDimension(StringBounder stringBounder) {
2019-03-29 22:14:07 +00:00
return getDrawingElement().calculateDimension(stringBounder);
}
};
}
private void drawMe(UGraphic ug) {
2022-12-04 18:59:49 +00:00
UTranslate translate = null;
if (ug instanceof AbstractCommonUGraphic)
translate = ((AbstractCommonUGraphic) ug).getTranslate();
final Fork fork = getDrawingElement();
fork.drawU(ug);
if (translate == null)
return;
ug = ug.apply(translate.reverse());
for (WBSLink link : links)
link.drawU(ug);
2019-03-29 22:14:07 +00:00
}
2022-12-04 18:59:49 +00:00
private Fork 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
2022-12-04 18:59:49 +00:00
public CommandExecutionResult addIdea(String code, HColor backColor, int level, String label, Direction direction,
2020-11-21 17:33:24 +00:00
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);
2022-12-04 18:59:49 +00:00
return addIdea(code, backColor, level, display, stereotype, direction, shape);
2021-06-27 16:50:40 +00:00
}
2022-12-04 18:59:49 +00:00
public CommandExecutionResult addIdea(String code, HColor backColor, int level, Display display, String stereotype,
2021-06-27 16:50:40 +00:00
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
}
2022-12-04 18:59:49 +00:00
return add(code, backColor, level, display, stereotype, direction, shape);
2020-12-01 21:39:27 +00:00
} catch (NoStyleAvailableException e) {
2022-08-17 17:34:24 +00:00
// Logme.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
}
}
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 + "]");
}
2022-12-04 18:59:49 +00:00
private CommandExecutionResult add(String code, 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;
2022-12-04 18:59:49 +00:00
if (code != null)
codes.put(code, newIdea);
2020-12-01 21:39:27 +00:00
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;
2022-12-04 18:59:49 +00:00
if (code != null)
codes.put(code, newIdea);
2020-12-01 21:39:27 +00:00
return CommandExecutionResult.ok();
}
return CommandExecutionResult.error("Bad tree structure");
2020-12-01 21:39:27 +00:00
} catch (NoStyleAvailableException e) {
2022-08-17 17:34:24 +00:00
// Logme.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
}
}
2022-12-13 17:30:41 +00:00
public CommandExecutionResult link(String code1, String code2, Colors colors, Stereotype stereotype) {
2022-12-04 18:59:49 +00:00
final WElement element1 = codes.get(code1);
if (element1 == null)
return CommandExecutionResult.error("No such node " + code1);
final WElement element2 = codes.get(code2);
if (element2 == null)
return CommandExecutionResult.error("No such node " + code2);
2022-12-13 17:30:41 +00:00
HColor color = colors.getColor(ColorType.LINE);
2022-12-04 18:59:49 +00:00
2022-12-13 17:30:41 +00:00
if (color == null) {
final Style style = StyleSignatureBasic.of(SName.root, SName.element, SName.wbsDiagram, SName.arrow)
.withTOBECHANGED(stereotype).getMergedStyle(getCurrentStyleBuilder());
color = style.value(PName.LineColor).asColor(getSkinParam().getIHtmlColorSet());
}
links.add(new WBSLink(element1, element2, color));
2022-12-04 18:59:49 +00:00
return CommandExecutionResult.ok();
}
2019-03-29 22:14:07 +00:00
}