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
use std::str::FromStr; use std::time::Duration as StdDuration; use nom::{ branch::alt, bytes::complete::tag, character::complete::digit1, combinator::{all_consuming, map_res, opt}, error::{ErrorKind, ParseError}, number::complete::float, sequence::{preceded, separated_pair, terminated, tuple}, Err, IResult, }; #[derive(Debug, PartialEq)] pub struct Duration { pub year: f32, pub month: f32, pub day: f32, pub hour: f32, pub minute: f32, pub second: f32, } impl Duration { pub fn new(year: f32, month: f32, day: f32, hour: f32, minute: f32, second: f32) -> Self { Duration { year, month, day, hour, minute, second, } } pub fn to_std(&self) -> StdDuration { StdDuration::from_secs_f32( self.year * 60. * 60. * 24. * 30. * 12. + self.month * 60. * 60. * 24. * 30. + self.day * 60. * 60. * 24. + self.hour * 60. * 60. + self.minute * 60. + self.second, ) } pub fn parse(input: &str) -> Result<Duration, Err<(&str, ErrorKind)>> { let (_, duration) = all_consuming(preceded( tag("P"), alt((parse_week_format, parse_basic_format)), ))(input)?; Ok(duration) } } fn decimal_comma_number(input: &str) -> IResult<&str, f32> { map_res(separated_pair(digit1, tag(","), digit1), |(a, b)| { f32::from_str(&format!("{}.{}", a, b)) })(input) } fn value_with_designator(designator: &str) -> impl Fn(&str) -> IResult<&str, f32> + '_ { move |input| { terminated( alt(( float, decimal_comma_number, map_res(digit1, |s: &str| f32::from_str(s)), )), tag(designator), )(input) } } fn parse_basic_format(input: &str) -> IResult<&str, Duration> { let (input, (year, month, day)) = tuple(( opt(value_with_designator("Y")), opt(value_with_designator("M")), opt(value_with_designator("D")), ))(input)?; let (input, time) = opt(preceded( tag("T"), tuple(( opt(value_with_designator("H")), opt(value_with_designator("M")), opt(value_with_designator("S")), )), ))(input)?; let (hour, minute, second) = time.unwrap_or_default(); if year.is_none() && month.is_none() && day.is_none() && hour.is_none() && minute.is_none() && second.is_none() { Err(Err::Error(ParseError::from_error_kind( input, ErrorKind::Verify, ))) } else { Ok(( input, Duration { year: year.unwrap_or_default(), month: month.unwrap_or_default(), day: day.unwrap_or_default(), hour: hour.unwrap_or_default(), minute: minute.unwrap_or_default(), second: second.unwrap_or_default(), }, )) } } fn parse_week_format(input: &str) -> IResult<&str, Duration> { let (input, week) = value_with_designator("W")(input)?; Ok(( input, Duration { year: 0., month: 0., day: week * 7., hour: 0., minute: 0., second: 0., }, )) } fn _parse_extended_format(_input: &str) -> IResult<&str, Duration> { unimplemented!() }