1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-28 22:20:49 +00:00
plantuml/src/net/sourceforge/plantuml/project/core/TaskImpl.java
2021-04-07 20:02:23 +02:00

273 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.OpenClose;
import net.sourceforge.plantuml.project.PlanUtils;
import net.sourceforge.plantuml.project.lang.CenterBorderColor;
import net.sourceforge.plantuml.project.solver.Solver;
import net.sourceforge.plantuml.project.solver.SolverImpl;
import net.sourceforge.plantuml.project.time.Day;
import net.sourceforge.plantuml.project.time.DayOfWeek;
import net.sourceforge.plantuml.style.StyleBuilder;
public class TaskImpl extends AbstractTask implements Task, LoadPlanable {
private final SortedSet<Day> pausedDay = new TreeSet<Day>();
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 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(StyleBuilder styleBuilder, TaskCode code, OpenClose openClose) {
super(styleBuilder, code);
this.defaultPlan = openClose;
this.solver = new SolverImpl(this);
if (openClose.getCalendar() == null) {
setStart(Day.create(0));
} else {
setStart(openClose.getCalendar());
}
setLoad(Load.inWinks(1));
}
public int getLoadAt(Day 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(Day instant) {
for (DayOfWeek dayOfWeek : pausedDayOfWeek) {
if (instant.getDayOfWeek() == dayOfWeek) {
return true;
}
}
return false;
}
public int loadForResource(Resource res, Day 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(Day 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(Day 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(getCode().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 getCode().getSimpleDisplay();
}
@Override
public String toString() {
return getCode().toString();
}
public String debug() {
return "" + getStart() + " ---> " + getEnd() + " [" + getLoad() + "]";
}
public Day getStart() {
Day result = (Day) solver.getData(TaskAttribute.START);
while (getLoadAt(result) == 0) {
result = result.increment();
}
return result;
}
public Day getEnd() {
return (Day) 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(Day start) {
solver.setData(TaskAttribute.START, start);
}
public void setEnd(Day 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<Day> getAllPaused() {
final SortedSet<Day> result = new TreeSet<Day>(pausedDay);
for (DayOfWeek dayOfWeek : pausedDayOfWeek) {
addAll(result, dayOfWeek);
}
return Collections.unmodifiableCollection(result);
}
private void addAll(SortedSet<Day> result, DayOfWeek dayOfWeek) {
final Day start = getStart();
final Day end = getEnd();
for (Day current = start; current.compareTo(end) <= 0; current = current.increment()) {
if (current.getDayOfWeek() == dayOfWeek) {
result.add(current);
}
}
}
public void setNote(Display note) {
this.note = note;
}
public Display getNote() {
return note;
}
}