/* * MexVexElsDecodeCreator.hh * * Created on: Oct 14, 2016 * Author: elena */ #ifndef MexVexElsDecodeCREATOR_HH_ #define MexVexElsDecodeCREATOR_HH_ #include "DicError.hh" #include "AMDA_exception.hh" #include "ParamData.hh" #include "VisitorOfParamData.hh" #include "MexVexElsDecode.hh" namespace AMDA { namespace Parameters { /** * @class MexVexElsDecodeCreator * @brief Creator of the Operation MexVexElsDecodeCreator parameterized with ParamData input type. * @details Implement the interface VisitorOfParamData. */ class MexVexElsDecodeCreator : public VisitorOfParamData { public: /** * @brief Constructor. */ MexVexElsDecodeCreator(Process& pProcess, ParamData& paramInput, std::string energyTable) : _process(pProcess), _paramData(paramInput), _operation(NULL), _energyTable(energyTable) { _paramData.accept(*this); } /** * @overload VisitorOfParamData::visit(ParamDataScalaireShort *) */ void visit(ParamDataScalaireShort *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData), _energyTable);} /** * @overload VisitorOfParamData::visit(ParamDataScalaireFloat *) */ void visit(ParamDataScalaireFloat *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } //void visit(ParamDataScalaireFloat *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataScalaireDouble *) */ void visit(ParamDataScalaireDouble *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } //void visit(ParamDataScalaireDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process,dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataScalaireLongDouble *) */ void visit(ParamDataScalaireLongDouble *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } //void visit(ParamDataScalaireLongDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataScalaireInt *) */ void visit(ParamDataScalaireInt *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } //void visit(ParamDataScalaireInt *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataLogicalData *) */ void visit(ParamDataLogicalData *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } /** * @overload VisitorOfParamData::visit(ParamDataTab1DShort *) */ void visit(ParamDataTab1DShort *){_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData), _energyTable);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *) */ void visit(ParamDataTab1DFloat *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData), _energyTable);} /** * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *) */ void visit(ParamDataTab1DDouble *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } // void visit(ParamDataTab1DDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *) */ void visit(ParamDataTab1DLongDouble *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } // void visit(ParamDataTab1DLongDouble *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataTab1DInt *) */ void visit(ParamDataTab1DInt *){ BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } // void visit(ParamDataTab1DInt *) {_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData));} /** * @overload VisitorOfParamData::visit(ParamDataTab1DLogicalData *) */ void visit(ParamDataTab1DLogicalData *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("MexVexElsDecodeCreator operation not supported")); } /** * @overload VisitorOfParamData::visit(ParamDataTab2DShort *) */ void visit(ParamDataTab2DShort *){_operation = new MexVexElsDecode::MexVexElsDecode( _process, dynamic_cast(_paramData), _energyTable);} /** * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *) */ void visit(ParamDataTab2DFloat *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DFloat data not supported")); } /** * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *) */ void visit(ParamDataTab2DDouble *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DDouble data not supported")); } /** * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *) */ void visit(ParamDataTab2DLongDouble *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DLongDouble data not supported")); } /** * @overload VisitorOfParamData::visit(ParamDataTab2DInt *) */ void visit(ParamDataTab2DInt *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DInt data not supported")); } /** * @overload VisitorOfParamData::visit(ParamDataTab2DLogicalData *) */ void visit(ParamDataTab2DLogicalData *) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DLogicalData data not supported")); } /** * @brief get the MexVexElsDecode parameterized operation. */ Operation * getOperation() const { return _operation; } private: Process &_process; ParamData &_paramData; Operation *_operation; std::string _energyTable; }; } /* namespace Parameters */ } /* namespace AMDA */ #endif /* MexVexElsDecodeCREATOR_HH_ */