use crate::Stream;
#[derive(Clone, Copy, Debug)]
pub enum ViewBoxError {
InvalidNumber,
InvalidSize,
}
impl std::fmt::Display for ViewBoxError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match *self {
ViewBoxError::InvalidNumber => {
write!(f, "viewBox contains an invalid number")
}
ViewBoxError::InvalidSize => {
write!(f, "viewBox has a negative or zero size")
}
}
}
}
impl std::error::Error for ViewBoxError {
fn description(&self) -> &str {
"a viewBox parsing error"
}
}
#[allow(missing_docs)]
#[derive(Clone, Copy, PartialEq, Debug)]
pub struct ViewBox {
pub x: f64,
pub y: f64,
pub w: f64,
pub h: f64,
}
impl ViewBox {
pub fn new(x: f64, y: f64, w: f64, h: f64) -> Self {
ViewBox { x, y, w, h }
}
}
impl std::str::FromStr for ViewBox {
type Err = ViewBoxError;
fn from_str(text: &str) -> Result<Self, ViewBoxError> {
let mut s = Stream::from(text);
let x = s
.parse_list_number()
.map_err(|_| ViewBoxError::InvalidNumber)?;
let y = s
.parse_list_number()
.map_err(|_| ViewBoxError::InvalidNumber)?;
let w = s
.parse_list_number()
.map_err(|_| ViewBoxError::InvalidNumber)?;
let h = s
.parse_list_number()
.map_err(|_| ViewBoxError::InvalidNumber)?;
if w <= 0.0 || h <= 0.0 {
return Err(ViewBoxError::InvalidSize);
}
Ok(ViewBox::new(x, y, w, h))
}
}
#[rustfmt::skip]
#[cfg(test)]
mod tests {
use super::*;
use std::str::FromStr;
macro_rules! test {
($name:ident, $text:expr, $result:expr) => (
#[test]
fn $name() {
let v = ViewBox::from_str($text).unwrap();
assert_eq!(v, $result);
}
)
}
test!(parse_1, "-20 30 100 500", ViewBox::new(-20.0, 30.0, 100.0, 500.0));
macro_rules! test_err {
($name:ident, $text:expr, $result:expr) => (
#[test]
fn $name() {
assert_eq!(ViewBox::from_str($text).unwrap_err().to_string(), $result);
}
)
}
test_err!(parse_err_1, "qwe", "viewBox contains an invalid number");
test_err!(parse_err_2, "10 20 30 0", "viewBox has a negative or zero size");
test_err!(parse_err_3, "10 20 0 40", "viewBox has a negative or zero size");
test_err!(parse_err_4, "10 20 0 0", "viewBox has a negative or zero size");
test_err!(parse_err_5, "10 20 -30 0", "viewBox has a negative or zero size");
test_err!(parse_err_6, "10 20 30 -40", "viewBox has a negative or zero size");
test_err!(parse_err_7, "10 20 -30 -40", "viewBox has a negative or zero size");
}