Expand description
§Binary Format Service Implementation
Services for reading and writing the Adaptive Pipeline binary format
(.adapipe). Provides streaming I/O, integrity verification with SHA-256
checksums, metadata preservation, and format versioning. Structure:
[CHUNK_DATA][JSON_HEADER] [HEADER_LENGTH][FORMAT_VERSION]
[MAGIC_BYTES]. See mdBook for detailed format specification.
Structs§
- Adapipe
Format - Implementation of BinaryFormatService
- Buffered
Binary Writer - Buffered writer that stores chunks in memory and writes them all during finalize This is simpler than StreamingBinaryWriter and suitable for tests and small files
- Streaming
Binary Reader - Streaming reader implementation
- Streaming
Binary Writer - Streaming writer implementation
- Transactional
Binary Writer - Transactional binary writer providing ACID guarantees for concurrent chunk operations.
- Validation
Result - Result of file validation
Traits§
- Binary
Format Reader - Reader for streaming .adapipe processed files
- Binary
Format Service - Service for writing and reading Adaptive Pipeline processed files (.adapipe format)
- Binary
Format Writer - Writer for streaming .adapipe processed files