1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-11 04:32:26 +00:00
plantuml/src/net/sourceforge/plantuml/svek/GroupMakerState.java

199 lines
7.3 KiB
Java
Raw Normal View History

2011-08-08 17:48:29 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2011-08-08 17:48:29 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2011-08-08 17:48:29 +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
*
2011-08-08 17:48:29 +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
2011-08-08 17:48:29 +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.svek;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import net.sourceforge.plantuml.ISkinParam;
2023-02-06 21:04:53 +00:00
import net.sourceforge.plantuml.baraye.Entity;
2022-11-07 19:27:11 +00:00
import net.sourceforge.plantuml.baraye.EntityUtils;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.cucadiagram.GroupHierarchy;
import net.sourceforge.plantuml.cucadiagram.GroupType;
2022-11-04 17:36:03 +00:00
import net.sourceforge.plantuml.cucadiagram.ICucaDiagram;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.LeafType;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.cucadiagram.Link;
import net.sourceforge.plantuml.cucadiagram.dot.DotData;
import net.sourceforge.plantuml.graphic.TextBlock;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.UStroke;
import net.sourceforge.plantuml.klimt.color.ColorType;
import net.sourceforge.plantuml.klimt.color.HColor;
import net.sourceforge.plantuml.klimt.font.FontConfiguration;
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.geom.HorizontalAlignment;
2021-09-19 17:05:24 +00:00
import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName;
2021-09-19 17:05:24 +00:00
import net.sourceforge.plantuml.style.Style;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.image.EntityImageState;
2022-09-15 17:24:26 +00:00
import net.sourceforge.plantuml.svek.image.EntityImageStateCommon;
2011-08-08 17:48:29 +00:00
2023-02-08 18:38:46 +00:00
public final class GroupMakerState {
2011-08-08 17:48:29 +00:00
2022-11-04 17:36:03 +00:00
private final ICucaDiagram diagram;
2023-02-06 21:04:53 +00:00
private final Entity group;
2016-08-25 20:45:37 +00:00
private final StringBounder stringBounder;
2011-08-08 17:48:29 +00:00
class InnerGroupHierarchy implements GroupHierarchy {
2023-02-06 21:04:53 +00:00
public Entity getRootGroup() {
2020-02-18 21:24:31 +00:00
throw new UnsupportedOperationException();
}
2023-02-06 21:04:53 +00:00
public Collection<Entity> getChildrenGroups(Entity parent) {
if (parent.isRoot())
2023-02-08 18:38:46 +00:00
return filter(diagram.getChildrenGroups(group));
2022-02-12 17:27:51 +00:00
2023-02-08 18:38:46 +00:00
return filter(diagram.getChildrenGroups(parent));
}
private Collection<Entity> filter(Collection<Entity> groups) {
final List<Entity> result = new ArrayList<>();
for (Entity g : groups)
if (g.getGroupType() != GroupType.CONCURRENT_STATE)
result.add(g);
return result;
2011-08-08 17:48:29 +00:00
}
2023-02-06 21:04:53 +00:00
public boolean isEmpty(Entity g) {
2011-08-08 17:48:29 +00:00
return diagram.isEmpty(g);
}
}
2023-02-08 18:38:46 +00:00
public GroupMakerState(ICucaDiagram diagram, Entity group, StringBounder stringBounder) {
2011-08-08 17:48:29 +00:00
this.diagram = diagram;
2016-08-25 20:45:37 +00:00
this.stringBounder = stringBounder;
2011-08-08 17:48:29 +00:00
this.group = group;
2022-02-12 17:27:51 +00:00
if (group.isGroup() == false)
2013-12-10 19:36:50 +00:00
throw new IllegalArgumentException();
2022-02-12 17:27:51 +00:00
2011-08-08 17:48:29 +00:00
}
private List<Link> getPureInnerLinks() {
2021-05-14 08:42:57 +00:00
final List<Link> result = new ArrayList<>();
2022-02-12 17:27:51 +00:00
for (Link link : diagram.getLinks())
if (EntityUtils.isPureInnerLink12(group, link))
2011-08-08 17:48:29 +00:00
result.add(link);
2022-02-12 17:27:51 +00:00
2011-08-08 17:48:29 +00:00
return result;
}
2015-04-07 18:18:37 +00:00
public IEntityImage getImage() {
2013-12-10 19:36:50 +00:00
final Display display = group.getDisplay();
2015-04-07 18:18:37 +00:00
final ISkinParam skinParam = diagram.getSkinParam();
2021-09-19 17:05:24 +00:00
2022-09-15 17:24:26 +00:00
final Style style = EntityImageStateCommon.getStyleState(group, skinParam);
2023-02-08 18:38:46 +00:00
2022-09-15 17:24:26 +00:00
final Style styleTitle = EntityImageStateCommon.getStyleStateTitle(group, skinParam);
final Style styleBody = EntityImageStateCommon.getStyleStateBody(group, skinParam);
final double rounded = style.value(PName.RoundCorner).asDouble();
final double shadowing = style.value(PName.Shadowing).asDouble();
2022-09-18 17:08:06 +00:00
final FontConfiguration titleFontConfiguration = styleTitle.getFontConfiguration(skinParam.getIHtmlColorSet());
2022-09-15 17:24:26 +00:00
final TextBlock title = display.create(titleFontConfiguration, HorizontalAlignment.CENTER,
diagram.getSkinParam());
2011-08-08 17:48:29 +00:00
2023-02-06 21:04:53 +00:00
if (group.countChildren() == 0 && group.groups().size() == 0)
2013-12-10 19:36:50 +00:00
return new EntityImageState(group, diagram.getSkinParam());
2022-02-12 17:27:51 +00:00
if (group.getGroupType() == GroupType.CONCURRENT_STATE)
2023-02-08 18:38:46 +00:00
return createGeneralImageBuilder(group.leafs(), skinParam).buildImage(null, new String[0]);
2016-07-25 19:25:28 +00:00
2022-02-12 17:27:51 +00:00
if (group.getGroupType() != GroupType.STATE)
2016-07-25 19:25:28 +00:00
throw new UnsupportedOperationException(group.getGroupType().toString());
2021-11-15 18:27:27 +00:00
HColor borderColor = group.getColors().getColor(ColorType.LINE);
2022-02-12 17:27:51 +00:00
if (borderColor == null)
2022-09-18 17:08:06 +00:00
borderColor = style.value(PName.LineColor).asColor(skinParam.getIHtmlColorSet());
2022-02-12 17:27:51 +00:00
2022-05-04 17:52:00 +00:00
HColor backColor = group.getColors().getColor(ColorType.BACK);
if (backColor == null)
2022-09-18 17:08:06 +00:00
backColor = style.value(PName.BackGroundColor).asColor(skinParam.getIHtmlColorSet());
2021-09-19 17:05:24 +00:00
2022-02-12 17:27:51 +00:00
UStroke stroke = group.getColors().getSpecificLineStroke();
if (stroke == null)
2022-09-15 17:24:26 +00:00
stroke = style.getStroke();
2022-02-12 17:27:51 +00:00
2023-02-08 18:38:46 +00:00
final IEntityImage image;
if (containsSomeConcurrentStates()) {
final List<IEntityImage> inners = new ArrayList<>();
inners.add(createGeneralImageBuilder(filter(group.leafs()), skinParam).buildImage(null, new String[0]));
for (Entity inner : group.leafs())
if (inner.getLeafType() == LeafType.STATE_CONCURRENT)
inners.add(inner.getSvekImage());
image = new ConcurrentStates(inners, group.getConcurrentSeparator(), skinParam, group.getStereotype());
} else {
image = createGeneralImageBuilder(filter(group.leafs()), skinParam).buildImage(null, new String[0]);
}
2022-02-12 17:27:51 +00:00
2022-09-18 17:08:06 +00:00
final HColor bodyColor = styleBody.value(PName.BackGroundColor).asColor(skinParam.getIHtmlColorSet());
2023-02-08 18:38:46 +00:00
final boolean withSymbol = group.getStereotype() != null && group.getStereotype().isWithOOSymbol();
return new InnerStateAutonom(image, title, group.getStateHeader(skinParam), borderColor, backColor,
group.getUrl99(), withSymbol, stroke, rounded, shadowing, bodyColor);
2013-12-10 19:36:50 +00:00
2016-07-25 19:25:28 +00:00
}
2013-12-10 19:36:50 +00:00
2023-02-08 18:38:46 +00:00
protected GeneralImageBuilder createGeneralImageBuilder(Collection<Entity> leafs, ISkinParam skinParam) {
final DotData dotData = new DotData(group, getPureInnerLinks(), leafs, diagram.getUmlDiagramType(), skinParam,
new InnerGroupHierarchy(), diagram.getEntityFactory(), diagram.isHideEmptyDescriptionForState(),
DotMode.NORMAL, diagram.getNamespaceSeparator(), diagram.getPragma());
2011-08-08 17:48:29 +00:00
2023-02-08 18:38:46 +00:00
return new GeneralImageBuilder(dotData, diagram.getEntityFactory(), diagram.getSource(), diagram.getPragma(),
stringBounder, SName.stateDiagram);
2011-08-08 17:48:29 +00:00
}
2023-02-08 18:38:46 +00:00
private Collection<Entity> filter(Collection<Entity> leafs) {
final List<Entity> result = new ArrayList<>();
for (Entity leaf : leafs)
if (leaf.getLeafType() != LeafType.STATE_CONCURRENT)
result.add(leaf);
2022-02-12 17:27:51 +00:00
2023-02-08 18:38:46 +00:00
return result;
}
2022-02-12 17:27:51 +00:00
2023-02-08 18:38:46 +00:00
private boolean containsSomeConcurrentStates() {
for (Entity entity : group.leafs())
if (entity.getLeafType() == LeafType.STATE_CONCURRENT)
return true;
return false;
2015-04-07 18:18:37 +00:00
}
2011-08-08 17:48:29 +00:00
}