1 #ifndef CondCore_Utilities_Payload2XMLModule_h 2 #define CondCore_Utilities_Payload2XMLModule_h 7 #include <boost/python.hpp> 8 #include "boost/archive/xml_oarchive.hpp" 12 #define XML_CONVERTER_NAME(CLASS_NAME) (std::string(#CLASS_NAME) + "2xml").c_str() 14 #define PAYLOAD_2XML_MODULE(MODULE_NAME) BOOST_PYTHON_MODULE(MODULE_NAME) 16 #define PAYLOAD_2XML_CLASS(CLASS_NAME) \ 17 boost::python::class_<Payload2xml<CLASS_NAME> >(XML_CONVERTER_NAME(CLASS_NAME), boost::python::init<>()) \ 18 .def("write", &Payload2xml<CLASS_NAME>::write); 20 #include <boost/version.hpp> 25 ss << BOOST_VERSION / 100000 <<
".";
26 ss << BOOST_VERSION / 100 % 1000 <<
".";
27 ss << BOOST_VERSION % 100;
35 template <
typename PayloadType>
42 std::unique_ptr<PayloadType>
payload;
43 std::stringbuf sdataBuf;
44 sdataBuf.pubsetbuf(const_cast<char *>(payloadData.c_str()), payloadData.size());
46 std::istream inBuffer(&sdataBuf);
47 eos::portable_iarchive ia(inBuffer);
48 payload.reset(
new PayloadType);
52 std::ostringstream outBuffer;
54 boost::archive::xml_oarchive xmlResult(outBuffer);
55 xmlResult << boost::serialization::make_nvp(
"cmsCondPayload", *payload);
57 return outBuffer.str();