|
struct | mcap::Attachment |
| An Attachment is an arbitrary file embedded in an MCAP file, including a name, media type, timestamps, and optional CRC. Attachment records are written in the Data section, outside of Chunks. More...
|
|
struct | mcap::AttachmentIndex |
| Attachment Index records are found in the Summary section, providing summary information for a single Attachment. More...
|
|
struct | mcap::Channel |
| Describes a Channel that messages are written to. A Channel represents a single connection from a publisher to a topic, so each topic will have one Channel per publisher. Channels optionally reference a Schema, for message encodings that are not self-describing (e.g. JSON) or when schema information is available (e.g. JSONSchema). More...
|
|
struct | mcap::Chunk |
| An collection of Schemas, Channels, and Messages that supports compression and indexing. More...
|
|
struct | mcap::ChunkIndex |
| Chunk Index records are found in the Summary section, providing summary information for a single Chunk and pointing to each Message Index record associated with that Chunk. More...
|
|
struct | mcap::DataEnd |
| The final record in the Data section, signaling the end of Data and beginning of Summary. Optionally contains a CRC of the entire Data section. More...
|
|
struct | mcap::Footer |
| The final record in an MCAP file (before the trailing magic byte sequence). Contains byte offsets from the start of the file to the Summary and Summary Offset sections, along with an optional CRC of the combined Summary and Summary Offset sections. A summaryStart and summaryOffsetStart of zero indicates no Summary section is available. More...
|
|
struct | mcap::Header |
| Appears at the beginning of every MCAP file (after the magic byte sequence) and contains the recording profile (see https://github.com/foxglove/mcap/tree/main/docs/specification/profiles) and a string signature of the recording library. More...
|
|
struct | mcap::Message |
| A single Message published to a Channel. More...
|
|
struct | mcap::MessageIndex |
| A list of timestamps to byte offsets for a single Channel. This record appears after each Chunk, one per Channel that appeared in that Chunk. More...
|
|
struct | mcap::MessageView |
| Returned when iterating over Messages in a file, MessageView contains a reference to one Message, a pointer to its Channel, and an optional pointer to that Channel's Schema. The Channel pointer is guaranteed to be valid, while the Schema pointer may be null if the Channel references schema_id 0. More...
|
|
struct | mcap::Metadata |
| Holds a named map of key/value strings containing arbitrary user data. Metadata records are found in the Data section, outside of Chunks. More...
|
|
struct | mcap::MetadataIndex |
| Metadata Index records are found in the Summary section, providing summary information for a single Metadata record. More...
|
|
struct | mcap::Record |
| A generic Type-Length-Value record using a uint8 type and uint64 length. This is the generic form of all MCAP records. More...
|
|
struct | mcap::RecordOffset |
|
struct | mcap::Schema |
| Describes a schema used for message encoding and decoding and/or describing the shape of messages. One or more Channel records map to a single Schema. More...
|
|
struct | mcap::Statistics |
| The Statistics record is found in the Summary section, providing counts and timestamp ranges for the entire file. More...
|
|
struct | mcap::SummaryOffset |
| Summary Offset records are found in the Summary Offset section. Records in the Summary section are grouped together, and for each record type found in the Summary section, a Summary Offset references the file offset and length where that type of Summary record can be found. More...
|
|