Package cambio.simulator.export
Class AccumulativeDataPointReporter
java.lang.Object
cambio.simulator.export.MiSimReporter<AsyncMultiColumnReportWriter>
cambio.simulator.export.MultiDataPointReporter
cambio.simulator.export.BucketMultiDataPointReporter
cambio.simulator.export.AccumulativeDataPointReporter
Accumulates numeric data points. Accumulation is done by adding up all given data per TimeInstant.
Since this Reporter does not know when accumulation The data will be converted to double.
- Author:
- Lion Wagner
-
Field Summary
Fields inherited from class cambio.simulator.export.BucketMultiDataPointReporter
bucketingFunction, CEIL_FUNCTION, IDENTITY_FUNCTION
Fields inherited from class cambio.simulator.export.MiSimReporter
datasetsPrefix, model, reportBasePath
-
Constructor Summary
ConstructorsConstructorDescriptionAccumulativeDataPointReporter
(desmoj.core.simulator.Model model) Constructs a new data point reporter.AccumulativeDataPointReporter
(desmoj.core.simulator.Model model, UnaryOperator<desmoj.core.simulator.TimeInstant> bucketFunction) Constructs a new data point reporter.AccumulativeDataPointReporter
(String datasetsPrefix, desmoj.core.simulator.Model model) Constructs a new data point reporter.AccumulativeDataPointReporter
(String datasetsPrefix, desmoj.core.simulator.Model model, UnaryOperator<desmoj.core.simulator.TimeInstant> bucketFunction) Constructs a new data point reporter. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addDatapoint
(String dataSetName, desmoj.core.simulator.TimeInstant when, Number data) final <T> void
addDatapoint
(String dataSetName, desmoj.core.simulator.TimeInstant when, T... data) Adds a new datapoint to the given dataset.protected AsyncMultiColumnReportWriter
createWriter
(Path datasetPath, String[] headers) void
Finalizes the report.void
flush()
Writes all accumulated data-points to disk.void
Writes the given dataset to disk.void
Writes the given TimeInstant (timestamp) of a specific dataset to disk.void
registerDefaultHeader
(String dataSetName, String... headers) Changes the headers of the given dataset.Methods inherited from class cambio.simulator.export.MiSimReporter
checkArgumentsAreNotNull, deregister, getWriter, toString
-
Constructor Details
-
AccumulativeDataPointReporter
public AccumulativeDataPointReporter(desmoj.core.simulator.Model model) Constructs a new data point reporter.- See Also:
-
AccumulativeDataPointReporter
Constructs a new data point reporter.- See Also:
-
AccumulativeDataPointReporter
public AccumulativeDataPointReporter(desmoj.core.simulator.Model model, UnaryOperator<desmoj.core.simulator.TimeInstant> bucketFunction) Constructs a new data point reporter.- See Also:
-
AccumulativeDataPointReporter
public AccumulativeDataPointReporter(String datasetsPrefix, desmoj.core.simulator.Model model, UnaryOperator<desmoj.core.simulator.TimeInstant> bucketFunction) Constructs a new data point reporter.- See Also:
-
-
Method Details
-
addDatapoint
-
addDatapoint
@SafeVarargs public final <T> void addDatapoint(String dataSetName, desmoj.core.simulator.TimeInstant when, T... data) Description copied from class:MultiDataPointReporter
Adds a new datapoint to the given dataset.- Overrides:
addDatapoint
in classBucketMultiDataPointReporter
- Type Parameters:
T
- type of the data that should be logged.- Parameters:
dataSetName
- name of the dataset to which the datapoint should be addedwhen
- point in simulation time to which the datapoint is associated todata
- data that should be logged
-
flush
public void flush()Writes all accumulated data-points to disk. -
flush
Writes the given dataset to disk. -
flush
Writes the given TimeInstant (timestamp) of a specific dataset to disk. -
finalizeReport
public void finalizeReport()Description copied from class:MiSimReporter
Finalizes the report. This method is called automatically by theSimulationEndEvent
. This will flush all writers and deregister this reporter.- Overrides:
finalizeReport
in classMiSimReporter<AsyncMultiColumnReportWriter>
- See Also:
-
registerDefaultHeader
Description copied from class:MiSimReporter
Changes the headers of the given dataset. This can only be done once and has to be done before the first write- Overrides:
registerDefaultHeader
in classMiSimReporter<AsyncMultiColumnReportWriter>
- Parameters:
dataSetName
- name of the dataset for which the header should be changedheaders
- new headers for the dataset
-
createWriter
protected AsyncMultiColumnReportWriter createWriter(Path datasetPath, String[] headers) throws IOException - Overrides:
createWriter
in classMultiDataPointReporter
- Throws:
IOException
-