Blame view

src/ExternLib/Timestamp/Timestamp_FromProcess.cc 1.87 KB
be29edb9   Erdogan Furkan   #6598 / #10557 / ...
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
57
58
59
60
61
62
63
/*
 * 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 <stdlib.h>
#include <string>

#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 &parameter) : SingleParamProcess_CRTP(parameter)
        {
        }

       Timestamp_FromProcess::Timestamp_FromProcess(const Timestamp_FromProcess &pProcess, Parameter &parameter) : 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()
        {
        }
    }
}