36 #include <boost/algorithm/string.hpp>
43 : m_table_name(table_name), m_row(row), m_range_types(range_types) {
size_t encoded_length_internal() const override
Returns internal serialized length.
char * decode_vstr(const uint8_t **bufp, size_t *remainp)
Decode a vstr (vint64, data, null).
void decode_internal(uint8_t version, const uint8_t **bufp, size_t *remainp) override
Reads serialized representation of object from a buffer.
Declarations for Canonicalize.
Declarations for Compact request parameters.
size_t encoded_length_vstr(size_t len)
Computes the encoded length of vstr (vint64, data, null)
void encode_internal(uint8_t **bufp) const override
Writes serialized representation of object to a buffer.
uint32_t decode_i32(const uint8_t **bufp, size_t *remainp)
Decode a 32-bit integer in little-endian order.
Logging routines and macros.
void encode_i32(uint8_t **bufp, uint32_t val)
Encode a 32-bit integer in little-endian order.
uint8_t encoding_version() const override
Returns encoding version.
Compatibility Macros for C/C++.
Functions to serialize/deserialize primitives to/from a memory buffer.
void encode_vstr(uint8_t **bufp, const void *buf, size_t len)
Encode a buffer as variable length string (vint64, data, null)
std::string m_row
Row identifying range to be compacted.
int32_t m_range_types
Bit mask of range types to be compacted.
static void table_name(std::string &name)
Canonicalizes a table name.
std::string m_table_name
Name of table to be compacted.