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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
use std::error::Error;
use std::io::Write;
use std::ops::Add;

use pg::{Pg, PgTypeMetadata};
use types::{self, FromSql, ToSql, IsNull};

primitive_impls!(Timestamptz -> (pg: (1184, 1185)));
primitive_impls!(Timestamptz);

#[cfg(feature = "quickcheck")]
mod quickcheck_impls;
mod std_time;
#[cfg(feature = "chrono")]
mod chrono;

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
/// Timestamps are represented in Postgres as a 64 bit signed integer representing the number of
/// microseconds since January 1st 2000. This struct is a dumb wrapper type, meant only to indicate
/// the integer's meaning.
pub struct PgTimestamp(pub i64);

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
/// Dates are represented in Postgres as a 32 bit signed integer representing the number of julian
/// days since January 1st 2000. This struct is a dumb wrapper type, meant only to indicate the
/// integer's meaning.
pub struct PgDate(pub i32);

/// Time is represented in Postgres as a 64 bit signed integer representing the number of
/// microseconds since midnight. This struct is a dumb wrapper type, meant only to indicate the
/// integer's meaning.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct PgTime(pub i64);

/// Intervals in Postgres are separated into 3 parts. A 64 bit integer representing time in
/// microseconds, a 32 bit integer representing number of minutes, and a 32 bit integer
/// representing number of months. This struct is a dumb wrapper type, meant only to indicate the
/// meaning of these parts.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct PgInterval {
    pub microseconds: i64,
    pub days: i32,
    pub months: i32,
}

impl PgInterval {
    pub fn new(microseconds: i64, days: i32, months: i32) -> Self {
        PgInterval {
            microseconds: microseconds,
            days: days,
            months: months,
        }
    }

    pub fn from_microseconds(microseconds: i64) -> Self {
        Self::new(microseconds, 0, 0)
    }

    pub fn from_days(days: i32) -> Self {
        Self::new(0, days, 0)
    }

    pub fn from_months(months: i32) -> Self {
        Self::new(0, 0, months)
    }
}

queryable_impls!(Date -> PgDate,);
queryable_impls!(Time -> PgTime,);
queryable_impls!(Timestamp -> PgTimestamp,);
queryable_impls!(Timestamptz -> PgTimestamp,);
expression_impls!(Date -> PgDate,);
expression_impls!(Time -> PgTime,);
expression_impls!(Timestamp -> PgTimestamp,);
expression_impls!(Timestamptz -> PgTimestamp,);

primitive_impls!(Interval -> (PgInterval, pg: (1186, 1187)));

use types::HasSqlType;

impl HasSqlType<types::Date> for Pg {
    fn metadata() -> PgTypeMetadata {
        PgTypeMetadata {
            oid: 1082,
            array_oid: 1182,
        }
    }
}

impl HasSqlType<types::Time> for Pg {
    fn metadata() -> PgTypeMetadata {
        PgTypeMetadata {
            oid: 1083,
            array_oid: 1183,
        }
    }
}

impl HasSqlType<types::Timestamp> for Pg {
    fn metadata() -> PgTypeMetadata {
        PgTypeMetadata {
            oid: 1114,
            array_oid: 1115,
        }
    }
}

impl ToSql<types::Timestamp, Pg> for PgTimestamp {
    fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>> {
        ToSql::<types::BigInt, Pg>::to_sql(&self.0, out)
    }
}

impl FromSql<types::Timestamp, Pg> for PgTimestamp {
    fn from_sql(bytes: Option<&[u8]>) -> Result<Self, Box<Error+Send+Sync>> {
        FromSql::<types::BigInt, Pg>::from_sql(bytes)
            .map(PgTimestamp)
    }
}

impl ToSql<types::Timestamptz, Pg> for PgTimestamp {
    fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>> {
        ToSql::<types::Timestamp, Pg>::to_sql(self, out)
    }
}

impl FromSql<types::Timestamptz, Pg> for PgTimestamp {
    fn from_sql(bytes: Option<&[u8]>) -> Result<Self, Box<Error+Send+Sync>> {
        FromSql::<types::Timestamp, Pg>::from_sql(bytes)
    }
}

impl ToSql<types::Date, Pg> for PgDate {
    fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>> {
        ToSql::<types::Integer, Pg>::to_sql(&self.0, out)
    }
}

impl FromSql<types::Date, Pg> for PgDate {
    fn from_sql(bytes: Option<&[u8]>) -> Result<Self, Box<Error+Send+Sync>> {
        FromSql::<types::Integer, Pg>::from_sql(bytes)
            .map(PgDate)
    }
}

impl ToSql<types::Time, Pg> for PgTime {
    fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>> {
        ToSql::<types::BigInt, Pg>::to_sql(&self.0, out)
    }
}

impl FromSql<types::Time, Pg> for PgTime {
    fn from_sql(bytes: Option<&[u8]>) -> Result<Self, Box<Error+Send+Sync>> {
        FromSql::<types::BigInt, Pg>::from_sql(bytes)
            .map(PgTime)
    }
}

impl ToSql<types::Interval, Pg> for PgInterval {
    fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>> {
        try!(ToSql::<types::BigInt, Pg>::to_sql(&self.microseconds, out));
        try!(ToSql::<types::Integer, Pg>::to_sql(&self.days, out));
        try!(ToSql::<types::Integer, Pg>::to_sql(&self.months, out));
        Ok(IsNull::No)
    }
}

impl FromSql<types::Interval, Pg> for PgInterval {
    fn from_sql(bytes: Option<&[u8]>) -> Result<Self, Box<Error+Send+Sync>> {
        let bytes = not_none!(bytes);
        Ok(PgInterval {
            microseconds: try!(FromSql::<types::BigInt, Pg>::from_sql(Some(&bytes[..8]))),
            days: try!(FromSql::<types::Integer, Pg>::from_sql(Some(&bytes[8..12]))),
            months: try!(FromSql::<types::Integer, Pg>::from_sql(Some(&bytes[12..16]))),
        })
    }
}

impl Add<PgInterval> for PgInterval {
    type Output = PgInterval;

    fn add(self, other: PgInterval) -> Self::Output {
        PgInterval {
            microseconds: self.microseconds + other.microseconds,
            days: self.days + other.days,
            months: self.months + other.months,
        }
    }
}