net.sf.mpxj.sdef.ProgressRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mpxj Show documentation
Show all versions of mpxj Show documentation
Library that provides facilities to allow project information to be manipulated in Java and .Net. Supports a range of data formats: Microsoft Project Exchange (MPX), Microsoft Project (MPP,MPT), Microsoft Project Data Interchange (MSPDI XML), Microsoft Project Database (MPD), Planner (XML), Primavera (PM XML, XER, and database), Asta Powerproject (PP, MDB), Asta Easyplan (PP), Phoenix Project Manager (PPX), FastTrack Schedule (FTS), and the Standard Data Exchange Format (SDEF).
/*
* file: ProgressRecord.java
* author: Jon Iles
* copyright: (c) Packwood Software 2019
* date: 01/07/2019
*/
/*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* This library is 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
package net.sf.mpxj.sdef;
import java.util.Date;
import net.sf.mpxj.Duration;
import net.sf.mpxj.Task;
import net.sf.mpxj.TimeUnit;
import net.sf.mpxj.common.NumberHelper;
/**
* SDEF progress record.
*/
class ProgressRecord extends AbstractSDEFRecord
{
@Override protected SDEFField[] getFieldDefinitions()
{
return FIELDS;
}
@Override public void process(Context context)
{
Double totalCost = getDouble(4);
Double costToDate = getDouble(5);
Double remainingCost = Double.valueOf(NumberHelper.getDouble(totalCost) - NumberHelper.getDouble(costToDate));
Duration totalFloat = getDuration(12);
if ("-".equals(getString(11)))
{
totalFloat = Duration.getInstance(-totalFloat.getDuration(), TimeUnit.DAYS);
}
Task task = context.getTask(getString(0));
task.setActualStart(getDate(1));
task.setActualFinish(getDate(2));
task.setRemainingDuration(getDuration(3));
task.setCost(totalCost);
task.setActualCost(costToDate);
task.setRemainingCost(remainingCost);
task.setStoredMaterial(getDouble(6));
task.setEarlyStart(getDate(7));
task.setEarlyFinish(getDate(8));
task.setLateStart(getDate(9));
task.setLateFinish(getDate(10));
task.setTotalSlack(totalFloat);
Date start = task.getActualStart() == null ? task.getEarlyStart() : task.getActualStart();
Date finish = task.getActualFinish() == null ? task.getEarlyFinish() : task.getActualFinish();
double percentComplete = 0;
if (task.getActualFinish() == null)
{
Duration duration = task.getDuration();
Duration remainingDuration = task.getRemainingDuration();
if (duration != null && remainingDuration != null)
{
double durationValue = duration.getDuration();
double remainingDurationValue = remainingDuration.getDuration();
if (durationValue != 0 && remainingDurationValue < durationValue)
{
percentComplete = ((durationValue - remainingDurationValue) * 100.0) / durationValue;
}
}
}
else
{
percentComplete = 100.0;
}
task.setStart(start);
task.setFinish(finish);
task.setPercentageComplete(Double.valueOf(percentComplete));
// Force calculation here to avoid later issues
task.getStartSlack();
task.getFinishSlack();
task.getCritical();
}
private static final SDEFField[] FIELDS = new SDEFField[]
{
new StringField("Activity ID", 10),
new DateField("Actual Start Date"),
new DateField("Actual Finish Date"),
new DurationField("Remaining Duration", 3),
new DoubleField("Activity Cost", 12),
new DoubleField("Cost to Date", 12),
new DoubleField("Stored Material", 12),
new DateField("Early Start Date"),
new DateField("Early Finish Date"),
new DateField("Late Start Date"),
new DateField("Late Finish Date"),
new StringField("Float Sign", 1),
new DurationField("Total Float", 3)
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy