1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-01 16:10:48 +00:00
plantuml/src/net/sourceforge/plantuml/classdiagram/command/CommandLinkClass.java

561 lines
19 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
*
* Project Info: http://plantuml.sourceforge.net
*
* 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: 5436 $
*
*/
package net.sourceforge.plantuml.classdiagram.command;
import java.util.StringTokenizer;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.sourceforge.plantuml.Direction;
import net.sourceforge.plantuml.FontParam;
2015-05-31 18:56:03 +00:00
import net.sourceforge.plantuml.StringUtils;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.UmlDiagramType;
import net.sourceforge.plantuml.command.CommandExecutionResult;
import net.sourceforge.plantuml.command.SingleLineCommand2;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.command.regex.MyPattern;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.command.regex.RegexConcat;
import net.sourceforge.plantuml.command.regex.RegexLeaf;
import net.sourceforge.plantuml.command.regex.RegexOr;
import net.sourceforge.plantuml.command.regex.RegexResult;
import net.sourceforge.plantuml.cucadiagram.Code;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.cucadiagram.IEntity;
import net.sourceforge.plantuml.cucadiagram.ILeaf;
import net.sourceforge.plantuml.cucadiagram.LeafType;
import net.sourceforge.plantuml.cucadiagram.Link;
import net.sourceforge.plantuml.cucadiagram.LinkArrow;
import net.sourceforge.plantuml.cucadiagram.LinkDecor;
import net.sourceforge.plantuml.cucadiagram.LinkType;
import net.sourceforge.plantuml.cucadiagram.Stereotype;
2015-09-28 20:42:17 +00:00
import net.sourceforge.plantuml.graphic.HtmlColorSet;
import net.sourceforge.plantuml.graphic.color.ColorParser;
import net.sourceforge.plantuml.graphic.color.ColorType;
import net.sourceforge.plantuml.graphic.color.Colors;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.objectdiagram.AbstractClassOrObjectDiagram;
final public class CommandLinkClass extends SingleLineCommand2<AbstractClassOrObjectDiagram> {
public CommandLinkClass(UmlDiagramType umlDiagramType) {
super(getRegexConcat(umlDiagramType));
}
static private RegexConcat getRegexConcat(UmlDiagramType umlDiagramType) {
return new RegexConcat(
2015-04-07 18:18:37 +00:00
new RegexLeaf("HEADER", "^(?:@([\\d.]+)[%s]+)?"), //
2013-12-10 19:36:50 +00:00
new RegexOr(//
2015-04-07 18:18:37 +00:00
new RegexLeaf("ENT1", "(?:" + optionalKeywords(umlDiagramType) + "[%s]+)?"
+ getClassIdentifier()),
2013-12-10 19:36:50 +00:00
new RegexLeaf("COUPLE1",
2015-04-07 18:18:37 +00:00
"\\([%s]*(\\.?[\\p{L}0-9_]+(?:\\.[\\p{L}0-9_]+)*)[%s]*,[%s]*(\\.?[\\p{L}0-9_]+(?:\\.[\\p{L}0-9_]+)*)[%s]*\\)")),
new RegexLeaf("[%s]*"), //
new RegexLeaf("FIRST_LABEL", "(?:[%g]([^%g]+)[%g])?"), //
new RegexLeaf("[%s]*"), //
2013-12-10 19:36:50 +00:00
new RegexConcat(
//
2015-04-07 18:18:37 +00:00
new RegexLeaf("ARROW_HEAD1", "([%s]+o|[#\\[<*+^]|[<\\[]\\|)?"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("ARROW_BODY1", "([-=.]+)"), //
new RegexLeaf("ARROW_STYLE1",
2015-04-07 18:18:37 +00:00
"(?:\\[((?:#\\w+|dotted|dashed|bold|hidden|norank)(?:,#\\w+|,dotted|,dashed|,bold|,hidden|,norank)*)\\])?"),
2013-12-10 19:36:50 +00:00
new RegexLeaf("ARROW_DIRECTION", "(left|right|up|down|le?|ri?|up?|do?)?"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("INSIDE", "(?:(0|\\(0\\)|\\(0|0\\))(?=[-=.~]))?"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("ARROW_STYLE2",
2015-04-07 18:18:37 +00:00
"(?:\\[((?:#\\w+|dotted|dashed|bold|hidden|norank)(?:,#\\w+|,dotted|,dashed|,bold|,hidden|,norank)*)\\])?"),
2013-12-10 19:36:50 +00:00
new RegexLeaf("ARROW_BODY2", "([-=.]*)"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("ARROW_HEAD2", "(o[%s]+|[#\\]>*+^]|\\|[>\\]])?")), //
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
new RegexLeaf("[%s]*"), //
new RegexLeaf("SECOND_LABEL", "(?:[%g]([^%g]+)[%g])?"),
new RegexLeaf("[%s]*"), //
2013-12-10 19:36:50 +00:00
new RegexOr(
2015-04-07 18:18:37 +00:00
new RegexLeaf("ENT2", "(?:" + optionalKeywords(umlDiagramType) + "[%s]+)?"
+ getClassIdentifier()),
2013-12-10 19:36:50 +00:00
new RegexLeaf("COUPLE2",
2015-04-07 18:18:37 +00:00
"\\([%s]*(\\.?[\\p{L}0-9_]+(?:\\.[\\p{L}0-9_]+)*)[%s]*,[%s]*(\\.?[\\p{L}0-9_]+(?:\\.[\\p{L}0-9_]+)*)[%s]*\\)")),
new RegexLeaf("[%s]*"), //
2015-09-28 20:42:17 +00:00
color().getRegex(), //
new RegexLeaf("[%s]*"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("LABEL_LINK", "(?::[%s]*(.+))?"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("$"));
}
2015-09-28 20:42:17 +00:00
private static ColorParser color() {
return ColorParser.simpleColor(ColorType.LINE);
}
2015-04-07 18:18:37 +00:00
private static String getClassIdentifier() {
2015-09-28 20:42:17 +00:00
return "(" + getSeparator() + "?[\\p{L}0-9_$]+(?:" + getSeparator() + "[\\p{L}0-9_$]+)*|[%g][^%g]+[%g])";
2015-04-07 18:18:37 +00:00
}
private static String getSeparator() {
return "(?:\\.|::)";
}
2013-12-10 19:36:50 +00:00
private static String optionalKeywords(UmlDiagramType type) {
if (type == UmlDiagramType.CLASS) {
2016-01-09 12:15:40 +00:00
return "(interface|enum|annotation|abstract[%s]+class|abstract|class|object)";
2013-12-10 19:36:50 +00:00
}
if (type == UmlDiagramType.OBJECT) {
return "(object)";
}
throw new IllegalArgumentException();
}
2016-01-09 12:15:40 +00:00
private LeafType getTypeIfObject(String type) {
if ("object".equalsIgnoreCase(type)) {
return LeafType.OBJECT;
}
return null;
}
2013-12-10 19:36:50 +00:00
@Override
protected CommandExecutionResult executeArg(AbstractClassOrObjectDiagram diagram, RegexResult arg) {
Code ent1 = Code.of(arg.get("ENT1", 1));
Code ent2 = Code.of(arg.get("ENT2", 1));
2016-01-09 12:15:40 +00:00
2013-12-10 19:36:50 +00:00
if (ent1 == null) {
return executeArgSpecial1(diagram, arg);
}
if (ent2 == null) {
return executeArgSpecial2(diagram, arg);
}
2015-04-07 18:18:37 +00:00
ent1 = ent1.eventuallyRemoveStartingAndEndingDoubleQuote("\"");
ent2 = ent2.eventuallyRemoveStartingAndEndingDoubleQuote("\"");
2013-12-10 19:36:50 +00:00
if (diagram.isGroup(ent1) && diagram.isGroup(ent2)) {
return executePackageLink(diagram, arg);
}
2016-01-09 12:15:40 +00:00
final String type1 = arg.get("ENT1", 0);
final LeafType typeIfObject1 = getTypeIfObject(type1);
2013-12-10 19:36:50 +00:00
final IEntity cl1 = diagram.isGroup(ent1) ? diagram.getGroup(Code.of(StringUtils
2015-04-07 18:18:37 +00:00
.eventuallyRemoveStartingAndEndingDoubleQuote(arg.get("ENT1", 1), "\""))) : diagram.getOrCreateLeaf(
2016-01-09 12:15:40 +00:00
ent1, typeIfObject1, null);
final String type2 = arg.get("ENT2", 0);
LeafType typeIfObject2 = getTypeIfObject(type2);
if (diagram.leafExist(ent2) == false && cl1.getEntityType() == LeafType.OBJECT && typeIfObject2 == null) {
typeIfObject2 = LeafType.OBJECT;
}
2013-12-10 19:36:50 +00:00
final IEntity cl2 = diagram.isGroup(ent2) ? diagram.getGroup(Code.of(StringUtils
2015-04-07 18:18:37 +00:00
.eventuallyRemoveStartingAndEndingDoubleQuote(arg.get("ENT2", 1), "\""))) : diagram.getOrCreateLeaf(
2016-01-09 12:15:40 +00:00
ent2, typeIfObject2, null);
2013-12-10 19:36:50 +00:00
if (arg.get("ENT1", 0) != null) {
final LeafType type = LeafType.getLeafType(arg.get("ENT1", 0));
if (type != LeafType.OBJECT) {
2015-04-07 18:18:37 +00:00
((ILeaf) cl1).muteToType(type, null);
2013-12-10 19:36:50 +00:00
}
}
if (arg.get("ENT2", 0) != null) {
final LeafType type = LeafType.getLeafType(arg.get("ENT2", 0));
if (type != LeafType.OBJECT) {
2015-04-07 18:18:37 +00:00
((ILeaf) cl2).muteToType(type, null);
2013-12-10 19:36:50 +00:00
}
}
2015-09-28 20:42:17 +00:00
// if (arg.get("ENT1", 2) != null) {
// cl1.setStereotype(new Stereotype(arg.get("ENT1", 2), diagram.getSkinParam().getCircledCharacterRadius(),
// diagram.getSkinParam().getFont(FontParam.CIRCLED_CHARACTER, null, false), diagram.getSkinParam()
// .getIHtmlColorSet()));
// }
// if (arg.get("ENT2", 2) != null) {
// cl2.setStereotype(new Stereotype(arg.get("ENT2", 2), diagram.getSkinParam().getCircledCharacterRadius(),
// diagram.getSkinParam().getFont(FontParam.CIRCLED_CHARACTER, null, false), diagram.getSkinParam()
// .getIHtmlColorSet()));
// }
Colors colors = color().getColor(arg, diagram.getSkinParam().getIHtmlColorSet());
2013-12-10 19:36:50 +00:00
final LinkType linkType = getLinkType(arg);
final Direction dir = getDirection(arg);
final int queue;
if (dir == Direction.LEFT || dir == Direction.RIGHT) {
queue = 1;
} else {
queue = getQueueLength(arg);
}
String firstLabel = arg.get("FIRST_LABEL", 0);
String secondLabel = arg.get("SECOND_LABEL", 0);
String labelLink = null;
if (arg.get("LABEL_LINK", 0) != null) {
labelLink = arg.get("LABEL_LINK", 0);
if (firstLabel == null && secondLabel == null) {
2015-04-07 18:18:37 +00:00
final Pattern p1 = MyPattern.cmpile("^[%g]([^%g]+)[%g]([^%g]+)[%g]([^%g]+)[%g]$");
2013-12-10 19:36:50 +00:00
final Matcher m1 = p1.matcher(labelLink);
if (m1.matches()) {
firstLabel = m1.group(1);
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(
StringUtils.trin(m1.group(2)), "\""));
2013-12-10 19:36:50 +00:00
secondLabel = m1.group(3);
} else {
2015-04-07 18:18:37 +00:00
final Pattern p2 = MyPattern.cmpile("^[%g]([^%g]+)[%g]([^%g]+)$");
2013-12-10 19:36:50 +00:00
final Matcher m2 = p2.matcher(labelLink);
if (m2.matches()) {
firstLabel = m2.group(1);
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(
StringUtils.trin(m2.group(2)), "\""));
2013-12-10 19:36:50 +00:00
secondLabel = null;
} else {
2015-04-07 18:18:37 +00:00
final Pattern p3 = MyPattern.cmpile("^([^%g]+)[%g]([^%g]+)[%g]$");
2013-12-10 19:36:50 +00:00
final Matcher m3 = p3.matcher(labelLink);
if (m3.matches()) {
firstLabel = null;
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(
StringUtils.trin(m3.group(1)), "\""));
2013-12-10 19:36:50 +00:00
secondLabel = m3.group(2);
}
}
}
}
2015-04-07 18:18:37 +00:00
labelLink = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(labelLink, "\"");
2013-12-10 19:36:50 +00:00
}
LinkArrow linkArrow = LinkArrow.NONE;
if ("<".equals(labelLink)) {
linkArrow = LinkArrow.BACKWARD;
labelLink = null;
} else if (">".equals(labelLink)) {
linkArrow = LinkArrow.DIRECT_NORMAL;
labelLink = null;
} else if (labelLink != null && labelLink.startsWith("< ")) {
linkArrow = LinkArrow.BACKWARD;
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(labelLink.substring(2));
2013-12-10 19:36:50 +00:00
} else if (labelLink != null && labelLink.startsWith("> ")) {
linkArrow = LinkArrow.DIRECT_NORMAL;
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(labelLink.substring(2));
2013-12-10 19:36:50 +00:00
} else if (labelLink != null && labelLink.endsWith(" >")) {
linkArrow = LinkArrow.DIRECT_NORMAL;
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(labelLink.substring(0, labelLink.length() - 2));
2013-12-10 19:36:50 +00:00
} else if (labelLink != null && labelLink.endsWith(" <")) {
linkArrow = LinkArrow.BACKWARD;
2015-05-31 18:56:03 +00:00
labelLink = StringUtils.trin(labelLink.substring(0, labelLink.length() - 2));
2013-12-10 19:36:50 +00:00
}
Link link = new Link(cl1, cl2, linkType, Display.getWithNewlines(labelLink), queue, firstLabel, secondLabel,
diagram.getLabeldistance(), diagram.getLabelangle());
if (dir == Direction.LEFT || dir == Direction.UP) {
link = link.getInv();
}
link.setLinkArrow(linkArrow);
2015-09-28 20:42:17 +00:00
colors = applyStyle(arg.getLazzy("ARROW_STYLE", 0), link, colors);
link.setColors(colors);
2013-12-10 19:36:50 +00:00
addLink(diagram, link, arg.get("HEADER", 0));
return CommandExecutionResult.ok();
}
private void addLink(AbstractClassOrObjectDiagram diagram, Link link, String weight) {
diagram.addLink(link);
if (weight == null) {
// final LinkType type = link.getType();
// --|> highest
// --*, -->, --o normal
// ..*, ..>, ..o lowest
// if (type.isDashed() == false) {
// if (type.contains(LinkDecor.EXTENDS)) {
// link.setWeight(3);
// }
// if (type.contains(LinkDecor.ARROW) ||
// type.contains(LinkDecor.COMPOSITION)
// || type.contains(LinkDecor.AGREGATION)) {
// link.setWeight(2);
// }
// }
} else {
link.setWeight(Double.parseDouble(weight));
}
}
private CommandExecutionResult executePackageLink(AbstractClassOrObjectDiagram diagram, RegexResult arg) {
2015-04-07 18:18:37 +00:00
final IEntity cl1 = diagram.getGroup(Code.of(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(
arg.get("ENT1", 1), "\"")));
final IEntity cl2 = diagram.getGroup(Code.of(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(
arg.get("ENT2", 1), "\"")));
2013-12-10 19:36:50 +00:00
final LinkType linkType = getLinkType(arg);
final Direction dir = getDirection(arg);
final int queue;
if (dir == Direction.LEFT || dir == Direction.RIGHT) {
queue = 1;
} else {
queue = getQueueLength(arg);
}
2015-09-28 20:42:17 +00:00
Colors colors = color().getColor(arg, diagram.getSkinParam().getIHtmlColorSet());
2013-12-10 19:36:50 +00:00
final Display labelLink = Display.getWithNewlines(arg.get("LABEL_LINK", 0));
final String firstLabel = arg.get("FIRST_LABEL", 0);
final String secondLabel = arg.get("SECOND_LABEL", 0);
final Link link = new Link(cl1, cl2, linkType, labelLink, queue, firstLabel, secondLabel,
diagram.getLabeldistance(), diagram.getLabelangle());
diagram.resetPragmaLabel();
2015-09-28 20:42:17 +00:00
colors = applyStyle(arg.getLazzy("ARROW_STYLE", 0), link, colors);
link.setColors(colors);
2013-12-10 19:36:50 +00:00
addLink(diagram, link, arg.get("HEADER", 0));
return CommandExecutionResult.ok();
}
private CommandExecutionResult executeArgSpecial1(AbstractClassOrObjectDiagram diagram, RegexResult arg) {
final Code clName1 = Code.of(arg.get("COUPLE1", 0));
final Code clName2 = Code.of(arg.get("COUPLE1", 1));
if (diagram.leafExist(clName1) == false) {
return CommandExecutionResult.error("No class " + clName1);
}
if (diagram.leafExist(clName2) == false) {
return CommandExecutionResult.error("No class " + clName2);
}
2015-04-07 18:18:37 +00:00
final Code ent2 = Code.of(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg.get("ENT2", 1), "\""));
final IEntity cl2 = diagram.getOrCreateLeaf(ent2, null, null);
2013-12-10 19:36:50 +00:00
final LinkType linkType = getLinkType(arg);
final Display label = Display.getWithNewlines(arg.get("LABEL_LINK", 0));
// final int length = getQueueLength(arg);
// final String weight = arg.get("HEADER").get(0);
final boolean result = diagram.associationClass(1, clName1, clName2, cl2, linkType, label);
if (result == false) {
return CommandExecutionResult.error("Cannot have more than 2 assocications");
}
return CommandExecutionResult.ok();
}
private CommandExecutionResult executeArgSpecial2(AbstractClassOrObjectDiagram diagram, RegexResult arg) {
final Code clName1 = Code.of(arg.get("COUPLE2", 0));
final Code clName2 = Code.of(arg.get("COUPLE2", 1));
if (diagram.leafExist(clName1) == false) {
return CommandExecutionResult.error("No class " + clName1);
}
if (diagram.leafExist(clName2) == false) {
return CommandExecutionResult.error("No class " + clName2);
}
2015-04-07 18:18:37 +00:00
final Code ent1 = Code.of(StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg.get("ENT1", 1), "\""));
final IEntity cl1 = diagram.getOrCreateLeaf(ent1, null, null);
2013-12-10 19:36:50 +00:00
final LinkType linkType = getLinkType(arg);
final Display label = Display.getWithNewlines(arg.get("LABEL_LINK", 0));
// final int length = getQueueLength(arg);
// final String weight = arg.get("HEADER").get(0);
final boolean result = diagram.associationClass(2, clName1, clName2, cl1, linkType, label);
if (result == false) {
return CommandExecutionResult.error("Cannot have more than 2 assocications");
}
return CommandExecutionResult.ok();
}
private LinkDecor getDecors1(String s) {
if (s == null) {
return LinkDecor.NONE;
}
2015-05-31 18:56:03 +00:00
s = StringUtils.trin(s);
2013-12-10 19:36:50 +00:00
if ("<|".equals(s)) {
return LinkDecor.EXTENDS;
}
if ("<".equals(s)) {
return LinkDecor.ARROW;
}
if ("^".equals(s)) {
return LinkDecor.EXTENDS;
}
if ("+".equals(s)) {
return LinkDecor.PLUS;
}
if ("o".equals(s)) {
return LinkDecor.AGREGATION;
}
if ("*".equals(s)) {
return LinkDecor.COMPOSITION;
}
2015-04-07 18:18:37 +00:00
if ("#".equals(s)) {
return LinkDecor.SQUARRE;
}
2013-12-10 19:36:50 +00:00
return LinkDecor.NONE;
}
private LinkDecor getDecors2(String s) {
if (s == null) {
return LinkDecor.NONE;
}
2015-05-31 18:56:03 +00:00
s = StringUtils.trin(s);
2013-12-10 19:36:50 +00:00
if ("|>".equals(s)) {
return LinkDecor.EXTENDS;
}
if (">".equals(s)) {
return LinkDecor.ARROW;
}
if ("^".equals(s)) {
return LinkDecor.EXTENDS;
}
if ("+".equals(s)) {
return LinkDecor.PLUS;
}
if ("o".equals(s)) {
return LinkDecor.AGREGATION;
}
if ("*".equals(s)) {
return LinkDecor.COMPOSITION;
}
2015-04-07 18:18:37 +00:00
if ("#".equals(s)) {
return LinkDecor.SQUARRE;
}
2013-12-10 19:36:50 +00:00
return LinkDecor.NONE;
}
private LinkType getLinkType(RegexResult arg) {
final LinkDecor decors1 = getDecors1(arg.get("ARROW_HEAD1", 0));
final LinkDecor decors2 = getDecors2(arg.get("ARROW_HEAD2", 0));
LinkType result = new LinkType(decors2, decors1);
if (arg.get("ARROW_BODY1", 0).contains(".") || arg.get("ARROW_BODY2", 0).contains(".")) {
result = result.getDashed();
}
2015-04-07 18:18:37 +00:00
final String middle = arg.get("INSIDE", 0);
if ("0".equals(middle)) {
result = result.withMiddleCircle();
} else if ("0)".equals(middle)) {
result = result.withMiddleCircleCircled1();
} else if ("(0".equals(middle)) {
result = result.withMiddleCircleCircled2();
} else if ("(0)".equals(middle)) {
result = result.withMiddleCircleCircled();
}
2013-12-10 19:36:50 +00:00
return result;
}
private int getQueueLength(RegexResult arg) {
String s = getFullArrow(arg);
s = s.replaceAll("[^-.=]", "");
return s.length();
}
private Direction getDirection(RegexResult arg) {
final LinkDecor decors1 = getDecors1(arg.get("ARROW_HEAD1", 0));
final LinkDecor decors2 = getDecors2(arg.get("ARROW_HEAD2", 0));
String s = getFullArrow(arg);
s = s.replaceAll("[^-.=\\w]", "");
if (s.startsWith("o")) {
s = s.substring(1);
}
if (s.endsWith("o")) {
s = s.substring(0, s.length() - 1);
}
Direction result = StringUtils.getQueueDirection(s);
if (isInversed(decors1, decors2) && s.matches(".*\\w.*")) {
result = result.getInv();
}
return result;
}
private String getFullArrow(RegexResult arg) {
return notNull(arg.get("ARROW_HEAD1", 0)) + notNull(arg.get("ARROW_BODY1", 0))
+ notNull(arg.get("ARROW_DIRECTION", 0)) + notNull(arg.get("ARROW_BODY2", 0))
+ notNull(arg.get("ARROW_HEAD2", 0));
}
public static String notNull(String s) {
if (s == null) {
return "";
}
return s;
}
2015-09-28 20:42:17 +00:00
@Deprecated
public static Colors applyStyle(String arrowStyle, Link link) {
return applyStyle(arrowStyle, link, null);
}
public static Colors applyStyle(String arrowStyle, Link link, Colors colors) {
2013-12-10 19:36:50 +00:00
if (arrowStyle == null) {
2015-09-28 20:42:17 +00:00
return colors;
2013-12-10 19:36:50 +00:00
}
final StringTokenizer st = new StringTokenizer(arrowStyle, ",");
while (st.hasMoreTokens()) {
final String s = st.nextToken();
if (s.equalsIgnoreCase("dashed")) {
link.goDashed();
} else if (s.equalsIgnoreCase("bold")) {
link.goBold();
} else if (s.equalsIgnoreCase("dotted")) {
link.goDotted();
} else if (s.equalsIgnoreCase("hidden")) {
link.goHidden();
2015-04-07 18:18:37 +00:00
} else if (s.equalsIgnoreCase("norank")) {
link.goNorank();
2013-12-10 19:36:50 +00:00
} else {
link.setSpecificColor(s);
2015-09-28 20:42:17 +00:00
if (colors != null) {
colors = colors.add(ColorType.LINE, HtmlColorSet.getInstance().getColorIfValid(s));
}
2013-12-10 19:36:50 +00:00
}
}
2015-09-28 20:42:17 +00:00
return colors;
2013-12-10 19:36:50 +00:00
}
private boolean isInversed(LinkDecor decors1, LinkDecor decors2) {
if (decors1 == LinkDecor.ARROW && decors2 != LinkDecor.ARROW) {
return true;
}
if (decors2 == LinkDecor.AGREGATION) {
return true;
}
if (decors2 == LinkDecor.COMPOSITION) {
return true;
}
if (decors2 == LinkDecor.PLUS) {
return true;
}
// if (decors2 == LinkDecor.EXTENDS) {
// return true;
// }
return false;
}
}