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
use std::fmt;
use wain_ast::source::Source;

pub(crate) fn describe_position(
    f: &mut fmt::Formatter<'_>,
    source: &[u8],
    pos: usize,
) -> fmt::Result {
    if pos == source.len() {
        write!(f, " caused at byte offset {} (end of input)", pos)
    } else {
        let source = &source[pos..];
        let source = if source.len() > 25 {
            &source[..25]
        } else {
            source
        };
        write!(f, " caused at byte offset {}\n\n ...", pos)?;
        for b in source {
            write!(f, " {:02x}", b)?;
        }
        f.write_str("\n     ^\n     starts from here")
    }
}

#[derive(Clone)]
pub struct BinarySource<'source>(pub(crate) &'source [u8]);

impl<'s> Source for BinarySource<'s> {
    type Raw = &'s [u8];

    fn describe(&self, f: &mut fmt::Formatter<'_>, offset: usize) -> fmt::Result {
        describe_position(f, self.0, offset)
    }

    fn raw(&self) -> Self::Raw {
        self.0
    }
}