sqlx_postgres/types/time/
datetime.rsuse crate::decode::Decode;
use crate::encode::{Encode, IsNull};
use crate::error::BoxDynError;
use crate::types::time::PG_EPOCH;
use crate::types::Type;
use crate::{PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueFormat, PgValueRef, Postgres};
use std::borrow::Cow;
use std::mem;
use time::macros::format_description;
use time::macros::offset;
use time::{Duration, OffsetDateTime, PrimitiveDateTime};
impl Type<Postgres> for PrimitiveDateTime {
fn type_info() -> PgTypeInfo {
PgTypeInfo::TIMESTAMP
}
}
impl Type<Postgres> for OffsetDateTime {
fn type_info() -> PgTypeInfo {
PgTypeInfo::TIMESTAMPTZ
}
}
impl PgHasArrayType for PrimitiveDateTime {
fn array_type_info() -> PgTypeInfo {
PgTypeInfo::TIMESTAMP_ARRAY
}
}
impl PgHasArrayType for OffsetDateTime {
fn array_type_info() -> PgTypeInfo {
PgTypeInfo::TIMESTAMPTZ_ARRAY
}
}
impl Encode<'_, Postgres> for PrimitiveDateTime {
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> Result<IsNull, BoxDynError> {
let micros: i64 = (*self - PG_EPOCH.midnight())
.whole_microseconds()
.try_into()
.map_err(|_| {
format!("value {self:?} would overflow binary encoding for Postgres TIME")
})?;
Encode::<Postgres>::encode(micros, buf)
}
fn size_hint(&self) -> usize {
mem::size_of::<i64>()
}
}
impl<'r> Decode<'r, Postgres> for PrimitiveDateTime {
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError> {
Ok(match value.format() {
PgValueFormat::Binary => {
let us = Decode::<Postgres>::decode(value)?;
PG_EPOCH.midnight() + Duration::microseconds(us)
}
PgValueFormat::Text => {
let s = value.as_str()?;
let s = if s.contains('.') {
Cow::Borrowed(s)
} else {
Cow::Owned(format!("{s}.0"))
};
if s.contains('+') {
PrimitiveDateTime::parse(&s, &format_description!("[year]-[month]-[day] [hour]:[minute]:[second].[subsecond][offset_hour]"))?
} else {
PrimitiveDateTime::parse(
&s,
&format_description!(
"[year]-[month]-[day] [hour]:[minute]:[second].[subsecond]"
),
)?
}
}
})
}
}
impl Encode<'_, Postgres> for OffsetDateTime {
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> Result<IsNull, BoxDynError> {
let utc = self.to_offset(offset!(UTC));
let primitive = PrimitiveDateTime::new(utc.date(), utc.time());
Encode::<Postgres>::encode(primitive, buf)
}
fn size_hint(&self) -> usize {
mem::size_of::<i64>()
}
}
impl<'r> Decode<'r, Postgres> for OffsetDateTime {
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError> {
Ok(<PrimitiveDateTime as Decode<Postgres>>::decode(value)?.assume_utc())
}
}