imag/lib/etc/libimagtimeui/src/date.rs

138 lines
3.5 KiB
Rust
Raw Normal View History

//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2018 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
2017-07-15 18:17:01 +00:00
use chrono::naive::NaiveDate as ChronoNaiveDate;
2016-05-28 15:53:13 +00:00
use parse::Parse;
pub struct Date {
year: i32,
month: u32,
day: u32,
}
impl Date {
2016-05-28 18:21:42 +00:00
pub fn new(year: i32, month: u32, day: u32) -> Date {
Date { year, month, day }
2016-05-28 18:21:42 +00:00
}
pub fn year(&self) -> i32 {
self.year
}
pub fn month(&self) -> u32 {
self.month
}
pub fn day(&self) -> u32 {
self.day
2016-05-28 15:53:13 +00:00
}
}
impl Into<ChronoNaiveDate> for Date {
fn into(self) -> ChronoNaiveDate {
ChronoNaiveDate::from_ymd(self.year, self.month, self.day)
}
}
impl Parse for Date {
2016-05-28 18:12:55 +00:00
/// Parse the date part of the full string into a Date object
2016-05-28 15:53:13 +00:00
fn parse(s: &str) -> Option<Date> {
2016-05-28 18:12:55 +00:00
use std::str::FromStr;
use regex::Regex;
use parse::time_parse_regex;
lazy_static! {
static ref R: Regex = Regex::new(time_parse_regex()).unwrap();
}
R.captures(s)
.and_then(|capts| {
let year = capts.name("Y").and_then(|o| FromStr::from_str(o.as_str()).ok());
let month = capts.name("M").and_then(|o| FromStr::from_str(o.as_str()).ok());
let day = capts.name("D").and_then(|o| FromStr::from_str(o.as_str()).ok());
2016-05-28 18:12:55 +00:00
2016-08-04 12:18:13 +00:00
let year = match year {
None => {
debug!("No year");
return None;
},
Some(x) => x,
};
let month = match month {
None => {
debug!("No month");
return None;
},
Some(x) => x,
};
let day = match day {
None => {
debug!("No day");
return None;
},
Some(x) => x,
};
Some(Date::new(year, month, day))
2016-05-28 18:12:55 +00:00
})
}
}
#[cfg(test)]
mod test {
use super::Date;
use parse::Parse;
#[test]
fn test_valid() {
let s = "2016-02-01";
let d = Date::parse(s);
assert!(d.is_some());
let d = d.unwrap();
assert_eq!(2016, d.year());
assert_eq!(2, d.month());
assert_eq!(1, d.day());
}
#[test]
fn test_invalid() {
assert!(Date::parse("2016-021-01").is_none());
assert!(Date::parse("2016-02-012").is_none());
assert!(Date::parse("2016-02-0").is_none());
assert!(Date::parse("2016-0-02").is_none());
assert!(Date::parse("2016-02").is_none());
assert!(Date::parse("2016-2").is_none());
2016-05-28 15:53:13 +00:00
}
}