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

373 lines
14 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2013-12-10 19:36:50 +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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 8475 $
*
*/
package net.sourceforge.plantuml.activitydiagram3.ftile;
import java.awt.geom.Dimension2D;
import java.util.ArrayList;
import java.util.List;
2016-01-09 12:15:40 +00:00
import net.sourceforge.plantuml.ColorParam;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.FontParam;
import net.sourceforge.plantuml.ISkinParam;
2016-01-09 12:15:40 +00:00
import net.sourceforge.plantuml.LineParam;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.OptionFlags;
2016-01-09 12:15:40 +00:00
import net.sourceforge.plantuml.Pragma;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.Instruction;
import net.sourceforge.plantuml.activitydiagram3.InstructionList;
import net.sourceforge.plantuml.activitydiagram3.LinkRendering;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorAddNote;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorAddUrl;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorAssembly;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorCreateFork;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorCreateGroup;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorCreateSplit;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorIf;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorRepeat;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileFactoryDelegatorWhile;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.UGraphicInterceptorOneSwimlane;
import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.VCompactFactory;
import net.sourceforge.plantuml.cucadiagram.Display;
2015-06-07 10:23:10 +00:00
import net.sourceforge.plantuml.graphic.AbstractTextBlock;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.HtmlColor;
import net.sourceforge.plantuml.graphic.HtmlColorUtils;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.TextBlockUtils;
import net.sourceforge.plantuml.graphic.UGraphicDelegator;
2015-09-28 20:42:17 +00:00
import net.sourceforge.plantuml.graphic.color.ColorType;
2016-01-09 12:15:40 +00:00
import net.sourceforge.plantuml.skin.rose.Rose;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.UGraphicForSnake;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.ugraphic.CompressionTransform;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.LimitFinder;
import net.sourceforge.plantuml.ugraphic.MinMax;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.ugraphic.SlotFinderX;
import net.sourceforge.plantuml.ugraphic.SlotSet;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UChange;
import net.sourceforge.plantuml.ugraphic.UChangeBackColor;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.ULine;
import net.sourceforge.plantuml.ugraphic.URectangle;
import net.sourceforge.plantuml.ugraphic.UShape;
import net.sourceforge.plantuml.ugraphic.UStroke;
import net.sourceforge.plantuml.ugraphic.UTranslate;
2015-06-07 10:23:10 +00:00
public class Swimlanes extends AbstractTextBlock implements TextBlock {
2013-12-10 19:36:50 +00:00
private final ISkinParam skinParam;;
2016-01-09 12:15:40 +00:00
private final Pragma pragma;
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
private final List<Swimlane> swimlanes = new ArrayList<Swimlane>();
2013-12-10 19:36:50 +00:00
private Swimlane currentSwimlane = null;
private final Instruction root = new InstructionList();
private Instruction currentInstruction = root;
2016-05-11 21:31:47 +00:00
private LinkRendering nextLinkRenderer = LinkRendering.none();
2013-12-10 19:36:50 +00:00
2016-01-09 12:15:40 +00:00
public Swimlanes(ISkinParam skinParam, Pragma pragma) {
2013-12-10 19:36:50 +00:00
this.skinParam = skinParam;
2016-01-09 12:15:40 +00:00
this.pragma = pragma;
2015-05-31 18:56:03 +00:00
}
private FontConfiguration getFontConfiguration() {
2016-01-09 12:15:40 +00:00
return new FontConfiguration(skinParam, FontParam.SWIMLANE_TITLE, null);
2013-12-10 19:36:50 +00:00
}
private FtileFactory getFtileFactory() {
FtileFactory factory = new VCompactFactory(skinParam, TextBlockUtils.getDummyStringBounder());
2015-04-07 18:18:37 +00:00
factory = new FtileFactoryDelegatorAddUrl(factory, skinParam);
2013-12-10 19:36:50 +00:00
factory = new FtileFactoryDelegatorAssembly(factory, skinParam);
2016-01-09 12:15:40 +00:00
factory = new FtileFactoryDelegatorIf(factory, skinParam, pragma);
2013-12-10 19:36:50 +00:00
factory = new FtileFactoryDelegatorWhile(factory, skinParam);
factory = new FtileFactoryDelegatorRepeat(factory, skinParam);
factory = new FtileFactoryDelegatorCreateFork(factory, skinParam);
factory = new FtileFactoryDelegatorCreateSplit(factory, skinParam);
factory = new FtileFactoryDelegatorAddNote(factory, skinParam);
factory = new FtileFactoryDelegatorCreateGroup(factory, skinParam);
return factory;
}
public void swimlane(String name, HtmlColor color, Display label) {
currentSwimlane = getOrCreate(name);
if (color != null) {
2015-09-28 20:42:17 +00:00
currentSwimlane.setSpecificColorTOBEREMOVED(ColorType.BACK, color);
2013-12-10 19:36:50 +00:00
}
2015-07-11 09:32:49 +00:00
if (Display.isNull(label) == false) {
2013-12-10 19:36:50 +00:00
currentSwimlane.setDisplay(label);
}
}
private Swimlane getOrCreate(String name) {
2015-04-07 18:18:37 +00:00
for (Swimlane s : swimlanes) {
2013-12-10 19:36:50 +00:00
if (s.getName().equals(name)) {
return s;
}
}
final Swimlane result = new Swimlane(name);
2015-04-07 18:18:37 +00:00
swimlanes.add(result);
2013-12-10 19:36:50 +00:00
return result;
}
class Cross extends UGraphicDelegator {
private Cross(UGraphic ug) {
super(ug);
}
@Override
public void draw(UShape shape) {
if (shape instanceof Ftile) {
final Ftile tile = (Ftile) shape;
2015-04-07 18:18:37 +00:00
tile.drawU(this);
2013-12-10 19:36:50 +00:00
} else if (shape instanceof Connection) {
final Connection connection = (Connection) shape;
final Ftile tile1 = connection.getFtile1();
final Ftile tile2 = connection.getFtile2();
if (tile1 == null || tile2 == null) {
return;
}
2015-04-07 18:18:37 +00:00
if (tile1.getSwimlaneOut() != tile2.getSwimlaneIn()) {
2013-12-10 19:36:50 +00:00
final ConnectionCross connectionCross = new ConnectionCross(connection);
connectionCross.drawU(getUg());
}
}
}
public UGraphic apply(UChange change) {
return new Cross(getUg().apply(change));
}
}
2016-05-11 21:31:47 +00:00
static private final double separationMargin = 10;
2013-12-10 19:36:50 +00:00
public void drawU(UGraphic ug) {
final FtileFactory factory = getFtileFactory();
2015-04-07 18:18:37 +00:00
TextBlock full = root.createFtile(factory);
2013-12-10 19:36:50 +00:00
ug = new UGraphicForSnake(ug);
2015-04-07 18:18:37 +00:00
if (swimlanes.size() <= 1) {
full = new TextBlockInterceptorUDrawable(full);
2013-12-10 19:36:50 +00:00
// BUG42
// full.drawU(ug);
full.drawU(ug);
ug.flushUg();
return;
}
2015-04-07 18:18:37 +00:00
if (OptionFlags.SWI2) {
final SlotFinderX slotFinder = new SlotFinderX(ug.getStringBounder());
drawWhenSwimlanes(slotFinder, full);
final SlotSet slotX = slotFinder.getXSlotSet().reverse();
//
// // final SlotSet ysSlotSet = slotFinder.getYSlotSet().reverse().smaller(5.0);
//
System.err.println("slotX=" + slotX);
printDebug(ug, slotX, HtmlColorUtils.GRAY, full);
double x2 = 0;
double y2 = 0;
final double stepy = 40;
int i = 0;
final SlotSet deconnectedSwimlanes = new SlotSet();
for (Swimlane swimlane : swimlanes) {
final UGraphic ug2 = ug.apply(new UChangeColor(HtmlColorUtils.GREEN)).apply(
new UChangeBackColor(HtmlColorUtils.GREEN));
final double totalWidth = swimlane.getTotalWidth();
final SlotSet slot2 = slotX.filter(x2 + separationMargin, x2 + totalWidth - separationMargin);
deconnectedSwimlanes.addAll(slot2);
// ug2.apply(new UTranslate(x2, y2)).draw(new URectangle(totalWidth, stepy));
x2 += totalWidth;
y2 += stepy;
i++;
}
// printDebug(ug, deconnectedSwimlanes, HtmlColorUtils.GRAY, full);
//
final CompressionTransform compressionTransform = new CompressionTransform(deconnectedSwimlanes);
// ug = new UGraphicCompress2(ug, compressionTransform);
drawWhenSwimlanes(ug, full);
} else {
drawWhenSwimlanes(ug, full);
}
// getCollisionDetector(ug, titleHeightTranslate).drawDebug(ug);
}
static private void printDebug(UGraphic ug, SlotSet slot, HtmlColor col, TextBlock full) {
slot.drawDebugX(ug.apply(new UChangeColor(col)).apply(new UChangeBackColor(col)),
full.calculateDimension(ug.getStringBounder()).getHeight());
}
private void drawWhenSwimlanes(UGraphic ug, TextBlock full) {
2013-12-10 19:36:50 +00:00
final StringBounder stringBounder = ug.getStringBounder();
final Dimension2D dimensionFull = full.calculateDimension(stringBounder);
final UTranslate titleHeightTranslate = getTitleHeightTranslate(stringBounder);
computeSize(ug, full);
double x2 = 0;
2015-04-07 18:18:37 +00:00
for (Swimlane swimlane : swimlanes) {
2015-09-28 20:42:17 +00:00
final HtmlColor back = swimlane.getColors(skinParam).getColor(ColorType.BACK);
if (back != null) {
final UGraphic background = ug.apply(new UChangeBackColor(back)).apply(new UChangeColor(back))
.apply(new UTranslate(x2, 0));
2013-12-10 19:36:50 +00:00
background.draw(new URectangle(swimlane.getTotalWidth(), dimensionFull.getHeight()
+ titleHeightTranslate.getDy()));
}
2015-04-07 18:18:37 +00:00
if (OptionFlags.SWI2 == false) {
2015-09-28 20:42:17 +00:00
final TextBlock swTitle = swimlane.getDisplay().create(getFontConfiguration(),
HorizontalAlignment.LEFT, skinParam);
2015-04-07 18:18:37 +00:00
final double titleWidth = swTitle.calculateDimension(stringBounder).getWidth();
final double posTitle = x2 + (swimlane.getTotalWidth() - titleWidth) / 2;
swTitle.drawU(ug.apply(new UTranslate(posTitle, 0)));
}
2013-12-10 19:36:50 +00:00
drawSeparation(ug.apply(new UTranslate(x2, 0)), dimensionFull.getHeight() + titleHeightTranslate.getDy());
full.drawU(new UGraphicInterceptorOneSwimlane(ug, swimlane).apply(swimlane.getTranslate()).apply(
titleHeightTranslate));
x2 += swimlane.getTotalWidth();
}
drawSeparation(ug.apply(new UTranslate(x2, 0)), dimensionFull.getHeight() + titleHeightTranslate.getDy());
final Cross cross = new Cross(ug.apply(titleHeightTranslate));
full.drawU(cross);
cross.flushUg();
}
private void computeSize(UGraphic ug, TextBlock full) {
double x1 = 0;
final StringBounder stringBounder = ug.getStringBounder();
2015-04-07 18:18:37 +00:00
for (Swimlane swimlane : swimlanes) {
2013-12-10 19:36:50 +00:00
final LimitFinder limitFinder = new LimitFinder(stringBounder, false);
final UGraphicInterceptorOneSwimlane interceptor = new UGraphicInterceptorOneSwimlane(new UGraphicForSnake(
limitFinder), swimlane);
full.drawU(interceptor);
interceptor.flushUg();
final MinMax minMax = limitFinder.getMinMax();
final double drawingWidth = minMax.getWidth() + 2 * separationMargin;
2015-09-28 20:42:17 +00:00
final TextBlock swTitle = swimlane.getDisplay().create(getFontConfiguration(), HorizontalAlignment.LEFT,
skinParam);
2013-12-10 19:36:50 +00:00
final double titleWidth = swTitle.calculateDimension(stringBounder).getWidth();
final double totalWidth = Math.max(drawingWidth, titleWidth + 2 * separationMargin);
final UTranslate translate = new UTranslate(x1 - minMax.getMinX() + separationMargin
+ (totalWidth - drawingWidth) / 2.0, 0);
swimlane.setTranslateAndWidth(translate, totalWidth);
x1 += totalWidth;
}
}
private UTranslate getTitleHeightTranslate(final StringBounder stringBounder) {
double titlesHeight = 0;
2015-04-07 18:18:37 +00:00
for (Swimlane swimlane : swimlanes) {
2015-09-28 20:42:17 +00:00
final TextBlock swTitle = swimlane.getDisplay().create(getFontConfiguration(), HorizontalAlignment.LEFT,
skinParam);
2013-12-10 19:36:50 +00:00
titlesHeight = Math.max(titlesHeight, swTitle.calculateDimension(stringBounder).getHeight());
}
final UTranslate titleHeightTranslate = new UTranslate(0, titlesHeight);
return titleHeightTranslate;
}
private CollisionDetector getCollisionDetector(UGraphic ug, final UTranslate titleHeightTranslate) {
final FtileFactory factory = getFtileFactory();
2015-04-07 18:18:37 +00:00
final TextBlock full = root.createFtile(factory);
2013-12-10 19:36:50 +00:00
ug = new UGraphicForSnake(ug);
final CollisionDetector collisionDetector = new CollisionDetector(ug.getStringBounder());
2015-04-07 18:18:37 +00:00
for (Swimlane swimlane : swimlanes) {
2013-12-10 19:36:50 +00:00
full.drawU(new UGraphicInterceptorOneSwimlane(collisionDetector, swimlane).apply(swimlane.getTranslate())
.apply(titleHeightTranslate));
}
collisionDetector.setManageSnakes(true);
final Cross cross = new Cross(collisionDetector.apply(titleHeightTranslate));
full.drawU(cross);
cross.flushUg();
return collisionDetector;
}
private void drawSeparation(UGraphic ug, double height) {
2016-03-06 16:47:34 +00:00
HtmlColor color = skinParam.getHtmlColor(ColorParam.swimlaneBorder, null, false);
if (color == null) {
color = ColorParam.swimlaneBorder.getDefaultValue();
}
2016-01-09 12:15:40 +00:00
final UStroke thickness = Rose.getStroke(skinParam, LineParam.swimlaneBorder, 2);
ug.apply(thickness).apply(new UChangeColor(color)).draw(new ULine(0, height));
2013-12-10 19:36:50 +00:00
}
public Dimension2D calculateDimension(StringBounder stringBounder) {
return TextBlockUtils.getMinMax(this, stringBounder).getDimension();
}
public Instruction getCurrent() {
return currentInstruction;
}
public void setCurrent(Instruction current) {
this.currentInstruction = current;
}
public LinkRendering nextLinkRenderer() {
return nextLinkRenderer;
}
public void setNextLinkRenderer(LinkRendering link) {
2016-05-11 21:31:47 +00:00
if (link == null) {
throw new IllegalArgumentException();
}
2013-12-10 19:36:50 +00:00
this.nextLinkRenderer = link;
}
public Swimlane getCurrentSwimlane() {
return currentSwimlane;
}
}