2016-02-25 18:44:53 +01:00
|
|
|
extern crate time;
|
|
|
|
|
2016-12-31 00:35:47 -05:00
|
|
|
use types::{FromSql, FromSqlError, FromSqlResult, ToSql, ToSqlOutput, ValueRef};
|
2018-08-11 12:48:21 +02:00
|
|
|
use Result;
|
2016-02-25 18:44:53 +01:00
|
|
|
|
2017-12-24 09:02:40 +00:00
|
|
|
const SQLITE_DATETIME_FMT: &str = "%Y-%m-%dT%H:%M:%S.%fZ";
|
|
|
|
const SQLITE_DATETIME_FMT_LEGACY: &str = "%Y-%m-%d %H:%M:%S:%f %Z";
|
2016-02-25 18:44:53 +01:00
|
|
|
|
|
|
|
impl ToSql for time::Timespec {
|
2016-05-25 22:57:43 -04:00
|
|
|
fn to_sql(&self) -> Result<ToSqlOutput> {
|
2017-04-07 19:43:24 +02:00
|
|
|
let time_string = time::at_utc(*self)
|
|
|
|
.strftime(SQLITE_DATETIME_FMT)
|
|
|
|
.unwrap()
|
|
|
|
.to_string();
|
2016-05-25 22:57:43 -04:00
|
|
|
Ok(ToSqlOutput::from(time_string))
|
2016-02-25 18:44:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromSql for time::Timespec {
|
2016-12-31 00:35:47 -05:00
|
|
|
fn column_result(value: ValueRef) -> FromSqlResult<Self> {
|
2017-04-07 19:43:24 +02:00
|
|
|
value
|
|
|
|
.as_str()
|
2017-12-24 09:02:40 +00:00
|
|
|
.and_then(|s| {
|
2018-08-11 12:48:21 +02:00
|
|
|
time::strptime(s, SQLITE_DATETIME_FMT).or_else(|err| {
|
|
|
|
time::strptime(s, SQLITE_DATETIME_FMT_LEGACY)
|
|
|
|
.or_else(|_| Err(FromSqlError::Other(Box::new(err))))
|
|
|
|
})
|
2018-10-28 08:51:02 +01:00
|
|
|
})
|
|
|
|
.map(|tm| tm.to_timespec())
|
2016-05-15 22:30:11 -05:00
|
|
|
}
|
2016-02-25 18:44:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::time;
|
2018-09-16 11:10:19 +02:00
|
|
|
use {Connection, NO_PARAMS};
|
2016-02-25 18:44:53 +01:00
|
|
|
|
|
|
|
fn checked_memory_handle() -> Connection {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
2017-04-07 19:43:24 +02:00
|
|
|
db.execute_batch("CREATE TABLE foo (t TEXT, i INTEGER, f FLOAT)")
|
|
|
|
.unwrap();
|
2016-02-25 18:44:53 +01:00
|
|
|
db
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_timespec() {
|
|
|
|
let db = checked_memory_handle();
|
|
|
|
|
2017-07-18 17:46:49 +02:00
|
|
|
let mut ts_vec = vec![];
|
|
|
|
|
2018-08-11 12:48:21 +02:00
|
|
|
ts_vec.push(time::Timespec::new(10_000, 0)); //January 1, 1970 2:46:40 AM
|
|
|
|
ts_vec.push(time::Timespec::new(10_000, 1000)); //January 1, 1970 2:46:40 AM (and one microsecond)
|
|
|
|
ts_vec.push(time::Timespec::new(1500391124, 1_000_000)); //July 18, 2017
|
|
|
|
ts_vec.push(time::Timespec::new(2000000000, 2_000_000)); //May 18, 2033
|
|
|
|
ts_vec.push(time::Timespec::new(3000000000, 999_999_999)); //January 24, 2065
|
|
|
|
ts_vec.push(time::Timespec::new(10000000000, 0)); //November 20, 2286
|
2017-07-18 17:46:49 +02:00
|
|
|
|
|
|
|
for ts in ts_vec {
|
2018-08-11 12:48:21 +02:00
|
|
|
db.execute("INSERT INTO foo(t) VALUES (?)", &[&ts]).unwrap();
|
2017-07-18 17:46:49 +02:00
|
|
|
|
2018-08-11 12:48:21 +02:00
|
|
|
let from: time::Timespec = db
|
2018-09-16 11:10:19 +02:00
|
|
|
.query_row("SELECT t FROM foo", NO_PARAMS, |r| r.get(0))
|
2017-07-18 17:46:49 +02:00
|
|
|
.unwrap();
|
|
|
|
|
2018-09-16 11:10:19 +02:00
|
|
|
db.execute("DELETE FROM foo", NO_PARAMS).unwrap();
|
2017-07-18 17:46:49 +02:00
|
|
|
|
|
|
|
assert_eq!(from, ts);
|
|
|
|
}
|
2016-02-25 18:44:53 +01:00
|
|
|
}
|
|
|
|
}
|