/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: Timestamp_FromProcess.cc * Author: Furkan - AKKA I&S * * Created on Septemner 19, 2022, 4:14 PM */ #include #include #include "Operation.hh" #include "ParameterManager.hh" #include "ParameterCreatorFromExpression.hh" #include "Timestamp_FromProcess.hh" #include "TimestampCreator.hh" namespace AMDA { namespace Parameters { Timestamp_FromProcess::Timestamp_FromProcess(Parameter ¶meter) : SingleParamProcess_CRTP(parameter) { } Timestamp_FromProcess::Timestamp_FromProcess(const Timestamp_FromProcess &pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess, parameter) { } TimeStamp Timestamp_FromProcess::init() { TimeStamp timeStamp = _parameterInput->init(this, _timeIntervalList); Parameter::InfoList lInfoList = _parameterInput->getInfoList(); _parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end()); _paramInput = _parameterInput->getParamData(this).get(); /* Get the value of the time from witch we need to start */ if (_attributList.size() == 1) { _timeFrom = std::stod(_attributList[0]) ; } /* Creation of the operation */ TimestampCreator lCreator(*this, *_paramInput, true, _timeFrom); _operation = lCreator.getOperation(); _paramData = ParamDataSPtr(_operation->getParamOutput()); _paramData->setMinSampling(_paramInput->getMinSampling()); return timeStamp; } Timestamp_FromProcess::~Timestamp_FromProcess() { } } }