/* ======================================================================== * 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.activitydiagram3; import java.util.ArrayList; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; import net.sourceforge.plantuml.ISkinParam; import net.sourceforge.plantuml.Url; import net.sourceforge.plantuml.activitydiagram3.ftile.Ftile; import net.sourceforge.plantuml.activitydiagram3.ftile.FtileDecorateWelding; import net.sourceforge.plantuml.activitydiagram3.ftile.FtileFactory; import net.sourceforge.plantuml.activitydiagram3.ftile.Swimlane; import net.sourceforge.plantuml.activitydiagram3.ftile.WeldingPoint; import net.sourceforge.plantuml.activitydiagram3.ftile.vcompact.FtileWithNoteOpale; import net.sourceforge.plantuml.cucadiagram.Display; import net.sourceforge.plantuml.graphic.HtmlColor; import net.sourceforge.plantuml.graphic.color.Colors; import net.sourceforge.plantuml.sequencediagram.NotePosition; import net.sourceforge.plantuml.sequencediagram.NoteType; public class InstructionIf extends WithNote implements Instruction, InstructionCollection { private final List thens = new ArrayList(); private Branch elseBranch; private boolean endifCalled = false; private final ISkinParam skinParam; private final Url url; private final Instruction parent; private Branch current; private final LinkRendering topInlinkRendering; private LinkRendering afterEndwhile = LinkRendering.none(); private final Swimlane swimlane; public boolean containsBreak() { for (Branch branch : thens) { if (branch.containsBreak()) { return true; } } if (elseBranch != null) { return elseBranch.containsBreak(); } return false; } public InstructionIf(Swimlane swimlane, Instruction parent, Display labelTest, Display whenThen, LinkRendering inlinkRendering, HtmlColor color, ISkinParam skinParam, Url url) { this.url = url; this.parent = parent; this.skinParam = skinParam; this.topInlinkRendering = inlinkRendering; if (inlinkRendering == null) { throw new IllegalArgumentException(); } this.swimlane = swimlane; this.thens.add(new Branch(swimlane, whenThen, labelTest, color, Display.NULL)); this.current = this.thens.get(0); } public void add(Instruction ins) { current.add(ins); } public Ftile createFtile(FtileFactory factory) { for (Branch branch : thens) { branch.updateFtile(factory); } if (elseBranch == null) { this.elseBranch = new Branch(swimlane, Display.NULL, Display.NULL, null, Display.NULL); } elseBranch.updateFtile(factory); Ftile result = factory.createIf(swimlane, thens, elseBranch, afterEndwhile, topInlinkRendering, url); if (getPositionedNotes().size() > 0) { result = FtileWithNoteOpale.create(result, getPositionedNotes(), skinParam, false); } final List weldingPoints = new ArrayList(); for (Branch branch : thens) { weldingPoints.addAll(branch.getWeldingPoints()); } weldingPoints.addAll(elseBranch.getWeldingPoints()); if (weldingPoints.size() > 0) { result = new FtileDecorateWelding(result, weldingPoints); } return result; } public Instruction getParent() { return parent; } public boolean swithToElse2(Display whenElse, LinkRendering nextLinkRenderer) { if (elseBranch != null) { return false; } this.current.setInlinkRendering(nextLinkRenderer); this.elseBranch = new Branch(swimlane, whenElse, Display.NULL, null, Display.NULL); this.current = elseBranch; return true; } public boolean elseIf(Display inlabel, Display test, Display whenThen, LinkRendering nextLinkRenderer, HtmlColor color) { if (elseBranch != null) { return false; } // this.current.setInlinkRendering(nextLinkRenderer); this.current.setSpecial(nextLinkRenderer); this.current = new Branch(swimlane, whenThen, test, color, inlabel); this.thens.add(current); return true; } public void endif(LinkRendering nextLinkRenderer) { endifCalled = true; if (elseBranch == null) { this.elseBranch = new Branch(swimlane, Display.NULL, Display.NULL, null, Display.NULL); } this.elseBranch.setSpecial(nextLinkRenderer); this.current.setInlinkRendering(nextLinkRenderer); } final public boolean kill() { if (endifCalled) { for (Branch branch : thens) { if (branch.getLast() != null && branch.getLast().kill() == false) { return false; } if (elseBranch != null && elseBranch.getLast() != null && elseBranch.getLast().kill() == false) { return false; } return true; } } return current.kill(); } public LinkRendering getInLinkRendering() { return topInlinkRendering; } @Override public boolean addNote(Display note, NotePosition position, NoteType type, Colors colors, Swimlane swimlaneNote) { if (endifCalled || current.isEmpty()) { return super.addNote(note, position, type, colors, swimlaneNote); } else { return current.addNote(note, position, type, colors, swimlaneNote); } } public Set getSwimlanes() { final Set result = new HashSet(); if (swimlane != null) { result.add(swimlane); } for (Branch branch : thens) { result.addAll(branch.getSwimlanes()); } if (elseBranch != null) { result.addAll(elseBranch.getSwimlanes()); } return Collections.unmodifiableSet(result); } public Swimlane getSwimlaneIn() { return swimlane; } public Swimlane getSwimlaneOut() { return swimlane; } public Instruction getLast() { if (elseBranch == null) { return thens.get(thens.size() - 1).getLast(); } return elseBranch.getLast(); } public void afterEndwhile(LinkRendering linkRenderer) { this.afterEndwhile = linkRenderer; } }