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

274 lines
7.0 KiB
Java
Raw Normal View History

2017-02-01 18:55:51 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, 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.Solver;
import net.sourceforge.plantuml.project.lang.CenterBorderColor;
import net.sourceforge.plantuml.project.time.Day;
import net.sourceforge.plantuml.project.time.DayOfWeek;
import net.sourceforge.plantuml.project.time.GCalendar;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.project.time.Wink;
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
2020-08-25 17:24:17 +00:00
private final SortedSet<Wink> pausedDay = new TreeSet<Wink>();
private final Set<DayOfWeek> pausedDayOfWeek = new HashSet<DayOfWeek>();
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;
2020-08-25 17:24:17 +00:00
private final GCalendar calendar;
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;
2020-08-25 17:24:17 +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
2020-08-25 17:24:17 +00:00
public TaskImpl(TaskCode code, LoadPlanable defaultPlan, GCalendar calendar) {
2020-03-18 10:50:02 +00:00
super(code);
2020-08-25 17:24:17 +00:00
this.calendar = calendar;
2018-04-06 20:36:30 +00:00
this.defaultPlan = defaultPlan;
2020-08-25 17:24:17 +00:00
this.solver = new Solver(this);
2020-02-18 21:24:31 +00:00
setStart(new Wink(0));
setLoad(Load.inWinks(1));
2018-04-06 20:36:30 +00:00
}
2020-02-18 21:24:31 +00:00
public int getLoadAt(Wink instant) {
2020-08-25 17:24:17 +00:00
if (pausedDay.contains(instant)) {
return 0;
}
if (pausedDayOfWeek(instant)) {
return 0;
}
2019-02-09 21:56:24 +00:00
LoadPlanable result = defaultPlan;
2020-08-25 17:24:17 +00:00
if (resources.size() > 0) {
2019-02-09 21:56:24 +00:00
result = PlanUtils.multiply(defaultPlan, getRessourcePlan());
2018-04-06 20:36:30 +00:00
}
2019-02-09 21:56:24 +00:00
return result.getLoadAt(instant);
2020-08-25 17:24:17 +00:00
}
private boolean pausedDayOfWeek(Wink instant) {
for (DayOfWeek dayOfWeek : pausedDayOfWeek) {
if (calendar.toDayAsDate(instant).getDayOfWeek() == dayOfWeek) {
return true;
}
}
return false;
2018-04-06 20:36:30 +00:00
}
2020-02-18 21:24:31 +00:00
public int loadForResource(Resource res, Wink 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) {
2019-02-09 21:56:24 +00:00
if (res.isClosedAt(instant)) {
2018-04-06 20:36:30 +00:00
return 0;
}
2020-08-25 17:24:17 +00:00
return resources.get(res);
2018-04-06 20:36:30 +00:00
}
return 0;
}
2020-08-25 17:24:17 +00:00
public void addPause(Wink pause) {
this.pausedDay.add(pause);
}
public void addPause(DayOfWeek pause) {
this.pausedDayOfWeek.add(pause);
}
2018-04-06 20:36:30 +00:00
private LoadPlanable getRessourcePlan() {
2020-08-25 17:24:17 +00:00
if (resources.size() == 0) {
2018-04-06 20:36:30 +00:00
throw new IllegalStateException();
}
return new LoadPlanable() {
2020-02-18 21:24:31 +00:00
public int getLoadAt(Wink 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();
if (res.isClosedAt(instant)) {
continue;
}
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) {
2018-04-06 20:36:30 +00:00
final StringBuilder result = new StringBuilder(code.getSimpleDisplay());
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();
if (percentage != 100) {
result.append(":" + percentage + "%");
}
2018-04-06 20:36:30 +00:00
result.append("}");
if (it.hasNext()) {
result.append(" ");
}
}
return result.toString();
}
return code.getSimpleDisplay();
2017-02-01 18:55:51 +00:00
}
@Override
public String toString() {
return code.toString();
}
public String debug() {
2018-04-06 20:36:30 +00:00
return "" + getStart() + " ---> " + getEnd() + " [" + getLoad() + "]";
2017-02-01 18:55:51 +00:00
}
public TaskCode getCode() {
return code;
}
2020-02-18 21:24:31 +00:00
public Wink getStart() {
Wink result = (Wink) solver.getData(TaskAttribute.START);
2018-04-06 20:36:30 +00:00
while (getLoadAt(result) == 0) {
result = result.increment();
}
return result;
2017-02-01 18:55:51 +00:00
}
2020-02-18 21:24:31 +00:00
public Wink getEnd() {
return (Wink) 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-02-18 21:24:31 +00:00
public void setStart(Wink start) {
2017-02-01 18:55:51 +00:00
solver.setData(TaskAttribute.START, start);
}
2020-02-18 21:24:31 +00:00
public void setEnd(Wink end) {
2017-02-01 18:55:51 +00:00
solver.setData(TaskAttribute.END, end);
}
2020-08-25 17:24:17 +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() {
2020-03-18 10:50:02 +00:00
return colors;
}
public final int getCompletion() {
return completion;
}
2020-08-25 17:24:17 +00:00
public final Collection<Wink> getAllPaused() {
final SortedSet<Wink> result = new TreeSet<Wink>(pausedDay);
for (DayOfWeek dayOfWeek : pausedDayOfWeek) {
addAll(result, dayOfWeek);
}
return Collections.unmodifiableCollection(result);
}
private void addAll(SortedSet<Wink> result, DayOfWeek dayOfWeek) {
final Day start = calendar.toDayAsDate(getStart());
final Day end = calendar.toDayAsDate(getEnd());
for (Day current = start; current.compareTo(end) <= 0; current = current.next()) {
if (current.getDayOfWeek() == dayOfWeek) {
result.add(calendar.fromDayAsDate(current));
}
}
}
public void setNote(Display note) {
this.note = note;
}
public Display getNote() {
return note;
}
2017-02-01 18:55:51 +00:00
}