1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-06 02:10:53 +00:00
plantuml/src/net/sourceforge/plantuml/command/CommandPackage.java

112 lines
4.1 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2013-12-10 19:36:50 +00:00
* (C) Copyright 2009-2013, Arnaud Roques
2010-11-15 20:35:36 +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
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* 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
*
2013-12-10 19:36:50 +00:00
* Revision $Revision: 7800 $
2010-11-15 20:35:36 +00:00
*
*/
package net.sourceforge.plantuml.command;
import net.sourceforge.plantuml.StringUtils;
2011-03-20 21:40:07 +00:00
import net.sourceforge.plantuml.UniqueSequence;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.Url;
import net.sourceforge.plantuml.UrlBuilder;
import net.sourceforge.plantuml.UrlBuilder.ModeUrl;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.classdiagram.AbstractEntityDiagram;
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.RegexResult;
import net.sourceforge.plantuml.cucadiagram.Code;
import net.sourceforge.plantuml.cucadiagram.Display;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.cucadiagram.GroupType;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.IEntity;
import net.sourceforge.plantuml.cucadiagram.IGroup;
import net.sourceforge.plantuml.cucadiagram.Stereotype;
import net.sourceforge.plantuml.graphic.HtmlColorUtils;
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
public class CommandPackage extends SingleLineCommand2<AbstractEntityDiagram> {
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
public CommandPackage() {
super(getRegexConcat());
}
private static RegexConcat getRegexConcat() {
return new RegexConcat(new RegexLeaf("^package\\s+"), //
new RegexLeaf("NAME", "(\"[^\"]+\"|[^#\\s{}]*)"), //
new RegexLeaf("AS", "(?:\\s+as\\s+([\\p{L}0-9_.]+))?"), //
new RegexLeaf("\\s*"), //
new RegexLeaf("STEREOTYPE", "(\\<\\<.*\\>\\>)?"), //
new RegexLeaf("\\s*"), //
new RegexLeaf("URL", "(" + UrlBuilder.getRegexp() + ")?"), //
new RegexLeaf("\\s*"), //
new RegexLeaf("COLOR", "(#\\w+[-\\\\|/]?\\w+)?"), //
// new RegexLeaf("COLOR", "(#[0-9a-fA-F]{6}|#?\\w+)?"), //
new RegexLeaf("\\s*\\{?$"));
2010-11-15 20:35:36 +00:00
}
@Override
2013-12-10 19:36:50 +00:00
protected CommandExecutionResult executeArg(AbstractEntityDiagram diagram, RegexResult arg) {
final Code code;
2010-11-15 20:35:36 +00:00
final String display;
2013-12-10 19:36:50 +00:00
final String name = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg.get("NAME", 0));
if (arg.get("AS", 0) == null) {
if (name.length() == 0) {
code = Code.of("##" + UniqueSequence.getValue());
2011-03-20 21:40:07 +00:00
display = null;
} else {
2013-12-10 19:36:50 +00:00
code = Code.of(name);
display = code.getCode();
2011-03-20 21:40:07 +00:00
}
2010-11-15 20:35:36 +00:00
} else {
2013-12-10 19:36:50 +00:00
display = name;
code = Code.of(arg.get("AS", 0));
}
final IGroup currentPackage = diagram.getCurrentGroup();
final IEntity p = diagram.getOrCreateGroup(code, Display.getWithNewlines(display), null, GroupType.PACKAGE, currentPackage);
final String stereotype = arg.get("STEREOTYPE", 0);
if (stereotype != null) {
p.setStereotype(new Stereotype(stereotype));
2010-11-15 20:35:36 +00:00
}
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);
p.addUrl(url);
}
final String color = arg.get("COLOR", 0);
2010-11-15 20:35:36 +00:00
if (color != null) {
2013-12-10 19:36:50 +00:00
p.setSpecificBackcolor(HtmlColorUtils.getColorIfValid(color));
2010-11-15 20:35:36 +00:00
}
return CommandExecutionResult.ok();
}
}