ProcessSamplingUnderRefParam.cc
4.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
* ProcessSamplingUnderTimeList.cc
*
* Created on: Jul 25, 2014
* Author: AKKA IS
*/
#include <stdlib.h>
#include <string>
#include "ProcessSamplingUnderRefParam.hh"
#include "Parameter.hh"
#include "ParameterManager.hh"
#include "ParameterCreatorFromExpression.hh"
#include "Resampling.hh"
#include "ParamMgr.hh"
using namespace std;
using namespace boost;
using namespace log4cxx;
namespace AMDA {
namespace Parameters {
ProcessSamplingUnderRefParam::ProcessSamplingUnderRefParam(Parameter ¶meter) :
SingleParamProcess_CRTP(parameter), _paramRefInput(NULL) {
}
ProcessSamplingUnderRefParam::ProcessSamplingUnderRefParam(const ProcessSamplingUnderRefParam& pProcess, Parameter ¶meter)
: SingleParamProcess_CRTP(pProcess,parameter), _paramRefInput(pProcess._paramRefInput) {
}
ProcessSamplingUnderRefParam::~ProcessSamplingUnderRefParam() {
if (_refParameterSPtr != nullptr)
{
_refParameterSPtr->closeConnection(this);
}
}
void ProcessSamplingUnderRefParam::establishConnection() {
if (_refParameterSPtr != nullptr)
_refParameterSPtr->openConnection(this);
SingleParamProcess_CRTP::establishConnection();
}
TimeStamp ProcessSamplingUnderRefParam::init() {
/// Init input parameter
TimeStamp timeStamp = _parameterInput->init( this, _timeIntervalList);
/// Calibration information copy
Parameter::InfoList lInfoList = _parameterInput->getInfoList();
_parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end());
_paramInput = _parameterInput->getParamData(this).get();
// check reference parameter
if (_refParameterSPtr == nullptr) {
BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessSamplingUnderRefParam : cannot retrieve reference parameter ")));
}
timeStamp = std::max(timeStamp, _refParameterSPtr->init( this, _timeIntervalList));
_paramRefInput = _refParameterSPtr->getParamData(this).get();
double computedGapSize = _refParameterSPtr->getParameterManager().getComputedGapSize(_parameterInput->getGapThreshold(), _paramInput->getMinSampling());
// ProcessSamplingClassic _operation creation
Resampling::CreateResampling lCreateResampling(*this, _timeIntervalList,
*_paramInput, *_paramRefInput, computedGapSize, _parameterInput->getDataWriterTemplate()->useNearestValue());
_operation = lCreateResampling.getResampling();
static_cast<Resampling::ResamplingAbstract*>(_operation)->init();
/// Get result ParamData
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(static_cast<Resampling::ResamplingAbstract*>(_operation)->getSampling());
return timeStamp;
}
unsigned int ProcessSamplingUnderRefParam::write()
{
_paramRefInput = _refParameterSPtr->getParamData(this).get();
//ParamDataIndexInfo lRefParamDataIndexInfo = _refParameterSPtr->getAsync(this).get();
/*unsigned int nbDataBeforeCallProcess = _paramRefInput->getDataNumber();
ParamDataIndexInfo lRefParamDataIndexInfo;
bool _treatTerminated = false;
int ret = 0;
do {
lRefParamDataIndexInfo = _refParameterSPtr->getAsync(this).get();
if ( ! _treatTerminated ) {
ret = _paramRefInput->getDataNumber() - nbDataBeforeCallProcess;
// As we do not have output data, continue processing the input data
}
if ( lRefParamDataIndexInfo._nbDataToProcess == 0) {
_treatTerminated = true;
}
} while(ret == 0 && lRefParamDataIndexInfo._nbDataToProcess != 0);*/
return SingleParamProcess_CRTP::write();
}
/*
* @brief Get min sampling
*/
double ProcessSamplingUnderRefParam::getMinSampling()
{
if (_refParameterSPtr == nullptr)
return 0;
if (_refParameterSPtr->getDataWriterTemplate() == nullptr)
return 0;
return _refParameterSPtr->getDataWriterTemplate()->getMinSampling();
}
/**
* @overload SingleParamProcess_CRTP::updateInfo update parameter info in relation to the sampling process
*/
void ProcessSamplingUnderRefParam::updateInfo(Parameter & parameter)
{
LOG4CXX_DEBUG(_logger, "ProcessSamplingUnderRefParam::updateInfo - " << parameter.getId());
SingleParamProcess::updateInfo(parameter);
//Param info
AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(parameter.getInfoId());
if (paramInfo == nullptr)
return;
std::string processInfo = "Resampling of '";
processInfo += _parameterInput->getId();
processInfo += "' under times list of '";
processInfo += _refParameterSPtr->getId();
processInfo += "'";
if (_parameterInput->getDataWriterTemplate()->useNearestValue())
processInfo += ". Use nearest value.";
paramInfo->setProcessInfo(processInfo);
}
} /* namespace Parameters */
} /* namespace AMDA */