1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 18:30:52 +00:00
plantuml/src/net/sourceforge/plantuml/descdiagram/command/CommandPackageWithUSymbol.java

109 lines
4.1 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: 7800 $
*
*/
package net.sourceforge.plantuml.descdiagram.command;
2015-09-06 17:28:59 +00:00
import net.sourceforge.plantuml.StringUtils;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.UrlBuilder;
import net.sourceforge.plantuml.classdiagram.AbstractEntityDiagram;
import net.sourceforge.plantuml.command.CommandExecutionResult;
import net.sourceforge.plantuml.command.SingleLineCommand2;
import net.sourceforge.plantuml.command.regex.RegexConcat;
import net.sourceforge.plantuml.command.regex.RegexLeaf;
import net.sourceforge.plantuml.command.regex.RegexResult;
import net.sourceforge.plantuml.cucadiagram.Code;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.cucadiagram.GroupType;
import net.sourceforge.plantuml.cucadiagram.IEntity;
import net.sourceforge.plantuml.cucadiagram.IGroup;
import net.sourceforge.plantuml.cucadiagram.Stereotype;
import net.sourceforge.plantuml.graphic.USymbol;
2015-09-06 17:28:59 +00:00
import net.sourceforge.plantuml.graphic.color.ColorParser;
2015-09-28 20:42:17 +00:00
import net.sourceforge.plantuml.graphic.color.ColorType;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.utils.UniqueSequence;
2013-12-10 19:36:50 +00:00
public class CommandPackageWithUSymbol extends SingleLineCommand2<AbstractEntityDiagram> {
public CommandPackageWithUSymbol() {
super(getRegexConcat());
}
private static RegexConcat getRegexConcat() {
return new RegexConcat(new RegexLeaf("^"), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("SYMBOL", "(package|rectangle|node|artifact|folder|frame|cloud|database|storage|component|card)"), //
new RegexLeaf("[%s]+"), //
new RegexLeaf("NAME", "([%g][^%g]+[%g]|[^#%s{}]*)"), //
new RegexLeaf("AS", "(?:[%s]+as[%s]+([\\p{L}0-9_.]+))?"), //
new RegexLeaf("[%s]*"), //
2013-12-10 19:36:50 +00:00
new RegexLeaf("STEREOTYPE", "(\\<\\<.*\\>\\>)?"), //
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]*"), //
2015-09-06 17:28:59 +00:00
ColorParser.exp1(), //
2015-04-07 18:18:37 +00:00
new RegexLeaf("[%s]*\\{$"));
2013-12-10 19:36:50 +00:00
}
@Override
protected CommandExecutionResult executeArg(AbstractEntityDiagram diagram, RegexResult arg) {
final Code code;
final String display;
final String name = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg.get("NAME", 0));
if (arg.get("AS", 0) == null) {
if (name.length() == 0) {
code = UniqueSequence.getCode("##");
display = null;
} else {
code = Code.of(name);
2015-04-07 18:18:37 +00:00
display = code.getFullName();
2013-12-10 19:36:50 +00:00
}
} else {
display = name;
code = Code.of(arg.get("AS", 0));
}
final IGroup currentPackage = diagram.getCurrentGroup();
2015-04-07 18:18:37 +00:00
final IEntity p = diagram.getOrCreateGroup(code, Display.getWithNewlines(display),
2013-12-10 19:36:50 +00:00
GroupType.PACKAGE, currentPackage);
p.setUSymbol(USymbol.getFromString(arg.get("SYMBOL", 0)));
final String stereotype = arg.get("STEREOTYPE", 0);
if (stereotype != null) {
p.setStereotype(new Stereotype(stereotype, false));
}
final String color = arg.get("COLOR", 0);
if (color != null) {
2015-09-28 20:42:17 +00:00
p.setSpecificColorTOBEREMOVED(ColorType.BACK, diagram.getSkinParam().getIHtmlColorSet().getColorIfValid(color));
2013-12-10 19:36:50 +00:00
}
return CommandExecutionResult.ok();
}
}