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
//! BZZ decoding.
//!
//! This module implements a strongly-typed state machine. The states are:
//!
//! - [`Start`]: ready to decompress a block of input
//! - [`Block`]: we've decoded the size of a block and are in the process of decoding its contents
//! - [`Shuffle`]: we've decoded the stream of "symbols" that represents the current block, and are
//! ready to (1) "shuffle" those symbols into output bytes and (2) start decompressing the next
//! block. (These two can proceed in parallel, which is one reason for the decomposed
//! state-machine design.)
//!
//! The functions [`Start::step`] and [`Block::step`] implement state transitions that consume some
//! bytes from the input stream. You can present bytes to the decoder incrementally, and these
//! functions will return [`Step::Incomplete`] when more bytes need to be presented; the decoder is
//! "suspended", see [`StartSave`] and [`BlockSave`].
//!
//! ## Example decoding loop
//!
//! ```
//! # use sndjvu_codec::{Step::*, bzz::{Scratch, dec::*}};
//! fn decompress(bzz: &[u8], scratch: &mut Scratch) -> Result<Vec<u8>, Error> {
//! let mut out = vec![];
//! let mut start = start(bzz);
//! loop {
//! let mut block = loop {
//! start = match start.step(scratch) {
//! Complete(None) => return Ok(out),
//! Complete(Some(enc)) => break enc,
//! Incomplete(save) => save.seal(),
//! };
//! };
//! let (shuffle, next) = loop {
//! block = match block.step()? {
//! Complete((shuf, enc)) => break (shuf, enc),
//! Incomplete(save) => save.seal(),
//! };
//! };
//! let pos = out.len();
//! out.resize(pos + shuffle.len(), 0);
//! shuffle.run(&mut out[pos..]);
//! start = next;
//! }
//! }
//! ```
use crate::Step::{self, *};
use crate::zp;
use super::{Speed, Symbol, Mtf, Scratch, NUM_CONTEXTS};
use alloc::boxed::Box;
use core::fmt::{Display, Formatter};
use core::mem::replace;
/// An error encountered while decoding a BZZ block.
///
/// Encountering such an error means that the data passed to the decoder was not valid BZZ.
/// There is no good way for the decoder to recover in this situation, and callers who
/// encounter such an error should give up on trying to decode the data.
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
}
#[derive(Debug)]
enum ErrorKind {
MissingMarker,
ExtraMarker {
first: u32,
second: u32,
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self.kind {
ErrorKind::MissingMarker => write!(f, "marker position for block was not encoded")?,
ErrorKind::ExtraMarker { first, second } => write!(f, "marker position for block was encoded more than once ({first}, then {second})")?,
}
Ok(())
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}
fn postincrement(n: &mut u32) -> u32 {
let old = *n;
*n += 1;
old
}
// inverts the Burrows-Wheeler transform, using the same algorithm as DjVuLibre
pub(super) fn bwt_inv(marker: u32, slice: &mut [u8], scratch: &mut Scratch) {
let Scratch {
// like djvulibre's posc
ref mut shadow,
// as in djvulibre
ref mut counts,
// like djvulibre's posn
ref mut ranks,
} = *scratch;
assert_eq!(slice.len() + 1, shadow.len());
ranks.clear();
let counts = match *counts {
None => counts.insert(Box::new([0; 256])),
Some(ref mut xs) => {
**xs = [0; 256];
xs
}
};
ranks.extend(shadow.iter().zip(0u32..).map(|(&sym, i)| {
if i == marker {
0
} else {
postincrement(&mut counts[sym as usize])
}
}));
let total = counts.iter_mut().fold(1, |acc, k| acc + replace(k, acc));
assert_eq!(total as usize, shadow.len());
let pos = slice.iter_mut().rev().fold(0, |acc, dest| {
let sym = shadow[acc as usize];
*dest = sym;
counts[sym as usize] + ranks[acc as usize]
});
assert_eq!(pos, marker);
}
// used to decode block size
fn decode_u24(zp: &mut zp::Decoder<'_>) -> u32 {
let mut n = 1;
while n < 1 << 24 {
n = (n << 1) | (zp.decode_passthrough() as u32);
}
n - (1 << 24)
}
// used to decode MTF indices
fn decode_u8(
zp: &mut zp::Decoder<'_>,
start: u8,
num_bits: u32,
contexts: &mut [zp::Context; NUM_CONTEXTS],
) -> u8 {
let mut n = 1;
while n < 1 << num_bits {
n = (n << 1) | (zp.decode(&mut contexts[start as usize + n as usize - 1]) as u8);
}
n - (1 << num_bits)
}
/// Initial state of the decoder, ready to start a block.
pub struct Start<'dec> {
contexts: Box<[zp::Context; NUM_CONTEXTS]>,
zp: zp::Decoder<'dec>,
// reuse the allocation, since it has to be boxed anyway
mtf_array: Box<[Symbol; 256]>,
}
/// Start decoding some BZZ-compressed bytes.
pub fn start(bzz: &[u8]) -> Start<'_> {
Start {
contexts: Box::new([zp::Context::NEW; NUM_CONTEXTS]),
zp: zp::Decoder::new(bzz),
mtf_array: Box::new([Symbol(0); 256]),
}
}
impl<'dec> Start<'dec> {
/// Try to decode the size of the next block.
///
/// Returns `Step::Complete(Some(_))` if the size was successfully decoded,
/// `Step::Complete(None)` if there is no next block, or `Step::Incomplete(_)` if more input
/// bytes are needed to proceed.
pub fn step<'scratch>(self, scratch: &'scratch mut Scratch) -> Step<Option<Block<'dec, 'scratch>>, StartSave> {
let mut zp = match self.zp.provision(24 + 2) {
Complete(dec) => dec,
Incomplete(zp) => {
return Incomplete(StartSave {
contexts: self.contexts,
mtf_array: self.mtf_array,
zp
});
}
};
let block_size = decode_u24(&mut zp);
if block_size == 0 {
return Complete(None);
}
let speed = if zp.decode_passthrough() {
if zp.decode_passthrough() {
Speed::Two
} else {
Speed::One
}
} else {
Speed::Zero
};
let mtf = Mtf::new(speed, self.mtf_array);
scratch.shadow.clear();
Complete(Some(Block {
contexts: self.contexts,
zp,
progress: BlockProgress {
size: block_size,
i: 0,
marker: None,
mtf,
mtf_index: Some(3),
},
scratch,
}))
}
}
/// Suspended state of the decoder that will resolve to [`Start`].
pub struct StartSave {
zp: zp::dec::DecoderSave,
contexts: Box<[zp::Context; NUM_CONTEXTS]>,
mtf_array: Box<[Symbol; 256]>,
}
impl StartSave {
/// Provide more input bytes.
pub fn resume(self, bzz: &[u8]) -> Start<'_> {
Start {
zp: self.zp.resume(bzz),
contexts: self.contexts,
mtf_array: self.mtf_array,
}
}
/// Signal that the end of input has been reached.
pub fn seal<'dec>(self) -> Start<'dec> {
Start {
zp: self.zp.seal(),
contexts: self.contexts,
mtf_array: self.mtf_array,
}
}
}
// state that exists only during the decoding of a block
struct BlockProgress {
size: u32,
i: u32,
marker: Option<u32>,
mtf: Mtf,
mtf_index: Option<u8>,
}
/// State of the decoder while decoding the contents of a block.
pub struct Block<'dec, 'scratch> {
zp: zp::Decoder<'dec>,
contexts: Box<[zp::Context; NUM_CONTEXTS]>,
progress: BlockProgress,
scratch: &'scratch mut Scratch,
}
/// Suspended state of the decoder that will resolve to [`Block`].
pub struct BlockSave<'scratch> {
zp: zp::dec::DecoderSave,
contexts: Box<[zp::Context; NUM_CONTEXTS]>,
progress: BlockProgress,
scratch: &'scratch mut Scratch,
}
/// State of the decoder after the initial decoding pass over a block.
///
/// A second pass over the decoded data is needed to compute the output bytes, and this is
/// implemented by [`Self::run`]. This doesn't need further access to the input byte stream, so
/// decoding of the next block can proceed in parallel.
pub struct Shuffle<'scratch> {
marker: u32,
scratch: &'scratch mut Scratch,
}
impl<'scratch> Shuffle<'scratch> {
/// The length of the output block.
pub fn len(&self) -> usize {
self.scratch.shadow.len() - 1
}
/// Run the inverse Burrows–Wheeler transform to compute the output block.
///
/// The length of `out` must be equal to `self.len()`.
pub fn run(self, out: &mut [u8]) {
assert_eq!(out.len(), self.len(), "usage error: passed a slice of the wrong length to `Shuffle::run`");
bwt_inv(self.marker, out, self.scratch);
}
}
impl<'scratch> BlockSave<'scratch> {
/// Provide more input bytes.
pub fn resume<'dec>(self, bzz: &'dec [u8]) -> Block<'dec, 'scratch> {
Block { zp: self.zp.resume(bzz), contexts: self.contexts, progress: self.progress, scratch: self.scratch }
}
/// Signal that the end of input has been reached.
pub fn seal<'dec>(self) -> Block<'dec, 'scratch> {
Block { zp: self.zp.seal(), contexts: self.contexts, progress: self.progress, scratch: self.scratch }
}
}
impl<'dec, 'scratch> Block<'dec, 'scratch> {
/// Make progress on decoding the block.
///
/// Returns `Err(_)` if the input was invalid, `Ok(Step::Complete(_))` if the block was decoded
/// completely, or `Ok(Step::Incomplete(_))` if more input bytes are needed (this does not mean
/// that no progress was made).
pub fn step(self) -> Result<Step<(Shuffle<'scratch>, Start<'dec>), BlockSave<'scratch>>, Error> {
let Self { mut contexts, mut zp, mut progress, scratch } = self;
while progress.i < progress.size {
zp = match zp.provision(16) {
Complete(dec) => dec,
Incomplete(zp) => {
return Ok(Incomplete(BlockSave {
contexts,
progress,
zp,
scratch,
}))
}
};
let mtf_index = progress.mtf_index.map_or(256, usize::from);
let start = mtf_index.min(2);
let next = if zp.decode(&mut contexts[start]) {
0
} else if zp.decode(&mut contexts[start + 3]) {
1
} else if let Some(x) = (1..8).find(|&s| zp.decode(&mut contexts[4 + (1 << s)])) {
(1 << x) + decode_u8(&mut zp, 5 + (1 << x), x, &mut contexts)
} else {
progress.mtf_index = None;
if let Some(old) = progress.marker.replace(progress.i) {
return Err(Error {
kind: ErrorKind::ExtraMarker {
first: old,
second: progress.i,
},
});
}
scratch.shadow.push(0);
progress.i += 1;
continue;
};
progress.mtf_index = Some(next);
let symbol = progress.mtf.do_rotation(next);
scratch.shadow.push(symbol.get());
progress.i += 1;
}
let marker = progress.marker.ok_or(Error { kind: ErrorKind::MissingMarker })?;
// ready to decode the next block header
Ok(Complete((
Shuffle { marker, scratch },
Start {
contexts,
zp,
mtf_array: progress.mtf.into_inner(),
},
)))
}
}