1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 23:50:49 +00:00
plantuml/src/net/sourceforge/plantuml/project/lang/ComplementDate.java

128 lines
3.8 KiB
Java
Raw Normal View History

2017-02-26 16:26:11 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
2017-02-26 16:26:11 +00:00
*
2023-02-22 18:43:48 +00:00
* Project Info: https://plantuml.com
2017-02-26 16:26:11 +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:
*
2023-02-22 18:43:48 +00:00
* https://plantuml.com/patreon (only 1$ per month!)
* https://plantuml.com/paypal
2017-03-15 19:13:31 +00:00
*
2017-02-26 16:26:11 +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
*
*
*/
2020-02-18 21:24:31 +00:00
package net.sourceforge.plantuml.project.lang;
2017-02-26 16:26:11 +00:00
2020-02-18 21:24:31 +00:00
import net.sourceforge.plantuml.project.Failable;
import net.sourceforge.plantuml.project.GanttDiagram;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.project.time.Day;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.regex.IRegex;
import net.sourceforge.plantuml.regex.RegexConcat;
import net.sourceforge.plantuml.regex.RegexLeaf;
import net.sourceforge.plantuml.regex.RegexOr;
import net.sourceforge.plantuml.regex.RegexResult;
2017-02-26 16:26:11 +00:00
2020-08-25 17:24:17 +00:00
public class ComplementDate implements Something {
2017-02-26 16:26:11 +00:00
private final Type type;
static enum Type {
ANY, ONLY_RELATIVE, ONLY_ABSOLUTE;
}
private ComplementDate(Type type) {
this.type = type;
}
public static ComplementDate any() {
return new ComplementDate(Type.ANY);
}
public static ComplementDate onlyRelative() {
return new ComplementDate(Type.ONLY_RELATIVE);
}
public static ComplementDate onlyAbsolute() {
return new ComplementDate(Type.ONLY_ABSOLUTE);
}
2017-02-26 16:26:11 +00:00
public IRegex toRegex(String suffix) {
2023-11-27 17:41:15 +00:00
final DayPattern dayPattern = new DayPattern(suffix);
switch (type) {
case ONLY_ABSOLUTE:
2023-11-27 17:41:15 +00:00
return dayPattern.toRegex();
case ONLY_RELATIVE:
return new RegexOr(toRegexD(suffix), toRegexE(suffix));
}
2023-11-27 17:41:15 +00:00
return new RegexOr(dayPattern.toRegex(), toRegexD(suffix), toRegexE(suffix));
2017-03-12 17:22:02 +00:00
}
2019-02-09 21:56:24 +00:00
private IRegex toRegexD(String suffix) {
return new RegexConcat( //
new RegexLeaf("DCOUNT" + suffix, "([\\d]+)"), //
2019-06-26 19:24:49 +00:00
RegexLeaf.spaceOneOrMore(), //
new RegexLeaf("days?"), //
RegexLeaf.spaceOneOrMore(), //
new RegexLeaf("after"), //
RegexLeaf.spaceOneOrMore(), //
new RegexLeaf("start") //
2020-08-25 17:24:17 +00:00
);
2019-02-09 21:56:24 +00:00
}
private IRegex toRegexE(String suffix) {
return new RegexConcat( //
new RegexLeaf("[dD]\\+"), //
new RegexLeaf("ECOUNT" + suffix, "([\\d]+)") //
);
}
2020-08-25 17:24:17 +00:00
public Failable<Day> getMe(GanttDiagram system, RegexResult arg, String suffix) {
2023-11-27 17:41:15 +00:00
final DayPattern dayPattern = new DayPattern(suffix);
final Day result = dayPattern.getDay(arg);
2023-11-27 17:41:15 +00:00
if (result != null)
return Failable.ok(result);
if (arg.get("DCOUNT" + suffix, 0) != null)
2020-08-25 17:24:17 +00:00
return Failable.ok(resultD(system, arg, suffix));
if (arg.get("ECOUNT" + suffix, 0) != null)
return Failable.ok(resultE(system, arg, suffix));
2017-02-26 16:26:11 +00:00
throw new IllegalStateException();
}
private Day resultD(GanttDiagram system, RegexResult arg, String suffix) {
final int day = Integer.parseInt(arg.get("DCOUNT" + suffix, 0));
return system.getStartingDate().addDays(day);
}
private Day resultE(GanttDiagram system, RegexResult arg, String suffix) {
final int day = Integer.parseInt(arg.get("ECOUNT" + suffix, 0));
return system.getStartingDate().addDays(day);
}
2017-02-26 16:26:11 +00:00
}