1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-09-27 14:39:02 +00:00
plantuml/src/net/sourceforge/plantuml/classdiagram/command/CommandCreateClassMultilines.java

234 lines
8.6 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2015-04-07 18:18:37 +00:00
* (C) Copyright 2009-2014, 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: 4161 $
*
*/
package net.sourceforge.plantuml.classdiagram.command;
import java.util.List;
import net.sourceforge.plantuml.FontParam;
import net.sourceforge.plantuml.Url;
import net.sourceforge.plantuml.UrlBuilder;
import net.sourceforge.plantuml.UrlBuilder.ModeUrl;
import net.sourceforge.plantuml.classdiagram.ClassDiagram;
import net.sourceforge.plantuml.command.CommandExecutionResult;
import net.sourceforge.plantuml.command.CommandMultilines2;
import net.sourceforge.plantuml.command.MultilinesStrategy;
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.LinkDecor;
import net.sourceforge.plantuml.cucadiagram.LinkStyle;
import net.sourceforge.plantuml.cucadiagram.LinkType;
import net.sourceforge.plantuml.cucadiagram.Stereotype;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.graphic.HtmlColorSet;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.HtmlColorUtils;
import net.sourceforge.plantuml.skin.VisibilityModifier;
import net.sourceforge.plantuml.ugraphic.UStroke;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.StringUtils;
2013-12-10 19:36:50 +00:00
public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagram> {
2015-04-07 18:18:37 +00:00
private static final String CODE = "(?:\\.|::)?[\\p{L}0-9_]+(?:(?:\\.|::)[\\p{L}0-9_]+)*";
public static final String CODES = CODE + "(?:\\s*,\\s*" + CODE + ")*";
2013-12-10 19:36:50 +00:00
enum Mode {
EXTENDS, IMPLEMENTS
};
public CommandCreateClassMultilines() {
super(getRegexConcat(), MultilinesStrategy.REMOVE_STARTING_QUOTE);
}
@Override
public String getPatternEnd() {
2015-04-07 18:18:37 +00:00
return "(?i)^[%s]*\\}[%s]*$";
2013-12-10 19:36:50 +00:00
}
private static RegexConcat getRegexConcat() {
return new RegexConcat(new RegexLeaf("^"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("TYPE", "(interface|enum|abstract[%s]+class|abstract|class)[%s]+"), //
2013-12-10 19:36:50 +00:00
new RegexOr(//
new RegexConcat(//
2015-04-07 18:18:37 +00:00
new RegexLeaf("DISPLAY1", "[%g]([^%g]+)[%g]"), //
new RegexLeaf("[%s]+as[%s]+"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("CODE1", "(" + CommandCreateClass.CODE + ")")), //
new RegexConcat(//
new RegexLeaf("CODE2", "(" + CommandCreateClass.CODE + ")"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("[%s]+as[%s]+"), // //
new RegexLeaf("DISPLAY2", "[%g]([^%g]+)[%g]")), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("CODE3", "(" + CommandCreateClass.CODE + ")"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("CODE4", "[%g]([^%g]+)[%g]")), //
new RegexLeaf("GENERIC", "(?:[%s]*\\<(" + GenericRegexProducer.PATTERN + ")\\>)?"), //
new RegexLeaf("[%s]*"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("STEREO", "(\\<\\<.+\\>\\>)?"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("[%s]*"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("URL", "(" + UrlBuilder.getRegexp() + ")?"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("[%s]*"), //
new RegexLeaf("COLOR", "(" + HtmlColorUtils.COLOR_REGEXP + ")?"), //
new RegexLeaf("[%s]*"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("LINECOLOR", "(?:##(?:\\[(dotted|dashed|bold)\\])?(\\w+)?)?"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("EXTENDS", "([%s]+(extends)[%s]+(" + CODES + "))?"), //
new RegexLeaf("IMPLEMENTS", "([%s]+(implements)[%s]+(" + CODES + "))?"), //
new RegexLeaf("[%s]*\\{[%s]*$"));
2013-12-10 19:36:50 +00:00
}
public CommandExecutionResult executeNow(ClassDiagram diagram, List<String> lines) {
StringUtils.trim(lines, false);
final RegexResult line0 = getStartingPattern().matcher(lines.get(0).trim());
final IEntity entity = executeArg0(diagram, line0);
if (entity == null) {
return CommandExecutionResult.error("No such entity");
}
lines = lines.subList(1, lines.size() - 1);
final Url url;
if (lines.size() > 0) {
final UrlBuilder urlBuilder = new UrlBuilder(diagram.getSkinParam().getValue("topurl"), ModeUrl.STRICT);
url = urlBuilder.getUrl(lines.get(0).toString());
} else {
url = null;
}
if (url != null) {
lines = lines.subList(1, lines.size());
}
for (String s : lines) {
if (s.length() > 0 && VisibilityModifier.isVisibilityCharacter(s.charAt(0))) {
diagram.setVisibilityModifierPresent(true);
}
entity.addFieldOrMethod(s);
}
if (url != null) {
entity.addUrl(url);
}
2015-04-07 18:18:37 +00:00
manageExtends("EXTENDS", diagram, line0, entity);
manageExtends("IMPLEMENTS", diagram, line0, entity);
2013-12-10 19:36:50 +00:00
return CommandExecutionResult.ok();
}
2015-04-07 18:18:37 +00:00
public static void manageExtends(String keyword, ClassDiagram system, RegexResult arg, final IEntity entity) {
if (arg.get(keyword, 1) != null) {
final Mode mode = arg.get(keyword, 1).equalsIgnoreCase("extends") ? Mode.EXTENDS : Mode.IMPLEMENTS;
2013-12-10 19:36:50 +00:00
LeafType type2 = LeafType.CLASS;
if (mode == Mode.IMPLEMENTS) {
type2 = LeafType.INTERFACE;
}
if (mode == Mode.EXTENDS && entity.getEntityType() == LeafType.INTERFACE) {
type2 = LeafType.INTERFACE;
}
2015-04-07 18:18:37 +00:00
final String codes = arg.get(keyword, 2);
for (String s : codes.split(",")) {
final Code other = Code.of(s.trim());
final IEntity cl2 = system.getOrCreateLeaf(other, type2, null);
LinkType typeLink = new LinkType(LinkDecor.NONE, LinkDecor.EXTENDS);
if (type2 == LeafType.INTERFACE && entity.getEntityType() != LeafType.INTERFACE) {
typeLink = typeLink.getDashed();
}
final Link link = new Link(cl2, entity, typeLink, null, 2, null, null, system.getLabeldistance(),
system.getLabelangle());
system.addLink(link);
2013-12-10 19:36:50 +00:00
}
}
}
private IEntity executeArg0(ClassDiagram diagram, RegexResult arg) {
2015-04-07 18:18:37 +00:00
final LeafType type = LeafType.getLeafType(StringUtils.goUpperCase(arg.get("TYPE", 0)));
2013-12-10 19:36:50 +00:00
2015-04-07 18:18:37 +00:00
final Code code = Code.of(arg.getLazzy("CODE", 0)).eventuallyRemoveStartingAndEndingDoubleQuote("\"([:");
2013-12-10 19:36:50 +00:00
final String display = arg.getLazzy("DISPLAY", 0);
final String stereotype = arg.get("STEREO", 0);
final String generic = arg.get("GENERIC", 0);
final ILeaf result;
if (diagram.leafExist(code)) {
2015-04-07 18:18:37 +00:00
result = diagram.getOrCreateLeaf(code, null, null);
result.muteToType(type, null);
2013-12-10 19:36:50 +00:00
} else {
2015-04-07 18:18:37 +00:00
result = diagram.createLeaf(code, Display.getWithNewlines(display), type, null);
2013-12-10 19:36:50 +00:00
}
if (stereotype != null) {
result.setStereotype(new Stereotype(stereotype, diagram.getSkinParam().getCircledCharacterRadius(), diagram
2015-04-07 18:18:37 +00:00
.getSkinParam().getFont(FontParam.CIRCLED_CHARACTER, null, false), diagram.getSkinParam()
.getIHtmlColorSet()));
2013-12-10 19:36:50 +00:00
}
final String urlString = arg.get("URL", 0);
if (urlString != null) {
final UrlBuilder urlBuilder = new UrlBuilder(diagram.getSkinParam().getValue("topurl"), ModeUrl.STRICT);
final Url url = urlBuilder.getUrl(urlString);
result.addUrl(url);
}
2015-04-07 18:18:37 +00:00
result.setSpecificBackcolor(diagram.getSkinParam().getIHtmlColorSet().getColorIfValid(arg.get("COLOR", 0)));
result.setSpecificLineColor(diagram.getSkinParam().getIHtmlColorSet().getColorIfValid(arg.get("LINECOLOR", 1)));
2013-12-10 19:36:50 +00:00
applyStroke(result, arg.get("LINECOLOR", 0));
if (generic != null) {
result.setGeneric(generic);
}
return result;
}
2015-04-07 18:18:37 +00:00
public static UStroke getStroke(LinkStyle style) {
2013-12-10 19:36:50 +00:00
if (style == LinkStyle.DASHED) {
return new UStroke(6, 6, 1);
}
if (style == LinkStyle.DOTTED) {
return new UStroke(1, 3, 1);
}
if (style == LinkStyle.BOLD) {
return new UStroke(2.5);
}
return new UStroke();
}
2015-04-07 18:18:37 +00:00
public static void applyStroke(IEntity entity, String s) {
2013-12-10 19:36:50 +00:00
if (s == null) {
return;
}
2015-04-07 18:18:37 +00:00
final LinkStyle style = LinkStyle.valueOf(StringUtils.goUpperCase(s));
2013-12-10 19:36:50 +00:00
entity.setSpecificLineStroke(getStroke(style));
}
}