Skip to main content

structured_zstd/encoding/levels/
config.rs

1//! Per-level compression tuning: the matcher config structs, the level
2//! parameter table, and the level → params resolution chain.
3//!
4//! Moved verbatim from `match_generator.rs` (no behaviour change): the
5//! `HcConfig` / `RowConfig` / `DfastConfig` / `FastConfig` knobs, `LevelParams`
6//! and `LEVEL_TABLE`, the public-parameter overrides, the source-size tiering,
7//! and the workspace estimators. `match_generator` imports this resolution API
8//! instead of carrying it inline. Encoding-level paths are written absolute
9//! (`crate::encoding::…`) so the module can live under `levels/` unchanged.
10
11use crate::encoding::CompressionLevel;
12use crate::encoding::match_generator::{HC_SEARCH_DEPTH, HC_TARGET_LEN, ROW_MIN_MATCH_LEN};
13#[cfg(test)]
14use crate::encoding::match_generator::{ROW_HASH_BITS, ROW_LOG, ROW_SEARCH_DEPTH, ROW_TARGET_LEN};
15#[cfg(test)]
16use crate::encoding::match_table::storage::{HC_CHAIN_LOG, HC_HASH_LOG};
17/// Bundled tuning knobs for the hash-chain matcher. Using a typed config
18/// instead of positional `usize` args eliminates parameter-order hazards.
19#[derive(Copy, Clone, PartialEq, Eq)]
20pub(crate) struct HcConfig {
21    pub(crate) hash_log: usize,
22    pub(crate) chain_log: usize,
23    pub(crate) search_depth: usize,
24    pub(crate) target_len: usize,
25    /// Binary-tree finder hash width. Upstream uses `mls = BOUNDED(3, minMatch, 6)`
26    /// (`ZSTD_selectBtGetAllMatches`, zstd_opt.c:896) — i.e. mls=3 on the
27    /// btultra/btultra2 levels (L18-22, minMatch=3) — and surfaces 3-byte matches
28    /// through a fallback-only HC3 finder (zstd_opt.c:691-720: distance < 256 KiB,
29    /// taken only when no longer/repcode match exists). Our optimal parser does
30    /// NOT yet replicate that 3-byte handling — it emits short matches C prices
31    /// out, breaking level-22 sequence parity — so the BT hash width is clamped UP
32    /// to 4 (`cp.min_match.clamp(4, 6)`) to keep the finder from surfacing those
33    /// 3-byte matches and so match C's output. This is a deliberate workaround,
34    /// NOT C's finder width; drop the clamp once the optimal parser is C-faithful
35    /// at minMatch 3 (tracked in #337). Carried explicitly per level so a
36    /// `target_length` override can't silently change the finder's hashing width.
37    /// Only the BT body reads it; HC / lazy levels keep it at 4.
38    pub(crate) search_mls: usize,
39}
40
41#[derive(Copy, Clone, PartialEq, Eq)]
42pub(crate) struct RowConfig {
43    pub(crate) hash_bits: usize,
44    pub(crate) row_log: usize,
45    pub(crate) search_depth: usize,
46    pub(crate) target_len: usize,
47    /// Upstream zstd `cParams.minMatch` for the row matcher: the regular-search
48    /// acceptance floor (a row candidate must extend to >= `mls` bytes).
49    /// The C-like advanced API surfaces this as the row min-match knob.
50    /// `ROW_MIN_MATCH_LEN` (5) is the default; the row hash key width stays
51    /// 4 bytes (an internal detail), so this only tunes the acceptance
52    /// floor, not the candidate hash distribution.
53    pub(crate) mls: usize,
54    /// Upstream `cParams.chainLog`: the hash-chain table the greedy/lazy
55    /// parse searches instead of rows when the window is 2^14 or smaller
56    /// (upstream `ZSTD_resolveRowMatchFinderMode`), or the binary tree
57    /// (`2^(chainLog-1)` nodes) of a btlazy2 level.
58    pub(crate) chain_log: usize,
59    /// Upstream `ZSTD_btlazy2`: the lazy parse searches the lazily-sorted
60    /// binary tree (`ZSTD_BtFindBestMatch`) instead of rows / the chain.
61    pub(crate) bt: bool,
62}
63
64// Only used as the default HashChain config when the test-only parse×search
65// override pairs a level with a backend its native row doesn't populate.
66#[cfg(test)]
67pub(crate) const HC_CONFIG: HcConfig = HcConfig {
68    hash_log: HC_HASH_LOG,
69    chain_log: HC_CHAIN_LOG,
70    search_depth: HC_SEARCH_DEPTH,
71    target_len: HC_TARGET_LEN,
72    search_mls: 4,
73};
74
75/// Base HashChain config synthesized when a public-parameter strategy
76/// override ([`crate::encoding::parameters`]) routes a level to the HC / BT
77/// backend whose native level row didn't populate `hc` (e.g. forcing
78/// `Strategy::Lazy2` onto a level the table resolves to Fast). Mirrors
79/// the mid-band lazy defaults; the per-knob overrides then refine it.
80pub(crate) const HC_OVERRIDE_DEFAULT: HcConfig = HcConfig {
81    hash_log: crate::encoding::match_table::storage::HC_HASH_LOG,
82    chain_log: crate::encoding::match_table::storage::HC_CHAIN_LOG,
83    search_depth: HC_SEARCH_DEPTH,
84    target_len: HC_TARGET_LEN,
85    search_mls: 4,
86};
87
88// Default Row config: only used by tests and the test-only parse×search
89// override (production greedy L5 carries its own `ROW_L5`).
90#[cfg(test)]
91pub(crate) const ROW_CONFIG: RowConfig = RowConfig {
92    hash_bits: ROW_HASH_BITS,
93    row_log: ROW_LOG,
94    search_depth: ROW_SEARCH_DEPTH,
95    target_len: ROW_TARGET_LEN,
96    mls: ROW_MIN_MATCH_LEN,
97    chain_log: ROW_HASH_BITS,
98    bt: false,
99};
100
101// Level-5 greedy is the ONLY strategy routed to the Row backend
102// (`StrategyTag::backend`: greedy -> Row; lazy / btopt / btultra* ->
103// HashChain), so it is the only level whose `row:` field is read. The upstream zstd
104// `clevels.h` default row (srcSize > 256 KB) for level 5 is searchLog=3,
105// targetLength=2, from which the row matcher derives:
106//   rowLog       = clamp(searchLog, 4, 6) = 4
107//   search_depth = 1 << min(searchLog, rowLog) = 8   (= nbAttempts)
108//   target_len   = targetLength = 2                  (nice-match early-out)
109// The shared `ROW_CONFIG` (row_log=5, search_depth=16, target_len=48) ran a
110// level-12-grade search here: 16 slots per row, never early-exiting until a
111// 48-byte match. That exhaustive walk was the dominant cost in greedy L5's
112// encode-speed regression vs FFI. `hash_bits` matches upstream zstd's
113// `ZSTD_getCParams(5, .., 0).hashLog` = 19 (verified via
114// `cparams_check 5`), so the row table is the same width as upstream's
115// (2^19 slots); the previous `ROW_HASH_BITS` (20) doubled both row tables vs
116// upstream, the dominant peak-memory excess on the greedy band.
117pub(crate) const ROW_L5: RowConfig = RowConfig {
118    hash_bits: 19,
119    row_log: 4,
120    search_depth: 8,
121    target_len: 2,
122    mls: ROW_MIN_MATCH_LEN,
123    chain_log: 18,
124    bt: false,
125};
126
127/// Per-level Double-Fast hash sizing, mirroring the upstream zstd `clevels.h` columns
128/// (config-driven, not a hardcoded constant): `long_hash_log` =
129/// `cParams.hashLog` (the long 8-byte hash table), `short_hash_log` =
130/// `cParams.chainLog` (the short hash table dfast repurposes as its
131/// secondary index). Only the Dfast backend reads it, so non-dfast level
132/// rows carry `dfast: None`. `minMatch` stays the upstream zstd-fixed `5`
133/// (`DFAST_MIN_MATCH_LEN`, used in const contexts).
134#[derive(Copy, Clone, PartialEq, Eq)]
135pub(crate) struct DfastConfig {
136    pub(crate) long_hash_log: u8,
137    pub(crate) short_hash_log: u8,
138}
139
140// Upstream zstd clevels.h default row (srcSize > 256 KB): L3 {hashLog 17, chainLog 16}.
141pub(crate) const DFAST_L3: DfastConfig = DfastConfig {
142    long_hash_log: 17,
143    short_hash_log: 16,
144};
145
146/// Per-level Fast-strategy tuning, only consumed by the `FastKernelMatcher`
147/// (Simple backend): `hash_log` = upstream zstd `cParams.hashLog`, `mls` = upstream zstd
148/// `cParams.minMatch` (4..=8), `step_size` = upstream zstd `stepSize`. Carried as
149/// `LevelParams.fast` (`Some` only on Fast level rows; `None` elsewhere).
150#[derive(Copy, Clone, PartialEq, Eq)]
151pub(crate) struct FastConfig {
152    pub(crate) hash_log: u32,
153    pub(crate) mls: u32,
154    pub(crate) step_size: usize,
155}
156
157pub(crate) const FAST_L1: FastConfig = FastConfig {
158    hash_log: 14,
159    // Tier-0 (srcSize > 256 KiB) `cParams.minMatch`. Upstream zstd selects the
160    // Level-1 row from a 4-way srcSize-tiered table (`ZSTD_getCParams_internal`
161    // → `ZSTD_defaultCParameters[tableID][1]`), and minMatch shrinks for
162    // smaller inputs: 7 (>256 KiB) / 6 (16..256 KiB) / 5 (<=16 KiB). The base
163    // here is the tier-0 value; `fast_l1_mls_for_source_size` lowers it per the
164    // tier in `adjust_params_for_source_size`.
165    mls: 7,
166    step_size: 2,
167};
168
169/// Resolved tuning parameters for a compression level. The
170/// [`StrategyTag`] is the single source of truth for the backend
171/// family and the compile-time strategy consts; the runtime
172/// [`BackendTag`] used by the driver dispatcher is derived via
173/// [`StrategyTag::backend`] so the two cannot drift.
174#[derive(Copy, Clone, PartialEq, Eq)]
175pub(crate) struct LevelParams {
176    pub(crate) strategy_tag: crate::encoding::strategy::StrategyTag,
177    /// Decoupled search-method axis. Independent of `strategy_tag`'s
178    /// parse half: a level can pair any parse (greedy / lazy depth via
179    /// `lazy_depth`) with any search backend here. Defaults to the
180    /// historical pairing (`strategy_tag.search()`) but is overridable
181    /// per level so the parse×search matrix can be swept and tuned.
182    pub(crate) search: crate::encoding::strategy::SearchMethod,
183    pub(crate) window_log: u8,
184    pub(crate) lazy_depth: u8,
185    /// Per-strategy tuning. Exactly one is `Some` on each level row, matching
186    /// `strategy_tag`'s backend, so the table self-documents which knobs a
187    /// level actually consumes (the others are `None`, not dead placeholders):
188    /// `fast` for the Fast/Simple backend, `dfast` for Double-Fast, `hc` for
189    /// the HashChain (lazy / btopt / btultra*) backend, `row` for the Row
190    /// (greedy L5) backend.
191    pub(crate) fast: Option<FastConfig>,
192    pub(crate) dfast: Option<DfastConfig>,
193    pub(crate) hc: Option<HcConfig>,
194    pub(crate) row: Option<RowConfig>,
195}
196
197impl LevelParams {
198    /// Backend family (storage variant) for the driver dispatcher.
199    /// Derived from the decoupled `search` axis so a level can route to
200    /// a different search backend than its `strategy_tag` historically
201    /// implied.
202    pub(crate) fn backend(&self) -> crate::encoding::strategy::BackendTag {
203        self.search.backend()
204    }
205
206    /// Parse mode derived from the decoupled `search` axis: the binary-tree
207    /// search path carries `ParseMode::Optimal`; every other search backend
208    /// derives greedy/lazy/lazy2 from `lazy_depth`. Reading `search` (not the
209    /// strategy tag) keeps the parse×search decoupling complete even when a
210    /// level whose tag is `Bt*` is overridden to a non-BT search backend.
211    pub(crate) fn parse(&self) -> crate::encoding::strategy::ParseMode {
212        match self.search {
213            crate::encoding::strategy::SearchMethod::BinaryTree => {
214                crate::encoding::strategy::ParseMode::Optimal
215            }
216            _ => crate::encoding::strategy::ParseMode::from_lazy_depth(self.lazy_depth),
217        }
218    }
219
220    /// Cheap fingerprint pre-splitter level (the `ZSTD_splitBlock` level;
221    /// `0` = from-borders heuristic, `1..=4` = byChunks with sampling tier
222    /// `level - 1`, rates 43 / 11 / 5 / 1). See [`pre_split_for`].
223    pub(crate) fn pre_split(&self) -> Option<u8> {
224        Some(pre_split_for(self.strategy_tag, self.lazy_depth))
225    }
226}
227
228/// The pre-splitter level for an effective strategy (the tag plus, for the
229/// collapsed `Lazy` tag, its lazy depth).
230///
231/// Upstream's default is `splitLevels[strategy] = {0,0,1,2,2,3,3,4,4,4}`
232/// (zstd_compress.c:4552, used as is; only an explicit `blockSplitterLevel`
233/// is shifted down by 2). It is followed up to lazy depth 1 — the finer
234/// sampling is a real ratio win on mixed data (decodecorpus at greedy/lazy:
235/// the borders tier compressed 4.6-4.9 % WORSE than upstream, the upstream
236/// rate-11 tier <= upstream) — but the lazy2/btlazy2 rate-5 and optimal-band
237/// rate-1 tiers are DELIBERATELY kept two steps coarser: on periodic input
238/// they over-split every block into tiny pieces exactly like upstream does
239/// (100 MiB of repeated log lines at L8-L12: 140,625 bytes and 3.6x the
240/// time upstream-tier, 9,742 bytes coarse — 14x better than upstream) while
241/// on real data they buy under 0.1 % (decodecorpus L8-L12: 170 bytes of
242/// 483 KiB). The drop-in contract asks for ratio <= upstream, not for
243/// upstream's block boundaries.
244pub(crate) fn pre_split_for(tag: crate::encoding::strategy::StrategyTag, lazy_depth: u8) -> u8 {
245    use crate::encoding::strategy::StrategyTag;
246    match tag {
247        // Upstream tiers: borders / byChunks rate 43 / rate 11.
248        StrategyTag::Fast => 0,
249        StrategyTag::Dfast => 1,
250        StrategyTag::Greedy => 2,
251        // lazy (depth 1) = upstream rate 11; lazy2 coarsened to rate 43.
252        StrategyTag::Lazy => {
253            if lazy_depth >= 2 {
254                1
255            } else {
256                2
257            }
258        }
259        StrategyTag::Btlazy2 => 1,
260        // Coarsened to byChunks rate 11 (upstream: rate 1).
261        StrategyTag::BtOpt | StrategyTag::BtUltra | StrategyTag::BtUltra2 => 2,
262    }
263}
264
265/// Apply the public-parameter per-knob overrides (#27) onto the
266/// level-resolved [`LevelParams`], in place. Runs in [`Matcher::reset`]
267/// after the level params are computed and before backend selection, so
268/// a strategy override re-routes the backend uniformly. An all-`None`
269/// override is a no-op the caller skips via
270/// [`crate::encoding::parameters::ParamOverrides::is_empty`], keeping the default
271/// level geometry byte-identical.
272pub(crate) fn apply_param_overrides(
273    params: &mut LevelParams,
274    ov: &crate::encoding::parameters::ParamOverrides,
275) {
276    use crate::encoding::strategy::SearchMethod;
277
278    // 1. Strategy override re-derives tag / search / lazy depth.
279    if let Some(strategy) = ov.strategy {
280        let tag = strategy.tag();
281        params.strategy_tag = tag;
282        params.search = tag.search();
283        params.lazy_depth = strategy.lazy_depth();
284    }
285
286    // 2. Ensure the active backend's config row exists (synthesize a
287    //    default when a strategy override moved off the native row).
288    match params.search {
289        SearchMethod::Fast => {
290            params.fast.get_or_insert(FAST_L1);
291        }
292        SearchMethod::DoubleFast => {
293            params.dfast.get_or_insert(DFAST_L3);
294        }
295        SearchMethod::RowHash | SearchMethod::BinaryTreeLazy => {
296            // `ROW_L5` already carries `mls = ROW_MIN_MATCH_LEN = 5`, the
297            // upstream `minMatch` of the whole greedy..btlazy2 band at the
298            // >256 KiB tier, so a synthesized btlazy2 override hashes at the
299            // same width as a native btlazy2 row.
300            let row = params.row.get_or_insert(ROW_L5);
301            row.bt = matches!(params.search, SearchMethod::BinaryTreeLazy);
302        }
303        SearchMethod::HashChain | SearchMethod::BinaryTree => {
304            params.hc.get_or_insert(HC_OVERRIDE_DEFAULT);
305        }
306    }
307
308    // 3. window_log (bounds-checked at <= 30 by the builder).
309    if let Some(window_log) = ov.window_log {
310        params.window_log = window_log;
311    }
312
313    // 4. Per-backend numeric knobs map into the active config, mirroring
314    //    the upstream zstd `cParams` -> matcher translation documented on each
315    //    config struct.
316    match params.search {
317        SearchMethod::Fast => {
318            if let Some(fast) = params.fast.as_mut() {
319                if let Some(hash_log) = ov.hash_log {
320                    fast.hash_log = hash_log;
321                }
322                if let Some(min_match) = ov.min_match {
323                    fast.mls = fast_key_len(min_match);
324                }
325                // targetLength is the Fast strategy's step, as it is on the
326                // level's own row: upstream zstd_fast.c `stepSize =
327                // targetLength + !targetLength + 1`.
328                if let Some(target_length) = ov.target_length {
329                    fast.step_size = (target_length as usize).max(1) + 1;
330                }
331            }
332        }
333        SearchMethod::DoubleFast => {
334            if let Some(dfast) = params.dfast.as_mut() {
335                // hashLog -> long table, chainLog -> short table (the
336                // dfast secondary index). Both bounds-checked <= 30, so
337                // the `u8` casts are lossless.
338                if let Some(hash_log) = ov.hash_log {
339                    dfast.long_hash_log = hash_log as u8;
340                }
341                if let Some(chain_log) = ov.chain_log {
342                    dfast.short_hash_log = chain_log as u8;
343                }
344            }
345        }
346        SearchMethod::RowHash | SearchMethod::BinaryTreeLazy => {
347            if let Some(row) = params.row.as_mut() {
348                // Row hash-table width override (mirrors dfast `long_hash_log`
349                // / hc `hash_log`); `chain_log` sizes the hash chain the same
350                // backend searches on a <= 2^14 window, or its binary tree.
351                if let Some(hash_log) = ov.hash_log {
352                    row.hash_bits = hash_log as usize;
353                }
354                if let Some(chain_log) = ov.chain_log {
355                    row.chain_log = chain_log as usize;
356                }
357                if let Some(search_log) = ov.search_log {
358                    // Upstream zstd: rowLog = clamp(searchLog, 4, 6); the
359                    // compare budget stays the FULL `1 << searchLog`
360                    // (`nbAttempts`) — the chain walk and the tree walk
361                    // consume it directly, and the row probe bounds its own
362                    // budget by the row size at the search site.
363                    row.row_log = (search_log as usize).clamp(4, 6);
364                    row.search_depth = 1usize << search_log;
365                }
366                if let Some(target_length) = ov.target_length {
367                    row.target_len = target_length as usize;
368                }
369                if let Some(min_match) = ov.min_match {
370                    row.mls = min_match as usize;
371                }
372            }
373        }
374        SearchMethod::HashChain | SearchMethod::BinaryTree => {
375            if let Some(hc) = params.hc.as_mut() {
376                if let Some(hash_log) = ov.hash_log {
377                    hc.hash_log = hash_log as usize;
378                }
379                if let Some(chain_log) = ov.chain_log {
380                    hc.chain_log = chain_log as usize;
381                }
382                if let Some(search_log) = ov.search_log {
383                    hc.search_depth = 1usize << search_log;
384                }
385                if let Some(target_length) = ov.target_length {
386                    hc.target_len = target_length as usize;
387                }
388                if let Some(min_match) = ov.min_match {
389                    // BT finder hash width, derived from cParams.minMatch exactly
390                    // as upstream zstd: `mls = BOUNDED(3, cParams.minMatch, 6)`
391                    // (zstd_opt.c:896 ZSTD_selectBtGetAllMatches). minMatch=3
392                    // tiers hash on 3 bytes (btultra/btultra2 path). Only the BT
393                    // body reads `search_mls`; HC/lazy hash on 4 bytes regardless.
394                    hc.search_mls = (min_match as usize).clamp(3, 6);
395                }
396            }
397        }
398    }
399}
400
401/// The key width the fast strategy hashes for a `minMatch`: upstream's fast
402/// block compressor takes 3 as 4 (zstd_fast.c, `ZSTD_compressBlock_fast`:
403/// `default: /* includes case 3 */`). A 3 reaches the fast strategy from the
404/// knob, or from an optimal level's CDict row a strategy knob moved onto it.
405fn fast_key_len(min_match: u32) -> u32 {
406    min_match.max(4)
407}
408
409/// Map the resolved runtime strategy to the upstream zstd LDM strategy ordinal
410/// (1..=9) that [`crate::encoding::ldm::params::LdmParams::adjust_for`] expects.
411/// The collapsed `Lazy` tag splits on `lazy_depth` (lazy = 4, lazy2 = 5).
412#[cfg(feature = "ldm")]
413pub(crate) fn ldm_strategy_ordinal(
414    tag: crate::encoding::strategy::StrategyTag,
415    lazy_depth: u8,
416) -> u32 {
417    use crate::encoding::strategy::StrategyTag;
418    match tag {
419        StrategyTag::Fast => 1,
420        StrategyTag::Dfast => 2,
421        StrategyTag::Greedy => 3,
422        StrategyTag::Lazy => {
423            if lazy_depth >= 2 {
424                5
425            } else {
426                4
427            }
428        }
429        // Upstream zstd `ZSTD_btlazy2` ordinal.
430        StrategyTag::Btlazy2 => 6,
431        StrategyTag::BtOpt => 7,
432        StrategyTag::BtUltra => 8,
433        StrategyTag::BtUltra2 => 9,
434    }
435}
436
437/// `ceil(log2(size))` of a source-size hint, with a zero hint floored to
438/// [`MIN_WINDOW_LOG`]. This is the single quantization every hint-dependent
439/// matcher parameter is derived from: the window-log cap, the HC / Fast hash
440/// and chain widths, the Dfast / Row table widths, the L22 config buckets, and
441/// the Fast attach-vs-copy cutoff. Two hints sharing this value resolve to the
442/// identical matcher shape, which is why it (not the raw byte count) keys the
443/// primed-dictionary snapshot — see [`PrimedKey`]. Operates on the full `u64`
444/// so callers comparing a hint against a cutoff get the same bucketed decision
445/// here and at the driver, with no `as usize` truncation on 32-bit targets.
446pub(crate) fn source_size_ceil_log(size: u64) -> u8 {
447    if size == 0 {
448        MIN_WINDOW_LOG
449    } else {
450        (64 - (size - 1).leading_zeros()) as u8
451    }
452}
453
454/// Attach-vs-copy cutoff for the Fast strategy, as a ceil-log bucket: a hint at
455/// or below `2^this` (or unknown, `None`) ATTACHES the dictionary (a separate
456/// immutable table scanned in place via the borrowed dual-base kernel); a larger
457/// hint would COPY it into the live table.
458///
459/// `13` is upstream zstd's Fast cutoff (`attachDictSizeCutoffs[ZSTD_fast]` is
460/// 8 KB, zstd_compress.c:2296; `ZSTD_shouldAttachDict`, :2309). Above it the
461/// dictionary is COPIED, and the copy is what makes the dictionary pay on a
462/// larger source: the scan then runs over a table already holding the
463/// dictionary's positions, so ordinary NEAR matches improve everywhere. Attach
464/// mode starts with an empty table and reaches the dictionary only through the
465/// separate exact table, at the positions the step happens to land on.
466///
467/// This was `31` (attach every source up to 2 GiB) on a speed argument alone,
468/// and the missing byte column is where it went wrong. Per frame, `z000033`
469/// (1,022,035 B) and its leading 10 KiB, with a 16 KiB dictionary trained over
470/// its 10 KiB chunks, on the i9: two prebuilt binaries and libzstd alternated
471/// in one session, `perf stat -r 3`, three rounds, ranges non-overlapping.
472///
473/// | case | bytes attach | bytes copy | reference | cycles attach | cycles copy | insn attach | insn copy |
474/// |---|---|---|---|---|---|---|---|
475/// | 10 KiB, L1 | 6,976 | 7,122 | 7,122 | 236,355 (1.95x) | 169,116 (1.39x) | 633,127 (1.78x) | 478,066 (1.34x) |
476/// | 10 KiB, L-5 | 9,660 | 9,124 | 9,130 | 51,678 (1.22x) | 56,444 (1.33x) | 152,281 (1.14x) | 153,369 (1.15x) |
477/// | 1 MiB, L1 | 550,810 | 551,584 | 570,765 | 19.84M (1.76x) | 16.21M (1.44x) | 54.01M (1.91x) | 39.60M (1.40x) |
478/// | 1 MiB, L-5 | 689,127 | 647,735 | 669,826 | 8.80M (1.46x) | 10.67M (1.77x) | 21.62M (1.54x) | 22.81M (1.63x) |
479///
480/// Copy is the better arm on both axes at the positive levels: it takes 18-28%
481/// fewer cycles and 22-27% fewer instructions, and its bytes are the
482/// reference's exactly on the small frame and 3.4% under the reference on the
483/// large one. At the ultra-fast levels it buys ratio with time: 21% more cycles
484/// on the 1 MiB frame for 6.0% fewer bytes, 9% more on the small one for 5.5%
485/// fewer. That trade is what the cutoff is for. Attach put us 2.9% ABOVE the
486/// reference on the 1 MiB ultra-fast frame — the dictionary made our frame
487/// bigger than our own no-dict frame there, while it made the reference's
488/// smaller — because it found 21,897 sequences where the reference finds
489/// 27,546. Copy puts us 3.3% under it.
490///
491/// The remaining gap is now a same-mode one: the reference does this copy in
492/// 1.0x where we take 1.3-1.8x, which is a target with an apples-to-apples
493/// reference rather than a mode the reference never runs.
494///
495/// The borrowed attach kernel stores virtual positions as `u32`
496/// (`cur_abs as u32`), so it could not attach past bucket `31` regardless; that
497/// ceiling is now far above the cutoff and no longer the binding constraint.
498/// Shared by `reset` (records the mode in the primed-snapshot key) and
499/// `prime_with_dictionary` (acts on it).
500pub(crate) const FAST_ATTACH_DICT_CUTOFF_LOG: u8 = 13;
501
502/// Largest dictionary region (bytes) the Fast attach path can index. The tagged
503/// dict table packs each position into `32 - DICT_TAG_BITS` (= 24) bits, so a
504/// region past `2^24` (16 MiB) would overflow the packed position. Dictionaries
505/// this large fall back to COPY mode, whose live table stores full `u32`
506/// positions and handles them. The size hint set on dict load equals the actual
507/// dict content length, so the attach-vs-copy decision (and the matching
508/// snapshot-key / epoch bits) can gate on it consistently at reset time.
509pub(crate) const MAX_FAST_ATTACH_DICT_REGION: usize = 1 << 24;
510
511/// Dfast counterpart of [`FAST_ATTACH_DICT_CUTOFF_LOG`]: upstream zstd
512/// `ZSTD_dictMatchState` attach cutoff for the double-fast strategy is 16 KiB
513/// (`2^14`), so small / unknown-size inputs ATTACH (separate immutable dict
514/// long+short tables + dual-probe in `start_matching_fast_loop`) and larger
515/// known-size inputs COPY (re-prime the dict into the live tables, where the
516/// dense scan matches it as window history). The attach build also self-gates
517/// on `use_fast_loop` inside `skip_matching_for_dict_attach` — only the
518/// fast-loop levels (L3 / Default / L0) carry the dual-probe.
519pub(crate) const DFAST_ATTACH_DICT_CUTOFF_LOG: u8 = 14;
520
521/// 32 KiB (`2^15`, upstream zstd `attachDictSizeCutoffs[ZSTD_lazy2]`): small /
522/// unknown-size inputs ATTACH the dict as a separate hash-chain dms (the dual
523/// search in `find_best_match` walks the live input chain + the dms), larger
524/// known-size inputs dense-COPY (merge the dict into the live chain and search
525/// the one combined chain).
526pub(crate) const HC_ATTACH_DICT_CUTOFF_LOG: u8 = 15;
527
528/// BT/optimal attach cutoff for `btlazy2` + `btopt`: 32 KiB (`2^15`, upstream
529/// zstd `attachDictSizeCutoffs[ZSTD_btlazy2]` == `[ZSTD_btopt]`). Small /
530/// unknown-size inputs ATTACH the dict as a separate DUBT dms; larger known-size
531/// inputs COPY the dict into the LIVE binary tree (upstream zstd
532/// `ZSTD_resetCCtx_byCopyingCDict`).
533pub(crate) const BT_OPT_ATTACH_DICT_CUTOFF_LOG: u8 = 15;
534
535/// BT/optimal attach cutoff for `btultra` + `btultra2`: 8 KiB (`2^13`, upstream
536/// zstd `attachDictSizeCutoffs[ZSTD_btultra]` == `[ZSTD_btultra2]`). The deepest
537/// parses copy the dict into the live tree past a much smaller source than the
538/// `btopt` tier, matching upstream's per-strategy cutoff table.
539pub(crate) const BT_ULTRA_ATTACH_DICT_CUTOFF_LOG: u8 = 13;
540
541// Source-size cap for the dfast hash bits when a size hint is present: a tiny
542// input needs no larger hash than its window. The upstream zstd `cParams.hashLog` /
543// `chainLog` (from `DfastConfig`) caps it from above at the call site.
544pub(crate) fn dfast_hash_bits_for_window(max_window_size: usize) -> usize {
545    let window_log = (usize::BITS - 1 - max_window_size.leading_zeros()) as usize;
546    window_log.max(MIN_WINDOW_LOG as usize)
547}
548
549pub(crate) fn row_hash_bits_for_window(max_window_size: usize) -> usize {
550    // Upstream zstd `ZSTD_adjustCParams_internal` cap: `hashLog <= windowLog + 1`.
551    // The `+ 1` is load-bearing for L12, whose upstream zstd hashLog (23) exceeds
552    // its windowLog (22) — a plain `windowLog` cap would shrink the L12
553    // table on EVERY hinted reset and split primed snapshots between
554    // hinted and unhinted frames that resolve to the identical geometry.
555    // No constant upper clamp: the old `ROW_HASH_BITS` (20) ceiling
556    // predates the lazy band moving onto Row (L9-12 carry upstream zstd hashLog
557    // 21-23).
558    let window_log = (usize::BITS - 1 - max_window_size.leading_zeros()) as usize;
559    (window_log + 1).max(MIN_WINDOW_LOG as usize)
560}
561
562/// `floor(log2(window))` for the HashChain table-log cap (upstream zstd
563/// `ZSTD_adjustCParams_internal`). The caller clamps the level's `hash_log` /
564/// `chain_log` from above with this so a small hinted input doesn't allocate the
565/// full level's tables.
566pub(crate) fn hc_hash_bits_for_window(max_window_size: usize) -> usize {
567    let window_log = (usize::BITS - 1 - max_window_size.leading_zeros()) as usize;
568    window_log.max(MIN_WINDOW_LOG as usize)
569}
570
571/// Smallest window_log the encoder will use regardless of source size.
572pub(crate) const MIN_WINDOW_LOG: u8 = 10;
573
574/// Largest window_log the public parameter API accepts
575/// ([`CParameter::WindowLog`](crate::encoding::CParameter)'s upper bound), and
576/// so the largest a workspace estimate can be asked to describe. The estimate
577/// answers for whatever it is given, and shifting by more than the width of a
578/// `usize` is undefined, so a request beyond this is answered with this.
579pub(crate) const MAX_ESTIMATED_WINDOW_LOG: u8 = 30;
580
581/// Translate a verbatim upstream `ZSTD_defaultCParameters[tier][level]` row
582/// (`cparams::CParams`) into our resolved [`LevelParams`], reproducing
583/// upstream's cParams -> matcher-config derivation so the encoder follows C's
584/// source-size-tiered STRATEGY + table widths rather than a single hand-tuned
585/// `LEVEL_TABLE`. Derivation (verified against L6/L16/L22 vs clevels.h):
586/// `search_depth = 1 << searchLog`; row `row_log = clamp(searchLog, 4, 6)`; the
587/// per-strategy sub-config carries the verbatim `hashLog` / `chainLog` /
588/// `targetLength` / `minMatch`. Strategy numbers are upstream `ZSTD_strategy`
589/// (fast=1, dfast=2, greedy=3, lazy=4, lazy2=5, btlazy2=6, btopt=7, btultra=8,
590/// btultra2=9).
591fn level_params_from_cparams(cp: crate::encoding::cparams::CParams) -> LevelParams {
592    use crate::encoding::strategy::{SearchMethod, StrategyTag};
593    let window_log = cp.window_log as u8;
594    let search_depth = 1usize << cp.search_log;
595    let target_len = cp.target_length as usize;
596    let hc = HcConfig {
597        hash_log: cp.hash_log as usize,
598        chain_log: cp.chain_log as usize,
599        search_depth,
600        target_len,
601        // Clamp UP to 4: C's BT finder uses mls=3 on L18-22, but our optimal
602        // parser diverges on the resulting 3-byte matches (breaks level-22
603        // sequence parity), so we keep the finder at >=4 as a workaround until
604        // the parser is C-faithful at minMatch 3. See `HcConfig::search_mls` (#337).
605        search_mls: cp.min_match.clamp(4, 6) as usize,
606    };
607    let row = RowConfig {
608        hash_bits: cp.hash_log as usize,
609        row_log: cp.search_log.clamp(4, 6) as usize,
610        search_depth,
611        target_len,
612        mls: cp.min_match as usize,
613        chain_log: cp.chain_log as usize,
614        // Upstream `ZSTD_btlazy2` (strategy 6).
615        bt: cp.strategy == 6,
616    };
617    let bt = |tag| LevelParams {
618        strategy_tag: tag,
619        search: SearchMethod::BinaryTree,
620        window_log,
621        lazy_depth: 2,
622        fast: None,
623        dfast: None,
624        hc: Some(hc),
625        row: None,
626    };
627    let row_lvl = |tag, search, lazy_depth| LevelParams {
628        strategy_tag: tag,
629        search,
630        window_log,
631        lazy_depth,
632        fast: None,
633        dfast: None,
634        hc: None,
635        row: Some(row),
636    };
637    match cp.strategy {
638        1 => LevelParams {
639            strategy_tag: StrategyTag::Fast,
640            search: SearchMethod::Fast,
641            window_log,
642            lazy_depth: 0,
643            // Upstream fast `stepSize`: `targetLength + 1` (0 -> 1, so step 2).
644            fast: Some(FastConfig {
645                hash_log: cp.hash_log,
646                mls: fast_key_len(cp.min_match),
647                step_size: target_len.max(1) + 1,
648            }),
649            dfast: None,
650            hc: None,
651            row: None,
652        },
653        2 => LevelParams {
654            strategy_tag: StrategyTag::Dfast,
655            search: SearchMethod::DoubleFast,
656            window_log,
657            lazy_depth: 1,
658            fast: None,
659            dfast: Some(DfastConfig {
660                long_hash_log: cp.hash_log as u8,
661                short_hash_log: cp.chain_log as u8,
662            }),
663            hc: None,
664            row: None,
665        },
666        3 => row_lvl(StrategyTag::Greedy, SearchMethod::RowHash, 0),
667        4 => row_lvl(StrategyTag::Lazy, SearchMethod::RowHash, 1),
668        5 => row_lvl(StrategyTag::Lazy, SearchMethod::RowHash, 2),
669        // btlazy2: the same lazy2 parse over the lazily-sorted binary tree.
670        6 => row_lvl(StrategyTag::Btlazy2, SearchMethod::BinaryTreeLazy, 2),
671        7 => bt(StrategyTag::BtOpt),
672        8 => bt(StrategyTag::BtUltra),
673        _ => bt(StrategyTag::BtUltra2),
674    }
675}
676
677/// Down-size a synthesized backend's window / hash / chain logs for a known
678/// source size by routing through the single C-faithful adjuster
679/// [`adjust_cparams`](crate::encoding::cparams::adjust_cparams)
680/// (`ZSTD_adjustCParams_internal`).
681///
682/// Used only on the param-override re-cap path: [`apply_param_overrides`]
683/// synthesizes a backend's full-size default config when a strategy override
684/// moves off the native level row, and this re-applies the source-size cap
685/// C-faithfully — the SAME adjuster the `get_cparams` main path uses, so the
686/// override path and the level path now down-size identically (no extra hinted
687/// 16 KiB window floor, no per-backend headroom that diverged from C). The
688/// Dfast backend self-sizes its tables in `reset`, so only its window is capped.
689pub(crate) fn adjust_params_for_source_size(mut params: LevelParams, src_size: u64) -> LevelParams {
690    use crate::encoding::cparams::{CParams, adjust_cparams};
691    use crate::encoding::strategy::{BackendTag, StrategyTag};
692
693    let backend = params.backend();
694    // Lift the active backend's source-cappable logs into a flat CParams. Dfast
695    // contributes none (window-only); its table widths self-size in `reset`.
696    let (hash_log, chain_log): (u32, u32) = match backend {
697        BackendTag::Simple => (params.fast.as_ref().map_or(0, |f| f.hash_log), 0),
698        BackendTag::HashChain => params
699            .hc
700            .as_ref()
701            .map_or((0, 0), |h| (h.hash_log as u32, h.chain_log as u32)),
702        BackendTag::Row => params
703            .row
704            .as_ref()
705            .map_or((0, 0), |r| (r.hash_bits as u32, r.chain_log as u32)),
706        BackendTag::Dfast => (0, 0),
707    };
708    // The chain cap (`ZSTD_cycleLog`) reads only `strategy >= btlazy2(6)`, so a
709    // coarse 6/3 split is exact for it; `adjust_cparams`'s other strategy use
710    // (`cdict_indices_are_tagged`) is gated on `create_cdict = false` here.
711    let strategy = if matches!(
712        params.strategy_tag,
713        StrategyTag::Btlazy2 | StrategyTag::BtOpt | StrategyTag::BtUltra | StrategyTag::BtUltra2
714    ) {
715        6
716    } else {
717        3
718    };
719    let adj = adjust_cparams(
720        CParams {
721            window_log: u32::from(params.window_log),
722            chain_log,
723            hash_log,
724            search_log: 1,
725            min_match: 4,
726            target_length: 0,
727            strategy,
728        },
729        src_size,
730        0,
731        false,
732    );
733    params.window_log = adj.window_log as u8;
734    match backend {
735        BackendTag::Simple => {
736            if let Some(f) = params.fast.as_mut() {
737                f.hash_log = adj.hash_log;
738            }
739        }
740        BackendTag::HashChain => {
741            if let Some(h) = params.hc.as_mut() {
742                h.hash_log = adj.hash_log as usize;
743                h.chain_log = adj.chain_log as usize;
744            }
745        }
746        BackendTag::Row => {
747            if let Some(r) = params.row.as_mut() {
748                r.hash_bits = adj.hash_log as usize;
749                r.chain_log = adj.chain_log as usize;
750            }
751        }
752        BackendTag::Dfast => {}
753    }
754    params
755}
756
757/// Apply the caller's parameter overrides to the level params a frame
758/// resolved to: the step the matcher's reset takes after the level (and a
759/// dictionary's CDict tier) is resolved, kept in one place so the workspace
760/// estimate builds exactly what the encoder does. An all-`None` set leaves the
761/// params untouched, which keeps plain level-based geometry byte-identical.
762pub(crate) fn apply_frame_overrides(
763    params: &mut LevelParams,
764    ov: &crate::encoding::parameters::ParamOverrides,
765    dictionary_frame: bool,
766    hint: Option<u64>,
767) {
768    if ov.is_empty() {
769        return;
770    }
771    if dictionary_frame {
772        // A dictionary frame runs the CDict's cParams (upstream
773        // `ZSTD_resetCCtx_byAttachingCDict` / `byCopyingCDict`), and the
774        // search knobs are already part of them
775        // (`resolve_level_params_with_dict`); the frame's own knob is the
776        // window.
777        //
778        // The window still answers to the source, as it does for every
779        // other frame: `ZSTD_adjustCParams_internal` caps it by the source
780        // and dictionary extent, and a window neither can fill only makes
781        // decoders reserve memory the frame never uses. Capped here rather
782        // than through the full adjuster, which would reshape the search.
783        if let Some(window_log) = ov.window_log {
784            params.window_log = match hint {
785                // The source caps the window even here, and even with an
786                // explicit request: the reference command declares 2 KiB
787                // for `--ultra -22 --long=27 -D dict` on a 2 KiB file, and
788                // a window the content cannot fill only makes every decoder
789                // reserve memory the frame never uses. The floor that
790                // travels with the cap in `adjust_cparams` applies too, or
791                // a hint of a few dozen bytes asks for a window smaller
792                // than the format's smallest.
793                //
794                // The dictionary's own size is NOT part of that cap: the
795                // reference declares the same 2 KiB whether the dictionary
796                // is 4 KiB or 256 KiB, because a small window does not put
797                // the dictionary out of reach: sequences may reference it
798                // at offsets beyond the window while the output so far is
799                // within it (RFC 8878, Dictionary_Content). Counting it
800                // made our frames ask decoders for up to 256x what the
801                // reference asks.
802                Some(src) => {
803                    (crate::encoding::cparams::adjusted_window_log(u32::from(window_log), src, 0)
804                        as u8)
805                        .max(MIN_WINDOW_LOG)
806                }
807                None => window_log,
808            };
809        }
810    } else {
811        apply_param_overrides(params, ov);
812        // The level's own resolution applied the source-size cap for the
813        // LEVEL's native backend. If a strategy override moved the frame
814        // onto a different backend, `apply_param_overrides` synthesized that
815        // backend's DEFAULT config (FAST_L1 / HC_OVERRIDE_DEFAULT) with
816        // full-size table logs AFTER that cap ran. Re-apply the hint cap so a
817        // tiny hinted frame doesn't allocate the new backend's full-size
818        // tables.
819        //
820        // The cap covers an explicit `window_log` too, as
821        // `ZSTD_adjustCParams_internal` does upstream: the window is a
822        // promise about the memory decoding will need, and a source that
823        // cannot fill it makes that promise for nothing: every decoder
824        // opening the frame would reserve the whole declared window to read
825        // a few bytes. The override still raises the window as far as the
826        // source can use.
827        if let Some(hint_size) = hint {
828            *params = adjust_params_for_source_size(*params, hint_size);
829        }
830    }
831}
832
833/// The long-distance matcher's parameters for a frame: the caller-pinned knobs
834/// seeded first, then the upstream derivation fills the rest so the set stays
835/// consistent (`hash_rate_log = window_log - hash_log`, and so on); clobbering
836/// after the derivation would hand the producer an inconsistent set. Shared by
837/// the matcher's reset and the workspace estimate.
838#[cfg(feature = "ldm")]
839pub(crate) fn frame_ldm_params(
840    params: &LevelParams,
841    ldm: &crate::encoding::parameters::LdmOverride,
842) -> crate::encoding::ldm::params::LdmParams {
843    let seed = crate::encoding::ldm::params::LdmParams {
844        window_log: params.window_log as u32,
845        hash_log: ldm.hash_log.unwrap_or(0),
846        hash_rate_log: ldm.hash_rate_log.unwrap_or(0),
847        min_match_length: ldm.min_match.unwrap_or(0),
848        bucket_size_log: ldm.bucket_size_log.unwrap_or(0),
849    };
850    seed.derive(ldm_strategy_ordinal(params.strategy_tag, params.lazy_depth))
851}
852
853/// Estimated steady-state heap footprint of a one-shot compression context
854/// at `level` (window history + match-finder tables + block staging), in
855/// bytes. Computed from the same per-level tuning table the encoder
856/// resolves at frame start, so the estimate tracks the real allocations;
857/// it is an upper-bound style budget figure, not an exact accounting.
858pub fn estimated_compression_workspace_bytes(level: CompressionLevel) -> usize {
859    estimated_compression_workspace_bytes_for_source(level, None)
860}
861
862/// The same estimate for a source whose size is known.
863///
864/// The window and the match-finder tables are capped by the source, so a level
865/// that would reserve hundreds of MiB for an arbitrary stream reserves a
866/// fraction of that for a small one — and a caller budgeting memory for a
867/// compression it is about to run knows which. `None` is the arbitrary-stream
868/// figure that [`estimated_compression_workspace_bytes`] reports.
869pub fn estimated_compression_workspace_bytes_for_source(
870    level: CompressionLevel,
871    src_size_hint: Option<u64>,
872) -> usize {
873    estimated_compression_workspace_bytes_for_run(level, src_size_hint, None, false, None)
874}
875
876/// The same estimate for a run whose window, long-distance matching and
877/// dictionary are what the caller has actually asked for.
878///
879/// A `window_log` override enlarges the history the frame keeps, and
880/// long-distance matching adds a hash table of its own on top — neither of them
881/// visible in the level's own preset. A dictionary goes further than adding to
882/// the figure: it *decides* it. The frame runs the dictionary's own compression
883/// parameters, so a small source compressed against a large dictionary builds
884/// tables sized for the dictionary, which at the higher levels is the
885/// difference between tens of KiB and hundreds of MiB. `None`, `false` and
886/// `None` give the preset, which is what
887/// [`estimated_compression_workspace_bytes_for_source`] reports.
888///
889/// `dictionary` is what a caller weighing a run before it parses the blob can
890/// answer with [`DictionarySizes::raw_content`] on the blob's own length: the
891/// content of a trained dictionary is smaller than the blob it came in, and
892/// overstating it can only move the estimate toward the copy-mode geometry,
893/// which is the larger of the two.
894///
895/// [`DictionarySizes::raw_content`]: crate::encoding::DictionarySizes::raw_content
896pub fn estimated_compression_workspace_bytes_for_run(
897    level: CompressionLevel,
898    src_size_hint: Option<u64>,
899    window_log: Option<u8>,
900    long_distance_matching: bool,
901    dictionary: Option<crate::encoding::DictionarySizes>,
902) -> usize {
903    let mut params = match dictionary.filter(|sizes| sizes.content != 0) {
904        Some(sizes) => {
905            resolve_level_params_with_dict(
906                level,
907                src_size_hint,
908                sizes,
909                &crate::encoding::parameters::ParamOverrides::default(),
910            )
911            .0
912        }
913        None => resolve_level_params(level, src_size_hint),
914    };
915    // The override is what the frame will keep, but never below the floor the
916    // format sets or above what the source can fill — the same two bounds the
917    // encoder applies to it.
918    if let Some(requested) = window_log {
919        // Bounded to what the encoder itself accepts before anything shifts by
920        // it. This answers for whatever it is asked, and a shift past the width
921        // of the type is undefined rather than merely large: the largest window
922        // there is, is the honest answer to a request beyond it.
923        let requested = requested.min(MAX_ESTIMATED_WINDOW_LOG);
924        let capped = match src_size_hint {
925            Some(src) => {
926                crate::encoding::cparams::adjusted_window_log(u32::from(requested), src, 0) as u8
927            }
928            None => requested,
929        };
930        params.window_log = capped.clamp(MIN_WINDOW_LOG, MAX_ESTIMATED_WINDOW_LOG);
931    }
932    // The long-distance matcher's own table, sized from the window it searches
933    // (upstream `ZSTD_ldm_adjustParameters`). Only the `ldm` build has one.
934    #[cfg(feature = "ldm")]
935    let ldm = if long_distance_matching {
936        let strategy = ldm_strategy_ordinal(params.strategy_tag, params.lazy_depth);
937        let ldm_params = crate::encoding::ldm::params::LdmParams::adjust_for(
938            u32::from(params.window_log),
939            strategy,
940        );
941        crate::encoding::ldm::table::LdmHashTable::estimated_workspace_bytes(
942            ldm_params.hash_log,
943            ldm_params.bucket_size_log,
944        )
945    } else {
946        0
947    };
948    #[cfg(not(feature = "ldm"))]
949    let ldm = {
950        let _ = long_distance_matching;
951        0
952    };
953    workspace_bytes(&params, ldm)
954}
955
956/// The workspace estimate for a frame run under `parameters`: the level, every
957/// knob that overrides it, the source size and the dictionary, resolved the way
958/// the encoder resolves them at frame start.
959///
960/// [`estimated_compression_workspace_bytes_for_run`] answers for a level with a
961/// window and long-distance matching on top; a caller that also sets `hashLog`,
962/// `chainLog`, a strategy or the long-distance matcher's own table sizes needs
963/// this one, since each of those resizes what the frame allocates. A dictionary
964/// frame runs the geometry the dictionary is prepared with, the knobs included,
965/// as the encoder does.
966///
967/// # Examples
968///
969/// ```
970/// use structured_zstd::encoding::{
971///     estimated_compression_workspace_bytes_for_parameters, CompressionLevel,
972///     CompressionParameters,
973/// };
974///
975/// let level = CompressionParameters::builder(CompressionLevel::Level(3)).build().unwrap();
976/// let wide = CompressionParameters::builder(CompressionLevel::Level(3))
977///     .window_log(27)
978///     .hash_log(24)
979///     .build()
980///     .unwrap();
981/// let source = Some(512 << 20);
982/// assert!(
983///     estimated_compression_workspace_bytes_for_parameters(&wide, source, None)
984///         > estimated_compression_workspace_bytes_for_parameters(&level, source, None)
985/// );
986/// ```
987pub fn estimated_compression_workspace_bytes_for_parameters(
988    parameters: &crate::encoding::CompressionParameters,
989    src_size_hint: Option<u64>,
990    dictionary: Option<crate::encoding::DictionarySizes>,
991) -> usize {
992    let level = parameters.level();
993    let overrides = parameters.overrides();
994    let dictionary = dictionary.filter(|sizes| sizes.content != 0);
995    let mut params = match dictionary {
996        Some(sizes) => resolve_level_params_with_dict(level, src_size_hint, sizes, &overrides).0,
997        None => resolve_level_params(level, src_size_hint),
998    };
999    apply_frame_overrides(&mut params, &overrides, dictionary.is_some(), src_size_hint);
1000    #[cfg(feature = "ldm")]
1001    let ldm = overrides.ldm.map_or(0, |ldm| {
1002        let ldm_params = frame_ldm_params(&params, &ldm);
1003        crate::encoding::ldm::table::LdmHashTable::estimated_workspace_bytes(
1004            ldm_params.hash_log,
1005            ldm_params.bucket_size_log,
1006        )
1007    });
1008    #[cfg(not(feature = "ldm"))]
1009    let ldm = 0;
1010    workspace_bytes(&params, ldm)
1011}
1012
1013/// `entry` bytes for each of `1 << log` slots, pinned at `usize::MAX` where
1014/// the table is more than a `usize` counts: the estimate is a budget, and a
1015/// figure that wrapped would call an impossible table affordable.
1016fn table_bytes(entry: usize, log: usize) -> usize {
1017    u32::try_from(log)
1018        .ok()
1019        .and_then(|log| 1usize.checked_shl(log))
1020        .and_then(|slots| slots.checked_mul(entry))
1021        .unwrap_or(usize::MAX)
1022}
1023
1024/// Window, match-finder tables, optimal-parser scratch and block staging for a
1025/// frame resolved to `params`, plus `ldm` bytes of long-distance table.
1026fn workspace_bytes(params: &LevelParams, ldm: usize) -> usize {
1027    use crate::encoding::strategy::{SearchMethod, StrategyTag};
1028    // A 30-bit window is a gibibyte, which a 32-bit `usize` cannot count: the
1029    // widest window is more memory than such a machine has, so the figure is
1030    // pinned rather than wrapped.
1031    let window = 1usize
1032        .checked_shl(u32::from(params.window_log))
1033        .unwrap_or(usize::MAX);
1034    // Mirror `configure()`: the HC3 short-match side table exists only on
1035    // the btultra/btultra2 tags (minMatch 3), capped by the window log; the
1036    // BT pointer-pair layout fits inside the `4 << chain_log` chain term
1037    // (pairs over `chain_log - 1` nodes).
1038    let wants_hash3 = matches!(
1039        params.strategy_tag,
1040        StrategyTag::BtUltra | StrategyTag::BtUltra2
1041    );
1042    let uses_bt = matches!(
1043        params.strategy_tag,
1044        StrategyTag::BtOpt | StrategyTag::BtUltra | StrategyTag::BtUltra2
1045    );
1046    // Only the backend `params.search` selects is built: `reset` swaps in one
1047    // matcher storage per frame. A strategy override leaves the level's own
1048    // row in place beside the one it synthesized, so summing every populated
1049    // config would charge a frame for tables it never allocates.
1050    // Every term goes through `table_bytes` and every sum saturates: an
1051    // override can ask for a table past what a 32-bit `usize` counts, and a
1052    // shift that dropped its high bits would report that table as free.
1053    let tables = match params.search {
1054        SearchMethod::Fast => params
1055            .fast
1056            .map_or(0, |f| table_bytes(4, f.hash_log as usize)),
1057        SearchMethod::DoubleFast => params.dfast.map_or(0, |d| {
1058            table_bytes(4, usize::from(d.long_hash_log))
1059                .saturating_add(table_bytes(4, usize::from(d.short_hash_log)))
1060        }),
1061        // The lazy backend's chain / tree finders (window <= 2^14, or a
1062        // btlazy2 level) use a plain hash table (`4 << hash_bits`) plus the
1063        // chain / tree table (`4 << chain_log`) instead of the row tables.
1064        SearchMethod::RowHash | SearchMethod::BinaryTreeLazy => params.row.map_or(0, |r| {
1065            if r.bt || params.window_log <= 14 {
1066                table_bytes(4, r.hash_bits).saturating_add(table_bytes(4, r.chain_log))
1067            } else {
1068                table_bytes(4, r.hash_bits).saturating_add(table_bytes(2, r.hash_bits))
1069            }
1070        }),
1071        SearchMethod::HashChain | SearchMethod::BinaryTree => params.hc.map_or(0, |h| {
1072            let hash3 = if wants_hash3 {
1073                table_bytes(
1074                    4,
1075                    crate::encoding::match_table::storage::HC3_HASH_LOG
1076                        .min(params.window_log as usize),
1077                )
1078            } else {
1079                0
1080            };
1081            table_bytes(4, h.hash_log)
1082                .saturating_add(table_bytes(4, h.chain_log))
1083                .saturating_add(hash3)
1084        }),
1085    };
1086    // BT modes box a `BtMatcher`; its retained scratch layout is budgeted
1087    // next to the struct so estimator and allocator evolve together.
1088    let bt = if uses_bt {
1089        crate::encoding::bt::BtMatcher::estimated_workspace_bytes()
1090    } else {
1091        0
1092    };
1093    // Block staging: literal + sequence buffers plus the compressed-block
1094    // scratch, each bounded by the 128 KiB block size.
1095    let staging = 3 * (128 * 1024);
1096    // Saturating: the parts are each bounded, but their sum at the widest
1097    // window is more than a 32-bit `usize` counts, and a total that wrapped
1098    // would report a run as fitting a limit it cannot.
1099    window
1100        .saturating_add(tables)
1101        .saturating_add(bt)
1102        .saturating_add(staging)
1103        .saturating_add(ldm)
1104}
1105
1106/// Extra steady-state workspace the optimal strategies (ordinals 7..=9,
1107/// btopt..btultra2) retain beyond the hash/chain tables: the boxed matcher
1108/// plus its scratch arenas, and the HC3 short-match side table for
1109/// btultra/btultra2 (capped by the window log). 0 for the other ordinals
1110/// (btlazy2's tree lives in the lazy backend's chain table).
1111pub fn estimated_bt_strategy_extra_bytes(strategy_ordinal: u32, window_log: u32) -> usize {
1112    if !(7..=9).contains(&strategy_ordinal) {
1113        return 0;
1114    }
1115    let hash3 = if matches!(strategy_ordinal, 8 | 9) {
1116        4usize << crate::encoding::match_table::storage::HC3_HASH_LOG.min(window_log as usize)
1117    } else {
1118        0
1119    };
1120    crate::encoding::bt::BtMatcher::estimated_workspace_bytes() + hash3
1121}
1122
1123/// Resolve a [`CompressionLevel`] (+ optional source-size hint) to the
1124/// concrete [`LevelParams`] the matcher runs: strategy tag, search method
1125/// (match-finder), window log, and per-backend config.
1126///
1127/// ## CRITICAL: input size changes the match-finder (and can change strategy)
1128///
1129/// The resolved geometry is a function of the SOURCE SIZE, not the level
1130/// alone. This is the easy-to-miss part (so read this before assuming a level
1131/// maps to one fixed match-finder). It mirrors three upstream zstd stages:
1132///
1133/// 1. [`LEVEL_TABLE`] holds the tier-0 (source > 256 KiB) base row per level
1134///    (upstream `ZSTD_defaultCParameters[0]`). L6-L12 carry
1135///    `SearchMethod::RowHash` (the Row match-finder), like upstream's
1136///    greedy/lazy default.
1137/// 2. [`apply_cparams_tier`] overrides the table-shaping widths for the
1138///    smaller source tiers (upstream `ZSTD_getCParams_internal` tier table).
1139///    NOTE: upstream ALSO switches STRATEGY in some tiers (L2 → dfast, L4 →
1140///    greedy on small sources); those backend switches are NOT yet replicated,
1141///    so those levels keep their base strategy on small inputs.
1142/// 3. [`adjust_params_for_source_size`] caps `window_log` to
1143///    ~`ceil_log2(source_size)` (upstream `ZSTD_adjustCParams_internal`).
1144///
1145/// THEN, inside the Row backend, the greedy/lazy band searches a hash chain
1146/// instead of rows when the resolved `window_log <= 14`
1147/// (`RowMatchGenerator::finder`) — exactly upstream's
1148/// `ZSTD_resolveRowMatchFinderMode` (the Row match-finder is used for
1149/// greedy/lazy/lazy2 ONLY when `windowLog > 14`) — and a btlazy2 level
1150/// searches the lazily-sorted binary tree; the parse itself is the same
1151/// `lazy_generic` body in all three cases. Net effect for the SAME level:
1152///
1153/// * small input (e.g. a 10 KiB fixture → `window_log` 14) → hash chain
1154///   (`ZSTD_HcFindBestMatch`, scalar chain walk);
1155/// * large input (e.g. 1 MiB → `window_log` 20) → rows (the SIMD-tag
1156///   row match-finder).
1157///
1158/// A dictionary frame resolves through [`resolve_level_params_with_dict`]
1159/// instead: the CDict's cParams (its own size tier) with the frame's
1160/// source-derived `window_log`. When comparing against C on a fixture,
1161/// resolve the match-finder from the fixture's size (and dictionary) first,
1162/// or you may optimise/benchmark a path C does not even take for that input.
1163pub(crate) fn resolve_level_params(
1164    level: CompressionLevel,
1165    source_size: Option<u64>,
1166) -> LevelParams {
1167    // Uncompressed = raw blocks, no match-finder. Not a cParams level, so it is
1168    // the one row resolved by hand rather than through `get_cparams`.
1169    if matches!(level, CompressionLevel::Uncompressed) {
1170        return LevelParams {
1171            strategy_tag: crate::encoding::strategy::StrategyTag::Fast,
1172            search: crate::encoding::strategy::SearchMethod::Fast,
1173            // Raw frames emit literal blocks and never reference history;
1174            // advertising a wider window only inflates the decoder-side buffer
1175            // reservation, so clamp to 17 (128 KiB) regardless of input size.
1176            window_log: 17,
1177            lazy_depth: 0,
1178            // Beyond-upstream: hash_log=14 (vs upstream's row-0 13) for ~2× fewer
1179            // collisions on structured corpora; mls=6 / step_size=2 mirror the
1180            // upstream "base for negative" row (targetLength=1 -> step 2).
1181            fast: Some(FastConfig {
1182                hash_log: 14,
1183                mls: 6,
1184                step_size: 2,
1185            }),
1186            dfast: None,
1187            hc: None,
1188            row: None,
1189        };
1190    }
1191    // Every other level resolves through the SINGLE C-faithful cParams source,
1192    // `cparams::get_cparams` (the port of `ZSTD_getCParams`). One place selects
1193    // strategy + table widths + the negative-level acceleration per
1194    // (level, srcSize) + the source-size window/hash down-clamp, so the encoder
1195    // never re-derives parameters from a parallel hand-tuned path. Named presets
1196    // map to their numeric level; the cParams source clamps out-of-range levels
1197    // (>22 to 22, negatives to MIN_CLEVEL) itself.
1198    let numeric = numeric_level(level);
1199    let src = source_size.unwrap_or(crate::encoding::cparams::CONTENTSIZE_UNKNOWN);
1200    level_params_from_cparams(crate::encoding::cparams::get_cparams(numeric, src, 0))
1201}
1202
1203/// The upstream numeric level a preset maps to.
1204pub(crate) fn numeric_level(level: CompressionLevel) -> i32 {
1205    match level {
1206        CompressionLevel::Uncompressed => unreachable!("raw frames resolve no cParams"),
1207        // Fastest = upstream level 1 (fast strategy, smallest real-compression
1208        // tables).
1209        CompressionLevel::Fastest => 1,
1210        // Default = upstream level 3 (the libzstd default).
1211        CompressionLevel::Default => CompressionLevel::DEFAULT_LEVEL,
1212        // Better = level 7: the lazy2 band — clearly above the fast/dfast levels
1213        // on ratio while still well under the binary-tree cost cliff.
1214        CompressionLevel::Better => 7,
1215        // Best = level 13: the first point of the deep binary-tree band that
1216        // strictly dominates every level below it on ratio (lower levels can tie
1217        // on window-bound corpora), so the alias sits on a config that always
1218        // wins rather than on a hair-thin margin.
1219        CompressionLevel::Best => 13,
1220        CompressionLevel::Level(n) => n,
1221    }
1222}
1223
1224/// How a greedy / lazy frame compressed with a dictionary takes its
1225/// match-finder from the dictionary's own cParams (upstream
1226/// `ZSTD_resetCCtx_usingCDict`).
1227#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1228pub(crate) struct RowDictPlan {
1229    /// `ZSTD_shouldAttachDict`: the dictionary tables are searched in place
1230    /// (`dictMatchState`) instead of being copied into the frame's tables.
1231    pub(crate) attach: bool,
1232    /// The CDict's `useRowMatchFinder`, inherited by the frame.
1233    pub(crate) use_row: bool,
1234    /// The CDict's cParams: the geometry (`hash_log`, `chain_log`,
1235    /// `search_log` → row width) and key width its tables were built with.
1236    pub(crate) cdict: crate::encoding::cparams::CParams,
1237}
1238
1239/// [`resolve_level_params`] for a frame that compresses with a dictionary of
1240/// `dict_size` bytes. Upstream builds the CDict with
1241/// `ZSTD_getCParams(level, UNKNOWN, dictSize, createCDict)` and the frame
1242/// then runs the CDict's strategy / widths / search depth / match-finder:
1243/// re-adjusted to the source when the dictionary is attached
1244/// (`ZSTD_resetCCtx_byAttachingCDict`), verbatim when it is copied
1245/// (`ZSTD_resetCCtx_byCopyingCDict`); only the frame's own `windowLog` is
1246/// kept. The CDict's strategy is taken whatever backend family the plain
1247/// level resolved to; a lazy-band CDict (greedy..btlazy2) also carries the
1248/// lazy backend's [`RowDictPlan`]. The caller's `overrides` are part of the
1249/// CDict's cParams, as they are for a dictionary upstream loads into a context
1250/// that carries them.
1251pub(crate) fn resolve_level_params_with_dict(
1252    level: CompressionLevel,
1253    source_size: Option<u64>,
1254    sizes: crate::encoding::DictionarySizes,
1255    overrides: &crate::encoding::parameters::ParamOverrides,
1256) -> (LevelParams, Option<RowDictPlan>) {
1257    use crate::encoding::cparams::{
1258        CONTENTSIZE_UNKNOWN, attach_cparams, copy_cparams, get_cdict_cparams, should_attach_dict,
1259        uses_row_match_finder,
1260    };
1261    let base = resolve_level_params(level, source_size);
1262    if sizes.content == 0 {
1263        return (base, None);
1264    }
1265    // The CDict's cParams decide the frame's strategy REGARDLESS of the
1266    // backend family the plain level resolved to for this source size
1267    // (upstream takes them unconditionally): L13 on a 4 KiB source is
1268    // btopt, but a 300 KiB CDict is btlazy2 and the frame runs btlazy2; L4
1269    // on a 1 MiB source is dfast, but a 4 KiB CDict is greedy. Only the
1270    // frame's own `windowLog` is kept.
1271    let cdict = get_cdict_cparams(numeric_level(level), sizes.serialized, overrides);
1272    // `ZSTD_shouldAttachDict`, bounded by the backend's attach representability:
1273    // the Fast / Dfast attached tables pack the dict position next to a tag, so
1274    // they index at most 2^24 content bytes. A larger dictionary is primed in
1275    // COPY mode, and the frame must then run the CDict's verbatim table
1276    // geometry (`byCopyingCDict`) — copying it into source-capped attach-mode
1277    // tables would collide away its matches.
1278    let attach_fits = match cdict.strategy {
1279        1 => sizes.content <= MAX_FAST_ATTACH_DICT_REGION,
1280        2 => sizes.content <= crate::encoding::dfast::DFAST_ATTACH_DICT_MAX_LEN,
1281        _ => true,
1282    };
1283    let attach = should_attach_dict(&cdict, source_size) && attach_fits;
1284    let window_log = u32::from(base.window_log);
1285    let frame = if attach {
1286        attach_cparams(
1287            cdict,
1288            source_size.unwrap_or(CONTENTSIZE_UNKNOWN),
1289            window_log,
1290        )
1291    } else {
1292        copy_cparams(cdict, window_log)
1293    };
1294    let params = level_params_from_cparams(frame);
1295    if !(3..=6).contains(&cdict.strategy) {
1296        // Fast / dfast / optimal strategies: their backends prime the
1297        // dictionary themselves; no lazy-backend plan.
1298        return (params, None);
1299    }
1300    (
1301        params,
1302        Some(RowDictPlan {
1303            attach,
1304            use_row: uses_row_match_finder(&cdict),
1305            cdict,
1306        }),
1307    )
1308}
1309
1310/// The cheap fingerprint pre-splitter level for a compression level (the
1311/// C-like `blockSplitterLevel`), resolved through the same per-level
1312/// `LevelParams` table as every other tuning knob. `None` keeps the whole
1313/// 128 KiB block. The frame loop reads this instead of hardcoding the
1314/// level→split mapping at the call site.
1315pub(crate) fn level_pre_split(level: CompressionLevel) -> Option<usize> {
1316    // Resolve through `resolve_level_params` directly — NOT via the legacy
1317    // `numeric_level()` alias — so named presets read the SAME table row as
1318    // every other tuning knob (`Best` maps to its own row there, which is
1319    // not the row its numeric alias points at). `Uncompressed` (raw
1320    // blocks) never splits.
1321    if matches!(level, CompressionLevel::Uncompressed) {
1322        return None;
1323    }
1324    resolve_level_params(level, None)
1325        .pre_split()
1326        .map(usize::from)
1327}
1328
1329#[cfg(test)]
1330mod tests;