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
//! Streams.
use crate::crypto::DecryptionTarget;
use crate::filter::Filter;
use crate::object;
use crate::object::Dict;
use crate::object::Name;
use crate::object::dict::keys::{DECODE_PARMS, DP, F, FILTER, LENGTH, TYPE};
use crate::object::{Array, ObjectIdentifier};
use crate::object::{Object, ObjectLike};
use crate::reader::Reader;
use crate::reader::{Readable, ReaderContext, ReaderExt, Skippable};
use crate::sync::Arc;
use crate::util::OptionLog;
use alloc::borrow::Cow;
use alloc::vec::Vec;
use core::fmt::{Debug, Formatter};
use log::warn;
use smallvec::SmallVec;
#[derive(Clone)]
struct StreamInner<'a> {
dict: Dict<'a>,
filters: SmallVec<[Filter; 2]>,
filter_params: SmallVec<[Dict<'a>; 2]>,
data: &'a [u8],
}
/// A stream of arbitrary data.
#[derive(Clone)]
pub struct Stream<'a>(Arc<StreamInner<'a>>);
impl PartialEq for Stream<'_> {
fn eq(&self, other: &Self) -> bool {
self.0.dict == other.0.dict && self.0.data == other.0.data
}
}
/// Additional parameters for decoding images.
#[derive(Clone, PartialEq, Default)]
pub struct ImageDecodeParams {
/// Whether the color space of the image is an indexed color space.
pub is_indexed: bool,
/// The bits per component of the image, if that information is available.
pub bpc: Option<u8>,
/// The components per channel of the image, if that information is available.
pub num_components: Option<u8>,
/// A target resolution for the image. Note that this is only a hint so that
/// in case it's possible, a version of the image will be extracted that
/// is as close as possible to the hinted dimension.
pub target_dimension: Option<(u32, u32)>,
/// The width of the image as indicated by the image dictionary.
pub width: u32,
/// The height of the image as indicated by the image dictionary.
pub height: u32,
}
impl<'a> Stream<'a> {
pub(crate) fn new(data: &'a [u8], dict: Dict<'a>) -> Self {
let mut collected_filters = SmallVec::new();
let mut collected_params = SmallVec::new();
if let Some(filter) = dict
.get::<Name>(F)
.or_else(|| dict.get::<Name>(FILTER))
.and_then(Filter::from_name)
{
let params = dict
.get::<Dict<'_>>(DP)
.or_else(|| dict.get::<Dict<'_>>(DECODE_PARMS))
.unwrap_or_default();
collected_filters.push(filter);
collected_params.push(params);
} else if let Some(filters) = dict
.get::<Array<'_>>(F)
.or_else(|| dict.get::<Array<'_>>(FILTER))
{
let filters = filters.iter::<Name>().map(Filter::from_name);
let mut params = dict
.get::<Array<'_>>(DP)
.or_else(|| dict.get::<Array<'_>>(DECODE_PARMS))
.map(|a| a.iter::<Object<'_>>());
for filter in filters {
let params = params
.as_mut()
.and_then(|p| p.next())
.and_then(|p| p.into_dict())
.unwrap_or_default();
if let Some(filter) = filter {
collected_filters.push(filter);
collected_params.push(params);
}
}
}
Self(Arc::new(StreamInner {
dict,
filters: collected_filters,
filter_params: collected_params,
data,
}))
}
/// Return the raw, decrypted data of the stream.
///
/// Stream filters will not be applied.
pub fn raw_data(&self) -> Cow<'a, [u8]> {
let ctx = self.0.dict.ctx();
if ctx.xref().needs_decryption(ctx)
&& self
.0
.dict
.get::<object::String>(TYPE)
.map(|t| t.as_ref() != b"XRef")
.unwrap_or(true)
{
// Streams are always indirect objects and therefore always have an obj_id.
// If somehow absent (corrupt PDF), fall back to raw data.
if let Some(obj_id) = self.0.dict.obj_id() {
Cow::Owned(
ctx.xref()
.decrypt(obj_id, self.0.data, DecryptionTarget::Stream)
.unwrap_or_default(),
)
} else {
Cow::Borrowed(self.0.data)
}
} else {
Cow::Borrowed(self.0.data)
}
}
/// Return the raw, underlying dictionary of the stream.
pub fn dict(&self) -> &Dict<'a> {
&self.0.dict
}
/// Return the object identifier of the stream, if available.
///
/// Returns `None` if the stream is corrupt and lacks an object ID.
pub fn obj_id(&self) -> Option<ObjectIdentifier> {
self.0.dict.obj_id()
}
/// Return the filters that are applied to the stream.
pub fn filters(&self) -> &[Filter] {
&self.0.filters
}
/// Return the decoded data of the stream.
///
/// Note that the result of this method will not be cached, so calling it multiple
/// times is expensive.
pub fn decoded(&self) -> Result<Vec<u8>, DecodeFailure> {
self.decoded_image(&ImageDecodeParams::default())
.map(|r| r.data)
}
/// Return the decoded data of the stream, and return image metadata
/// if available.
pub fn decoded_image(
&self,
image_params: &ImageDecodeParams,
) -> Result<FilterResult, DecodeFailure> {
let data = self.raw_data();
let mut current: Option<FilterResult> = None;
for (filter, params) in self.0.filters.iter().zip(self.0.filter_params.iter()) {
let new = filter.apply(
current.as_ref().map(|c| c.data.as_ref()).unwrap_or(&data),
params.clone(),
image_params,
)?;
current = Some(new);
}
Ok(current.unwrap_or(FilterResult {
data: data.to_vec(),
image_data: None,
}))
}
}
impl Debug for Stream<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
write!(f, "Stream (len: {:?})", self.0.data.len())
}
}
impl Skippable for Stream<'_> {
fn skip(_: &mut Reader<'_>, _: bool) -> Option<()> {
// A stream can never appear in a dict/array, so it should never be skipped.
warn!("attempted to skip a stream object");
None
}
}
impl<'a> Readable<'a> for Stream<'a> {
fn read(r: &mut Reader<'a>, ctx: &ReaderContext<'a>) -> Option<Self> {
let dict = r.read_with_context::<Dict<'_>>(ctx)?;
if dict.contains_key(F) {
warn!("encountered stream referencing external file, which is unsupported");
return None;
}
let offset = r.offset();
parse_proper(r, &dict)
.or_else(|| {
warn!("failed to parse stream, trying to parse it manually");
r.jump(offset);
parse_fallback(r, &dict)
})
.error_none("was unable to manually parse the stream")
}
}
#[derive(Debug, Copy, Clone)]
/// A failure that can occur during decoding a data stream.
pub enum DecodeFailure {
/// An image stream failed to decode.
ImageDecode,
/// A data stream failed to decode.
StreamDecode,
/// A failure occurred while decrypting a file.
Decryption,
/// An unknown failure occurred.
Unknown,
}
/// An image color space.
#[derive(Debug, Copy, Clone)]
pub enum ImageColorSpace {
/// Grayscale color space.
Gray,
/// RGB color space.
Rgb,
/// RGB produced by JPEG YCbCr→RGB decoding.
///
/// JPEG images stored with YCbCr encoding (Adobe APP14 transform=1 or
/// JFIF default) are converted to sRGB by the JPEG decoder using the
/// standard BT.601 matrix. The resulting RGB values are already in sRGB
/// colorimetry. Any PDF `/ColorSpace` entry that is not device-RGB (e.g.
/// an [`ICCBased`] printer profile) should be ignored for these images;
/// the JPEG decoder's own colour model takes precedence, matching MuPDF
/// and Acrobat behaviour.
RgbFromYCbCr,
/// CMYK color space.
Cmyk,
/// An unknown color space.
Unknown(u8),
}
/// Additional data that is extracted from some image streams.
pub struct ImageData {
/// An optional alpha channel of the image.
pub alpha: Option<Vec<u8>>,
/// The color space of the image.
pub color_space: Option<ImageColorSpace>,
/// The bits per component of the image.
pub bits_per_component: u8,
/// The width of the image.
pub width: u32,
/// The height of the image.
pub height: u32,
}
/// The result of applying a filter.
pub struct FilterResult {
/// The decoded data.
pub data: Vec<u8>,
/// Additional data that is extracted from JPX image streams.
pub image_data: Option<ImageData>,
}
impl FilterResult {
pub(crate) fn from_data(data: Vec<u8>) -> Self {
Self {
data,
image_data: None,
}
}
}
fn parse_proper<'a>(r: &mut Reader<'a>, dict: &Dict<'a>) -> Option<Stream<'a>> {
let length = dict.get::<u32>(LENGTH)?;
r.skip_white_spaces_and_comments();
r.forward_tag(b"stream")?;
// Skip horizontal whitespace (spaces/tabs) between "stream" keyword and EOL.
// Some producers write "stream \r\n" (with a trailing space) which is technically
// non-conforming but tolerated by Acrobat and MuPDF.
while r.peek_byte().is_some_and(|b| b == b' ' || b == b'\t') {
r.forward();
}
r.forward_tag(b"\n")
.or_else(|| r.forward_tag(b"\r\n"))
.or_else(|| r.forward_tag(b"\r"))?;
let data = r.read_bytes(length as usize)?;
r.skip_white_spaces();
r.forward_tag(b"endstream")?;
Some(Stream::new(data, dict.clone()))
}
fn parse_fallback<'a>(r: &mut Reader<'a>, dict: &Dict<'a>) -> Option<Stream<'a>> {
while r.forward_tag(b"stream").is_none() {
r.read_byte()?;
}
// Skip any horizontal whitespace between "stream" keyword and EOL (same lenience as
// parse_proper — some producers write "stream \r\n").
while r.peek_byte().is_some_and(|b| b == b' ' || b == b'\t') {
r.forward();
}
r.forward_tag(b"\n")
.or_else(|| r.forward_tag(b"\r\n"))
// Technically not allowed, but no reason to not try it.
.or_else(|| r.forward_tag(b"\r"))?;
let data_start = r.tail()?;
let start = r.offset();
loop {
if r.peek_byte()?.is_ascii_whitespace() || r.peek_tag(b"endstream").is_some() {
let length = r.offset() - start;
let data = data_start.get(..length)?;
r.skip_white_spaces();
// This was just a whitespace in the data stream but not actually marking the end
// of the stream, so continue searching.
if r.forward_tag(b"endstream").is_none() {
continue;
}
let stream = Stream::new(data, dict.clone());
// Seems like we found the end!
return Some(stream);
} else {
r.read_byte()?;
}
}
}
impl<'a> TryFrom<Object<'a>> for Stream<'a> {
type Error = ();
fn try_from(value: Object<'a>) -> Result<Self, Self::Error> {
match value {
Object::Stream(s) => Ok(s),
_ => Err(()),
}
}
}
impl<'a> ObjectLike<'a> for Stream<'a> {}
#[cfg(test)]
mod tests {
use crate::object::Stream;
use crate::reader::Reader;
use crate::reader::{ReaderContext, ReaderExt};
#[test]
fn stream() {
let data = b"<< /Length 10 >> stream\nabcdefghij\nendstream";
let mut r = Reader::new(data);
let stream = r
.read_with_context::<Stream<'_>>(&ReaderContext::dummy())
.unwrap();
assert_eq!(stream.0.data, b"abcdefghij");
}
}