Timestamp_Process.cc
1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* 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: InternalFields_CartProcess.cc
* Author: Furkan - AKKA I&S
*
* Created on July 11, 2022, 4:14 PM
*/
#include <stdlib.h>
#include <string>
#include "Operation.hh"
#include "ParameterManager.hh"
#include "ParameterCreatorFromExpression.hh"
#include "Timestamp_Process.hh"
#include "TimestampCreator.hh"
namespace AMDA
{
namespace Parameters
{
Timestamp_Process::Timestamp_Process(Parameter ¶meter) : SingleParamProcess_CRTP(parameter)
{
}
Timestamp_Process::Timestamp_Process(const Timestamp_Process &pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess, parameter)
{
}
TimeStamp Timestamp_Process::init()
{
TimeStamp timeStamp = _parameterInput->init(this, _timeIntervalList);
Parameter::InfoList lInfoList = _parameterInput->getInfoList();
_parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end());
_paramInput = _parameterInput->getParamData(this).get();
/* Creation of the operation */
TimestampCreator lCreator(*this, *_paramInput, false);
_operation = lCreator.getOperation();
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(_paramInput->getMinSampling());
return timeStamp;
}
Timestamp_Process::~Timestamp_Process()
{
}
}
}