mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 06:52:36 +01:00
Convert compression.h to new serialization framework
This commit is contained in:
parent
ca34c5cba5
commit
4de934b9b5
5 changed files with 25 additions and 40 deletions
|
@ -61,7 +61,7 @@ public:
|
||||||
assert(!IsSpent());
|
assert(!IsSpent());
|
||||||
uint32_t code = nHeight * 2 + fCoinBase;
|
uint32_t code = nHeight * 2 + fCoinBase;
|
||||||
::Serialize(s, VARINT(code));
|
::Serialize(s, VARINT(code));
|
||||||
::Serialize(s, CTxOutCompressor(REF(out)));
|
::Serialize(s, Using<TxOutCompression>(out));
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Stream>
|
template<typename Stream>
|
||||||
|
@ -70,7 +70,7 @@ public:
|
||||||
::Unserialize(s, VARINT(code));
|
::Unserialize(s, VARINT(code));
|
||||||
nHeight = code >> 1;
|
nHeight = code >> 1;
|
||||||
fCoinBase = code & 1;
|
fCoinBase = code & 1;
|
||||||
::Unserialize(s, CTxOutCompressor(out));
|
::Unserialize(s, Using<TxOutCompression>(out));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsSpent() const {
|
bool IsSpent() const {
|
||||||
|
|
|
@ -11,10 +11,6 @@
|
||||||
#include <serialize.h>
|
#include <serialize.h>
|
||||||
#include <span.h>
|
#include <span.h>
|
||||||
|
|
||||||
class CKeyID;
|
|
||||||
class CPubKey;
|
|
||||||
class CScriptID;
|
|
||||||
|
|
||||||
bool CompressScript(const CScript& script, std::vector<unsigned char> &out);
|
bool CompressScript(const CScript& script, std::vector<unsigned char> &out);
|
||||||
unsigned int GetSpecialScriptSize(unsigned int nSize);
|
unsigned int GetSpecialScriptSize(unsigned int nSize);
|
||||||
bool DecompressScript(CScript& script, unsigned int nSize, const std::vector<unsigned char> &out);
|
bool DecompressScript(CScript& script, unsigned int nSize, const std::vector<unsigned char> &out);
|
||||||
|
@ -33,9 +29,8 @@ uint64_t DecompressAmount(uint64_t nAmount);
|
||||||
* Other scripts up to 121 bytes require 1 byte + script length. Above
|
* Other scripts up to 121 bytes require 1 byte + script length. Above
|
||||||
* that, scripts up to 16505 bytes require 2 bytes + script length.
|
* that, scripts up to 16505 bytes require 2 bytes + script length.
|
||||||
*/
|
*/
|
||||||
class CScriptCompressor
|
struct ScriptCompression
|
||||||
{
|
{
|
||||||
private:
|
|
||||||
/**
|
/**
|
||||||
* make this static for now (there are only 6 special scripts defined)
|
* make this static for now (there are only 6 special scripts defined)
|
||||||
* this can potentially be extended together with a new nVersion for
|
* this can potentially be extended together with a new nVersion for
|
||||||
|
@ -44,12 +39,8 @@ private:
|
||||||
*/
|
*/
|
||||||
static const unsigned int nSpecialScripts = 6;
|
static const unsigned int nSpecialScripts = 6;
|
||||||
|
|
||||||
CScript &script;
|
|
||||||
public:
|
|
||||||
explicit CScriptCompressor(CScript &scriptIn) : script(scriptIn) { }
|
|
||||||
|
|
||||||
template<typename Stream>
|
template<typename Stream>
|
||||||
void Serialize(Stream &s) const {
|
void Ser(Stream &s, const CScript& script) {
|
||||||
std::vector<unsigned char> compr;
|
std::vector<unsigned char> compr;
|
||||||
if (CompressScript(script, compr)) {
|
if (CompressScript(script, compr)) {
|
||||||
s << MakeSpan(compr);
|
s << MakeSpan(compr);
|
||||||
|
@ -61,7 +52,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename Stream>
|
template<typename Stream>
|
||||||
void Unserialize(Stream &s) {
|
void Unser(Stream &s, CScript& script) {
|
||||||
unsigned int nSize = 0;
|
unsigned int nSize = 0;
|
||||||
s >> VARINT(nSize);
|
s >> VARINT(nSize);
|
||||||
if (nSize < nSpecialScripts) {
|
if (nSize < nSpecialScripts) {
|
||||||
|
@ -82,30 +73,24 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/** wrapper for CTxOut that provides a more compact serialization */
|
struct AmountCompression
|
||||||
class CTxOutCompressor
|
|
||||||
{
|
{
|
||||||
private:
|
template<typename Stream, typename I> void Ser(Stream& s, I val)
|
||||||
CTxOut &txout;
|
{
|
||||||
|
s << VARINT(CompressAmount(val));
|
||||||
public:
|
}
|
||||||
explicit CTxOutCompressor(CTxOut &txoutIn) : txout(txoutIn) { }
|
template<typename Stream, typename I> void Unser(Stream& s, I& val)
|
||||||
|
{
|
||||||
ADD_SERIALIZE_METHODS;
|
uint64_t v;
|
||||||
|
s >> VARINT(v);
|
||||||
template <typename Stream, typename Operation>
|
val = DecompressAmount(v);
|
||||||
inline void SerializationOp(Stream& s, Operation ser_action) {
|
|
||||||
if (!ser_action.ForRead()) {
|
|
||||||
uint64_t nVal = CompressAmount(txout.nValue);
|
|
||||||
READWRITE(VARINT(nVal));
|
|
||||||
} else {
|
|
||||||
uint64_t nVal = 0;
|
|
||||||
READWRITE(VARINT(nVal));
|
|
||||||
txout.nValue = DecompressAmount(nVal);
|
|
||||||
}
|
|
||||||
CScriptCompressor cscript(REF(txout.scriptPubKey));
|
|
||||||
READWRITE(cscript);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** wrapper for CTxOut that provides a more compact serialization */
|
||||||
|
struct TxOutCompression
|
||||||
|
{
|
||||||
|
FORMATTER_METHODS(CTxOut, obj) { READWRITE(Using<AmountCompression>(obj.nValue), Using<ScriptCompression>(obj.scriptPubKey)); }
|
||||||
|
};
|
||||||
|
|
||||||
#endif // BITCOIN_COMPRESSOR_H
|
#endif // BITCOIN_COMPRESSOR_H
|
||||||
|
|
|
@ -206,7 +206,7 @@ void test_one_input(const std::vector<uint8_t>& buffer)
|
||||||
DeserializeFromFuzzingInput(buffer, dbi);
|
DeserializeFromFuzzingInput(buffer, dbi);
|
||||||
#elif TXOUTCOMPRESSOR_DESERIALIZE
|
#elif TXOUTCOMPRESSOR_DESERIALIZE
|
||||||
CTxOut to;
|
CTxOut to;
|
||||||
CTxOutCompressor toc(to);
|
auto toc = Using<TxOutCompression>(to);
|
||||||
DeserializeFromFuzzingInput(buffer, toc);
|
DeserializeFromFuzzingInput(buffer, toc);
|
||||||
#elif BLOCKTRANSACTIONS_DESERIALIZE
|
#elif BLOCKTRANSACTIONS_DESERIALIZE
|
||||||
BlockTransactions bt;
|
BlockTransactions bt;
|
||||||
|
|
|
@ -336,7 +336,7 @@ public:
|
||||||
vout.assign(vAvail.size(), CTxOut());
|
vout.assign(vAvail.size(), CTxOut());
|
||||||
for (unsigned int i = 0; i < vAvail.size(); i++) {
|
for (unsigned int i = 0; i < vAvail.size(); i++) {
|
||||||
if (vAvail[i])
|
if (vAvail[i])
|
||||||
::Unserialize(s, CTxOutCompressor(vout[i]));
|
::Unserialize(s, Using<TxOutCompression>(vout[i]));
|
||||||
}
|
}
|
||||||
// coinbase height
|
// coinbase height
|
||||||
::Unserialize(s, VARINT(nHeight, VarIntMode::NONNEGATIVE_SIGNED));
|
::Unserialize(s, VARINT(nHeight, VarIntMode::NONNEGATIVE_SIGNED));
|
||||||
|
|
|
@ -32,7 +32,7 @@ public:
|
||||||
// Required to maintain compatibility with older undo format.
|
// Required to maintain compatibility with older undo format.
|
||||||
::Serialize(s, (unsigned char)0);
|
::Serialize(s, (unsigned char)0);
|
||||||
}
|
}
|
||||||
::Serialize(s, CTxOutCompressor(REF(txout->out)));
|
::Serialize(s, Using<TxOutCompression>(REF(txout->out)));
|
||||||
}
|
}
|
||||||
|
|
||||||
explicit TxInUndoSerializer(const Coin* coin) : txout(coin) {}
|
explicit TxInUndoSerializer(const Coin* coin) : txout(coin) {}
|
||||||
|
@ -56,7 +56,7 @@ public:
|
||||||
unsigned int nVersionDummy;
|
unsigned int nVersionDummy;
|
||||||
::Unserialize(s, VARINT(nVersionDummy));
|
::Unserialize(s, VARINT(nVersionDummy));
|
||||||
}
|
}
|
||||||
::Unserialize(s, CTxOutCompressor(REF(txout->out)));
|
::Unserialize(s, Using<TxOutCompression>(REF(txout->out)));
|
||||||
}
|
}
|
||||||
|
|
||||||
explicit TxInUndoDeserializer(Coin* coin) : txout(coin) {}
|
explicit TxInUndoDeserializer(Coin* coin) : txout(coin) {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue