silpkg 0.1.4

A library for working with SIL's PKG archives
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
use core::{convert::Infallible, error::Error};

use alloc::string::String;
use thiserror::Error;

use crate::base::{ENTRY_SIZE, HEADER_SIZE};

/// An error triggered while parsing an existing archive.
#[derive(Debug, Error)]
pub enum ParseError<Io: Error = Infallible> {
    #[error("File does not start the correct magic number")]
    /// The input did not start with the correct magic number.
    MismatchedMagic,

    #[error("File uses unsupported header size {size} (expected {HEADER_SIZE})")]
    /// The input archive indicated an unsupported header size.
    MismatchedHeaderSize {
        /// The header size provided by the input archive
        size: u16,
    },
    #[error("File uses unsupported entry size {size} (expected {ENTRY_SIZE})")]
    /// The input archive indicated an unsupported entry size.
    MismatchedEntrySize {
        /// The entry size provided by the input archive
        size: u16,
    },
    #[error("File claims header section extends beyond EOF")]
    /// The input archive indicated its header section extends beyond EOF.
    EntryOverflow,
    #[error("File claims path region extends beyond EOF")]
    /// The input archive indicated its path region extends beyond EOF.
    PathOverflow,

    #[error("Entry contains unrecognised entry flags {0:#04X}")]
    /// The input archive contained unrecognised entry flags.
    UnrecognisedEntryFlags(u32),

    #[error("Entry has a non-ascii path")]
    /// The input archive contained a non-ascii path.
    NonAsciiPath,
    #[error("Archive contains two entries with the same path {0}")]
    /// The input archive contained two entries with the same path.
    SamePath(String),

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while creating a new archive.
#[derive(Debug, Error)]
pub enum CreateError<Io: Error = Infallible> {
    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while removing an entry.
#[derive(Debug, Error)]
pub enum RemoveError<Io: Error = Infallible> {
    #[error("Entry does not exist")]
    /// The target entry was not found.
    NotFound,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while renaming an entry.
#[derive(Debug, Error)]
pub enum RenameError<Io: Error = Infallible> {
    #[error("Source entry does not exist")]
    /// The source entry was not found.
    NotFound,
    #[error("Desination entry already exists")]
    /// An entry with the destination path was already present.
    AlreadyExists,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while replacing one entry with another.
#[derive(Debug, Error)]
pub enum ReplaceError<Io: Error = Infallible> {
    #[error("Entry does not exist")]
    /// The source entry was not found.
    NotFound,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while inserting a new entry into an archive.
#[derive(Debug, Error)]
pub enum InsertError<Io: Error = Infallible> {
    #[error("An entry with the same path already exists")]
    /// An entry with that name already existed.
    AlreadyExists,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while opening an entry for reading.
#[derive(Debug, Error)]
pub enum OpenError<Io: Error = Infallible> {
    #[error("Entry does not exist")]
    /// An entry with that name was not found.
    NotFound,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered when calling `read` on an [`EntryReader`] or [`EntryWriter`]
///
/// [`EntryReader`]: crate::sync::EntryReader
/// [`EntryWriter`]: crate::sync::EntryWriter
#[derive(Debug, Error)]
pub enum ReadError<Io: Error = Infallible> {
    /// A read was performed on an EntryWriter that does not support reads.
    ///
    /// Currently this only occurs when a read is attempted on a deflate compressed entry writer.
    #[error("Not readable")]
    NotReadable,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered when calling `seek` on an [`EntryReader`] or [`EntryWriter`]
///
/// [`EntryReader`]: crate::sync::EntryReader
/// [`EntryWriter`]: crate::sync::EntryWriter
#[derive(Debug, Error)]
pub enum SeekError<Io: Error = Infallible> {
    /// Seek before zero
    #[error("Seek out of bounds")]
    SeekOutOfBounds,
    /// Reader/Writer does not support seeking.
    ///
    /// This occurs when trying to seek on a compressed entry reader/writer.
    #[error("Not seekable")]
    NotSeekable,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

/// An error triggered while repacking.
#[derive(Debug, Error)]
pub enum RepackError<Io: Error = Infallible> {
    #[error("Repacking PKGs with overlapping entries is not supported")]
    /// The archive contained overlapping entries.
    ///
    /// This cannot be triggered by creating your own archive and can only happen if you parse an
    /// archive that contains such overlapping entries and try to repack it.
    OverlappingEntries,

    #[error(transparent)]
    /// An IO error occurred.
    Io(#[from] Io),
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<CreateError<E>> for std::io::Error {
    fn from(val: CreateError<E>) -> Self {
        match val {
            CreateError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<RemoveError<E>> for std::io::Error {
    fn from(value: RemoveError<E>) -> Self {
        match value {
            RemoveError::NotFound => {
                std::io::Error::new(std::io::ErrorKind::NotFound, value.to_string())
            }
            RemoveError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<RenameError<E>> for std::io::Error {
    fn from(val: RenameError<E>) -> Self {
        match val {
            RenameError::NotFound => {
                std::io::Error::new(std::io::ErrorKind::NotFound, val.to_string())
            }
            RenameError::AlreadyExists => {
                std::io::Error::new(std::io::ErrorKind::AlreadyExists, val.to_string())
            }
            RenameError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<ReplaceError<E>> for std::io::Error {
    fn from(val: ReplaceError<E>) -> Self {
        match val {
            ReplaceError::NotFound => {
                std::io::Error::new(std::io::ErrorKind::NotFound, val.to_string())
            }
            ReplaceError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<InsertError<E>> for std::io::Error {
    fn from(val: InsertError<E>) -> Self {
        match val {
            InsertError::AlreadyExists => {
                std::io::Error::new(std::io::ErrorKind::AlreadyExists, val.to_string())
            }
            InsertError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<OpenError<E>> for std::io::Error {
    fn from(val: OpenError<E>) -> Self {
        match val {
            OpenError::NotFound => {
                std::io::Error::new(std::io::ErrorKind::NotFound, val.to_string())
            }
            OpenError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<ReadError<E>> for std::io::Error {
    fn from(val: ReadError<E>) -> Self {
        match val {
            ReadError::NotReadable => std::io::Error::other("Not readable"),
            ReadError::Io(err) => err.into(),
        }
    }
}

#[cfg(feature = "std")]
impl<E: Error + Into<std::io::Error>> From<SeekError<E>> for std::io::Error {
    fn from(val: SeekError<E>) -> std::io::Error {
        match val {
            SeekError::SeekOutOfBounds => {
                std::io::Error::new(std::io::ErrorKind::InvalidInput, "Seek out of bounds")
            }
            SeekError::NotSeekable => std::io::Error::new(
                std::io::ErrorKind::NotSeekable,
                "Cannot read on compressed entry writer",
            ),
            SeekError::Io(err) => err.into(),
        }
    }
}

// PERF FIXME: This is a hacky solution, and probably does not optimise very well!!
pub(crate) trait FlattenResult<T, E>: Sized {
    fn flatten(self) -> Result<T, E>;
}

impl<T, E: Error> FlattenResult<T, ParseError<E>> for Result<Result<T, ParseError<Infallible>>, E> {
    fn flatten(self) -> Result<T, ParseError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    ParseError::MismatchedMagic => ParseError::MismatchedMagic,
                    ParseError::MismatchedHeaderSize { size } => {
                        ParseError::MismatchedHeaderSize { size }
                    }
                    ParseError::MismatchedEntrySize { size } => {
                        ParseError::MismatchedEntrySize { size }
                    }
                    ParseError::EntryOverflow => ParseError::EntryOverflow,
                    ParseError::PathOverflow => ParseError::PathOverflow,
                    ParseError::UnrecognisedEntryFlags(flags) => {
                        ParseError::UnrecognisedEntryFlags(flags)
                    }
                    ParseError::NonAsciiPath => ParseError::NonAsciiPath,
                    ParseError::SamePath(path) => ParseError::SamePath(path),
                    ParseError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(ParseError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, CreateError<E>>
    for Result<Result<T, CreateError<Infallible>>, E>
{
    fn flatten(self) -> Result<T, CreateError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                // This is a lot cleaner as a match
                #[allow(unreachable_code)]
                Err(e) => Err(match e {
                    CreateError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(CreateError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, RemoveError<E>>
    for Result<Result<T, RemoveError<Infallible>>, E>
{
    fn flatten(self) -> Result<T, RemoveError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    RemoveError::NotFound => RemoveError::NotFound,
                    RemoveError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(RemoveError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, RenameError<E>>
    for Result<Result<T, RenameError<Infallible>>, E>
{
    fn flatten(self) -> Result<T, RenameError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    RenameError::NotFound => RenameError::NotFound,
                    RenameError::AlreadyExists => RenameError::AlreadyExists,
                    RenameError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(RenameError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, ReplaceError<E>>
    for Result<Result<T, ReplaceError<Infallible>>, E>
{
    fn flatten(self) -> Result<T, ReplaceError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    ReplaceError::NotFound => ReplaceError::NotFound,
                    ReplaceError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(ReplaceError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, InsertError<E>>
    for Result<Result<T, InsertError<Infallible>>, E>
{
    fn flatten(self) -> Result<T, InsertError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    InsertError::AlreadyExists => InsertError::AlreadyExists,
                    InsertError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(InsertError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, OpenError<E>> for Result<Result<T, OpenError<Infallible>>, E> {
    fn flatten(self) -> Result<T, OpenError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    OpenError::NotFound => OpenError::NotFound,
                    OpenError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(OpenError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, ReadError<E>> for Result<Result<T, ReadError<Infallible>>, E> {
    fn flatten(self) -> Result<T, ReadError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    ReadError::NotReadable => ReadError::NotReadable,
                    ReadError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(ReadError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, SeekError<E>> for Result<Result<T, SeekError<Infallible>>, E> {
    fn flatten(self) -> Result<T, SeekError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    SeekError::SeekOutOfBounds => SeekError::SeekOutOfBounds,
                    SeekError::NotSeekable => SeekError::NotSeekable,
                    SeekError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(SeekError::Io(e)),
        }
    }
}

impl<T, E: Error> FlattenResult<T, RepackError<E>>
    for Result<Result<T, RepackError<Infallible>>, E>
{
    fn flatten(self) -> Result<T, RepackError<E>> {
        match self {
            Ok(o) => match o {
                Ok(o) => Ok(o),
                Err(e) => Err(match e {
                    RepackError::OverlappingEntries => RepackError::OverlappingEntries,
                    RepackError::Io(_) => unreachable!(),
                }),
            },
            Err(e) => Err(RepackError::Io(e)),
        }
    }
}