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

107 lines
3.2 KiB
Java
Raw Normal View History

2015-05-31 18:56:03 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2015-05-31 18:56:03 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2015-05-31 18:56:03 +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
*
2015-05-31 18:56:03 +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
* 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.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.command;
2019-03-29 22:14:07 +00:00
import net.sourceforge.plantuml.StringLocated;
2019-06-26 19:24:49 +00:00
import net.sourceforge.plantuml.command.regex.IRegex;
2015-05-31 18:56:03 +00:00
import net.sourceforge.plantuml.command.regex.RegexConcat;
import net.sourceforge.plantuml.core.Diagram;
public abstract class CommandMultilines3<S extends Diagram> implements Command<S> {
2019-06-26 19:24:49 +00:00
private final IRegex starting;
2015-05-31 18:56:03 +00:00
private final MultilinesStrategy strategy;
2022-05-31 16:31:10 +00:00
2019-06-26 19:24:49 +00:00
public CommandMultilines3(IRegex patternStart, MultilinesStrategy strategy) {
2022-05-31 16:31:10 +00:00
if (patternStart.getPattern().startsWith("^") == false || patternStart.getPattern().endsWith("$") == false)
2015-05-31 18:56:03 +00:00
throw new IllegalArgumentException("Bad pattern " + patternStart.getPattern());
2022-05-31 16:31:10 +00:00
2015-05-31 18:56:03 +00:00
this.strategy = strategy;
this.starting = patternStart;
}
public abstract RegexConcat getPatternEnd2();
public String[] getDescription() {
return new String[] { "START: " + starting.getPattern(), "END: " + getPatternEnd2().getPattern() };
}
2015-06-20 10:54:49 +00:00
final public CommandControl isValid(BlocLines lines) {
lines = lines.cleanList(strategy);
2022-05-31 16:31:10 +00:00
if (isCommandForbidden())
2015-05-31 18:56:03 +00:00
return CommandControl.NOT_OK;
2022-05-31 16:31:10 +00:00
final StringLocated first = lines.getFirst();
2022-05-31 16:31:10 +00:00
if (first == null)
2017-12-11 21:02:10 +00:00
return CommandControl.NOT_OK;
2022-05-31 16:31:10 +00:00
2019-06-26 19:24:49 +00:00
final boolean result1 = starting.match(first.getTrimmed());
2022-05-31 16:31:10 +00:00
if (result1 == false)
2015-05-31 18:56:03 +00:00
return CommandControl.NOT_OK;
2022-05-31 16:31:10 +00:00
if (lines.size() == 1)
2015-05-31 18:56:03 +00:00
return CommandControl.OK_PARTIAL;
final StringLocated potentialLast = lines.getLast().getTrimmed();
2015-05-31 18:56:03 +00:00
final boolean m1 = getPatternEnd2().match(potentialLast);
2022-05-31 16:31:10 +00:00
if (m1 == false)
2015-05-31 18:56:03 +00:00
return CommandControl.OK_PARTIAL;
actionIfCommandValid();
return CommandControl.OK;
}
2015-06-20 10:54:49 +00:00
public final CommandExecutionResult execute(S system, BlocLines lines) {
lines = lines.cleanList(strategy);
2015-06-20 10:54:49 +00:00
return executeNow(system, lines);
2015-05-31 18:56:03 +00:00
}
2018-06-12 20:50:45 +00:00
protected abstract CommandExecutionResult executeNow(S system, BlocLines lines);
2015-05-31 18:56:03 +00:00
protected boolean isCommandForbidden() {
return false;
}
protected void actionIfCommandValid() {
}
2019-06-26 19:24:49 +00:00
protected final IRegex getStartingPattern() {
2015-05-31 18:56:03 +00:00
return starting;
}
}