1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-09 19:52:25 +00:00
plantuml/src/net/sourceforge/plantuml/baraye/Plasma.java
2022-11-16 00:15:21 +01:00

164 lines
4.2 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2023, 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.baraye;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class Plasma {
private String separator;
private final Quark root;
private final Map<List<String>, Quark> quarks = new LinkedHashMap<>();
public Plasma(String separator) {
final List<String> empty = Collections.emptyList();
this.root = ensurePresent(empty);
this.separator = separator;
}
public Quark root() {
return root;
}
public final String getSeparator() {
return separator;
}
public final void setSeparator(String separator) {
if (separator == null)
separator = "\u0000";
this.separator = separator;
}
public Quark parse(Quark root, String full) {
final List<String> result = root.getSignature();
while (true) {
int idx = full.indexOf(separator);
if (idx == -1) {
result.add(full);
return ensurePresent(result);
}
if (idx > 0) {
result.add(full.substring(0, idx));
ensurePresent(new ArrayList<>(result));
}
full = full.substring(idx + separator.length());
}
}
Quark ensurePresent(List<String> result) {
Quark quark = quarks.get(result);
if (quark == null) {
if (result.size() == 0)
quark = new Quark(this, null, result);
else {
final Quark parent = ensurePresent(result.subList(0, result.size() - 1));
quark = new Quark(this, parent, result);
}
System.err.println("PUTTING " + quark);
quarks.put(result, quark);
}
return quark;
}
public Collection<Quark> quarks() {
return Collections.unmodifiableCollection(new ArrayList<>(quarks.values()));
}
// public boolean exists(String name) {
// for (Quark quark : quarks.values())
// if (quark.getName().equals(name))
// return true;
// return false;
// }
public Quark getIfExistsFromName(String name) {
for (Quark quark : quarks.values())
if (quark.getName().equals(name))
return quark;
return null;
}
public Quark getIfExistsFromFullPath(String full) {
for (Quark quark : quarks.values())
if (quark.toString(separator).equals(full))
return quark;
return null;
}
public Quark getIfExists(List<String> signature) {
return quarks.get(signature);
}
public int countChildren(Quark parent) {
int count = 0;
for (Quark quark : new ArrayList<>(quarks.values()))
if (quark.getParent() == parent)
count++;
return count;
}
public List<Quark> getChildren(Quark parent) {
final List<Quark> result = new ArrayList<>();
for (Quark quark : new ArrayList<>(quarks.values()))
if (quark.getParent() == parent)
result.add(quark);
return Collections.unmodifiableList(result);
}
public void moveAllTo(Quark src, Quark dest) {
for (Quark quark : new ArrayList<>(quarks.values())) {
if (quark == dest)
continue;
if (src.containsLarge(quark)) {
quarks.remove(quark.getSignature());
quark.internalMove(src, dest);
quarks.put(quark.getSignature(), quark);
}
}
}
}