本文整理汇总了C++中TableTuple::serializeToDR方法的典型用法代码示例。如果您正苦于以下问题:C++ TableTuple::serializeToDR方法的具体用法?C++ TableTuple::serializeToDR怎么用?C++ TableTuple::serializeToDR使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TableTuple
的用法示例。
在下文中一共展示了TableTuple::serializeToDR方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: writeRowTuple
void DRTupleStream::writeRowTuple(TableTuple& tuple,
size_t rowHeaderSz,
size_t rowMetadataSz,
const std::vector<int> *interestingColumns,
const std::pair<const TableIndex*, uint32_t> &indexPair,
ExportSerializeOutput &io) {
size_t startPos = io.position();
// initialize the full row header to 0. This also
// has the effect of setting each column non-null.
::memset(m_currBlock->mutableDataPtr() + io.position(), 0, rowHeaderSz);
// the nullarray lives in rowheader after the 4 byte header length prefix
uint8_t *nullArray =
reinterpret_cast<uint8_t*>(m_currBlock->mutableDataPtr() + io.position() + rowMetadataSz);
// Reserve the row header by moving the position beyond the row header.
// The row header includes the 4 byte length prefix and the null array.
const size_t lengthPrefixPosition = io.reserveBytes(rowHeaderSz);
tuple.serializeToDR(io, 0, nullArray, interestingColumns);
ExportSerializeOutput hdr(m_currBlock->mutableDataPtr() + lengthPrefixPosition, rowMetadataSz);
if (interestingColumns) {
// add the row length and a crc of the index used to the header
hdr.writeInt((int32_t)(io.position() - startPos - 2 * sizeof(int32_t)));
hdr.writeInt(indexPair.second);
} else {
// add the row length to the header
hdr.writeInt((int32_t)(io.position() - startPos - sizeof(int32_t)));
}
}
示例2: writeRowTuple
void CompatibleDRTupleStream::writeRowTuple(TableTuple& tuple,
size_t rowHeaderSz,
size_t rowMetadataSz,
ExportSerializeOutput &io) {
size_t startPos = io.position();
// initialize the full row header to 0. This also
// has the effect of setting each column non-null.
::memset(m_currBlock->mutableDataPtr() + io.position(), 0, rowHeaderSz);
// the nullarray lives in rowheader after the 4 byte header length prefix
uint8_t *nullArray =
reinterpret_cast<uint8_t*>(m_currBlock->mutableDataPtr() + io.position() + rowMetadataSz);
// Reserve the row header by moving the position beyond the row header.
// The row header includes the 4 byte length prefix and the null array.
const size_t lengthPrefixPosition = io.reserveBytes(rowHeaderSz);
tuple.serializeToDR(io, 0, nullArray);
ExportSerializeOutput hdr(m_currBlock->mutableDataPtr() + lengthPrefixPosition, rowMetadataSz);
// add the row length to the header
hdr.writeInt((int32_t)(io.position() - startPos - sizeof(int32_t)));
}