2010-03-01 16:59:51 +00:00
|
|
|
#ifndef DB_VARINT_H
|
|
|
|
#define DB_VARINT_H
|
|
|
|
|
|
|
|
#include <DB/Core/Types.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/** Записать UInt64 в формате переменной длины (base128) */
|
|
|
|
void writeVarUInt(UInt64 x, std::ostream & ostr);
|
|
|
|
|
|
|
|
|
|
|
|
/** Прочитать UInt64, записанный в формате переменной длины (base128) */
|
|
|
|
void readVarUInt(UInt64 & x, std::istream & istr);
|
|
|
|
|
|
|
|
|
|
|
|
/** Получить длину UInt64 в формате VarUInt */
|
|
|
|
size_t getLengthOfVarUInt(UInt64 x);
|
|
|
|
|
|
|
|
|
|
|
|
/** Записать Int64 в формате переменной длины (base128) */
|
|
|
|
inline void writeVarInt(Int64 x, std::ostream & ostr)
|
|
|
|
{
|
|
|
|
writeVarUInt(static_cast<UInt64>((x << 1) ^ (x >> 63)), ostr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Прочитать Int64, записанный в формате переменной длины (base128) */
|
|
|
|
inline void readVarInt(Int64 & x, std::istream & istr)
|
|
|
|
{
|
|
|
|
readVarUInt(*reinterpret_cast<UInt64*>(&x), istr);
|
|
|
|
x = (static_cast<UInt64>(x) >> 1) ^ -(x & 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-18 18:51:51 +00:00
|
|
|
template <typename T> inline void writeVarT(T x, std::ostream & ostr);
|
|
|
|
template <> inline void writeVarT<UInt64>(UInt64 x, std::ostream & ostr) { writeVarUInt(x, ostr); }
|
|
|
|
template <> inline void writeVarT<Int64>(Int64 x, std::ostream & ostr) { writeVarInt(x, ostr); }
|
|
|
|
|
|
|
|
template <typename T> inline void readVarT(T & x, std::istream & istr);
|
|
|
|
template <> inline void readVarT<UInt64>(UInt64 & x, std::istream & istr) { readVarUInt(x, istr); }
|
|
|
|
template <> inline void readVarT<Int64>(Int64 & x, std::istream & istr) { readVarInt(x, istr); }
|
|
|
|
|
|
|
|
|
2010-03-01 16:59:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|