ProcessSumIntoTableIndexes.cc 2.61 KB
/*
 * 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 {

  ProcessSumIntoTableIndexes::ProcessSumIntoTableIndexes(Parameter &parameter) : MultiParamProcess_CRTP(parameter), _dim1Table(NULL), _dim2Table (NULL), _outputParamTable(NULL), _mainParamId("") {
  }

  ProcessSumIntoTableIndexes::ProcessSumIntoTableIndexes(const ProcessSumIntoTableIndexes& pProcess, Parameter &parameter)
    : MultiParamProcess_CRTP(pProcess,parameter), _dim1Table(pProcess._dim1Table), _dim2Table (pProcess._dim2Table), _outputParamTable(pProcess._outputParamTable), _mainParamId(pProcess._mainParamId) {
  }

  ProcessSumIntoTableIndexes::~ProcessSumIntoTableIndexes() {
  }

  void ProcessSumIntoTableIndexes::establishConnection() {
	  ParameterCreatorFromExpression creator(_parameter.getParameterManager());
	  ParameterSPtr lParameter = creator.getOneParameterFromExpression(_parameter,_expression, isUserProcess());
	  _mainParamId = lParameter->getId();
	  _paramNameList[lParameter->getId()].first = lParameter;
	  MultiParamProcess::establishConnection();
  }

  TimeStamp ProcessSumIntoTableIndexes::init() {
	if (_attributList.size() < 3) {
	  BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("ProcessSumIntoTableIndexes::init required at least 3 attributes'")));
	}

	int    relatedDim = atoi(_attributList[0].c_str());
	int minIndex1  = atoi(_attributList[1].c_str());
	int maxIndex1  = atoi(_attributList[2].c_str());

	int minIndex2 = -1;
	int maxIndex2 = -1;
	if (_attributList.size() == 5) {
		minIndex2 = atoi(_attributList[3].c_str());
		maxIndex2 = atoi(_attributList[4].c_str());
	}

	TimeStamp timeStamp = MultiParamProcess::init();

	ParamData* lmainParamInput = _paramNameList[_mainParamId].first->getParamData(this).get();

	SumIntoTableIndexesCreator lSumIntoTableIndexesCreator(*this, *lmainParamInput, minIndex1, maxIndex1, relatedDim, minIndex2, maxIndex2);
	_operation = lSumIntoTableIndexesCreator.getOperation();
	_paramData = ParamDataSPtr(_operation->getParamOutput());
	_paramData->setMinSampling(lmainParamInput->getMinSampling());

	return timeStamp;
}

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