-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathdecoder.rs
More file actions
870 lines (797 loc) · 30.2 KB
/
decoder.rs
File metadata and controls
870 lines (797 loc) · 30.2 KB
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
use alloc::borrow::Cow;
use alloc::boxed::Box;
use alloc::fmt;
use alloc::vec::Vec;
use core::cmp;
use core::default::Default;
use core::mem;
use core::num::NonZeroUsize;
use std::error;
use std::io;
use crate::common::{AnyExtension, Block, DisposalMethod, Extension, Frame};
use crate::reader::DecodeOptions;
use crate::MemoryLimit;
use weezl::{decode::Decoder as LzwDecoder, BitOrder, LzwError, LzwStatus};
/// GIF palettes are RGB
pub const PLTE_CHANNELS: usize = 3;
/// An error returned in the case of the image not being formatted properly.
#[derive(Debug)]
pub struct DecodingFormatError {
underlying: Box<dyn error::Error + Send + Sync + 'static>,
}
impl fmt::Display for DecodingFormatError {
#[cold]
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Display::fmt(&*self.underlying, fmt)
}
}
impl error::Error for DecodingFormatError {
#[cold]
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
Some(&*self.underlying as _)
}
}
/// Decoding error.
#[derive(Debug)]
#[non_exhaustive]
pub enum DecodingError {
/// Failed to internally allocate a buffer of sufficient size.
OutOfMemory,
/// Allocation exceeded set memory limit
MemoryLimit,
/// Expected a decoder but none found.
DecoderNotFound,
/// Expected an end-code, but none found.
EndCodeNotFound,
/// Decoding could not complete as the reader completed prematurely.
UnexpectedEof,
/// Error encountered while decoding an LZW stream.
LzwError(LzwError),
/// Returned if the image is found to be malformed.
Format(DecodingFormatError),
/// Wraps `std::io::Error`.
Io(io::Error),
}
impl DecodingError {
#[cold]
pub(crate) fn format(err: &'static str) -> Self {
Self::Format(DecodingFormatError {
underlying: err.into(),
})
}
}
impl fmt::Display for DecodingError {
#[cold]
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
Self::OutOfMemory => fmt.write_str("Out of Memory"),
Self::MemoryLimit => fmt.write_str("Memory limit reached"),
Self::DecoderNotFound => fmt.write_str("Decoder Not Found"),
Self::EndCodeNotFound => fmt.write_str("End-Code Not Found"),
Self::UnexpectedEof => fmt.write_str("Unexpected End of File"),
Self::LzwError(ref err) => err.fmt(fmt),
Self::Format(ref d) => d.fmt(fmt),
Self::Io(ref err) => err.fmt(fmt),
}
}
}
impl error::Error for DecodingError {
#[cold]
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match *self {
Self::OutOfMemory => None,
Self::MemoryLimit => None,
Self::DecoderNotFound => None,
Self::EndCodeNotFound => None,
Self::UnexpectedEof => None,
Self::LzwError(ref err) => Some(err),
Self::Format(ref err) => Some(err),
Self::Io(ref err) => Some(err),
}
}
}
impl From<LzwError> for DecodingError {
#[inline]
fn from(err: LzwError) -> Self {
Self::LzwError(err)
}
}
impl From<io::Error> for DecodingError {
#[inline]
fn from(err: io::Error) -> Self {
Self::Io(err)
}
}
impl From<DecodingFormatError> for DecodingError {
#[inline]
fn from(err: DecodingFormatError) -> Self {
Self::Format(err)
}
}
/// Varies depending on `skip_frame_decoding`
#[derive(Debug, Copy, Clone)]
pub enum FrameDataType {
/// `Frame.buffer` will be regular pixel data
Pixels,
/// Raw LZW data
Lzw {
/// Needed for decoding
min_code_size: u8,
},
}
/// Indicates whether a certain object has been decoded
#[derive(Debug)]
#[non_exhaustive]
pub enum Decoded {
/// Decoded nothing.
Nothing,
/// Global palette.
GlobalPalette(Box<[u8]>),
/// Index of the background color in the global palette.
BackgroundColor(u8),
/// Palette and optional `Application` extension have been parsed,
/// reached frame data.
HeaderEnd,
/// The start of a block.
/// `BlockStart(Block::Trailer)` is the very last decode event
BlockStart(Block),
/// Decoded a sub-block.
///
/// Call `last_ext_sub_block()` to get the sub-block data. It won't be available after this event.
SubBlock {
/// An ext label of `0` is used when the sub block does not belong to an extension.
ext: AnyExtension,
/// if true, then no more sub-blocks are available in this block.
is_last: bool,
},
/// Decoded all information of the next frame, except the image data.
///
/// The returned frame does **not** contain any owned image data.
///
/// Call `current_frame_mut()` to access the frame info.
FrameMetadata(FrameDataType),
/// Decoded some data of the current frame. Size is in bytes, always > 0
BytesDecoded(NonZeroUsize),
/// Copied (or consumed and discarded) compressed data of the current frame. In bytes.
LzwDataCopied(usize),
/// No more data available the current frame.
DataEnd,
}
/// Internal state of the GIF decoder
#[derive(Debug, Copy, Clone)]
enum State {
Magic,
ScreenDescriptor,
ImageBlockStart,
GlobalPalette(usize),
BlockStart(u8),
BlockEnd,
ExtensionBlockStart,
/// Resets ext.data
ExtensionDataSubBlockStart(usize),
/// Collects data in ext.data
ExtensionDataSubBlock(usize),
ExtensionBlockEnd,
LocalPalette(usize),
LzwInit(u8),
/// Decompresses LZW
DecodeSubBlock(usize),
/// Keeps LZW compressed
CopySubBlock(usize),
FrameDecoded,
Trailer,
}
use self::State::*;
use super::converter::PixelConverter;
/// Decoder for `Frame::make_lzw_pre_encoded`
pub struct FrameDecoder {
lzw_reader: LzwReader,
pixel_converter: PixelConverter,
memory_limit: MemoryLimit,
}
impl FrameDecoder {
/// See also `set_global_palette`
#[inline]
#[must_use]
pub fn new(options: DecodeOptions) -> Self {
Self {
lzw_reader: LzwReader::new(options.check_for_end_code),
pixel_converter: PixelConverter::new(options.color_output),
memory_limit: options.memory_limit.clone(),
}
}
/// Palette used for RGBA conversion
#[inline]
pub fn set_global_palette(&mut self, palette: Vec<u8>) {
self.pixel_converter.set_global_palette(palette);
}
/// Converts the frame in-place, replacing its LZW buffer with pixels.
///
/// If you get an error about invalid min code size, the buffer was probably pixels, not compressed data.
#[inline]
pub fn decode_lzw_encoded_frame(&mut self, frame: &mut Frame<'_>) -> Result<(), DecodingError> {
let pixel_bytes = self
.pixel_converter
.check_buffer_size(frame, &self.memory_limit)?;
let mut vec = vec![0; pixel_bytes];
self.decode_lzw_encoded_frame_into_buffer(frame, &mut vec)?;
frame.buffer = Cow::Owned(vec);
frame.interlaced = false;
Ok(())
}
/// Converts into the given buffer. It must be [`buffer_size()`] bytes large.
///
/// Pixels are always deinterlaced, so update `frame.interlaced` afterwards if you're putting the buffer back into the frame.
pub fn decode_lzw_encoded_frame_into_buffer(
&mut self,
frame: &Frame<'_>,
buf: &mut [u8],
) -> Result<(), DecodingError> {
let (&min_code_size, mut data) = frame.buffer.split_first().unwrap_or((&2, &[]));
self.lzw_reader.reset(min_code_size)?;
let lzw_reader = &mut self.lzw_reader;
self.pixel_converter
.read_into_buffer(frame, buf, &mut move |out| loop {
let (bytes_read, bytes_written, status) = lzw_reader.decode_bytes(data, out)?;
data = data.get(bytes_read..).unwrap_or_default();
if bytes_written > 0 || matches!(status, LzwStatus::NoProgress) {
return Ok(bytes_written);
}
})?;
Ok(())
}
/// Number of bytes required for `decode_lzw_encoded_frame_into_buffer`
#[inline]
#[must_use]
pub fn buffer_size(&self, frame: &Frame<'_>) -> usize {
self.pixel_converter.buffer_size(frame).unwrap()
}
}
struct LzwReader {
decoder: Option<LzwDecoder>,
min_code_size: u8,
check_for_end_code: bool,
}
impl LzwReader {
pub fn new(check_for_end_code: bool) -> Self {
Self {
decoder: None,
min_code_size: 0,
check_for_end_code,
}
}
pub fn check_code_size(min_code_size: u8) -> Result<(), DecodingError> {
// LZW spec: max 12 bits per code. This check helps catch confusion
// between LZW-compressed buffers and raw pixel data
if min_code_size > 11 || min_code_size < 1 {
return Err(DecodingError::format("invalid minimal code size"));
}
Ok(())
}
pub fn reset(&mut self, min_code_size: u8) -> Result<(), DecodingError> {
Self::check_code_size(min_code_size)?;
// The decoder can be reused if the code size stayed the same
if self.min_code_size != min_code_size || self.decoder.is_none() {
self.min_code_size = min_code_size;
self.decoder = Some(LzwDecoder::new(BitOrder::Lsb, min_code_size));
} else {
self.decoder
.as_mut()
.ok_or_else(|| DecodingError::format("bad state"))?
.reset();
}
Ok(())
}
pub fn has_ended(&self) -> bool {
self.decoder.as_ref().map_or(true, |e| e.has_ended())
}
pub fn decode_bytes(
&mut self,
lzw_data: &[u8],
decode_buffer: &mut OutputBuffer<'_>,
) -> Result<(usize, usize, LzwStatus), DecodingError> {
let decoder = self
.decoder
.as_mut()
.ok_or(DecodingError::DecoderNotFound)?;
let (status, consumed_in, consumed_out) = match decode_buffer {
OutputBuffer::Slice(buf) => {
let decoded = decoder.decode_bytes(lzw_data, buf);
(decoded.status, decoded.consumed_in, decoded.consumed_out)
}
OutputBuffer::None => {
let decoded = decoder.decode_bytes(lzw_data, &mut []);
(decoded.status, decoded.consumed_in, decoded.consumed_out)
}
OutputBuffer::Vec(buf) => {
let decoded = decoder.into_vec(buf).decode(lzw_data);
(decoded.status, decoded.consumed_in, decoded.consumed_out)
}
};
let status = match status? {
ok @ LzwStatus::Done | ok @ LzwStatus::Ok => ok,
ok @ LzwStatus::NoProgress => {
if self.check_for_end_code {
return Err(DecodingError::EndCodeNotFound);
}
ok
}
};
Ok((consumed_in, consumed_out, status))
}
}
/// GIF decoder which emits [low-level events](Decoded) for items in the GIF file
///
/// To just get GIF frames, use [`crate::Decoder`] instead.
pub struct StreamingDecoder {
state: State,
/// Input bytes are collected here if `update` got `buf` smaller than the minimum required
internal_buffer: [u8; 9],
unused_internal_buffer_len: u8,
lzw_reader: LzwReader,
skip_frame_decoding: bool,
check_frame_consistency: bool,
allow_unknown_blocks: bool,
memory_limit: MemoryLimit,
version: Version,
width: u16,
height: u16,
global_color_table: Vec<u8>,
/// ext buffer
ext: ExtensionData,
/// Frame data
current: Option<Frame<'static>>,
/// Needs to emit `HeaderEnd` once
header_end_reached: bool,
}
/// One version number of the GIF standard.
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub enum Version {
/// Version 87a, from May 1987.
V87a,
/// Version 89a, from July 1989.
V89a,
}
struct ExtensionData {
id: AnyExtension,
data: Vec<u8>,
}
/// Destination to write to for `StreamingDecoder::update`
pub enum OutputBuffer<'a> {
/// Overwrite bytes
Slice(&'a mut [u8]),
/// Append LZW bytes
Vec(&'a mut Vec<u8>),
/// Discard bytes
None,
}
impl OutputBuffer<'_> {
fn append(
&mut self,
buf: &[u8],
memory_limit: &MemoryLimit,
) -> Result<(usize, usize), DecodingError> {
let (consumed, copied) = match self {
OutputBuffer::Slice(slice) => {
let len = cmp::min(buf.len(), slice.len());
slice[..len].copy_from_slice(&buf[..len]);
(len, len)
}
OutputBuffer::Vec(vec) => {
let vec: &mut Vec<u8> = vec;
let len = buf.len();
memory_limit.try_reserve(vec, len)?;
if vec.capacity() - vec.len() >= len {
vec.extend_from_slice(buf);
}
(len, len)
}
// It's valid that bytes are discarded. For example,
// when using next_frame_info() with skip_frame_decoding to only get metadata.
OutputBuffer::None => (buf.len(), 0),
};
Ok((consumed, copied))
}
}
impl StreamingDecoder {
/// Creates a new streaming decoder
#[must_use]
pub fn new() -> Self {
let options = DecodeOptions::new();
Self::with_options(&options)
}
pub(crate) fn with_options(options: &DecodeOptions) -> Self {
Self {
internal_buffer: [0; 9],
unused_internal_buffer_len: 0,
state: Magic,
lzw_reader: LzwReader::new(options.check_for_end_code),
skip_frame_decoding: options.skip_frame_decoding,
check_frame_consistency: options.check_frame_consistency,
allow_unknown_blocks: options.allow_unknown_blocks,
memory_limit: options.memory_limit.clone(),
version: Version::V87a,
width: 0,
height: 0,
global_color_table: Vec::new(),
ext: ExtensionData {
id: AnyExtension(0),
data: Vec::with_capacity(256), // 0xFF + 1 byte length
},
current: None,
header_end_reached: false,
}
}
/// Updates the internal state of the decoder.
///
/// Returns the number of bytes consumed from the input buffer
/// and the last decoding result.
pub fn update(
&mut self,
mut buf: &[u8],
write_into: &mut OutputBuffer<'_>,
) -> Result<(usize, Decoded), DecodingError> {
let len = buf.len();
while !buf.is_empty() {
let (bytes, decoded) = self.next_state(buf, write_into)?;
buf = buf.get(bytes..).unwrap_or_default();
match decoded {
Decoded::Nothing => {}
result => {
return Ok((len - buf.len(), result));
}
};
}
Ok((len - buf.len(), Decoded::Nothing))
}
/// Data of the last extension sub block that has been decoded.
/// You need to concatenate all subblocks together to get the overall block content.
#[must_use]
pub fn last_ext_sub_block(&mut self) -> &[u8] {
&self.ext.data
}
/// Current frame info as a mutable ref.
#[must_use]
#[track_caller]
pub fn current_frame_mut(&mut self) -> &mut Frame<'static> {
self.current.as_mut().unwrap()
}
/// Current frame info as a ref.
#[track_caller]
#[must_use]
pub fn current_frame(&self) -> &Frame<'static> {
self.current.as_ref().unwrap()
}
/// Current frame info as a mutable ref.
#[inline(always)]
fn try_current_frame(&mut self) -> Result<&mut Frame<'static>, DecodingError> {
self.current
.as_mut()
.ok_or_else(|| DecodingError::format("bad state"))
}
/// Width of the image
#[must_use]
pub fn width(&self) -> u16 {
self.width
}
/// Height of the image
#[must_use]
pub fn height(&self) -> u16 {
self.height
}
/// The version number of the GIF standard used in this image.
///
/// We suppose a minimum of `V87a` compatibility. This value will be reported until we have
/// read the version information in the magic header bytes.
#[must_use]
pub fn version(&self) -> Version {
self.version
}
#[inline]
fn next_state(
&mut self,
buf: &[u8],
write_into: &mut OutputBuffer<'_>,
) -> Result<(usize, Decoded), DecodingError> {
macro_rules! goto (
($n:expr, $state:expr) => ({
self.state = $state;
Ok(($n, Decoded::Nothing))
});
($state:expr) => ({
self.state = $state;
Ok((1, Decoded::Nothing))
});
($n:expr, $state:expr, emit $res:expr) => ({
self.state = $state;
Ok(($n, $res))
});
($state:expr, emit $res:expr) => ({
self.state = $state;
Ok((1, $res))
})
);
macro_rules! ensure_min_length_buffer (
($required:expr) => ({
let required: usize = $required;
if buf.len() >= required && self.unused_internal_buffer_len == 0 {
(required, &buf[..required])
} else {
let has = usize::from(self.unused_internal_buffer_len);
let mut consumed = 0;
if has < required {
let to_copy = buf.len().min(required - has);
let new_len = has + to_copy;
self.internal_buffer[has .. new_len].copy_from_slice(&buf[..to_copy]);
consumed += to_copy;
if new_len < required {
self.unused_internal_buffer_len = new_len as u8;
return Ok((consumed, Decoded::Nothing));
} else {
self.unused_internal_buffer_len = 0;
}
}
(consumed, &self.internal_buffer[..required])
}
})
);
let b = *buf.first().ok_or(DecodingError::UnexpectedEof)?;
match self.state {
Magic => {
let (consumed, version) = ensure_min_length_buffer!(6);
self.version = match version {
b"GIF87a" => Version::V87a,
b"GIF89a" => Version::V89a,
_ => return Err(DecodingError::format("malformed GIF header")),
};
goto!(consumed, ScreenDescriptor)
}
ScreenDescriptor => {
let (consumed, desc) = ensure_min_length_buffer!(7);
self.width = u16::from_le_bytes(desc[..2].try_into().unwrap());
self.height = u16::from_le_bytes(desc[2..4].try_into().unwrap());
let global_flags = desc[4];
let background_color = desc[5];
let global_table = global_flags & 0x80 != 0;
let table_size = if global_table {
let table_size = PLTE_CHANNELS * (1 << ((global_flags & 0b111) + 1) as usize);
self.global_color_table
.try_reserve_exact(table_size)
.map_err(|_| DecodingError::OutOfMemory)?;
table_size
} else {
0usize
};
goto!(
consumed,
GlobalPalette(table_size),
emit Decoded::BackgroundColor(background_color)
)
}
ImageBlockStart => {
let (consumed, header) = ensure_min_length_buffer!(9);
let frame = self
.current
.as_mut()
.ok_or_else(|| DecodingError::format("bad state"))?;
frame.left = u16::from_le_bytes(header[..2].try_into().unwrap());
frame.top = u16::from_le_bytes(header[2..4].try_into().unwrap());
frame.width = u16::from_le_bytes(header[4..6].try_into().unwrap());
frame.height = u16::from_le_bytes(header[6..8].try_into().unwrap());
let flags = header[8];
frame.interlaced = (flags & 0b0100_0000) != 0;
if self.check_frame_consistency {
// Consistency checks.
if self.width.checked_sub(frame.width) < Some(frame.left)
|| self.height.checked_sub(frame.height) < Some(frame.top)
{
return Err(DecodingError::format("frame descriptor is out-of-bounds"));
}
}
let local_table = (flags & 0b1000_0000) != 0;
if local_table {
let table_size = flags & 0b0000_0111;
let pal_len = PLTE_CHANNELS * (1 << (table_size + 1));
frame
.palette
.get_or_insert_with(Vec::new)
.try_reserve_exact(pal_len)
.map_err(|_| DecodingError::OutOfMemory)?;
goto!(consumed, LocalPalette(pal_len))
} else {
goto!(consumed, LocalPalette(0))
}
}
GlobalPalette(left) => {
// the global_color_table is guaranteed to have the exact capacity required
if left > 0 {
let n = cmp::min(left, buf.len());
if n <= self.global_color_table.capacity() - self.global_color_table.len() {
self.global_color_table.extend_from_slice(&buf[..n]);
}
goto!(n, GlobalPalette(left - n))
} else {
goto!(BlockStart(b), emit Decoded::GlobalPalette(
mem::take(&mut self.global_color_table).into_boxed_slice()
))
}
}
BlockStart(type_) => {
if !self.header_end_reached && type_ != Block::Extension as u8 {
self.header_end_reached = true;
return goto!(0, BlockStart(type_), emit Decoded::HeaderEnd);
}
match Block::from_u8(type_) {
Some(Block::Image) => {
self.add_frame();
goto!(0, ImageBlockStart, emit Decoded::BlockStart(Block::Image))
}
Some(Block::Extension) => {
self.ext.id = AnyExtension(b);
if !self.allow_unknown_blocks && self.ext.id.into_known().is_none() {
return Err(DecodingError::format(
"unknown extension block encountered",
));
}
goto!(ExtensionBlockStart)
}
Some(Block::Trailer) => {
// The `Trailer` is the final state, and isn't reachable without extraneous data after the end of file
goto!(Trailer, emit Decoded::BlockStart(Block::Trailer))
}
None => {
if self.allow_unknown_blocks {
self.ext.id = AnyExtension(0);
goto!(0, ExtensionBlockStart)
} else {
Err(DecodingError::format("unknown block type encountered"))
}
}
}
}
ExtensionBlockStart => {
goto!(ExtensionDataSubBlockStart(b as usize), emit Decoded::BlockStart(Block::Extension))
}
ExtensionBlockEnd => {
self.ext.data.clear();
goto!(0, BlockEnd)
}
BlockEnd => {
if b == Block::Trailer as u8 {
// can't consume yet, because the trailer is not a real block,
// and won't have futher data for BlockStart
goto!(0, BlockStart(b))
} else {
goto!(BlockStart(b))
}
}
ExtensionDataSubBlockStart(sub_block_len) => {
self.ext.data.clear();
goto!(0, ExtensionDataSubBlock(sub_block_len))
}
ExtensionDataSubBlock(left) => {
if left > 0 {
let n = cmp::min(left, buf.len());
let needs_to_grow =
n > self.ext.data.capacity().wrapping_sub(self.ext.data.len());
if needs_to_grow {
return Err(DecodingError::OutOfMemory);
}
self.ext.data.extend_from_slice(&buf[..n]);
goto!(n, ExtensionDataSubBlock(left - n))
} else if b == 0 {
if self.ext.id.into_known() == Some(Extension::Control) {
self.read_control_extension()?;
}
goto!(ExtensionBlockEnd, emit Decoded::SubBlock { ext: self.ext.id, is_last: true })
} else {
goto!(ExtensionDataSubBlockStart(b as usize), emit Decoded::SubBlock { ext: self.ext.id, is_last: false })
}
}
LocalPalette(left) => {
if left > 0 {
let n = cmp::min(left, buf.len());
let src = &buf[..n];
if let Some(pal) = self.try_current_frame()?.palette.as_mut() {
// capacity has already been reserved in ImageBlockStart
if pal.capacity() - pal.len() >= src.len() {
pal.extend_from_slice(src);
}
}
goto!(n, LocalPalette(left - n))
} else {
goto!(LzwInit(b))
}
}
LzwInit(min_code_size) => {
if !self.skip_frame_decoding {
// Reset validates the min code size
self.lzw_reader.reset(min_code_size)?;
goto!(DecodeSubBlock(b as usize), emit Decoded::FrameMetadata(FrameDataType::Pixels))
} else {
LzwReader::check_code_size(min_code_size)?;
goto!(CopySubBlock(b as usize), emit Decoded::FrameMetadata(FrameDataType::Lzw { min_code_size }))
}
}
CopySubBlock(left) => {
debug_assert!(self.skip_frame_decoding);
if left > 0 {
let n = cmp::min(left, buf.len());
let (consumed, copied) = write_into.append(&buf[..n], &self.memory_limit)?;
goto!(consumed, CopySubBlock(left - consumed), emit Decoded::LzwDataCopied(copied))
} else if b != 0 {
goto!(CopySubBlock(b as usize))
} else {
goto!(0, FrameDecoded)
}
}
DecodeSubBlock(left) => {
debug_assert!(!self.skip_frame_decoding);
if left > 0 {
let n = cmp::min(left, buf.len());
if self.lzw_reader.has_ended() || matches!(write_into, OutputBuffer::None) {
return goto!(n, DecodeSubBlock(left - n), emit Decoded::Nothing);
}
let (mut consumed, bytes_len, status) =
self.lzw_reader.decode_bytes(&buf[..n], write_into)?;
// skip if can't make progress (decode would fail if check_for_end_code was set)
if matches!(status, LzwStatus::NoProgress) {
consumed = n;
}
let decoded = if let Some(bytes_len) = NonZeroUsize::new(bytes_len) {
Decoded::BytesDecoded(bytes_len)
} else {
Decoded::Nothing
};
goto!(consumed, DecodeSubBlock(left - consumed), emit decoded)
} else if b != 0 {
// decode next sub-block
goto!(DecodeSubBlock(b as usize))
} else {
let (_, bytes_len, status) = self.lzw_reader.decode_bytes(&[], write_into)?;
if let Some(bytes_len) = NonZeroUsize::new(bytes_len) {
goto!(0, DecodeSubBlock(0), emit Decoded::BytesDecoded(bytes_len))
} else if matches!(status, LzwStatus::Ok) {
goto!(0, DecodeSubBlock(0), emit Decoded::Nothing)
} else if matches!(status, LzwStatus::Done) {
goto!(0, FrameDecoded)
} else {
goto!(0, FrameDecoded)
}
}
}
FrameDecoded => {
// end of image data reached
self.current = None;
debug_assert_eq!(0, b);
goto!(BlockEnd, emit Decoded::DataEnd)
}
Trailer => goto!(0, Trailer, emit Decoded::Nothing),
}
}
fn read_control_extension(&mut self) -> Result<(), DecodingError> {
if self.ext.data.len() != 4 {
return Err(DecodingError::format("control extension has wrong length"));
}
let control = &self.ext.data;
let frame = self.current.get_or_insert_with(Frame::default);
let control_flags = control[0];
frame.needs_user_input = control_flags & 0b10 != 0;
frame.dispose = match DisposalMethod::from_u8((control_flags & 0b11100) >> 2) {
Some(method) => method,
None => DisposalMethod::Any,
};
frame.delay = u16::from_le_bytes(control[1..3].try_into().unwrap());
frame.transparent = (control_flags & 1 != 0).then_some(control[3]);
Ok(())
}
fn add_frame(&mut self) {
if self.current.is_none() {
self.current = Some(Frame::default());
}
}
}
#[test]
fn error_cast() {
let _: Box<dyn error::Error> = DecodingError::format("testing").into();
}