plantuml/src/net/sourceforge/plantuml/compositediagram/command/CommandCreatePackageBlock.java

90 lines
3.4 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +00:00
*
2017-03-15 19:13:31 +00:00
* 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
*
2010-11-15 20:35:36 +00:00
* 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.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.compositediagram.command;
2022-11-07 19:27:11 +00:00
import net.sourceforge.plantuml.baraye.IGroup;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.command.CommandExecutionResult;
2019-06-26 19:24:49 +00:00
import net.sourceforge.plantuml.command.SingleLineCommand2;
import net.sourceforge.plantuml.command.regex.IRegex;
import net.sourceforge.plantuml.command.regex.RegexConcat;
import net.sourceforge.plantuml.command.regex.RegexLeaf;
import net.sourceforge.plantuml.command.regex.RegexOptional;
import net.sourceforge.plantuml.command.regex.RegexResult;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.compositediagram.CompositeDiagram;
2013-12-10 19:36:50 +00:00
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;
2019-12-10 21:45:49 +00:00
import net.sourceforge.plantuml.cucadiagram.Ident;
2018-03-09 21:37:34 +00:00
import net.sourceforge.plantuml.cucadiagram.NamespaceStrategy;
2022-12-17 11:01:10 +00:00
import net.sourceforge.plantuml.utils.LineLocation;
2010-11-15 20:35:36 +00:00
2019-06-26 19:24:49 +00:00
public class CommandCreatePackageBlock extends SingleLineCommand2<CompositeDiagram> {
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
public CommandCreatePackageBlock() {
2019-06-26 19:24:49 +00:00
super(getRegexConcat());
}
static IRegex getRegexConcat() {
return RegexConcat.build(CommandCreatePackageBlock.class.getName(), RegexLeaf.start(), //
new RegexLeaf("block"), //
RegexLeaf.spaceOneOrMore(), //
new RegexOptional( //
new RegexConcat( //
new RegexLeaf("DISPLAY", "[%g]([^%g]+)[%g]"), //
RegexLeaf.spaceOneOrMore(), //
new RegexLeaf("as"), //
RegexLeaf.spaceOneOrMore() //
)), //
2021-05-23 15:35:13 +00:00
new RegexLeaf("CODE", "([%pLN_.]+)"), //
2019-06-26 19:24:49 +00:00
new RegexLeaf("(?:[%s]*\\{|[%s]+begin)"), RegexLeaf.end()); //
2010-11-15 20:35:36 +00:00
}
@Override
2019-06-26 19:24:49 +00:00
protected CommandExecutionResult executeArg(CompositeDiagram diagram, LineLocation location, RegexResult arg) {
2013-12-10 19:36:50 +00:00
final IGroup currentPackage = diagram.getCurrentGroup();
2019-06-26 19:24:49 +00:00
String display = arg.get("DISPLAY", 0);
2019-12-10 21:45:49 +00:00
final String idShort = arg.get("CODE", 0);
final Code code = diagram.buildCode(idShort);
2023-01-09 19:13:37 +00:00
if (display == null)
2019-12-10 21:45:49 +00:00
display = code.getName();
2023-01-09 19:13:37 +00:00
2019-12-10 21:45:49 +00:00
final Ident idNewLong = diagram.buildLeafIdent(idShort);
2023-01-09 19:13:37 +00:00
return diagram.gotoGroup(idNewLong, code, Display.getWithNewlines(display), GroupType.PACKAGE, currentPackage,
2018-03-09 21:37:34 +00:00
NamespaceStrategy.SINGLE);
2010-11-15 20:35:36 +00:00
}
}