Blame view

src/ExternLib/Shue/ProcessShue.cc 4.44 KB
5d3b0cd0   Hacene SI HADJ MOHAND   shue98 ok
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
/*
 * 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:   ProcessShue.cpp
 * Author: hacene
 * 
 * Created on December 31, 2020, 3:42 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 "ParamMgr.hh"
#include "ParameterCreatorFromExpression.hh"

#include "ProcessShue.hh"


using namespace std;
using namespace boost;
using namespace log4cxx;

namespace AMDA {
namespace Parameters {


ProcessShue::ProcessShue(Parameter &parameter) : SingleParamProcess_CRTP(parameter) {
}

ProcessShue::ProcessShue(const ProcessShue& pProcess, Parameter &parameter): SingleParamProcess_CRTP(pProcess, parameter) {
}

ProcessShue::~ProcessShue() {
    
    if (_inputImfParam != nullptr) {
		_inputImfParam->closeConnection(this);
	}
	if (_inputPswParam != nullptr) {
		_inputPswParam->closeConnection(this);
	}
     
}
 
void ProcessShue::establishConnection(){
   
    
if (_attributList.size() < 2) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessShue::parse require 3 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("ProcessShue::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("ProcessShue::parse cannot retrieve psw param")));
	}
	_inputPswParam->openConnection(this);


	SingleParamProcess::establishConnection();
     
  }
  
TimeStamp ProcessShue::init() {
   
  
                    _model98 = true;
                    if (_attributList.size() > 2 && _attributList[2] == "shue97")
                        _model98 = false;
5d3b0cd0   Hacene SI HADJ MOHAND   shue98 ok
88
                    
2cae24f0   Hacene SI HADJ MOHAND   shue 97 ok
89
                    _inGSE = true;
5d3b0cd0   Hacene SI HADJ MOHAND   shue98 ok
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
147
148
149
150
151
152
153
154
155
156
                     if (_attributList.size() > 3 && _attributList[3] == "GSM")
                        _inGSE = false;
                    
                        if (_attributList.size() > 4)
                        _type= _attributList[4];
    
                    
	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();

	ShueCreator lCreator(*this, *_paramInput, *lImfParamInput, *lPswParamInput, _inGSE,_model98, _type );
	_operation = lCreator.getOperation();	
	_paramData = ParamDataSPtr(_operation->getParamOutput());
	_paramData->setMinSampling(_paramInput->getMinSampling());
         
	return time;
}

unsigned int ProcessShue::write() {
	getImfData();
	getPswData();	
	return SingleParamProcess::write();
}

void ProcessShue::getImfData() {
	try {
		ParamDataIndexInfo lParamDataIndexInfo;
		lParamDataIndexInfo = _inputImfParam->getAsync(this).get();
		while ((!lParamDataIndexInfo._noMoreTimeInt && !lParamDataIndexInfo._timeIntToProcessChanged) || (lParamDataIndexInfo._nbDataToProcess > 0)) {
			reinterpret_cast<Shue::ShueBase*>(_operation)->pushImfData(lParamDataIndexInfo);
			if (lParamDataIndexInfo._timeIntToProcessChanged || lParamDataIndexInfo._noMoreTimeInt)
				break;
			lParamDataIndexInfo = _inputImfParam->getAsync(this).get();
		}
	}catch (...) {
		throw;
	}
}

void ProcessShue::getPswData() {
	try {
		ParamDataIndexInfo lParamDataIndexInfo;
		lParamDataIndexInfo = _inputPswParam->getAsync(this).get();
		while ((!lParamDataIndexInfo._noMoreTimeInt && !lParamDataIndexInfo._timeIntToProcessChanged) || (lParamDataIndexInfo._nbDataToProcess > 0)) {
			reinterpret_cast<Shue::ShueBase*>(_operation)->pushPswData(lParamDataIndexInfo);
			if (lParamDataIndexInfo._timeIntToProcessChanged || lParamDataIndexInfo._noMoreTimeInt)
				break;
			lParamDataIndexInfo = _inputPswParam->getAsync(this).get();
		}
	}catch (...) {
		throw;
	}
		
}
 

}
}