2016-02-26 01:44:53 +08:00
|
|
|
extern crate time;
|
|
|
|
|
|
|
|
use libc::c_int;
|
|
|
|
use {Error, Result};
|
|
|
|
use types::{FromSql, ToSql};
|
|
|
|
|
|
|
|
use ffi::sqlite3_stmt;
|
|
|
|
|
|
|
|
const SQLITE_DATETIME_FMT: &'static str = "%Y-%m-%d %H:%M:%S";
|
|
|
|
|
|
|
|
impl ToSql for time::Timespec {
|
|
|
|
unsafe fn bind_parameter(&self, stmt: *mut sqlite3_stmt, col: c_int) -> c_int {
|
|
|
|
let time_str = time::at_utc(*self).strftime(SQLITE_DATETIME_FMT).unwrap().to_string();
|
|
|
|
time_str.bind_parameter(stmt, col)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromSql for time::Timespec {
|
|
|
|
unsafe fn column_result(stmt: *mut sqlite3_stmt, col: c_int) -> Result<time::Timespec> {
|
2016-05-16 11:30:11 +08:00
|
|
|
let s = try!(String::column_result(stmt, col));
|
|
|
|
match time::strptime(&s, SQLITE_DATETIME_FMT) {
|
|
|
|
Ok(tm) => Ok(tm.to_timespec()),
|
|
|
|
Err(err) => Err(Error::FromSqlConversionFailure(Box::new(err))),
|
2016-02-26 01:44:53 +08:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 11:30:11 +08:00
|
|
|
|
|
|
|
unsafe fn column_has_valid_sqlite_type(stmt: *mut sqlite3_stmt, col: c_int) -> bool {
|
|
|
|
String::column_has_valid_sqlite_type(stmt, col)
|
|
|
|
}
|
2016-02-26 01:44:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use Connection;
|
|
|
|
use super::time;
|
|
|
|
|
|
|
|
fn checked_memory_handle() -> Connection {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
db.execute_batch("CREATE TABLE foo (t TEXT, i INTEGER, f FLOAT)").unwrap();
|
|
|
|
db
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_timespec() {
|
|
|
|
let db = checked_memory_handle();
|
|
|
|
|
|
|
|
let ts = time::Timespec {
|
|
|
|
sec: 10_000,
|
|
|
|
nsec: 0,
|
|
|
|
};
|
2016-05-16 11:30:11 +08:00
|
|
|
db.execute("INSERT INTO foo(t) VALUES (?)", &[&ts]).unwrap();
|
2016-02-26 01:44:53 +08:00
|
|
|
|
|
|
|
let from: time::Timespec = db.query_row("SELECT t FROM foo", &[], |r| r.get(0)).unwrap();
|
|
|
|
assert_eq!(from, ts);
|
|
|
|
}
|
|
|
|
}
|