decodes.hdb.algo.BeginofPeriodAlg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
package decodes.hdb.algo;
import java.util.Date;
import ilex.var.NamedVariableList;
import ilex.var.NamedVariable;
import decodes.tsdb.DbAlgorithmExecutive;
import decodes.tsdb.DbCompException;
import decodes.tsdb.DbIoException;
import decodes.tsdb.VarFlags;
// this new import was added by M. Bogner Aug 2012 for the 3.0 CP upgrade project
import decodes.tsdb.algo.AWAlgoType;
// this new import was added by M. Bogner March 2013 for the 5.3 CP upgrade project
// new class handles surrogate keys as an object
import decodes.sql.DbKey;
//AW:IMPORTS
// Place an import statements you need here.
import decodes.tsdb.ParmRef;
//AW:IMPORTS_END
//AW:JAVADOC
/**
Type a javadoc-style comment describing the algorithm class.
*/
//AW:JAVADOC_END
public class BeginofPeriodAlg
extends decodes.tsdb.algo.AW_AlgorithmBase
{
//AW:INPUTS
public double input; //AW:TYPECODE=i
String _inputNames[] = { "input" };
//AW:INPUTS_END
//AW:LOCALVARS
// Enter any local class variables needed by the algorithm.
double value_out;
int count = 0;
boolean do_setoutput = true;
Date date_out;
//AW:LOCALVARS_END
//AW:OUTPUTS
public NamedVariable output = new NamedVariable("output", 0);
String _outputNames[] = { "output" };
//AW:OUTPUTS_END
//AW:PROPERTIES
public long req_window_period = 0;
public long desired_window_period = 0;
public String validation_flag = "";
String _propertyNames[] = { "req_window_period", "desired_window_period", "validation_flag" };
//AW:PROPERTIES_END
// Allow javac to generate a no-args constructor.
/**
* Algorithm-specific initialization provided by the subclass.
*/
protected void initAWAlgorithm( )
throws DbCompException
{
//AW:INIT
_awAlgoType = AWAlgoType.AGGREGATING;
_aggPeriodVarRoleName = "output";
//AW:INIT_END
//AW:USERINIT
// Code here will be run once, after the algorithm object is created.
//AW:USERINIT_END
}
/**
* This method is called once before iterating all time slices.
*/
protected void beforeTimeSlices()
throws DbCompException
{
//AW:BEFORE_TIMESLICES
// This code will be executed once before each group of time slices.
// For TimeSlice algorithms this is done once before all slices.
// For Aggregating algorithms, this is done before each aggregate
// period.
count = 0;
//AW:BEFORE_TIMESLICES_END
}
/**
* Do the algorithm for a single time slice.
* AW will fill in user-supplied code here.
* Base class will set inputs prior to calling this method.
* User code should call one of the setOutput methods for a time-slice
* output variable.
*
* @throw DbCompException (or subclass thereof) if execution of this
* algorithm is to be aborted.
*/
protected void doAWTimeSlice()
throws DbCompException
{
//AW:TIMESLICE
// Enter code to be executed at each time-slice.
if ((count == 0) && (!isMissing(input)))
{
debug3("BeginofPeriodAlg: FOUND first record");
value_out = input;
date_out = _timeSliceBaseTime;
count++;
}
//AW:TIMESLICE_END
}
/**
* This method is called once after iterating all time slices.
*/
protected void afterTimeSlices()
{
//AW:AFTER_TIMESLICES
// This code will be executed once after each group of time slices.
// For TimeSlice algorithms this is done once after all slices.
// For Aggregating algorithms, this is done after each aggregate
// period.
// now if there is no record s to evaluate then delete if it exists and return
if (count == 0)
{
deleteOutput(output);
return;
}
long milly_diff = date_out.getTime() - _aggregatePeriodBegin.getTime();
long milly_window = 0;
ParmRef parmRef = getParmRef("output");
if (parmRef == null) warning("Unknown aggregate control output variable 'OUTPUT'");
String intstr = parmRef.compParm.getInterval();
if (intstr.equalsIgnoreCase("hour"))
milly_window = req_window_period * (MS_PER_HOUR / 60L);
else if (intstr.equalsIgnoreCase("day"))
milly_window = req_window_period * MS_PER_HOUR;
else if (intstr.equalsIgnoreCase("month"))
milly_window = req_window_period * MS_PER_DAY;
else if (intstr.equalsIgnoreCase("year"))
milly_window = req_window_period * MS_PER_DAY * 31;
else if (intstr.equalsIgnoreCase("wy"))
milly_window = req_window_period * MS_PER_DAY * 31;
if ((milly_diff > milly_window) && (req_window_period != 0))
{
do_setoutput = false;
debug1("BeginofPeriodAlg: NO OUTPUT: " + _aggregatePeriodBegin + " SDI:" + getSDI("input"));
}
// now check to see if record within desired window
if (intstr.equalsIgnoreCase("hour"))
milly_window = desired_window_period * (MS_PER_HOUR / 60L);
else if (intstr.equalsIgnoreCase("day"))
milly_window = desired_window_period * MS_PER_HOUR;
else if (intstr.equalsIgnoreCase("month"))
milly_window = desired_window_period * MS_PER_DAY;
else if (intstr.equalsIgnoreCase("year"))
milly_window = desired_window_period * MS_PER_DAY * 31;
else if (intstr.equalsIgnoreCase("wy"))
milly_window = desired_window_period * MS_PER_DAY * 31;
if ((milly_diff > milly_window) && (desired_window_period != 0))
{
// set the data flags to w
setHdbDerivationFlag(output,"w");
}
debug3("BeginofPeriodAlg: WINDOW: " + milly_window + " DIFF: " + milly_diff + "PERIOD: " + req_window_period);
if (do_setoutput)
{
/* added to allow users to automatically set the Validation column */
if (validation_flag.length() > 0) setHdbValidationFlag(output,validation_flag.charAt(1));
debug3("BeginofPeriodAlg: SETTING OUTPUT: DOING A SETOutput");
setOutput(output,value_out);
}
// now if there is no record to output then delete if it exists
if (!do_setoutput)
{
deleteOutput(output);
}
//AW:AFTER_TIMESLICES_END
}
/**
* Required method returns a list of all input time series names.
*/
public String[] getInputNames()
{
return _inputNames;
}
/**
* Required method returns a list of all output time series names.
*/
public String[] getOutputNames()
{
return _outputNames;
}
/**
* Required method returns a list of properties that have meaning to
* this algorithm.
*/
public String[] getPropertyNames()
{
return _propertyNames;
}
}