jkl 0.2.1

Asset compression and packing tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
//! Asymmetric Numeral Systems (ANS) entropy coder.
//!
//! Provides a [`Context`] that holds per-symbol frequency tables, an [`Encoder`]
//! that compresses symbols into a stream of `u32` tokens, and a [`Decoder`] that
//! reconstructs the original symbols from that token stream in reverse order.

use std::{cmp, error::Error, fmt, hash::Hash, io};

use hashbrown::HashMap;

use crate::{
    bits::{ReadBits, WriteBits},
    encode::VarCode,
    math::Delta,
    vle,
};

/// Shared frequency table used by [`Encoder`] and [`Decoder`].
///
/// A `Context` stores per-symbol frequencies, cumulative frequencies, and a
/// lookup table for fast symbol resolution during decoding. It is built once
/// from input data or a frequency map and then shared by reference with
/// encoders and decoders.
#[derive(Clone, Debug)]
pub struct Context<T> {
    freqs: HashMap<T, u64>,
    cumul: HashMap<T, u64>,
    map: Vec<(u64, T)>,
    total: u64,
}

impl<T> Context<T> {
    /// Builds a context from sorted (symbol, frequency) pairs and an optional
    /// pre-built frequency map.
    fn build(
        freqs_sorted: impl IntoIterator<Item = (T, u64)>,
        freqs: Option<HashMap<T, u64>>,
    ) -> Self
    where
        T: Eq + Hash + Copy,
    {
        let mut cumul = HashMap::<T, u64>::new();
        let mut accum = 0u64;
        let build_freqs = freqs.is_none();
        let mut freqs = freqs.unwrap_or_default();

        for (symbol, count) in freqs_sorted {
            if build_freqs {
                freqs.insert(symbol, count);
            } else {
                debug_assert_eq!(freqs[&symbol], count);
            }

            cumul.insert(symbol, accum);
            accum += count;
        }

        if freqs.len() == 1 {
            // Fix degenerate case.
            let (_, count) = freqs.iter_mut().next().unwrap();
            *count = 1;
            accum = 2;
        }

        if accum >= 0x8000_0000 {
            panic!("Too many symbols");
        }

        assert!(accum < 0x8000_0000);

        let mut map = cumul.iter().map(|(s, c)| (*c, *s)).collect::<Vec<_>>();
        map.sort_unstable_by_key(|(c, _)| *c);

        Context {
            freqs,
            cumul,
            map,
            total: accum,
        }
    }

    /// Build context from sorted frequencies.
    ///
    /// Frequency sequence is sorted by symbols.
    pub fn from_sorted_frequencies(freqs_sorted: impl IntoIterator<Item = (T, u64)>) -> Self
    where
        T: Eq + Hash + Copy,
    {
        Self::build(freqs_sorted, None)
    }

    /// Build context from frequency map.
    pub fn from_frequency_map(freqs: HashMap<T, u64>) -> Self
    where
        T: Ord + Hash + Copy,
    {
        Self::from_frequency_map_ord_by(freqs, |a, b| a.cmp(&b))
    }

    /// Build context from frequency map.
    /// Uses provided order for symbols.
    pub fn from_frequency_map_ord_by(
        freqs: HashMap<T, u64>,
        ord: impl Fn(T, T) -> cmp::Ordering,
    ) -> Self
    where
        T: Eq + Hash + Copy,
    {
        let mut freqs_sorted = freqs.iter().map(|(s, c)| (*s, *c)).collect::<Vec<_>>();
        freqs_sorted.sort_unstable_by(|(a, _), (b, _)| ord(*a, *b));
        Self::build(freqs_sorted, Some(freqs))
    }

    /// Build context from input data.
    pub fn from_input(input: impl IntoIterator<Item = T>) -> Self
    where
        T: Ord + Hash + Copy,
    {
        Self::from_input_ord_by(input, |a, b| a.cmp(&b))
    }

    /// Build context from input data.
    ///
    /// Uses provided order for symbols.
    pub fn from_input_ord_by(
        input: impl IntoIterator<Item = T>,
        ord: impl Fn(T, T) -> cmp::Ordering,
    ) -> Self
    where
        T: Eq + Hash + Copy,
    {
        let mut freqs = HashMap::<T, u64>::new();

        input.into_iter().for_each(|symbol| {
            *freqs.entry(symbol).or_default() += 1;
        });

        Self::from_frequency_map_ord_by(freqs, ord)
    }

    /// Returns an iterator over all `(symbol, frequency)` pairs in this context.
    pub fn freqs(&self) -> impl ExactSizeIterator<Item = (T, u64)> + '_
    where
        T: Copy,
    {
        self.freqs.iter().map(|(s, c)| (*s, *c))
    }

    fn bit_len(&self) -> usize
    where
        T: Copy + Default + Ord + Delta + VarCode,
    {
        let mut bit_len = 0;

        let mut freqs = self.freqs().collect::<Vec<_>>();
        freqs.sort_unstable_by_key(|(symbol, _)| *symbol);

        {
            // Write number of symbols.
            bit_len += vle::encode_bit_len(freqs.len());

            // Encode frequencies.
            let mut last = T::default();
            for (symbol, count) in &freqs {
                bit_len += vle::encode_bit_len(*count);

                let d = symbol.delta(last);
                last = *symbol;
                bit_len += d.var_bit_len();
            }
        }

        bit_len
    }

    /// Write minimal header for Ans encoding.
    pub fn write(&self, writer: &mut WriteBits<impl io::Write>) -> io::Result<()>
    where
        T: Copy + Default + Ord + Delta + VarCode,
    {
        let mut freqs = self.freqs().collect::<Vec<_>>();
        freqs.sort_unstable_by_key(|(symbol, _)| *symbol);

        {
            // Write number of symbols.
            vle::encode(freqs.len(), writer)?;

            // Encode frequencies.
            let mut last = T::default();
            for (symbol, count) in &freqs {
                vle::encode(*count, writer)?;

                let d = symbol.delta(last);
                last = *symbol;
                d.var_write(writer)?;
            }
        }

        Ok(())
    }

    /// Write minimal header for Ans encoding.
    /// Uses provided order and delta function for symbols.
    /// Encodes deltas between symbols, which can be more efficient.
    pub fn write_with_delta<U>(
        &self,
        writer: &mut WriteBits<impl io::Write>,
        init: T,
        ord: impl Fn(T, T) -> cmp::Ordering,
        delta: impl Fn(T, T) -> U,
    ) -> io::Result<()>
    where
        T: Copy,
        U: VarCode,
    {
        let mut freqs = self.freqs().collect::<Vec<_>>();
        freqs.sort_unstable_by(|(a, _), (b, _)| ord(*a, *b));

        {
            // Write number of symbols.
            vle::encode(freqs.len(), writer)?;

            // Encode frequencies.
            let mut last = init;
            for (symbol, count) in &freqs {
                vle::encode(*count, writer)?;

                let d = delta(last, *symbol);
                last = *symbol;
                d.var_write(writer)?;
            }
        }

        Ok(())
    }

    /// Read minimal header for ANS encoding.
    ///
    /// Should be used if context was written without delta encoding.
    pub fn read(reader: &mut ReadBits<impl io::Read>) -> io::Result<Self>
    where
        T: Copy + Default + Eq + Hash + Delta + VarCode,
    {
        // Read number of symbols.
        let len = { vle::decode::<usize, _>(reader)? };

        // Read symbols and build frequency map.
        let mut freqs_sorted = Vec::<(T, u64)>::with_capacity(len);

        let mut last = T::default();
        for _ in 0..len {
            let count = vle::decode::<u64, _>(reader)?;

            let d = T::var_read(reader)?;
            let symbol = T::from_delta(last, d);
            last = symbol;
            freqs_sorted.push((symbol, count));
        }

        Ok(Self::from_sorted_frequencies(freqs_sorted))
    }

    /// Read minimal header for ANS encoding.
    ///
    /// Uses provided order and delta function for symbols.
    /// Decodes deltas between symbols, which can be more efficient.
    ///
    /// Should be used if context was written with delta encoding.
    /// Using same order and delta function as for writing is required for correct decoding.
    pub fn read_with_delta<U>(
        reader: &mut ReadBits<impl io::Read>,
        init: T,
        from_delta: impl Fn(T, U) -> T,
    ) -> io::Result<Self>
    where
        T: Copy + Eq + Hash,
        U: VarCode,
    {
        // Read number of symbols.
        let len = { vle::decode::<usize, _>(reader)? };

        // Read symbols and build frequency map.
        let mut freqs_sorted = Vec::<(T, u64)>::with_capacity(len);

        let mut last = init;
        for _ in 0..len {
            let count = vle::decode::<u64, _>(reader)?;

            let d = U::var_read(reader)?;
            let symbol = from_delta(last, d);
            last = symbol;
            freqs_sorted.push((symbol, count));
        }

        Ok(Self::from_sorted_frequencies(freqs_sorted))
    }
}

impl<T> VarCode for Context<T>
where
    T: Copy + Default + Ord + Hash + Delta + VarCode,
{
    fn var_bit_len(&self) -> usize {
        Context::bit_len(self)
    }

    fn var_write(&self, writer: &mut WriteBits<impl io::Write>) -> io::Result<()> {
        Context::write(self, writer)
    }

    fn var_read(read: &mut ReadBits<impl io::Read>) -> io::Result<Self> {
        Context::read(read)
    }
}

/// ANS encoder that compresses symbols into a stream of `u32` tokens.
///
/// Symbols are fed one at a time via [`encode`](Self::encode). Each call may
/// return a `u32` token that must be stored. After all symbols have been
/// encoded, call [`finish`](Self::finish) to retrieve the final state pair.
///
/// The token stream must be provided to the [`Decoder`] in **reverse** order.
pub struct Encoder<'a, T> {
    state: u64,
    ctx: &'a Context<T>,
}

impl<'a, T> Encoder<'a, T>
where
    T: Eq + Hash + Copy,
{
    /// Prepare Ans encoder.
    pub fn new(ctx: &'a Context<T>) -> Self {
        Encoder {
            // Starting state value is as large as maximum ctx.total.
            // It guarantees that any symbol will grow the state.
            // After first symbol state is guaranteed to be at least 0x8000_0000
            // This works in favor of decoder,
            // where it knows that state below 0x8000_0000 means that more bits need to be read.
            // And if there are none, decoding finished.
            state: 0x7FFF_FFFF,
            ctx,
        }
    }

    /// Encodes a single symbol, returning a `u32` token if state bits need to be emitted.
    pub fn encode(&mut self, symbol: T) -> Option<u32> {
        let freq = self.ctx.freqs[&symbol];
        let cumul = self.ctx.cumul[&symbol];

        let mut emit = None;

        // Checks that new state is guaranteed to be flushable.
        // And guards against overflow in new state calculation.
        if 0x8000_0000_0000_0000 / self.ctx.total <= self.state / freq {
            let lo_state = self.state & 0xFFFF_FFFF;
            let hi_state = self.state >> 32;

            emit = Some(lo_state as u32);

            // Calculate new state.
            let new_state = (hi_state / freq) * self.ctx.total + hi_state % freq + cumul;

            debug_assert!(new_state >= 0x8000_0000);
            debug_assert!(new_state < 0x8000_0000_0000_0000);

            self.state = new_state;
        } else {
            // Calculate new state.
            let mut new_state = (self.state / freq) * self.ctx.total + self.state % freq + cumul;

            debug_assert!(freq < self.ctx.total);
            debug_assert!(new_state > self.state);

            // If it's too big, emit some bits and reduce it.
            if new_state >= 0x8000_0000_0000_0000 {
                let lo_state = self.state & 0xFFFF_FFFF;
                let hi_state = self.state >> 32;

                emit = Some(lo_state as u32);

                new_state = (hi_state / freq) * self.ctx.total + hi_state % freq + cumul;

                debug_assert!(new_state >= 0x8000_0000);
                debug_assert!(new_state < 0x8000_0000_0000_0000);
            }

            self.state = new_state;
        }

        emit
    }

    /// Returns the current internal encoder state.
    pub fn state(&self) -> u64 {
        self.state
    }

    /// Consumes the encoder and returns the two-word final state that the
    /// decoder needs to begin decoding.
    pub fn finish(self) -> [u32; 2] {
        debug_assert!(self.state >= 0x0000_0000_8000_0000);
        debug_assert!(self.state < 0x8000_0000_0000_0000);

        let hi_state = self.state >> 32;
        let lo_state = self.state & 0xFFFF_FFFF;

        [lo_state as u32, hi_state as u32]
    }
}

/// Error type for ANS decoding failures.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum DecodeError {
    /// Signals that decoder did not end in final state,
    /// which may mean that compressed data is corrupted.
    Incomplete,
}

impl fmt::Display for DecodeError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            DecodeError::Incomplete => write!(f, "Decoding did not finish in final state"),
        }
    }
}

impl Error for DecodeError {}

/// ANS decoder that reconstructs symbols from a token stream.
///
/// Tokens must be provided in the reverse of the order they were emitted by
/// the [`Encoder`]. After all symbols have been decoded, call
/// [`finish`](Self::finish) to verify the decoder returned to its initial state.
pub struct Decoder<'a, T> {
    state: u64,
    ctx: &'a Context<T>,
}

impl<'a, T> Decoder<'a, T>
where
    T: Eq + Hash + Copy,
{
    /// Creates a new decoder bound to the given context.
    pub fn new(ctx: &'a Context<T>) -> Self {
        Self { state: 0, ctx }
    }

    /// Decodes one symbol, pulling additional tokens from `tokens` as needed.
    ///
    /// Returns `None` when the token stream is exhausted.
    pub fn decode(&mut self, mut tokens: impl Iterator<Item = u32>) -> Option<T> {
        if self.state < 0x8000_0000 {
            let token = tokens.next()?;
            self.state = (self.state << 32) | u64::from(token);
        }

        if unlikely(self.state < 0x8000_0000) {
            // Only occurs on first symbol.
            let token = tokens.next()?;
            self.state = (self.state << 32) | u64::from(token);
        }

        let c = self.state % self.ctx.total;

        let index = match self.ctx.map.binary_search_by_key(&c, |(start, _)| *start) {
            Ok(index) => index,
            Err(next) => next - 1,
        };

        let symbol = self.ctx.map[index].1;

        let new_state = (self.state / self.ctx.total) * self.ctx.freqs[&symbol]
            + (self.state % self.ctx.total)
            - self.ctx.cumul[&symbol];

        self.state = new_state;

        Some(symbol)
    }

    /// Decodes all remaining symbols from `tokens` and appends them to `extend`.
    pub fn decode_all(
        &mut self,
        mut tokens: impl Iterator<Item = u32>,
        extend: &mut impl Extend<T>,
    ) {
        if self.state < 0x8000_0000 {
            let Some(token) = tokens.next() else {
                return;
            };
            self.state = (self.state << 32) | u64::from(token);
        }

        loop {
            if self.state < 0x8000_0000 {
                let Some(token) = tokens.next() else {
                    return;
                };
                self.state = (self.state << 32) | u64::from(token);
            }

            let c = self.state % self.ctx.total;

            let index = match self.ctx.map.binary_search_by_key(&c, |(start, _)| *start) {
                Ok(index) => index,
                Err(next) => next - 1,
            };

            let symbol = self.ctx.map[index].1;

            let new_state = (self.state / self.ctx.total) * self.ctx.freqs[&symbol]
                + (self.state % self.ctx.total)
                - self.ctx.cumul[&symbol];

            self.state = new_state;

            extend.extend(Some(symbol));
        }
    }

    /// Verifies that the decoder ended in the expected final state.
    ///
    /// Returns `Err(DecodeError::Incomplete)` if the internal state does not
    /// match the encoder's initial state, which typically indicates corrupted data.
    pub fn finish(&self) -> Result<(), DecodeError> {
        if self.state == 0x7FFF_FFFF {
            Ok(())
        } else {
            Err(DecodeError::Incomplete)
        }
    }
}

#[test]
fn test_u16() {
    use crate::bits::{read_bits_scope, write_bits_scope};

    let data = [
        1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 3, 1, 2,
        1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 3, 1, 2,
        1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 3, 1, 2,
        1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 3, 1, 2,
        1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 3, 1, 2,
        1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 3, 1, 1, 1, 2, 2,
        1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 3, 1,
        1, 1, 2, 2, 1, 1, 3, 3, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 2, 1, 1, 2, 1, 1, 3,
        3, 1, 1, 1, 2, 1, 3, 1, 1, 1, 2, 2, 1, 1, 3, 3,
    ];

    let ctx = Context::from_input(data);

    let mut encoder = Encoder::<u16>::new(&ctx);
    let mut compressed = Vec::new();

    for symbol in data {
        compressed.extend(encoder.encode(symbol));
    }

    compressed.extend(encoder.finish());

    let mut ctx_buf = Vec::new();

    write_bits_scope(&mut ctx_buf, |writer| ctx.write(writer)).unwrap();

    let ctx2 = read_bits_scope(&ctx_buf[..], |reader| Context::read(reader)).unwrap();

    let mut decoder = Decoder::new(&ctx2);

    let mut decoded = Vec::new();
    let mut iter = compressed.iter().copied().rev();

    while decoded.len() < data.len() {
        match decoder.decode(&mut iter) {
            None => panic!(),
            Some(symbol) => {
                decoded.push(symbol);
            }
        }
    }

    decoded.reverse();

    assert_eq!(data[..], decoded[..]);

    assert!(decoder.finish().is_ok());

    decoded.clear();
    let mut decoder = Decoder::new(&ctx2);
    decoder.decode_all(compressed.into_iter().rev(), &mut decoded);
    decoded.reverse();

    assert_eq!(data[..], decoded[..]);

    assert!(decoder.finish().is_ok());
}

#[inline(always)]
fn unlikely(condition: bool) -> bool {
    if condition {
        cold_path();
        true
    } else {
        false
    }
}

#[cold]
fn cold_path() {}