summaryrefslogtreecommitdiff
path: root/src/net/sourceforge/plantuml/hector/GrowingTree.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/sourceforge/plantuml/hector/GrowingTree.java')
-rw-r--r--src/net/sourceforge/plantuml/hector/GrowingTree.java175
1 files changed, 0 insertions, 175 deletions
diff --git a/src/net/sourceforge/plantuml/hector/GrowingTree.java b/src/net/sourceforge/plantuml/hector/GrowingTree.java
deleted file mode 100644
index 9b5bdf3..0000000
--- a/src/net/sourceforge/plantuml/hector/GrowingTree.java
+++ /dev/null
@@ -1,175 +0,0 @@
-/* ========================================================================
- * PlantUML : a free UML diagram generator
- * ========================================================================
- *
- * (C) Copyright 2009-2017, 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.hector;
-
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.LinkedHashSet;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-public class GrowingTree {
-
- private final List<PinLink> all = new ArrayList<PinLink>();
- private final Map<Pin, ArrayList<Pin>> directlyAfter = new HashMap<Pin, ArrayList<Pin>>();
-
- public Skeleton createSkeleton() {
- final Set<Pin> pins = new LinkedHashSet<Pin>();
- for (PinLink link : all) {
- pins.add(link.getPin1());
- pins.add(link.getPin2());
- }
- normalizeRowToZero(pins);
- return new Skeleton(new ArrayList<Pin>(pins), new ArrayList<PinLink>(all));
- }
-
- private void normalizeRowToZero(Collection<Pin> pins) {
- int minRow = Integer.MAX_VALUE;
- for (Pin p : pins) {
- final int r = p.getRow();
- if (r == Integer.MAX_VALUE) {
- throw new IllegalStateException();
- }
- if (r < minRow) {
- minRow = r;
- }
- }
- for (Pin p : pins) {
- p.push(-minRow);
- }
- }
-
- public boolean canBeAdded(PinLink candidat) {
- if (all.size() == 0) {
- return true;
- }
- final Pin p1 = candidat.getPin1();
- final Pin p2 = candidat.getPin2();
- if (p1.getRow() == Integer.MAX_VALUE && p2.getRow() == Integer.MAX_VALUE) {
- return false;
- }
- return true;
- }
-
- public void add(PinLink newPinLink) {
- final Pin p1 = newPinLink.getPin1();
- final Pin p2 = newPinLink.getPin2();
- if (all.size() == 0) {
- newPinLink.getPin1().setRow(0);
- simpleRowComputation(newPinLink);
- } else if (isPartiallyNew(newPinLink)) {
- simpleRowComputation(newPinLink);
- } else if (p1.getRow() != Integer.MAX_VALUE && p2.getRow() != Integer.MAX_VALUE) {
- final int actualRowDiff = p2.getRow() - p1.getRow();
- final int neededPushForP2 = newPinLink.getLengthStandard() - actualRowDiff;
- push(p2, neededPushForP2);
- } else {
- throw new IllegalArgumentException();
- }
- all.add(newPinLink);
- getDirectlyAfter(p1).add(p2);
- }
-
- private List<Pin> getDirectlyAfter(Pin p) {
- ArrayList<Pin> result = directlyAfter.get(p);
- if (result == null) {
- result = new ArrayList<Pin>();
- directlyAfter.put(p, result);
- }
- return result;
- }
-
- private Collection<Pin> getIndirectlyAfter(Pin pin) {
- final Set<Pin> result = new HashSet<Pin>(getDirectlyAfter(pin));
- int lastSize = result.size();
- while (true) {
- for (Pin p : new ArrayList<Pin>(result)) {
- result.addAll(getDirectlyAfter(p));
- }
- if (result.size() == lastSize) {
- return result;
- }
- lastSize = result.size();
- }
- }
-
- private void push(Pin p, int push) {
- if (push <= 0) {
- return;
- }
- final Collection<Pin> after = getIndirectlyAfter(p);
- if (after.contains(p)) {
- throw new IllegalStateException();
- }
- p.push(push);
- for (Pin pp : after) {
- pp.push(push);
- }
- }
-
- private void simpleRowComputation(PinLink link) {
- final Pin p1 = link.getPin1();
- final Pin p2 = link.getPin2();
- if (p1.getRow() == Integer.MAX_VALUE && p2.getRow() != Integer.MAX_VALUE) {
- p1.setRow(p2.getRow() - link.getLengthStandard());
- } else if (p1.getRow() != Integer.MAX_VALUE && p2.getRow() == Integer.MAX_VALUE) {
- p2.setRow(p1.getRow() + link.getLengthStandard());
- } else {
- throw new IllegalArgumentException();
- }
- }
-
- private boolean isPartiallyNew(PinLink link) {
- final Pin p1 = link.getPin1();
- final Pin p2 = link.getPin2();
- if (p1.getRow() == Integer.MAX_VALUE && p2.getRow() != Integer.MAX_VALUE) {
- return true;
- } else if (p1.getRow() != Integer.MAX_VALUE && p2.getRow() == Integer.MAX_VALUE) {
- return true;
- } else {
- return false;
- }
- }
-
- public void normalizeRowToZero() {
- // TODO Auto-generated method stub
-
- }
-
-}