/* This file is part of MAUS: http://micewww.pp.rl.ac.uk:8080/projects/maus * * MAUS is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MAUS is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MAUS. If not, see . * */ #ifndef SRC_COMMON_CPP_CONVERTERS_DATACONVERTERS_PRIMITIVECONVERTERSJF_H #define SRC_COMMON_CPP_CONVERTERS_DATACONVERTERS_PRIMITIVECONVERTERSJF_H #include #include "src/common_cpp/Converter/DataConverters/JsonCppJobFooterConverter.hh" #include "src/common_cpp/Converter/DataConverters/CppJsonJobFooterConverter.hh" namespace MAUS { class JobFooterData; /////////////////////////// X TO JobFooterData //////////////////////////// class StringJobFooterConverter : public ConverterBase { public: StringJobFooterConverter() : ConverterBase("StringDataConverter") {} private: JobFooterData* _convert(const std::string* str) const { Json::Value* json = StringJsonConverter().convert(str); JobFooterData* jh = JsonCppJobFooterConverter().convert(json); delete json; return jh; } }; class PyDictJobFooterConverter : public ConverterBase { public: PyDictJobFooterConverter() : ConverterBase("PyDictJobFooterConverter") {} private: JobFooterData* _convert(const PyObject* obj) const { std::string* str = PyDictStringConverter().convert(obj); JobFooterData* jh = StringJobFooterConverter().convert(str); delete str; return jh; } }; /////////////////////////// JobFooterData TO X //////////////////////////// class JobFooterStringConverter : public ConverterBase { public: JobFooterStringConverter() : ConverterBase("JobFooterStringConverter") {} private: std::string* _convert(const JobFooterData* jh) const { Json::Value* json = CppJsonJobFooterConverter().convert(jh); std::string* str = JsonStringConverter().convert(json); delete json; return str; } }; class JobFooterJobFooterConverter : public ConverterBase { public: JobFooterJobFooterConverter() : ConverterBase("JobFooterJobFooterConverter") {} private: JobFooterData* _convert(const JobFooterData* jh) const { return new JobFooterData(*jh); } }; class JobFooterPyDictConverter : public ConverterBase { public: JobFooterPyDictConverter() : ConverterBase("JobFooterPyDictConverter") {} private: PyObject* _convert(const JobFooterData* jh) const { std::string* str = JobFooterStringConverter().convert(jh); PyObject* obj = StringPyDictConverter().convert(str); delete str; return obj; } }; } #endif // SRC_COMMON_CPP_CONVERTERS_DATACONVERTERS_PRIMITIVECONVERTERSJF_H