SumIntoTableIndexesCreator.hh 8.71 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"
#include "AllTableIndexes.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, std::string type1_, double minIndex2, double maxIndex2, std::string type2_)
            : _process(pProcess), _paramData(paramInput), _operation(NULL), _minIndex1(minIndex1), _maxIndex1(maxIndex1), _table1RelatedDim(table1RelatedDim), _type1(type1_), _minIndex2(minIndex2), _maxIndex2(maxIndex2), _type2(type2_) {
                _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 *) {
                create1d<short, ParamDataTab1DShort>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *)
             */
            void visit(ParamDataTab1DFloat *) {
                create1d<float, ParamDataTab1DFloat>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *)
             */
            void visit(ParamDataTab1DDouble *) {
                create1d<double, ParamDataTab1DDouble>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *)
             */
            void visit(ParamDataTab1DLongDouble *) {
                create1d<long double, ParamDataTab1DLongDouble>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DInt *)
             */
            void visit(ParamDataTab1DInt *) {
                create1d<int, ParamDataTab1DInt>();
            }

            /**
             * @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 *) { create2d<short, ParamDataTab2DShort>();}
        
            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *)
             */
            void visit(ParamDataTab2DFloat *) { create2d<float, ParamDataTab2DFloat>();}
            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *)
             */
            void visit(ParamDataTab2DDouble *) { create2d<double, ParamDataTab2DDouble>();}

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *)
             */
            void visit(ParamDataTab2DLongDouble *) { create2d<long double, ParamDataTab2DLongDouble>();}

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab2DInt *)
             */
            void visit(ParamDataTab2DInt *) { create2d<int, ParamDataTab2DInt>();}

            /**
             * @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;
            }

            template<typename DataType, typename CastType>
            void create1d() {
                if (_type1 == "all") {
                    _operation = new AllTableIndexes::AllTableIndexes1D<DataType>(_process, dynamic_cast<CastType &> (_paramData), _minIndex1, _maxIndex1, _type1);
                } else {
                    _operation = new SumIntoTableIndexes::SumIntoTableIndexes1D<DataType>(_process, dynamic_cast<CastType &> (_paramData), _minIndex1, _maxIndex1, _type1);
                }
            }

            template<typename DataType, typename CastType>
            void create2d() {
                if (_type1 == "all" && (_type1 == _type2 || _type2 =="" || _type2 ==" " )) {
                    if (_maxIndex2 < 0) {
                        _operation = new  AllTableIndexes::AllTableIndexes2DOneRange<DataType>(_process, dynamic_cast<CastType &> (_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _type1);
                    } else {
                        _operation = new  AllTableIndexes::AllTableIndexes2DTwoRanges<DataType>(_process, dynamic_cast< CastType &> (_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _type1, _minIndex2, _maxIndex2, _type2);
                    }

                } else if (_type1 != "all" && _type2 != "all") {
                    if (_maxIndex2 < 0) {
                        _operation = new SumIntoTableIndexes::SumIntoTableIndexes2DOneRange<DataType>(_process, dynamic_cast< CastType &> (_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _type1);
                    } else {
                        _operation = new SumIntoTableIndexes::SumIntoTableIndexes2DTwoRanges<DataType>(_process, dynamic_cast<CastType &> (_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _type1, _minIndex2, _maxIndex2, _type2);
                    }
                } else {
                      _operation = new SumIntoTableIndexes::MixedTableIndexes2DTwoRanges<DataType>(_process, dynamic_cast< CastType &> (_paramData), _minIndex1, _maxIndex1, _table1RelatedDim, _type1, _minIndex2, _maxIndex2, _type2);
                }
            }


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

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