SumIntoTableIndexesCreator.hh 7.49 KB
/*
 * SumIntoTableIndexesCreator.hh
 *
 *  Created on: Mar 26, 2019
 *      Author: AKKA IS
 */

#ifndef FRAMEINTOTABLEINDEXESCREATOR_HH_
#define FRAMEINTOTABLEINDEXESCREATOR_HH_

#include "ParamData.hh"
#include "VisitorOfParamData.hh"
#include "SumIntoTableIndexes.hh"
#include "AMDA_exception.hh"

namespace AMDA {
namespace Parameters {

/**
 * @class SumIntoTableIndexesCreator
 * @brief Creator of the Operation SumIntoTableIndexes parameterized with ParamData input type.
 * @details Implement the interface VisitorOfParamData.
 */
class SumIntoTableIndexesCreator : public VisitorOfParamData {
public:
	/**
	 * @brief Constructor.
	 */
	SumIntoTableIndexesCreator(Process& pProcess, ParamData& paramInput, double minIndex1, double maxIndex1, int table1RelatedDim, double minIndex2, double maxIndex2)
		: _process(pProcess), _paramData(paramInput), _operation(NULL), _minIndex1(minIndex1), _maxIndex1(maxIndex1),_table1RelatedDim(table1RelatedDim), _minIndex2(minIndex2), _maxIndex2(maxIndex2) {
		_paramData.accept(*this);
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireShort *)
	 */
	void visit(ParamDataScalaireShort *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported")); }

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireFloat *)
	 */
	void visit(ParamDataScalaireFloat *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported")); }

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireDouble *)
	 */
	void visit(ParamDataScalaireDouble *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported")); }

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireLongDouble *)
	 */
	void visit(ParamDataScalaireLongDouble *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported")); }

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireInt *)
	 */
	void visit(ParamDataScalaireInt *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported")); }

	/**
	 * @overload VisitorOfParamData::visit(ParamDataLogicalData *)
	 */
	void visit(ParamDataLogicalData *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported")); }

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DShort *)
	 */
	void visit(ParamDataTab1DShort *) {_operation = new SumIntoTableIndexes::SumIntoTableIndexes1D<short>( _process, dynamic_cast<ParamDataTab1DShort &>(_paramData), _minIndex1, _maxIndex1);}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *)
	 */
	void visit(ParamDataTab1DFloat *) {_operation = new SumIntoTableIndexes::SumIntoTableIndexes1D<float>( _process, dynamic_cast<ParamDataTab1DFloat &>(_paramData), _minIndex1, _maxIndex1);}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *)
	 */
	void visit(ParamDataTab1DDouble *) {_operation = new SumIntoTableIndexes::SumIntoTableIndexes1D<double>( _process, dynamic_cast<ParamDataTab1DDouble &>(_paramData), _minIndex1, _maxIndex1);}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *)
	 */
	void visit(ParamDataTab1DLongDouble *) {_operation = new SumIntoTableIndexes::SumIntoTableIndexes1D<long double>( _process, dynamic_cast<ParamDataTab1DLongDouble &>(_paramData), _minIndex1, _maxIndex1);}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DInt *)
	 */
	void visit(ParamDataTab1DInt *) {_operation = new SumIntoTableIndexes::SumIntoTableIndexes1D<int>( _process, dynamic_cast<ParamDataTab1DInt &>(_paramData), _minIndex1, _maxIndex1);}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DLogicalData *)
	 */
	void visit(ParamDataTab1DLogicalData *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported"));	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DShort *)
	 */
	void visit(ParamDataTab2DShort *) {
		if (_maxIndex2 < 0) {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DOneRange<short>(_process, dynamic_cast<ParamDataTab2DShort &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim);
		}
		else {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DTwoRanges<short>(_process, dynamic_cast<ParamDataTab2DShort &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _minIndex2, _maxIndex2);
		}
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *)
	 */
	void visit(ParamDataTab2DFloat *) {
		if (_maxIndex2 < 0) {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DOneRange<float>(_process, dynamic_cast<ParamDataTab2DFloat &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim);
		}
		else {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DTwoRanges<float>(_process, dynamic_cast<ParamDataTab2DFloat &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _minIndex2, _maxIndex2);
		}
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *)
	 */
	void visit(ParamDataTab2DDouble *) {
		if (_maxIndex2 < 0) {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DOneRange<double>(_process, dynamic_cast<ParamDataTab2DDouble &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim);
		}
		else {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DTwoRanges<double>(_process, dynamic_cast<ParamDataTab2DDouble &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _minIndex2, _maxIndex2);
		}
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *)
	 */
	void visit(ParamDataTab2DLongDouble *) {
		if (_maxIndex2 < 0) {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DOneRange<long double>(_process, dynamic_cast<ParamDataTab2DLongDouble &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim);
		}
		else {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DTwoRanges<long double>(_process, dynamic_cast<ParamDataTab2DLongDouble &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _minIndex2, _maxIndex2);
		}
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DInt *)
	 */
	void visit(ParamDataTab2DInt *) {
		if (_maxIndex2 < 0) {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DOneRange<int>(_process, dynamic_cast<ParamDataTab2DInt &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim);
		}
		else {
			_operation = new SumIntoTableIndexes::SumIntoTableIndexes2DTwoRanges<int>(_process, dynamic_cast<ParamDataTab2DInt &>(_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _minIndex2, _maxIndex2);
		}
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DLogicalData *)
	 */
	void visit(ParamDataTab2DLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("SumIntoTableIndexes operation not supported"));
	}

	/**
	 * @brief get the Deriv parameterized operation.
	 */
	Operation * getOperation() const {	return _operation;	}

private:
	Process   &_process;
	ParamData &_paramData;
	Operation *_operation;
	int _minIndex1;
	int _maxIndex1;
	int _table1RelatedDim;
	int _minIndex2;
	int _maxIndex2;
};

} /* namespace Parameters */
} /* namespace AMDA */
#endif /* FRAMEINTOTABLEINDEXESCREATOR_HH_ */