当前位置: 首页>>代码示例>>C++>>正文


C++ TableTuple::serializeToDR方法代码示例

本文整理汇总了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)));
    }
}
开发者ID:yf8848,项目名称:voltdb,代码行数:30,代码来源:DRTupleStream.cpp

示例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)));
}
开发者ID:alkayamarti,项目名称:voltdb,代码行数:22,代码来源:CompatibleDRTupleStream.cpp


注:本文中的TableTuple::serializeToDR方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。