net.sourceforge.plantuml.project.solver.Solver3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.project.solver;
import net.sourceforge.plantuml.project.Load;
import net.sourceforge.plantuml.project.core.TaskAttribute;
import net.sourceforge.plantuml.project.core3.Histogram;
import net.sourceforge.plantuml.project.core3.HistogramSimple;
import net.sourceforge.plantuml.project.core3.TaskLoad;
import net.sourceforge.plantuml.project.core3.TaskLoadImpl;
import net.sourceforge.plantuml.project.time.Instant;
public class Solver3 extends AbstractSolver {
private final Histogram workLoad;
public Solver3(Histogram workLoad) {
this.workLoad = workLoad;
}
public TaskLoad solveForward(long totalLoad, long start) {
final HistogramSimple resultLoad = new HistogramSimple();
final TaskLoadImpl result = new TaskLoadImpl(resultLoad);
start = workLoad.getNext(start - 1);
result.setStart(start);
long currentTime = start;
while (totalLoad > 0) {
final long tmpWorkLoad = workLoad.getValueAt(currentTime);
final long nextChange = workLoad.getNext(currentTime);
final long duration = nextChange - currentTime;
if (duration <= 0)
throw new IllegalArgumentException();
final long partialLoad = duration * tmpWorkLoad;
resultLoad.put(currentTime, tmpWorkLoad);
if (partialLoad >= totalLoad) {
final long end = currentTime + totalLoad / tmpWorkLoad;
result.setEnd(end);
resultLoad.put(end, 0);
return result;
}
totalLoad -= partialLoad;
currentTime = nextChange;
}
throw new UnsupportedOperationException();
}
public TaskLoad solveBackward(long totalLoad, long end) {
throw new UnsupportedOperationException();
}
@Override
protected Instant computeEnd() {
Instant start = (Instant) values.get(TaskAttribute.START);
int fullLoad = ((Load) values.get(TaskAttribute.LOAD)).getFullLoad();
final TaskLoad taskLoad = solveBackward(fullLoad, start.getMillis());
return Instant.create(taskLoad.getEnd());
}
@Override
protected Instant computeStart() {
throw new UnsupportedOperationException();
}
}