Skip to main content

structured_zstd/
lib.rs

1//! Pure-Rust Zstandard codec with a production-grade decoder, dictionary
2//! handle reuse, and an actively-improved encoder.
3//!
4//! The crate ships:
5//!
6//! * [`decoding`] — [RFC 8878] decoder ([`decoding::StreamingDecoder`],
7//!   [`decoding::FrameDecoder`], dictionary-backed paths via
8//!   [`decoding::DictionaryHandle`]).
9//! * [`encoding`] — frame compressor, streaming encoder, named and numeric
10//!   compression levels ([`encoding::CompressionLevel`]).
11//! * [`dictionary`] (feature `dict-builder`) — COVER / FastCOVER training
12//!   plus raw-to-finalized dictionary helpers.
13//!
14//! No FFI, no cmake, no system zstd. `no_std` builds are supported by
15//! disabling the default `std` feature.
16//!
17//! # CPU kernel features
18//!
19//! Both the decode and the encode hot paths ship per-CPU-tier SIMD kernels.
20//! On x86 and aarch64 with `std` the tier is chosen at runtime (CPU-feature
21//! detection, cached on first use); on `no_std` it is chosen at compile time
22//! from `cfg(target_feature)`. WebAssembly is compile-time only either way:
23//! its kernels additionally require `target_feature = "simd128"`, so a wasm
24//! build without `-C target-feature=+simd128` stays scalar.
25//!
26//! Each tier is gated by a cargo feature: `kernel-scalar`, `kernel-sse`,
27//! `kernel-bmi2`, `kernel-avx2`, `kernel-vbmi2` (x86) and `kernel-neon`,
28//! `kernel-sve` (aarch64). All are on by default except `kernel-vbmi2`, which
29//! is opt-in because the AVX-512 decode tier measures slower than AVX2 on the
30//! bursty decode path, so the default build is a universal binary that picks
31//! the best available tier per the above. `kernel-scalar` gates no code: the
32//! scalar path is the mandatory fallback and is always compiled, so the flag
33//! exists only to name that tier explicitly in a feature set. `kernel-vbmi2`
34//! and `kernel-sve` are decoder-only; the encoder has no AVX-512 or SVE tier.
35//! The chain mirrors the ISA
36//! dependency (`kernel-avx2` implies `kernel-bmi2` implies `kernel-sse`;
37//! `kernel-sve` implies `kernel-neon`). `kernel-sse` covers two x86 tiers:
38//! SSE4.2 where the CPU has it, and a plain-SSE2 tier otherwise, so a
39//! pre-SSE4.2 CPU still gets vector match compares. Any subset is valid, and a
40//! flag is inert on architectures it doesn't apply to. Constrained targets can
41//! shrink the binary by trimming
42//! tiers: `--no-default-features --features kernel-scalar` compiles out every
43//! per-tier dispatch, the BMI2/AVX2/VBMI2/NEON trampolines, and the explicit
44//! SSE2/NEON intrinsics in both the copy primitives and the encoder
45//! match-finder. The `kernel_*` features control the crate's own explicit
46//! SIMD; they do not constrain the compiler's autovectorizer, which may still
47//! emit vector instructions from ordinary scalar code regardless of the
48//! enabled tiers.
49//!
50//! The packaged README is included below for the docs.rs landing page; the
51//! API anchors above link straight into the per-module documentation.
52//!
53//! [RFC 8878]: https://www.rfc-editor.org/rfc/rfc8878
54// Keep crate docs aligned with the packaged README via the crate-local symlink in `zstd/README.md`.
55#![doc = include_str!("../README.md")]
56#![no_std]
57#![deny(trivial_casts, trivial_numeric_casts, rust_2018_idioms)]
58#![cfg_attr(docsrs, feature(doc_cfg))]
59
60#[cfg(feature = "std")]
61extern crate std;
62
63#[cfg(not(feature = "rustc-dep-of-std"))]
64extern crate alloc;
65
66#[cfg(feature = "std")]
67pub(crate) const VERBOSE: bool = false;
68
69macro_rules! vprintln {
70    ($($x:expr),*) => {
71        #[cfg(feature = "std")]
72        if crate::VERBOSE {
73            std::println!($($x),*);
74        }
75    }
76}
77
78mod bit_io;
79mod common;
80/// Largest block the format allows (RFC 8878 3.1.1.2.3, 128 KiB): the single
81/// source of truth for every surface that has to name it, the C ABI included.
82/// A frame's own maximum is the smaller of this and its window.
83pub use common::MAX_BLOCK_SIZE;
84/// Smallest accepted block-size target (the `ZSTD_TARGETCBLOCKSIZE_MIN`
85/// bound): the single source of truth shared by the Rust setters
86/// (`set_target_block_size`) and the C ABI parameter surface.
87pub use common::MIN_TARGET_BLOCK_SIZE;
88mod cpu_kernel;
89pub mod decoding;
90#[cfg(feature = "dict-builder")]
91#[cfg_attr(docsrs, doc(cfg(feature = "dict-builder")))]
92pub mod dictionary;
93pub mod encoding;
94mod histogram;
95
96#[cfg(feature = "lsm")]
97#[cfg_attr(docsrs, doc(cfg(feature = "lsm")))]
98pub mod skippable;
99
100pub(crate) mod blocks;
101
102#[cfg(feature = "fuzz-exports")]
103pub mod fse;
104#[cfg(feature = "fuzz-exports")]
105pub mod huff0;
106
107// `pub fn init_state<K: CpuKernel>` and friends inside the
108// fuzz-exports-public `huff0` module name `crate::cpu_kernel::CpuKernel`
109// in their signatures. Without a publicly-reachable path to `CpuKernel`
110// the bound triggers `private_bounds` / `private_interfaces`. Re-export
111// under the same feature gate so the fuzz harness build is clean.
112#[cfg(feature = "fuzz-exports")]
113pub use crate::cpu_kernel::{CpuKernel, ScalarKernel};
114
115/// Name of the active CPU kernel tier (entropy / sequence hot paths) for this
116/// process — for diagnostics and benchmark/dashboard reporting. See
117/// [`cpu_kernel::active_cpu_kernel_name`].
118pub use crate::cpu_kernel::active_cpu_kernel_name;
119
120#[cfg(not(feature = "fuzz-exports"))]
121pub(crate) mod fse;
122#[cfg(not(feature = "fuzz-exports"))]
123pub(crate) mod huff0;
124
125#[cfg(feature = "std")]
126pub mod io_std;
127
128#[cfg(feature = "std")]
129pub use io_std as io;
130
131#[cfg(not(feature = "std"))]
132pub mod io_nostd;
133
134#[cfg(not(feature = "std"))]
135pub use io_nostd as io;
136
137#[cfg(test)]
138mod tests;
139
140/// Re-exports of internal types used by benchmarks.
141///
142/// Gated behind the `bench-internals` feature so normal builds do not
143/// widen the public API surface. Not part of the stable API; items may
144/// change or disappear without notice.
145#[cfg(feature = "bench-internals")]
146#[doc(hidden)]
147pub mod testing {
148    /// Compression parameters selected for `(level, srcSize, dictSize)` →
149    /// `(windowLog, chainLog, hashLog, searchLog, minMatch, targetLength,
150    /// strategy)`. Facade for the `ffi-bench` parity test that diffs the
151    /// selection against the reference `ZSTD_getCParams`.
152    pub fn compression_params(
153        level: i32,
154        src: u64,
155        dict: usize,
156    ) -> (u32, u32, u32, u32, u32, u32, u32) {
157        let cp = crate::encoding::cparams::get_cparams_public(level, src, dict);
158        (
159            cp.window_log,
160            cp.chain_log,
161            cp.hash_log,
162            cp.search_log,
163            cp.min_match,
164            cp.target_length,
165            cp.strategy,
166        )
167    }
168
169    /// Force every HUF table build onto the cheap single-build path (skip the
170    /// #167 table-log search) so a bench harness can A/B the search across
171    /// levels. Measurement-only.
172    pub fn set_force_cheap_huf(on: bool) {
173        crate::huff0::huff0_encoder::set_force_cheap_huf(on);
174    }
175
176    pub use crate::bit_io::BitReaderReversed;
177    // `BitReaderReversed` is generic over `K: CpuKernel = ScalarKernel`,
178    // so both the trait bound and the default need a `pub` path to
179    // match the re-exported type's visibility. Without this the
180    // bench-build trips `private_bounds` / `private_interfaces`.
181    pub use crate::cpu_kernel::{CpuKernel, ScalarKernel};
182
183    /// Bench-only facade for the decoder wildcopy implementation.
184    ///
185    /// # Safety
186    /// Caller must satisfy the same safety contract as
187    /// `decoding::copy_bytes_overshooting_for_bench`.
188    #[inline(always)]
189    pub unsafe fn copy_bytes_overshooting_for_bench(
190        src: (*const u8, usize),
191        dst: (*mut u8, usize),
192        copy_at_least: usize,
193    ) {
194        // Keep decoder internals crate-private and expose only this bench shim.
195        unsafe { crate::decoding::copy_bytes_overshooting_for_bench(src, dst, copy_at_least) };
196    }
197
198    /// Maximum block size per RFC 8878 §3.1.1.2.3 (128 KiB).
199    /// Exposed for parity tests that feed exactly-one-block chunks
200    /// into the block-splitter comparator.
201    pub const MAX_BLOCK_SIZE: u32 = crate::common::MAX_BLOCK_SIZE;
202
203    /// Run our block splitter on a 128 KB chunk.
204    ///
205    /// `split_level` mirrors upstream zstd `ZSTD_splitBlock(level)`: `0` selects
206    /// the borders heuristic (`ZSTD_splitBlock_fromBorders`), `1..=4`
207    /// select `ZSTD_splitBlock_byChunks` at the corresponding sampling
208    /// level. Returns the split position (or `block.len()` if no split).
209    ///
210    /// Crate-internal facade for the block-splitter parity comparator test —
211    /// the underlying functions stay `fn` so they don't widen the
212    /// stable API surface.
213    pub fn block_splitter_decision(block: &[u8], split_level: usize) -> usize {
214        crate::encoding::frame_compressor::block_splitter_decision_for_bench(block, split_level)
215    }
216
217    /// White-box capture of our Huffman weight description for `data`:
218    /// `(description, weights)` where `description` is the length-prefixed
219    /// FSE payload and `weights` the raw per-symbol weights. Facade for the
220    /// `ffi-bench` conformance test that feeds it through the C `HUF_readStats`.
221    pub fn huf_weight_description(data: &[u8]) -> (alloc::vec::Vec<u8>, alloc::vec::Vec<u8>) {
222        crate::huff0::huff0_encoder::huf_weight_description_for_test(data)
223    }
224
225    /// White-box capture of our 4-stream Huffman payload for `data`. Facade for
226    /// the `ffi-bench` conformance test that decodes it through the C HUF reader.
227    pub fn huf_encode4x(data: &[u8]) -> alloc::vec::Vec<u8> {
228        crate::huff0::huff0_encoder::huf_encode4x_for_test(data)
229    }
230
231    /// White-box capture of the level-22 sequence stream (literal-length,
232    /// offset, match-length triples) our match generator emits for `data`.
233    /// Facade for the sequence-conformance test in `ffi-bench`, which
234    /// compares this stream against the C reference's `ZSTD_generateSequences`
235    /// output. Pure Rust; the C side stays out of this crate.
236    pub fn collect_level22_sequences(data: &[u8]) -> alloc::vec::Vec<(usize, usize, usize)> {
237        crate::encoding::match_generator::collect_level22_sequences(data)
238    }
239
240    /// FastCOVER dictionary roundtrip fixture: `(finalized_dictionary,
241    /// compressed_frame, original_payload)`. Facade for the `ffi-bench`
242    /// conformance test that decodes `compressed_frame` against the dictionary
243    /// through the C decoder and compares to `original_payload`.
244    #[cfg(feature = "dict-builder")]
245    pub fn dict_roundtrip_fixture() -> (
246        alloc::vec::Vec<u8>,
247        alloc::vec::Vec<u8>,
248        alloc::vec::Vec<u8>,
249    ) {
250        crate::dictionary::dict_roundtrip_fixture()
251    }
252
253    pub use crate::blocks::block::BlockType;
254
255    /// First block's type (raw / rle / compressed) in a frame. Facade over the
256    /// internal block decoder for the FFI parity tests in `ffi-bench`.
257    pub fn first_block_type(frame: &[u8]) -> BlockType {
258        let (_, header_size) = crate::decoding::frame::read_frame_header_with_format(frame, false)
259            .expect("frame header should parse");
260        let mut decoder = crate::decoding::block_decoder::new();
261        let (header, _) = decoder
262            .read_block_header(&frame[header_size as usize..])
263            .expect("block header should parse");
264        header.block_type
265    }
266
267    /// `(single_segment_flag, frame_content_size, fcs_field_size_bytes)` parsed
268    /// from a frame header. Facade for the FFI parity tests in `ffi-bench` so
269    /// they need not reach into the internal `FrameHeader` type.
270    pub fn frame_header_info(frame: &[u8]) -> (bool, u64, u8) {
271        let (h, _) = crate::decoding::frame::read_frame_header_with_format(frame, false)
272            .expect("frame header should parse");
273        (
274            h.descriptor.single_segment_flag(),
275            h.frame_content_size(),
276            h.descriptor.frame_content_size_bytes().unwrap_or(0),
277        )
278    }
279}
280
281/// SIMD wildcopy overshoot slack carried by every decoder backend
282/// (currently **32 bytes**). Sized so the AVX2 chunked kernel in
283/// `simd_copy::copy_bytes_overshooting` (32-byte stride on x86-64) can
284/// fire on tail copies near the end of a fixed-capacity output buffer.
285/// Upstream zstd's `WILDCOPY_OVERLENGTH` is also 32 bytes today; this
286/// matches that contract.
287///
288/// Public so callers sizing an output slice for
289/// [`crate::decoding::FrameDecoder::decode_all`] can size
290/// `frame_content_size + WILDCOPY_OVERLENGTH` symbolically without
291/// duplicating the value. Use the const reference rather than a
292/// hardcoded literal — `simd_copy::copy_bytes_overshooting` already
293/// ships an AVX-512 64-byte chunked kernel, and the slack may grow
294/// further to reliably enable that wider kernel at buffer tails
295/// (mirroring how the bump from 16 → 32 enabled the AVX2 32-byte
296/// kernel at the tail).
297pub const WILDCOPY_OVERLENGTH: usize = crate::decoding::buffer_backend::WILDCOPY_OVERLENGTH;