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
use std::{fmt, sync::Arc};

/** An error originating from this crate. */
#[derive(Debug)]
pub struct Error {
    kind: ErrorKind,
    index: Index,
    brainfuck: Arc<String>,
    output: Option<String>,
}

/** The types of [`Errors`](Error) that can be encountered. */
#[non_exhaustive]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ErrorKind {
    /// A bracket `[]` was found without a matching bracket.
    UnmatchedBracket,
    /// The [maximum number of steps](crate::Brainfuck::max_steps) was reached.
    MaxSteps,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) struct Index {
    line: usize,
    col: usize,
}

impl Index {
    #[inline]
    pub fn new(line: usize, col: usize) -> Self {
        Self { line, col }
    }
}

impl Error {
    /// The [`kind`](ErrorKind) of error.
    #[inline]
    pub fn kind(&self) -> ErrorKind {
        self.kind
    }

    /// The line of brainfuck this error occurred on (starting from 0).
    #[inline]
    pub fn line(&self) -> usize {
        self.index.line
    }

    /// The column of brainfuck this error occurred on (starting from 0).
    #[inline]
    pub fn col(&self) -> usize {
        self.index.col
    }

    /**
        The original, brainfuck 'source' this error came from.

        If you don't like swearing, you may use [`Error::brainfrick`].

        # Example
        ```
        # use brainfrick::Brainfuck;
        // this will run infinitely and therefore error
        let code = "+[++++]";
        let result = Brainfuck::execute(code).unwrap_err();
        assert_eq!(code, result.brainfuck());
        ```
    */
    #[inline]
    pub fn brainfuck(&self) -> &str {
        &self.brainfuck
    }

    /// An alias for [`Error::brainfuck`].
    #[inline(always)]
    pub fn brainfrick(&self) -> &str {
        self.brainfuck()
    }

    /// The output produced before the error occurred, if applicable.
    #[inline]
    pub fn output(&self) -> Option<&str> {
        self.output.as_deref()
    }

    #[inline]
    pub(crate) fn new(
        kind: ErrorKind,
        index: Index,
        brainfuck: Arc<String>,
        output: Option<String>,
    ) -> Self {
        Self {
            kind,
            index,
            brainfuck,
            output,
        }
    }
}

impl fmt::Display for ErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        use ErrorKind::*;
        f.write_str(match self {
            UnmatchedBracket => "Unmatched bracket",
            MaxSteps => "Max steps reached",
        })
    }
}

impl std::error::Error for Error {}
impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        // description and location
        let Index { line, col } = self.index;
        writeln!(f, "{} @ line {} col {}", self.kind, line + 1, col + 1)?;

        // get snippet range (try to get 10 chars on either side)
        let line = self.brainfuck.lines().nth(line).expect("Invalid line");
        let (start, dots_begin, mut offset) = match col.checked_sub(10) {
            Some(num) => (num, num != 0, 11),
            None => (0, false, col + 1),
        };

        let mut end = col + 10;
        let dots_end = end < line.len();
        if !dots_end {
            end = line.len();
        }

        // write snippet
        if dots_begin {
            f.write_str("...")?;
            offset += 3;
        }

        f.write_str(&line[start..end])?;

        if dots_end {
            f.write_str("...")?;
        }
        write!(f, "\n{0:>1$}", "^", offset)
    }
}