]> Git Repo - VerusCoin.git/commit
overhaul serialization code
authorKamil Domanski <[email protected]>
Wed, 20 Aug 2014 06:42:31 +0000 (08:42 +0200)
committerKamil Domanski <[email protected]>
Sun, 31 Aug 2014 00:14:20 +0000 (02:14 +0200)
commit3d796f89962842e91e7d88e57c1d2d579f01052e
treed4be736c23fbc4d453a1e4e281eafb4f51cdffd8
parent9f3d47677973cb894fdbb437b9b322e2062a1bf1
overhaul serialization code

The implementation of each class' serialization/deserialization is no longer
passed within a macro. The implementation now lies within a template of form:

template <typename T, typename Stream, typename Operation>
inline static size_t SerializationOp(T thisPtr, Stream& s, Operation ser_action, int nType, int nVersion) {
    size_t nSerSize = 0;
    /* CODE */
    return nSerSize;
}

In cases when codepath should depend on whether or not we are just deserializing
(old fGetSize, fWrite, fRead flags) an additional clause can be used:
bool fRead = boost::is_same<Operation, CSerActionUnserialize>();

The IMPLEMENT_SERIALIZE macro will now be a freestanding clause added within
class' body (similiar to Qt's Q_OBJECT) to implement GetSerializeSize,
Serialize and Unserialize. These are now wrappers around
the "SerializationOp" template.
13 files changed:
src/addrman.h
src/alert.h
src/bloom.h
src/core.h
src/crypter.h
src/main.h
src/netbase.h
src/protocol.h
src/qt/recentrequeststablemodel.h
src/qt/walletmodel.h
src/serialize.h
src/wallet.h
src/walletdb.h
This page took 0.028044 seconds and 4 git commands to generate.