layout_streaming.h
Variables
Warning
doxygenvariable: Cannot find variable “ouster::osf::STREAMING_DEFAULT_CHUNK_SIZE” in doxygen xml output for project “cpp_api” from directory: /ouster-sdk/docs/_build/latest/doctrees/xml
Classes
- 
class StreamingLayoutCW : public ouster::osf::ChunksWriter
- Sreaming Layout chunking strategy - TODO[pb]: sorting TBD as in RFC0018 but first pass should be good enough because usually messages from the same source and of the same type comes sorted from pcap/bag sources. - When messages laid out into chunks in an ordered as they come (not full RFC0018 compliant, see TODO below), with every chunk holding messages exclusively of a single stream_id. Tries not to exceede - chunk_size(if possible). However if a single message size is bigger than specified- chunk_sizeit’s still recorded.- Public Functions - 
StreamingLayoutCW(Writer &writer, uint32_t chunk_size = STREAMING_DEFAULT_CHUNK_SIZE)
- Parameters:
- writer – [in] Writer object for use when writing messages 
- chunk_size – [in] The chunk size to use, this arg is optional. 
 
 
 - 
virtual void save_message(const uint32_t stream_id, const ts_t receive_ts, const ts_t sensor_ts, const std::vector<uint8_t> &buf) override
- Save a message to a specified stream. - Parameters:
- stream_id – [in] The stream id to associate with the message. 
- receive_ts – [in] The receive timestamp for the messages. 
- sensor_ts – [in] The sensor timestamp for the messages. 
- buf – [in] A vector of message buffers to record. 
 
- Throws:
- std::logic_error – Exception on inconsistent timestamps. 
 
 - 
virtual void finish() override
- Finish the process of saving messages and write out the stream stats. 
 - 
virtual uint32_t chunk_size() const override
- Get the chunksize - Returns:
- the chunk size 
 
 
- 
StreamingLayoutCW(Writer &writer, uint32_t chunk_size = STREAMING_DEFAULT_CHUNK_SIZE)