There are some message structs. Each one can be serialized to a string and de-serialized from a string. For the serialization part, I use the overload operator <<. But for the de-serialization part, I cannot think of a proper way to do so. So I use a class to parse the string. Recently, I came across boost serialization. I don't know if it can serve this purpose or there is any better idea.
struct S
{
int32_t type;
double a;
int32_t b;
bool c;
std::string d;
friend std::ostream& operator<< (std::ostream& os, const S& s)
{
os << "{field1" << "=" << s.a << "|";
os << "field2" << "=" << s.b << "|";
os << "field3" << "=" << s.c << "|";
os << "field4" << "=" << s.d << "}";
return os;
}
};
EDIT: So, I choose to use xml archive. However, I have a another issue. Since there are several type of message which is classified by the field msgtype. When deserialization, How to specify which object is going to deserialize to? Do I need to manually search msgtype field?
template <typename Archive>
void serialize(Archive &ar, const unsigned int version)
{
using boost::serialization::make_nvp;
ar & make_nvp("msgtype", type);
ar & make_nvp("field1", a);
ar & make_nvp("field2", b);
ar & make_nvp("field3", c);
ar & make_nvp("field4", d);
}