Blame view

src/ExternLib/table_indexes/ProcessSumIntoTableIndexes.cc 2.31 KB
09ec73e7   Benjamin Renard   Add process sum_i...
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
/*
 * ProcessSumIntoTableIndexes.cc
 *
 *  Created on: Mar 26, 2019
 *      Author: AKKA IS
 */
#include <stdlib.h>
#include <string>

#include <boost/lexical_cast.hpp>

#include "DicError.hh"
#include "AMDA_exception.hh"

#include "Operation.hh"
#include "ParameterManager.hh"
#include "ProcessSumIntoTableIndexes.hh"
#include "SumIntoTableIndexesCreator.hh"
#include "ParamMgr.hh"
#include "ParameterCreatorFromExpression.hh"

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

namespace AMDA {
namespace Parameters {

60c2100e   Benjamin Renard   sum_into_table_in...
29
  ProcessSumIntoTableIndexes::ProcessSumIntoTableIndexes(Parameter &parameter) : SingleParamProcess_CRTP(parameter) {
09ec73e7   Benjamin Renard   Add process sum_i...
30
31
32
  }

  ProcessSumIntoTableIndexes::ProcessSumIntoTableIndexes(const ProcessSumIntoTableIndexes& pProcess, Parameter &parameter)
60c2100e   Benjamin Renard   sum_into_table_in...
33
    : SingleParamProcess_CRTP(pProcess,parameter) {
09ec73e7   Benjamin Renard   Add process sum_i...
34
35
36
37
38
  }

  ProcessSumIntoTableIndexes::~ProcessSumIntoTableIndexes() {
  }

09ec73e7   Benjamin Renard   Add process sum_i...
39
  TimeStamp ProcessSumIntoTableIndexes::init() {
8fb4d8fb   Hacene SI HADJ MOHAND   recatoring in pro...
40
41
       if(_attributList.size() !=6 && _attributList.size() !=4){
                        BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessSumIntoTableIndexes::init required at least 4 or 6 attributes'")));
2a07668d   Hacene SI HADJ MOHAND   progress on refac...
42
      }
1b94e5b2   Hacene SI HADJ MOHAND   progress refactor...
43
44
45
                    int  relatedDim = atoi(_attributList[0].c_str());
	int minIndex1  = atoi(_attributList[1].c_str());
	int maxIndex1  = atoi(_attributList[2].c_str());
2a07668d   Hacene SI HADJ MOHAND   progress on refac...
46
47
48
49
50
51
52
53
54
                    std::string type1_ =_attributList[3].c_str();
                    int minIndex2 = -1;
                    int maxIndex2 = -1;
                    std::string type2_ = " ";
        if(_attributList.size() ==6){
                    minIndex2 = atoi(_attributList[3].c_str());
                     maxIndex2 = atoi(_attributList[4].c_str());
                    type2_ =_attributList[5].c_str();
        }
60c2100e   Benjamin Renard   sum_into_table_in...
55
56
	TimeStamp timeStamp = _parameterInput->init( this, _timeIntervalList);
	_paramInput = _parameterInput->getParamData(this).get();
2a07668d   Hacene SI HADJ MOHAND   progress on refac...
57
	SumIntoTableIndexesCreator lSumIntoTableIndexesCreator(*this, *_paramInput, minIndex1, maxIndex1, relatedDim, type1_, minIndex2, maxIndex2, type2_);
09ec73e7   Benjamin Renard   Add process sum_i...
58
59
	_operation = lSumIntoTableIndexesCreator.getOperation();
	_paramData = ParamDataSPtr(_operation->getParamOutput());
60c2100e   Benjamin Renard   sum_into_table_in...
60
	_paramData->setMinSampling(_paramInput->getMinSampling());
09ec73e7   Benjamin Renard   Add process sum_i...
61
62
63
64
65
66

	return timeStamp;
}

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