plantuml/src/net/sourceforge/plantuml/project/core/TaskImpl.java

290 lines
7.2 KiB
Java
Raw Normal View History

2017-02-01 18:55:51 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2017-02-01 18:55:51 +00:00
*
* Project Info: http://plantuml.com
*
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
*
2017-02-01 18:55:51 +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.core;
2017-02-01 18:55:51 +00:00
2020-08-25 17:24:17 +00:00
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
2018-04-06 20:36:30 +00:00
import java.util.Iterator;
2019-02-09 21:56:24 +00:00
import java.util.LinkedHashMap;
import java.util.Map;
2020-08-25 17:24:17 +00:00
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
2018-04-06 20:36:30 +00:00
2020-03-03 22:29:34 +00:00
import net.sourceforge.plantuml.Url;
2020-08-25 17:24:17 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
2020-02-18 21:24:31 +00:00
import net.sourceforge.plantuml.project.Load;
import net.sourceforge.plantuml.project.LoadPlanable;
import net.sourceforge.plantuml.project.PlanUtils;
2020-08-25 17:24:17 +00:00
import net.sourceforge.plantuml.project.lang.CenterBorderColor;
2020-11-21 17:33:24 +00:00
import net.sourceforge.plantuml.project.solver.Solver;
import net.sourceforge.plantuml.project.solver.SolverImpl;
2020-08-25 17:24:17 +00:00
import net.sourceforge.plantuml.project.time.Day;
import net.sourceforge.plantuml.project.time.DayOfWeek;
2021-04-07 18:02:23 +00:00
import net.sourceforge.plantuml.style.StyleBuilder;
2020-02-18 21:24:31 +00:00
2020-03-18 10:50:02 +00:00
public class TaskImpl extends AbstractTask implements Task, LoadPlanable {
2017-02-01 18:55:51 +00:00
2021-05-14 08:42:57 +00:00
private final SortedSet<Day> pausedDay = new TreeSet<>();
private final Set<DayOfWeek> pausedDayOfWeek = new HashSet<>();
2020-08-25 17:24:17 +00:00
private final Solver solver;
private final Map<Resource, Integer> resources = new LinkedHashMap<Resource, Integer>();
2018-04-06 20:36:30 +00:00
private final LoadPlanable defaultPlan;
2019-03-29 22:14:07 +00:00
private boolean diamond;
2020-03-18 10:50:02 +00:00
2020-08-25 17:24:17 +00:00
private int completion = 100;
private Display note;
2020-03-03 22:29:34 +00:00
private Url url;
2021-07-25 10:41:36 +00:00
private CenterBorderColor[] colors;
2020-03-03 22:29:34 +00:00
public void setUrl(Url url) {
this.url = url;
}
2017-02-01 18:55:51 +00:00
2022-08-17 17:34:24 +00:00
public TaskImpl(StyleBuilder styleBuilder, TaskCode code, LoadPlanable plan, Day startingDay) {
2021-04-07 18:02:23 +00:00
super(styleBuilder, code);
2022-08-17 17:34:24 +00:00
this.defaultPlan = plan;
2020-11-21 17:33:24 +00:00
this.solver = new SolverImpl(this);
2022-08-17 17:34:24 +00:00
if (startingDay == null)
2020-09-30 20:57:58 +00:00
setStart(Day.create(0));
2022-08-17 17:34:24 +00:00
else
setStart(startingDay);
2020-02-18 21:24:31 +00:00
setLoad(Load.inWinks(1));
2018-04-06 20:36:30 +00:00
}
2020-09-30 20:57:58 +00:00
public int getLoadAt(Day instant) {
2022-08-17 17:34:24 +00:00
if (isPaused(instant))
2020-08-25 17:24:17 +00:00
return 0;
2019-02-09 21:56:24 +00:00
LoadPlanable result = defaultPlan;
2022-08-17 17:34:24 +00:00
if (resources.size() > 0)
2022-10-05 20:32:57 +00:00
result = PlanUtils.multiply(defaultPlan, getResourcePlan());
2022-08-17 17:34:24 +00:00
2019-02-09 21:56:24 +00:00
return result.getLoadAt(instant);
2020-08-25 17:24:17 +00:00
}
2021-08-30 17:13:54 +00:00
private boolean isPaused(Day instant) {
2022-08-17 17:34:24 +00:00
if (pausedDay.contains(instant))
2021-08-30 17:13:54 +00:00
return true;
2022-08-17 17:34:24 +00:00
if (pausedDayOfWeek(instant))
2021-08-30 17:13:54 +00:00
return true;
2022-08-17 17:34:24 +00:00
2021-08-30 17:13:54 +00:00
return false;
}
2020-09-30 20:57:58 +00:00
private boolean pausedDayOfWeek(Day instant) {
2022-08-17 17:34:24 +00:00
for (DayOfWeek dayOfWeek : pausedDayOfWeek)
if (instant.getDayOfWeek() == dayOfWeek)
2020-08-25 17:24:17 +00:00
return true;
2022-08-17 17:34:24 +00:00
2020-08-25 17:24:17 +00:00
return false;
2018-04-06 20:36:30 +00:00
}
2020-09-30 20:57:58 +00:00
public int loadForResource(Resource res, Day instant) {
2020-08-25 17:24:17 +00:00
if (resources.keySet().contains(res) && instant.compareTo(getStart()) >= 0
2020-03-03 22:29:34 +00:00
&& instant.compareTo(getEnd()) <= 0) {
2022-08-17 17:34:24 +00:00
if (isPaused(instant))
2021-08-30 17:13:54 +00:00
return 0;
2022-08-17 17:34:24 +00:00
if (res.isClosedAt(instant))
2018-04-06 20:36:30 +00:00
return 0;
2022-08-17 17:34:24 +00:00
2020-08-25 17:24:17 +00:00
return resources.get(res);
2018-04-06 20:36:30 +00:00
}
return 0;
}
2020-09-30 20:57:58 +00:00
public void addPause(Day pause) {
2020-08-25 17:24:17 +00:00
this.pausedDay.add(pause);
}
public void addPause(DayOfWeek pause) {
this.pausedDayOfWeek.add(pause);
}
2022-10-05 20:32:57 +00:00
private LoadPlanable getResourcePlan() {
2022-08-17 17:34:24 +00:00
if (resources.size() == 0)
2018-04-06 20:36:30 +00:00
throw new IllegalStateException();
2022-08-17 17:34:24 +00:00
2018-04-06 20:36:30 +00:00
return new LoadPlanable() {
2020-09-30 20:57:58 +00:00
public int getLoadAt(Day instant) {
2018-04-06 20:36:30 +00:00
int result = 0;
2020-08-25 17:24:17 +00:00
for (Map.Entry<Resource, Integer> ent : resources.entrySet()) {
2019-02-09 21:56:24 +00:00
final Resource res = ent.getKey();
2022-08-17 17:34:24 +00:00
if (res.isClosedAt(instant))
2019-02-09 21:56:24 +00:00
continue;
2022-08-17 17:34:24 +00:00
2019-02-09 21:56:24 +00:00
final int percentage = ent.getValue();
result += percentage;
2018-04-06 20:36:30 +00:00
}
return result;
}
};
}
public String getPrettyDisplay() {
2020-08-25 17:24:17 +00:00
if (resources.size() > 0) {
2021-04-07 18:02:23 +00:00
final StringBuilder result = new StringBuilder(getCode().getSimpleDisplay());
2018-04-06 20:36:30 +00:00
result.append(" ");
2020-08-25 17:24:17 +00:00
for (Iterator<Map.Entry<Resource, Integer>> it = resources.entrySet().iterator(); it.hasNext();) {
2019-02-09 21:56:24 +00:00
final Map.Entry<Resource, Integer> ent = it.next();
2018-04-06 20:36:30 +00:00
result.append("{");
2019-02-09 21:56:24 +00:00
result.append(ent.getKey().getName());
final int percentage = ent.getValue();
2022-08-17 17:34:24 +00:00
if (percentage != 100)
2019-02-09 21:56:24 +00:00
result.append(":" + percentage + "%");
2022-08-17 17:34:24 +00:00
2018-04-06 20:36:30 +00:00
result.append("}");
2022-08-17 17:34:24 +00:00
if (it.hasNext())
2018-04-06 20:36:30 +00:00
result.append(" ");
2022-08-17 17:34:24 +00:00
2018-04-06 20:36:30 +00:00
}
return result.toString();
}
2021-04-07 18:02:23 +00:00
return getCode().getSimpleDisplay();
2017-02-01 18:55:51 +00:00
}
@Override
public String toString() {
2021-04-07 18:02:23 +00:00
return getCode().toString();
2017-02-01 18:55:51 +00:00
}
public String debug() {
2018-04-06 20:36:30 +00:00
return "" + getStart() + " ---> " + getEnd() + " [" + getLoad() + "]";
2017-02-01 18:55:51 +00:00
}
2020-09-30 20:57:58 +00:00
public Day getStart() {
Day result = (Day) solver.getData(TaskAttribute.START);
2022-10-05 20:32:57 +00:00
if (diamond == false)
while (getLoadAt(result) == 0)
result = result.increment();
2022-08-17 17:34:24 +00:00
2018-04-06 20:36:30 +00:00
return result;
2017-02-01 18:55:51 +00:00
}
2020-09-30 20:57:58 +00:00
public Day getEnd() {
return (Day) solver.getData(TaskAttribute.END);
2017-02-01 18:55:51 +00:00
}
2018-04-06 20:36:30 +00:00
public Load getLoad() {
return (Load) solver.getData(TaskAttribute.LOAD);
}
public void setLoad(Load load) {
solver.setData(TaskAttribute.LOAD, load);
2017-02-01 18:55:51 +00:00
}
2020-09-30 20:57:58 +00:00
public void setStart(Day start) {
2017-02-01 18:55:51 +00:00
solver.setData(TaskAttribute.START, start);
}
2020-09-30 20:57:58 +00:00
public void setEnd(Day end) {
2017-02-01 18:55:51 +00:00
solver.setData(TaskAttribute.END, end);
}
2021-07-25 10:41:36 +00:00
public void setColors(CenterBorderColor... colors) {
2017-02-01 18:55:51 +00:00
this.colors = colors;
}
2019-02-09 21:56:24 +00:00
public void addResource(Resource resource, int percentage) {
2020-08-25 17:24:17 +00:00
this.resources.put(resource, percentage);
2018-04-06 20:36:30 +00:00
}
2019-03-29 22:14:07 +00:00
public void setDiamond(boolean diamond) {
this.diamond = diamond;
}
public boolean isDiamond() {
return this.diamond;
}
2020-03-03 22:29:34 +00:00
2020-02-18 21:24:31 +00:00
public void setCompletion(int completion) {
this.completion = completion;
}
2019-03-29 22:14:07 +00:00
2020-03-18 10:50:02 +00:00
public final Url getUrl() {
return url;
}
2020-08-25 17:24:17 +00:00
public final CenterBorderColor getColors() {
2022-08-17 17:34:24 +00:00
if (colors == null)
2021-07-25 10:41:36 +00:00
return null;
2022-08-17 17:34:24 +00:00
if (colors.length == 1)
2021-07-25 10:41:36 +00:00
return colors[0];
2022-08-17 17:34:24 +00:00
2021-08-30 17:13:54 +00:00
return colors[0].unlinearTo(colors[1], completion);
2020-03-18 10:50:02 +00:00
}
public final int getCompletion() {
return completion;
}
2020-09-30 20:57:58 +00:00
public final Collection<Day> getAllPaused() {
2021-05-14 08:42:57 +00:00
final SortedSet<Day> result = new TreeSet<>(pausedDay);
2022-08-17 17:34:24 +00:00
for (DayOfWeek dayOfWeek : pausedDayOfWeek)
2020-08-25 17:24:17 +00:00
addAll(result, dayOfWeek);
2022-08-17 17:34:24 +00:00
2020-08-25 17:24:17 +00:00
return Collections.unmodifiableCollection(result);
}
2020-09-30 20:57:58 +00:00
private void addAll(SortedSet<Day> result, DayOfWeek dayOfWeek) {
final Day start = getStart();
final Day end = getEnd();
2022-08-17 17:34:24 +00:00
for (Day current = start; current.compareTo(end) <= 0; current = current.increment())
if (current.getDayOfWeek() == dayOfWeek)
2020-09-30 20:57:58 +00:00
result.add(current);
2022-08-17 17:34:24 +00:00
2020-08-25 17:24:17 +00:00
}
public void setNote(Display note) {
this.note = note;
}
public Display getNote() {
return note;
}
2022-08-17 17:34:24 +00:00
public LoadPlanable getDefaultPlan() {
return defaultPlan;
}
2017-02-01 18:55:51 +00:00
}