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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

use std::convert::From;
use std::error::Error;
use std::fmt::Display;

use super::Array;

/// An error returned when checking if the grid is well-sized and legal.
#[derive(Debug)]
pub enum GridError {
    /// The grid does not have the right size.
    ///
    /// (It should be square, of non-null, even size.)
    BadSize(GridSizeError),
    /// The grid is illegal, that is it infringes at least one of the rules.
    Illegal,
}

impl Display for GridError {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        match *self {
            GridError::BadSize(ref err) => write!(f, "{}: {}", self.description(), err),
            GridError::Illegal => f.write_str(self.description()),
        }
    }
}

impl Error for GridError {
    fn description(&self) -> &str {
        match *self {
            GridError::BadSize(_) => "faulty grid size",
            GridError::Illegal => "grid is illegal",
        }
    }

    fn cause(&self) -> Option<&Error> {
        match *self {
            GridError::BadSize(ref err) => Some(err),
            GridError::Illegal => None,
        }
    }
}

impl From<GridSizeError> for GridError {
    fn from(err: GridSizeError) -> Self {
        GridError::BadSize(err)
    }
}

/// An error returned when parsing a string to create a grid failed.
#[derive(Debug)]
pub enum GridParseError {
    /// A `Grid` cannot be created from this `Array`.
    CreationError(GridError, Array),
    /// At least one character other than `0`, `1`, `.` or `\n`
    /// was found in the string.
    UnexpectedCharacter,
}

impl Display for GridParseError {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        match *self {
            GridParseError::CreationError(ref err, _) => write!(f, "{}: {}", self.description(), err),
            GridParseError::UnexpectedCharacter => f.write_str(self.description()),
        }
    }
}

impl Error for GridParseError {
    fn description(&self) -> &str {
        match *self {
            GridParseError::CreationError(_, _) => "could not create grid",
            GridParseError::UnexpectedCharacter => "found unexpected character(s)",
        }
    }

    fn cause(&self) -> Option<&Error> {
        match *self {
            GridParseError::CreationError(ref err, _) => Some(err),
            GridParseError::UnexpectedCharacter => None,
        }
    }
}

/// An error returned when the grid is not properly sized.
#[derive(Debug)]
pub enum GridSizeError {
    /// The grid is empty.
    Empty,
    /// The grid is not a square.
    /// The field contains the line number that triggered the error.
    NotASquare(usize),
    /// The grid has an odd number of rows.
    OddRowNumber,
}

impl Display for GridSizeError {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        match *self {
            GridSizeError::Empty => f.write_str(self.description()),
            GridSizeError::NotASquare(n) => write!(f, "{} (line {})", self.description(), n),
            GridSizeError::OddRowNumber => f.write_str(self.description()),
        }
    }
}

impl Error for GridSizeError {
    fn description(&self) -> &str {
        match *self {
            GridSizeError::Empty => "empty grid",
            GridSizeError::NotASquare(_) => "not a square",
            GridSizeError::OddRowNumber => "odd number of rows",
        }
    }
}