net.sourceforge.plantuml.hector.GrowingTree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml Show documentation
Show all versions of plantuml Show documentation
PlantUML is a component that allows to quickly write :
* sequence diagram,
* use case diagram,
* class diagram,
* activity diagram,
* component diagram,
* state diagram
* object diagram
The newest version!
/* ========================================================================
* 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 all = new ArrayList();
private final Map> directlyAfter = new HashMap>();
public Skeleton createSkeleton() {
final Set pins = new LinkedHashSet();
for (PinLink link : all) {
pins.add(link.getPin1());
pins.add(link.getPin2());
}
normalizeRowToZero(pins);
return new Skeleton(new ArrayList(pins), new ArrayList(all));
}
private void normalizeRowToZero(Collection 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 getDirectlyAfter(Pin p) {
ArrayList result = directlyAfter.get(p);
if (result == null) {
result = new ArrayList();
directlyAfter.put(p, result);
}
return result;
}
private Collection getIndirectlyAfter(Pin pin) {
final Set result = new HashSet(getDirectlyAfter(pin));
int lastSize = result.size();
while (true) {
for (Pin p : new ArrayList(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 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
}
}