ProcessShue98.cc
4.35 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
/*
* 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: ProcessShue98.cc
* Author: hacene
*
* Created on December 14, 2020, 3:21 PM
*/
#include <stdlib.h>
#include <string>
#include <boost/lexical_cast.hpp>
#include "DicError.hh"
#include "AMDA_exception.hh"
#include "Operation.hh"
#include "ParameterManager.hh"
#include "ProcessShue98.hh"
#include "ParameterCreatorFromExpression.hh"
//#include "Shue98.hh"
using namespace std;
using namespace boost;
using namespace log4cxx;
namespace AMDA {
namespace Parameters {
ProcessShue98::ProcessShue98(Parameter ¶meter, bool inGSE, const std::string& processType) : SingleParamProcess_CRTP(parameter),
_inGSE(inGSE),_type(processType) {
}
ProcessShue98::ProcessShue98(const ProcessShue98& pProcess,Parameter ¶meter) :SingleParamProcess_CRTP(pProcess, parameter), _inGSE(pProcess._inGSE),
_type(pProcess._type) {
}
ProcessShue98::~ProcessShue98() {
if (_inputImfParam != nullptr) {
_inputImfParam->closeConnection(this);
}
if (_inputPswParam != nullptr) {
_inputPswParam->closeConnection(this);
}
}
void ProcessShue98::establishConnection() {
if (_attributList.size() != 2) {
BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessShue98::parse require 2 attributes'")));
}
//Imf parameter
_inputImfParam = _parameter.getParameterManager().getParameter(_attributList[0]);
if (_inputImfParam == nullptr) {
BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessShue98::parse cannot retrieve imf param")));
}
_inputImfParam->openConnection(this);
//Psw parameter
_inputPswParam = _parameter.getParameterManager().getParameter(_attributList[1]);
if (_inputPswParam == nullptr) {
BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessShue98::parse cannot retrieve psw param")));
}
_inputPswParam->openConnection(this);
SingleParamProcess::establishConnection();
}
TimeStamp ProcessShue98::init() {
TimeStamp time = _parameterInput->init( this, _timeIntervalList);
_inputImfParam->init( this, _timeIntervalList);
ParamData* lImfParamInput = _inputImfParam->getParamData(this).get();
_inputPswParam->init( this, _timeIntervalList);
ParamData* lPswParamInput = _inputPswParam->getParamData(this).get();
_paramInput = _parameterInput->getParamData(this).get();
Shue98Creator lCreator(*this, *_paramInput, *lImfParamInput, *lPswParamInput, _inGSE, _type);
_operation = lCreator.getOperation();
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(_paramInput->getMinSampling());
return time;
return time;
}
unsigned int ProcessShue98::write() {
getImfData();
getPswData();
return SingleParamProcess::write();
}
/*
void ProcessShue98::getImfData() {
try {
ParamDataIndexInfo lParamDataIndexInfo;
lParamDataIndexInfo = _inputImfParam->getAsync(this).get();
while ((!lParamDataIndexInfo._noMoreTimeInt && !lParamDataIndexInfo._timeIntToProcessChanged) || (lParamDataIndexInfo._nbDataToProcess > 0)) {
reinterpret_cast<Shue98::Shue98Base*>(_operation)->pushImfData(lParamDataIndexInfo);
if (lParamDataIndexInfo._timeIntToProcessChanged || lParamDataIndexInfo._noMoreTimeInt)
break;
lParamDataIndexInfo = _inputImfParam->getAsync(this).get();
}
}catch (...) {
throw;
}
}
void ProcessShue98::getPswData() {
try {
ParamDataIndexInfo lParamDataIndexInfo;
lParamDataIndexInfo = _inputPswParam->getAsync(this).get();
while ((!lParamDataIndexInfo._noMoreTimeInt && !lParamDataIndexInfo._timeIntToProcessChanged) || (lParamDataIndexInfo._nbDataToProcess > 0)) {
reinterpret_cast<Shue98::Shue98Base*>(_operation)->pushPswData(lParamDataIndexInfo);
if (lParamDataIndexInfo._timeIntToProcessChanged || lParamDataIndexInfo._noMoreTimeInt)
break;
lParamDataIndexInfo = _inputPswParam->getAsync(this).get();
}
}catch (...) {
throw;
}
}
* */
ProcessShue98PosGSM::ProcessShue98PosGSM(Parameter ¶meter) : ProcessShue98(parameter,false,"pos") {
}
ProcessShue98PosGSE::ProcessShue98PosGSE(Parameter ¶meter) : ProcessShue98(parameter,true,"pos") {
}
}
}