1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 15:40:48 +00:00
plantuml/src/net/sourceforge/plantuml/project/core/TaskImpl.java
2020-08-25 19:24:17 +02:00

274 lines
7.0 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* 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
*
* 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.project.core;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
import net.sourceforge.plantuml.Url;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.project.Load;
import net.sourceforge.plantuml.project.LoadPlanable;
import net.sourceforge.plantuml.project.PlanUtils;
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;
import net.sourceforge.plantuml.project.time.Wink;
public class TaskImpl extends AbstractTask implements Task, LoadPlanable {
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>();
private final LoadPlanable defaultPlan;
private final GCalendar calendar;
private boolean diamond;
private int completion = 100;
private Display note;
private Url url;
private CenterBorderColor colors;
public void setUrl(Url url) {
this.url = url;
}
public TaskImpl(TaskCode code, LoadPlanable defaultPlan, GCalendar calendar) {
super(code);
this.calendar = calendar;
this.defaultPlan = defaultPlan;
this.solver = new Solver(this);
setStart(new Wink(0));
setLoad(Load.inWinks(1));
}
public int getLoadAt(Wink instant) {
if (pausedDay.contains(instant)) {
return 0;
}
if (pausedDayOfWeek(instant)) {
return 0;
}
LoadPlanable result = defaultPlan;
if (resources.size() > 0) {
result = PlanUtils.multiply(defaultPlan, getRessourcePlan());
}
return result.getLoadAt(instant);
}
private boolean pausedDayOfWeek(Wink instant) {
for (DayOfWeek dayOfWeek : pausedDayOfWeek) {
if (calendar.toDayAsDate(instant).getDayOfWeek() == dayOfWeek) {
return true;
}
}
return false;
}
public int loadForResource(Resource res, Wink instant) {
if (resources.keySet().contains(res) && instant.compareTo(getStart()) >= 0
&& instant.compareTo(getEnd()) <= 0) {
if (res.isClosedAt(instant)) {
return 0;
}
return resources.get(res);
}
return 0;
}
public void addPause(Wink pause) {
this.pausedDay.add(pause);
}
public void addPause(DayOfWeek pause) {
this.pausedDayOfWeek.add(pause);
}
private LoadPlanable getRessourcePlan() {
if (resources.size() == 0) {
throw new IllegalStateException();
}
return new LoadPlanable() {
public int getLoadAt(Wink instant) {
int result = 0;
for (Map.Entry<Resource, Integer> ent : resources.entrySet()) {
final Resource res = ent.getKey();
if (res.isClosedAt(instant)) {
continue;
}
final int percentage = ent.getValue();
result += percentage;
}
return result;
}
};
}
public String getPrettyDisplay() {
if (resources.size() > 0) {
final StringBuilder result = new StringBuilder(code.getSimpleDisplay());
result.append(" ");
for (Iterator<Map.Entry<Resource, Integer>> it = resources.entrySet().iterator(); it.hasNext();) {
final Map.Entry<Resource, Integer> ent = it.next();
result.append("{");
result.append(ent.getKey().getName());
final int percentage = ent.getValue();
if (percentage != 100) {
result.append(":" + percentage + "%");
}
result.append("}");
if (it.hasNext()) {
result.append(" ");
}
}
return result.toString();
}
return code.getSimpleDisplay();
}
@Override
public String toString() {
return code.toString();
}
public String debug() {
return "" + getStart() + " ---> " + getEnd() + " [" + getLoad() + "]";
}
public TaskCode getCode() {
return code;
}
public Wink getStart() {
Wink result = (Wink) solver.getData(TaskAttribute.START);
while (getLoadAt(result) == 0) {
result = result.increment();
}
return result;
}
public Wink getEnd() {
return (Wink) solver.getData(TaskAttribute.END);
}
public Load getLoad() {
return (Load) solver.getData(TaskAttribute.LOAD);
}
public void setLoad(Load load) {
solver.setData(TaskAttribute.LOAD, load);
}
public void setStart(Wink start) {
solver.setData(TaskAttribute.START, start);
}
public void setEnd(Wink end) {
solver.setData(TaskAttribute.END, end);
}
public void setColors(CenterBorderColor colors) {
this.colors = colors;
}
public void addResource(Resource resource, int percentage) {
this.resources.put(resource, percentage);
}
public void setDiamond(boolean diamond) {
this.diamond = diamond;
}
public boolean isDiamond() {
return this.diamond;
}
public void setCompletion(int completion) {
this.completion = completion;
}
public final Url getUrl() {
return url;
}
public final CenterBorderColor getColors() {
return colors;
}
public final int getCompletion() {
return completion;
}
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;
}
}