Blame view

src/ExternLib/SlidingAverage/SlidingAverageProcess.cc 4.14 KB
fbe3c2bb   Benjamin Renard   First commit
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
/*
 * SlidingAverageProcess.cc
 *
 *  Created on: Dec 12, 2012
 *      Author: f.casimir
 */
#include <stdlib.h>
#include <string>

#include "Operation.hh"
#include "ParameterManager.hh"
#include "SlidingAverageProcess.hh"
#include "SlidingAverageCreator.hh"
#include "ParameterCreatorFromExpression.hh"

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

namespace AMDA {
namespace Parameters {

  SlidingAverageProcess::SlidingAverageProcess(Parameter &parameter)
  : SingleParamProcess_CRTP(parameter),
    _SlidingAverageTime(0.0) {
  }

  SlidingAverageProcess::SlidingAverageProcess(const SlidingAverageProcess& pProcess, Parameter &parameter)
    : SingleParamProcess_CRTP(pProcess,parameter),
      _SlidingAverageTime(pProcess._SlidingAverageTime) {
  }

  SlidingAverageProcess::~SlidingAverageProcess() {
  }

TimeStamp SlidingAverageProcess::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 Sampling
	if (_attributList.size() != 1) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("SlidingAverageProcess required at least one attribute: Sliding Average Time")));
	}
	 _SlidingAverageTime = atof(_attributList[0].c_str());

	SlidingAverageCreator lSlidingAverageCreator(*this,*_paramInput,_SlidingAverageTime);
	_operation = lSlidingAverageCreator.getOperation();
	_paramData = ParamDataSPtr(_operation->getParamOutput());
	_paramData->setMinSampling(_paramInput->getMinSampling());

	return timeStamp;

}

unsigned int SlidingAverageProcess::write() {
	unsigned int nbDataBeforeCallProcess = _paramData->getDataNumber();

	ParamDataIndexInfo lParamDataIndexInfo =_parameterInput->getAsync(this).get() ;

	_operation->write(lParamDataIndexInfo);
	//test if enough data has read to SlidingAverage
	// Continue to read data until _nbDataToProcess is not equal to zero and time interval changed or
	// when _nbDataToProcess is equal to zero (this commonly appears when all time interval are processed)
	if( (lParamDataIndexInfo._nbDataToProcess != 0 && !lParamDataIndexInfo._timeIntToProcessChanged) ||
			(lParamDataIndexInfo._nbDataToProcess == 0 && lParamDataIndexInfo._timeIntToProcessChanged) ) {
		ParamDataIndexInfo lParamDataIndexInfoTmp(lParamDataIndexInfo);
		double firstTime = _paramInput->getTime(lParamDataIndexInfo._startIndex);
		double lastTime = _paramInput->getTime(lParamDataIndexInfo._startIndex + lParamDataIndexInfo._nbDataToProcess - 1);
		//IF not enough data, get more data
		while( ((lParamDataIndexInfo._nbDataToProcess != 0 && !lParamDataIndexInfo._timeIntToProcessChanged) ||
				(lParamDataIndexInfo._nbDataToProcess == 0 && lParamDataIndexInfo._timeIntToProcessChanged))
				&& lastTime < (_SlidingAverageTime + firstTime) ) {
			lParamDataIndexInfoTmp =_parameterInput->getAsync(this).get() ;
			_operation->write(lParamDataIndexInfoTmp);
			lParamDataIndexInfo._nbDataToProcess += lParamDataIndexInfoTmp._nbDataToProcess;
			lastTime = _paramInput->getTime(lParamDataIndexInfo._startIndex + lParamDataIndexInfo._nbDataToProcess - 1);
		}
	}

	// Update ParamDataIndexInfo value of this DataWriter by getting information of the preceding parameter
	// (parameter->paramInterval->dataWriter->paramData->ParamDataIndexInfo)
	_paramData->getIndexInfo()._timeIntToProcessChanged = lParamDataIndexInfo._timeIntToProcessChanged;
fa4b7852   Benjamin Renard   Fix bug around ti...
85
	_paramData->getIndexInfo()._noMoreTimeInt = lParamDataIndexInfo._noMoreTimeInt;
fbe3c2bb   Benjamin Renard   First commit
86
87
88
89
90
91
	// Reset operation to prepare static data for the next TimeInterval.
	if (lParamDataIndexInfo._timeIntToProcessChanged) {
		_paramData->getIndexInfo()._endTimeIntIndexList.push_back(_paramData->getDataNumber());
		_operation->reset();
	}
	// There is no more time interval to process
fa4b7852   Benjamin Renard   Fix bug around ti...
92
	else if (lParamDataIndexInfo._noMoreTimeInt) {
fbe3c2bb   Benjamin Renard   First commit
93
94
95
96
97
98
99
100
101
102
103
104
		_paramData->getIndexInfo()._endTimeIntIndexList.push_back(_paramData->getDataNumber());
	} else {
		// Nothing to do.
	}

	return _paramData->getDataNumber() - nbDataBeforeCallProcess;
}



} /* namespace Parameters */
} /* namespace AMDA */