use super::PostgresValue;
use crate::prelude::*;
use crate::traits::{FromPostgresValue, PostgresEnum};
use drizzle_core::{SQLParam, error::DrizzleError, sql::SQL};
#[cfg(feature = "uuid")]
use uuid::Uuid;
#[cfg(feature = "chrono")]
use chrono::{DateTime, Duration, FixedOffset, NaiveDate, NaiveDateTime, NaiveTime};
#[cfg(feature = "time")]
use time::{
Date as TimeDate, Duration as TimeDuration, OffsetDateTime, PrimitiveDateTime, Time as TimeTime,
};
#[cfg(feature = "cidr")]
use cidr::{IpCidr, IpInet};
#[cfg(feature = "geo-types")]
use geo_types::{LineString, Point, Rect};
#[cfg(feature = "bit-vec")]
use bit_vec::BitVec;
#[cfg(feature = "rust-decimal")]
use rust_decimal::Decimal;
#[derive(Debug, Clone, PartialEq, Default)]
pub enum OwnedPostgresValue {
Smallint(i16),
Integer(i32),
Bigint(i64),
Real(f32),
DoublePrecision(f64),
#[cfg(feature = "rust-decimal")]
Numeric(Decimal),
Text(String),
Bytea(Vec<u8>),
Boolean(bool),
#[cfg(feature = "uuid")]
Uuid(Uuid),
#[cfg(feature = "serde")]
Json(serde_json::Value),
#[cfg(feature = "serde")]
Jsonb(serde_json::Value),
#[cfg(feature = "chrono")]
Date(NaiveDate),
#[cfg(feature = "chrono")]
Time(NaiveTime),
#[cfg(feature = "chrono")]
Timestamp(NaiveDateTime),
#[cfg(feature = "chrono")]
TimestampTz(DateTime<FixedOffset>),
#[cfg(feature = "chrono")]
Interval(Duration),
#[cfg(feature = "time")]
TimeDate(TimeDate),
#[cfg(feature = "time")]
TimeTime(TimeTime),
#[cfg(feature = "time")]
TimeTimestamp(PrimitiveDateTime),
#[cfg(feature = "time")]
TimeTimestampTz(OffsetDateTime),
#[cfg(feature = "time")]
TimeInterval(TimeDuration),
#[cfg(feature = "cidr")]
Inet(IpInet),
#[cfg(feature = "cidr")]
Cidr(IpCidr),
#[cfg(feature = "cidr")]
MacAddr([u8; 6]),
#[cfg(feature = "cidr")]
MacAddr8([u8; 8]),
#[cfg(feature = "geo-types")]
Point(Point<f64>),
#[cfg(feature = "geo-types")]
LineString(LineString<f64>),
#[cfg(feature = "geo-types")]
Rect(Rect<f64>),
#[cfg(feature = "bit-vec")]
BitVec(BitVec),
Array(Vec<Self>),
Enum(Box<dyn PostgresEnum>),
#[default]
Null,
}
impl SQLParam for OwnedPostgresValue {
const DIALECT: drizzle_core::Dialect = drizzle_core::Dialect::PostgreSQL;
type DialectMarker = drizzle_core::dialect::PostgresDialect;
}
impl From<OwnedPostgresValue> for SQL<'_, OwnedPostgresValue> {
fn from(value: OwnedPostgresValue) -> Self {
SQL::param(value)
}
}
impl From<OwnedPostgresValue> for Cow<'_, OwnedPostgresValue> {
fn from(value: OwnedPostgresValue) -> Self {
Cow::Owned(value)
}
}
impl<'a> From<&'a OwnedPostgresValue> for Cow<'a, OwnedPostgresValue> {
fn from(value: &'a OwnedPostgresValue) -> Self {
Cow::Borrowed(value)
}
}
impl OwnedPostgresValue {
#[inline]
#[must_use]
pub const fn is_null(&self) -> bool {
matches!(self, Self::Null)
}
#[inline]
#[must_use]
pub const fn as_bool(&self) -> Option<bool> {
match self {
Self::Boolean(value) => Some(*value),
_ => None,
}
}
#[inline]
#[must_use]
pub const fn as_i16(&self) -> Option<i16> {
match self {
Self::Smallint(value) => Some(*value),
_ => None,
}
}
#[inline]
#[must_use]
pub const fn as_i32(&self) -> Option<i32> {
match self {
Self::Integer(value) => Some(*value),
_ => None,
}
}
#[inline]
#[must_use]
pub const fn as_i64(&self) -> Option<i64> {
match self {
Self::Bigint(value) => Some(*value),
_ => None,
}
}
#[inline]
#[must_use]
pub const fn as_f32(&self) -> Option<f32> {
match self {
Self::Real(value) => Some(*value),
_ => None,
}
}
#[inline]
#[must_use]
pub const fn as_f64(&self) -> Option<f64> {
match self {
Self::DoublePrecision(value) => Some(*value),
_ => None,
}
}
#[inline]
#[cfg(feature = "rust-decimal")]
#[must_use]
pub const fn as_decimal(&self) -> Option<&Decimal> {
match self {
Self::Numeric(value) => Some(value),
_ => None,
}
}
#[inline]
#[must_use]
pub const fn as_str(&self) -> Option<&str> {
match self {
Self::Text(value) => Some(value.as_str()),
_ => None,
}
}
#[inline]
#[must_use]
pub fn as_bytes(&self) -> Option<&[u8]> {
match self {
Self::Bytea(value) => Some(value.as_ref()),
_ => None,
}
}
#[inline]
#[cfg(feature = "uuid")]
#[must_use]
pub const fn as_uuid(&self) -> Option<Uuid> {
match self {
Self::Uuid(value) => Some(*value),
_ => None,
}
}
#[inline]
#[cfg(feature = "serde")]
#[must_use]
pub const fn as_json(&self) -> Option<&serde_json::Value> {
match self {
Self::Json(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "serde")]
#[must_use]
pub const fn as_jsonb(&self) -> Option<&serde_json::Value> {
match self {
Self::Jsonb(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "chrono")]
#[must_use]
pub const fn as_date(&self) -> Option<&NaiveDate> {
match self {
Self::Date(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "chrono")]
#[must_use]
pub const fn as_time(&self) -> Option<&NaiveTime> {
match self {
Self::Time(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "chrono")]
#[must_use]
pub const fn as_timestamp(&self) -> Option<&NaiveDateTime> {
match self {
Self::Timestamp(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "chrono")]
#[must_use]
pub const fn as_timestamp_tz(&self) -> Option<&DateTime<FixedOffset>> {
match self {
Self::TimestampTz(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "chrono")]
#[must_use]
pub const fn as_interval(&self) -> Option<&Duration> {
match self {
Self::Interval(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "time")]
#[must_use]
pub const fn as_time_date(&self) -> Option<&TimeDate> {
match self {
Self::TimeDate(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "time")]
#[must_use]
pub const fn as_time_time(&self) -> Option<&TimeTime> {
match self {
Self::TimeTime(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "time")]
#[must_use]
pub const fn as_time_timestamp(&self) -> Option<&PrimitiveDateTime> {
match self {
Self::TimeTimestamp(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "time")]
#[must_use]
pub const fn as_time_timestamp_tz(&self) -> Option<&OffsetDateTime> {
match self {
Self::TimeTimestampTz(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "time")]
#[must_use]
pub const fn as_time_interval(&self) -> Option<&TimeDuration> {
match self {
Self::TimeInterval(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "cidr")]
#[must_use]
pub const fn as_inet(&self) -> Option<&IpInet> {
match self {
Self::Inet(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "cidr")]
#[must_use]
pub const fn as_cidr(&self) -> Option<&IpCidr> {
match self {
Self::Cidr(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "cidr")]
#[must_use]
pub const fn as_macaddr(&self) -> Option<[u8; 6]> {
match self {
Self::MacAddr(value) => Some(*value),
_ => None,
}
}
#[inline]
#[cfg(feature = "cidr")]
#[must_use]
pub const fn as_macaddr8(&self) -> Option<[u8; 8]> {
match self {
Self::MacAddr8(value) => Some(*value),
_ => None,
}
}
#[inline]
#[cfg(feature = "geo-types")]
#[must_use]
pub const fn as_point(&self) -> Option<&Point<f64>> {
match self {
Self::Point(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "geo-types")]
#[must_use]
pub const fn as_line_string(&self) -> Option<&LineString<f64>> {
match self {
Self::LineString(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "geo-types")]
#[must_use]
pub const fn as_rect(&self) -> Option<&Rect<f64>> {
match self {
Self::Rect(value) => Some(value),
_ => None,
}
}
#[inline]
#[cfg(feature = "bit-vec")]
#[must_use]
pub const fn as_bitvec(&self) -> Option<&BitVec> {
match self {
Self::BitVec(value) => Some(value),
_ => None,
}
}
#[inline]
#[must_use]
pub fn as_array(&self) -> Option<&[Self]> {
match self {
Self::Array(values) => Some(values),
_ => None,
}
}
#[inline]
pub fn as_value(&self) -> PostgresValue<'_> {
match self {
Self::Smallint(value) => PostgresValue::Smallint(*value),
Self::Integer(value) => PostgresValue::Integer(*value),
Self::Bigint(value) => PostgresValue::Bigint(*value),
Self::Real(value) => PostgresValue::Real(*value),
Self::DoublePrecision(value) => PostgresValue::DoublePrecision(*value),
#[cfg(feature = "rust-decimal")]
Self::Numeric(value) => PostgresValue::Numeric(*value),
Self::Text(value) => PostgresValue::Text(Cow::Borrowed(value)),
Self::Bytea(value) => PostgresValue::Bytea(Cow::Borrowed(value)),
Self::Boolean(value) => PostgresValue::Boolean(*value),
#[cfg(feature = "uuid")]
Self::Uuid(value) => PostgresValue::Uuid(*value),
#[cfg(feature = "serde")]
Self::Json(value) => PostgresValue::Json(value.clone()),
#[cfg(feature = "serde")]
Self::Jsonb(value) => PostgresValue::Jsonb(value.clone()),
#[cfg(feature = "chrono")]
Self::Date(value) => PostgresValue::Date(*value),
#[cfg(feature = "chrono")]
Self::Time(value) => PostgresValue::Time(*value),
#[cfg(feature = "chrono")]
Self::Timestamp(value) => PostgresValue::Timestamp(*value),
#[cfg(feature = "chrono")]
Self::TimestampTz(value) => PostgresValue::TimestampTz(*value),
#[cfg(feature = "chrono")]
Self::Interval(value) => PostgresValue::Interval(*value),
#[cfg(feature = "time")]
Self::TimeDate(value) => PostgresValue::TimeDate(*value),
#[cfg(feature = "time")]
Self::TimeTime(value) => PostgresValue::TimeTime(*value),
#[cfg(feature = "time")]
Self::TimeTimestamp(value) => PostgresValue::TimeTimestamp(*value),
#[cfg(feature = "time")]
Self::TimeTimestampTz(value) => PostgresValue::TimeTimestampTz(*value),
#[cfg(feature = "time")]
Self::TimeInterval(value) => PostgresValue::TimeInterval(*value),
#[cfg(feature = "cidr")]
Self::Inet(value) => PostgresValue::Inet(*value),
#[cfg(feature = "cidr")]
Self::Cidr(value) => PostgresValue::Cidr(*value),
#[cfg(feature = "cidr")]
Self::MacAddr(value) => PostgresValue::MacAddr(*value),
#[cfg(feature = "cidr")]
Self::MacAddr8(value) => PostgresValue::MacAddr8(*value),
#[cfg(feature = "geo-types")]
Self::Point(value) => PostgresValue::Point(*value),
#[cfg(feature = "geo-types")]
Self::LineString(value) => PostgresValue::LineString(value.clone()),
#[cfg(feature = "geo-types")]
Self::Rect(value) => PostgresValue::Rect(*value),
#[cfg(feature = "bit-vec")]
Self::BitVec(value) => PostgresValue::BitVec(value.clone()),
Self::Array(values) => {
PostgresValue::Array(values.iter().map(Self::as_value).collect())
}
Self::Enum(value) => PostgresValue::Enum(value.clone()),
Self::Null => PostgresValue::Null,
}
}
pub fn convert<T: FromPostgresValue>(self) -> Result<T, DrizzleError> {
match self {
Self::Boolean(value) => T::from_postgres_bool(value),
Self::Smallint(value) => T::from_postgres_i16(value),
Self::Integer(value) => T::from_postgres_i32(value),
Self::Bigint(value) => T::from_postgres_i64(value),
Self::Real(value) => T::from_postgres_f32(value),
Self::DoublePrecision(value) => T::from_postgres_f64(value),
#[cfg(feature = "rust-decimal")]
Self::Numeric(value) => {
let text = value.to_string();
T::from_postgres_text(&text)
}
Self::Text(value) => T::from_postgres_text(&value),
Self::Bytea(value) => T::from_postgres_bytes(&value),
#[cfg(feature = "uuid")]
Self::Uuid(value) => T::from_postgres_uuid(value),
#[cfg(feature = "serde")]
Self::Json(value) => T::from_postgres_json(value),
#[cfg(feature = "serde")]
Self::Jsonb(value) => T::from_postgres_jsonb(value),
#[cfg(feature = "chrono")]
Self::Date(value) => T::from_postgres_date(value),
#[cfg(feature = "chrono")]
Self::Time(value) => T::from_postgres_time(value),
#[cfg(feature = "chrono")]
Self::Timestamp(value) => T::from_postgres_timestamp(value),
#[cfg(feature = "chrono")]
Self::TimestampTz(value) => T::from_postgres_timestamptz(value),
#[cfg(feature = "chrono")]
Self::Interval(value) => T::from_postgres_interval(value),
#[cfg(feature = "time")]
Self::TimeDate(value) => T::from_postgres_time_date(value),
#[cfg(feature = "time")]
Self::TimeTime(value) => T::from_postgres_time_time(value),
#[cfg(feature = "time")]
Self::TimeTimestamp(value) => T::from_postgres_time_timestamp(value),
#[cfg(feature = "time")]
Self::TimeTimestampTz(value) => T::from_postgres_time_timestamptz(value),
#[cfg(feature = "time")]
Self::TimeInterval(value) => T::from_postgres_time_interval(value),
#[cfg(feature = "cidr")]
Self::Inet(value) => T::from_postgres_inet(value),
#[cfg(feature = "cidr")]
Self::Cidr(value) => T::from_postgres_cidr(value),
#[cfg(feature = "cidr")]
Self::MacAddr(value) => T::from_postgres_macaddr(value),
#[cfg(feature = "cidr")]
Self::MacAddr8(value) => T::from_postgres_macaddr8(value),
#[cfg(feature = "geo-types")]
Self::Point(value) => T::from_postgres_point(value),
#[cfg(feature = "geo-types")]
Self::LineString(value) => T::from_postgres_linestring(value),
#[cfg(feature = "geo-types")]
Self::Rect(value) => T::from_postgres_rect(value),
#[cfg(feature = "bit-vec")]
Self::BitVec(value) => T::from_postgres_bitvec(value),
Self::Array(values) => {
let values = values.into_iter().map(PostgresValue::from).collect();
T::from_postgres_array(values)
}
Self::Enum(value) => T::from_postgres_text(value.variant_name()),
Self::Null => T::from_postgres_null(),
}
}
pub fn convert_ref<T: FromPostgresValue>(&self) -> Result<T, DrizzleError> {
match self {
Self::Boolean(value) => T::from_postgres_bool(*value),
Self::Smallint(value) => T::from_postgres_i16(*value),
Self::Integer(value) => T::from_postgres_i32(*value),
Self::Bigint(value) => T::from_postgres_i64(*value),
Self::Real(value) => T::from_postgres_f32(*value),
Self::DoublePrecision(value) => T::from_postgres_f64(*value),
#[cfg(feature = "rust-decimal")]
Self::Numeric(value) => {
let text = value.to_string();
T::from_postgres_text(&text)
}
Self::Text(value) => T::from_postgres_text(value),
Self::Bytea(value) => T::from_postgres_bytes(value),
#[cfg(feature = "uuid")]
Self::Uuid(value) => T::from_postgres_uuid(*value),
#[cfg(feature = "serde")]
Self::Json(value) => T::from_postgres_json(value.clone()),
#[cfg(feature = "serde")]
Self::Jsonb(value) => T::from_postgres_jsonb(value.clone()),
#[cfg(feature = "chrono")]
Self::Date(value) => T::from_postgres_date(*value),
#[cfg(feature = "chrono")]
Self::Time(value) => T::from_postgres_time(*value),
#[cfg(feature = "chrono")]
Self::Timestamp(value) => T::from_postgres_timestamp(*value),
#[cfg(feature = "chrono")]
Self::TimestampTz(value) => T::from_postgres_timestamptz(*value),
#[cfg(feature = "chrono")]
Self::Interval(value) => T::from_postgres_interval(*value),
#[cfg(feature = "time")]
Self::TimeDate(value) => T::from_postgres_time_date(*value),
#[cfg(feature = "time")]
Self::TimeTime(value) => T::from_postgres_time_time(*value),
#[cfg(feature = "time")]
Self::TimeTimestamp(value) => T::from_postgres_time_timestamp(*value),
#[cfg(feature = "time")]
Self::TimeTimestampTz(value) => T::from_postgres_time_timestamptz(*value),
#[cfg(feature = "time")]
Self::TimeInterval(value) => T::from_postgres_time_interval(*value),
#[cfg(feature = "cidr")]
Self::Inet(value) => T::from_postgres_inet(*value),
#[cfg(feature = "cidr")]
Self::Cidr(value) => T::from_postgres_cidr(*value),
#[cfg(feature = "cidr")]
Self::MacAddr(value) => T::from_postgres_macaddr(*value),
#[cfg(feature = "cidr")]
Self::MacAddr8(value) => T::from_postgres_macaddr8(*value),
#[cfg(feature = "geo-types")]
Self::Point(value) => T::from_postgres_point(*value),
#[cfg(feature = "geo-types")]
Self::LineString(value) => T::from_postgres_linestring(value.clone()),
#[cfg(feature = "geo-types")]
Self::Rect(value) => T::from_postgres_rect(*value),
#[cfg(feature = "bit-vec")]
Self::BitVec(value) => T::from_postgres_bitvec(value.clone()),
Self::Array(values) => {
let values = values.iter().map(Self::as_value).collect();
T::from_postgres_array(values)
}
Self::Enum(value) => T::from_postgres_text(value.variant_name()),
Self::Null => T::from_postgres_null(),
}
}
}
impl core::fmt::Display for OwnedPostgresValue {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
let value = match self {
Self::Smallint(i) => i.to_string(),
Self::Integer(i) => i.to_string(),
Self::Bigint(i) => i.to_string(),
Self::Real(r) => r.to_string(),
Self::DoublePrecision(r) => r.to_string(),
#[cfg(feature = "rust-decimal")]
Self::Numeric(d) => d.to_string(),
Self::Text(s) => s.clone(),
Self::Bytea(b) => {
use core::fmt::Write;
let mut s = String::with_capacity(2 + b.len() * 2);
s.push_str("\\x");
for byte in b {
write!(s, "{byte:02x}").expect("writing to String cannot fail");
}
s
}
Self::Boolean(b) => b.to_string(),
#[cfg(feature = "uuid")]
Self::Uuid(uuid) => uuid.to_string(),
#[cfg(feature = "serde")]
Self::Json(json) => json.to_string(),
#[cfg(feature = "serde")]
Self::Jsonb(json) => json.to_string(),
#[cfg(feature = "chrono")]
Self::Date(date) => date.to_string(),
#[cfg(feature = "chrono")]
Self::Time(time) => time.to_string(),
#[cfg(feature = "chrono")]
Self::Timestamp(ts) => ts.to_string(),
#[cfg(feature = "chrono")]
Self::TimestampTz(ts) => ts.to_string(),
#[cfg(feature = "chrono")]
Self::Interval(dur) => format!("{} seconds", dur.num_seconds()),
#[cfg(feature = "time")]
Self::TimeDate(date) => date.to_string(),
#[cfg(feature = "time")]
Self::TimeTime(time) => time.to_string(),
#[cfg(feature = "time")]
Self::TimeTimestamp(ts) => ts.to_string(),
#[cfg(feature = "time")]
Self::TimeTimestampTz(ts) => ts.to_string(),
#[cfg(feature = "time")]
Self::TimeInterval(dur) => format!("{} seconds", dur.whole_seconds()),
#[cfg(feature = "cidr")]
Self::Inet(net) => net.to_string(),
#[cfg(feature = "cidr")]
Self::Cidr(net) => net.to_string(),
#[cfg(feature = "cidr")]
Self::MacAddr(mac) => format!(
"{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}",
mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]
),
#[cfg(feature = "cidr")]
Self::MacAddr8(mac) => format!(
"{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}",
mac[0], mac[1], mac[2], mac[3], mac[4], mac[5], mac[6], mac[7]
),
#[cfg(feature = "geo-types")]
Self::Point(point) => format!("({},{})", point.x(), point.y()),
#[cfg(feature = "geo-types")]
Self::LineString(line) => {
let coords: Vec<String> = line
.coords()
.map(|coord| format!("({},{})", coord.x, coord.y))
.collect();
format!("[{}]", coords.join(","))
}
#[cfg(feature = "geo-types")]
Self::Rect(rect) => {
format!(
"(({},{}),({},{}))",
rect.min().x,
rect.min().y,
rect.max().x,
rect.max().y
)
}
#[cfg(feature = "bit-vec")]
Self::BitVec(bv) => bv
.iter()
.map(|b| if b { '1' } else { '0' })
.collect::<String>(),
Self::Array(arr) => {
let elements: Vec<String> = arr.iter().map(ToString::to_string).collect();
format!("{{{}}}", elements.join(","))
}
Self::Enum(enum_val) => enum_val.variant_name().to_string(),
Self::Null => String::new(),
};
write!(f, "{value}")
}
}
impl<'a> From<PostgresValue<'a>> for OwnedPostgresValue {
fn from(value: PostgresValue<'a>) -> Self {
match value {
PostgresValue::Smallint(i) => Self::Smallint(i),
PostgresValue::Integer(i) => Self::Integer(i),
PostgresValue::Bigint(i) => Self::Bigint(i),
PostgresValue::Real(r) => Self::Real(r),
PostgresValue::DoublePrecision(r) => Self::DoublePrecision(r),
#[cfg(feature = "rust-decimal")]
PostgresValue::Numeric(d) => Self::Numeric(d),
PostgresValue::Text(cow) => Self::Text(cow.into_owned()),
PostgresValue::Bytea(cow) => Self::Bytea(cow.into_owned()),
PostgresValue::Boolean(b) => Self::Boolean(b),
#[cfg(feature = "uuid")]
PostgresValue::Uuid(uuid) => Self::Uuid(uuid),
#[cfg(feature = "serde")]
PostgresValue::Json(json) => Self::Json(json),
#[cfg(feature = "serde")]
PostgresValue::Jsonb(json) => Self::Jsonb(json),
PostgresValue::Enum(enum_val) => Self::Enum(enum_val),
PostgresValue::Null => Self::Null,
#[cfg(feature = "chrono")]
PostgresValue::Date(date) => Self::Date(date),
#[cfg(feature = "chrono")]
PostgresValue::Time(time) => Self::Time(time),
#[cfg(feature = "chrono")]
PostgresValue::Timestamp(ts) => Self::Timestamp(ts),
#[cfg(feature = "chrono")]
PostgresValue::TimestampTz(ts) => Self::TimestampTz(ts),
#[cfg(feature = "chrono")]
PostgresValue::Interval(dur) => Self::Interval(dur),
#[cfg(feature = "time")]
PostgresValue::TimeDate(v) => Self::TimeDate(v),
#[cfg(feature = "time")]
PostgresValue::TimeTime(v) => Self::TimeTime(v),
#[cfg(feature = "time")]
PostgresValue::TimeTimestamp(v) => Self::TimeTimestamp(v),
#[cfg(feature = "time")]
PostgresValue::TimeTimestampTz(v) => Self::TimeTimestampTz(v),
#[cfg(feature = "time")]
PostgresValue::TimeInterval(v) => Self::TimeInterval(v),
#[cfg(feature = "cidr")]
PostgresValue::Inet(net) => Self::Inet(net),
#[cfg(feature = "cidr")]
PostgresValue::Cidr(net) => Self::Cidr(net),
#[cfg(feature = "cidr")]
PostgresValue::MacAddr(mac) => Self::MacAddr(mac),
#[cfg(feature = "cidr")]
PostgresValue::MacAddr8(mac) => Self::MacAddr8(mac),
#[cfg(feature = "geo-types")]
PostgresValue::Point(point) => Self::Point(point),
#[cfg(feature = "geo-types")]
PostgresValue::LineString(line) => Self::LineString(line),
#[cfg(feature = "geo-types")]
PostgresValue::Rect(rect) => Self::Rect(rect),
#[cfg(feature = "bit-vec")]
PostgresValue::BitVec(bv) => Self::BitVec(bv),
PostgresValue::Array(arr) => {
let owned_arr = arr.into_iter().map(Self::from).collect();
Self::Array(owned_arr)
}
}
}
}
impl<'a> From<&PostgresValue<'a>> for OwnedPostgresValue {
fn from(value: &PostgresValue<'a>) -> Self {
match value {
PostgresValue::Smallint(i) => Self::Smallint(*i),
PostgresValue::Integer(i) => Self::Integer(*i),
PostgresValue::Bigint(i) => Self::Bigint(*i),
PostgresValue::Real(r) => Self::Real(*r),
PostgresValue::DoublePrecision(r) => Self::DoublePrecision(*r),
#[cfg(feature = "rust-decimal")]
PostgresValue::Numeric(d) => Self::Numeric(*d),
PostgresValue::Text(cow) => Self::Text(cow.clone().into_owned()),
PostgresValue::Bytea(cow) => Self::Bytea(cow.clone().into_owned()),
PostgresValue::Boolean(b) => Self::Boolean(*b),
#[cfg(feature = "uuid")]
PostgresValue::Uuid(uuid) => Self::Uuid(*uuid),
#[cfg(feature = "serde")]
PostgresValue::Json(json) => Self::Json(json.clone()),
#[cfg(feature = "serde")]
PostgresValue::Jsonb(json) => Self::Jsonb(json.clone()),
PostgresValue::Enum(enum_val) => Self::Enum(enum_val.clone()),
#[cfg(feature = "chrono")]
PostgresValue::Date(value) => Self::Date(*value),
#[cfg(feature = "chrono")]
PostgresValue::Time(value) => Self::Time(*value),
#[cfg(feature = "chrono")]
PostgresValue::Timestamp(value) => Self::Timestamp(*value),
#[cfg(feature = "chrono")]
PostgresValue::TimestampTz(value) => Self::TimestampTz(*value),
#[cfg(feature = "chrono")]
PostgresValue::Interval(value) => Self::Interval(*value),
#[cfg(feature = "time")]
PostgresValue::TimeDate(value) => Self::TimeDate(*value),
#[cfg(feature = "time")]
PostgresValue::TimeTime(value) => Self::TimeTime(*value),
#[cfg(feature = "time")]
PostgresValue::TimeTimestamp(value) => Self::TimeTimestamp(*value),
#[cfg(feature = "time")]
PostgresValue::TimeTimestampTz(value) => Self::TimeTimestampTz(*value),
#[cfg(feature = "time")]
PostgresValue::TimeInterval(value) => Self::TimeInterval(*value),
#[cfg(feature = "cidr")]
PostgresValue::Inet(value) => Self::Inet(*value),
#[cfg(feature = "cidr")]
PostgresValue::Cidr(value) => Self::Cidr(*value),
#[cfg(feature = "cidr")]
PostgresValue::MacAddr(value) => Self::MacAddr(*value),
#[cfg(feature = "cidr")]
PostgresValue::MacAddr8(value) => Self::MacAddr8(*value),
#[cfg(feature = "geo-types")]
PostgresValue::Point(value) => Self::Point(*value),
#[cfg(feature = "geo-types")]
PostgresValue::LineString(value) => Self::LineString(value.clone()),
#[cfg(feature = "geo-types")]
PostgresValue::Rect(value) => Self::Rect(*value),
#[cfg(feature = "bit-vec")]
PostgresValue::BitVec(value) => Self::BitVec(value.clone()),
PostgresValue::Array(arr) => {
let owned_arr = arr.iter().map(Self::from).collect();
Self::Array(owned_arr)
}
PostgresValue::Null => Self::Null,
}
}
}
impl From<OwnedPostgresValue> for PostgresValue<'_> {
fn from(value: OwnedPostgresValue) -> Self {
match value {
OwnedPostgresValue::Smallint(i) => PostgresValue::Smallint(i),
OwnedPostgresValue::Integer(i) => PostgresValue::Integer(i),
OwnedPostgresValue::Bigint(i) => PostgresValue::Bigint(i),
OwnedPostgresValue::Real(r) => PostgresValue::Real(r),
OwnedPostgresValue::DoublePrecision(r) => PostgresValue::DoublePrecision(r),
#[cfg(feature = "rust-decimal")]
OwnedPostgresValue::Numeric(d) => PostgresValue::Numeric(d),
OwnedPostgresValue::Text(s) => PostgresValue::Text(Cow::Owned(s)),
OwnedPostgresValue::Bytea(b) => PostgresValue::Bytea(Cow::Owned(b)),
OwnedPostgresValue::Boolean(b) => PostgresValue::Boolean(b),
#[cfg(feature = "uuid")]
OwnedPostgresValue::Uuid(uuid) => PostgresValue::Uuid(uuid),
#[cfg(feature = "serde")]
OwnedPostgresValue::Json(json) => PostgresValue::Json(json),
#[cfg(feature = "serde")]
OwnedPostgresValue::Jsonb(json) => PostgresValue::Jsonb(json),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Date(date) => PostgresValue::Date(date),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Time(time) => PostgresValue::Time(time),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Timestamp(ts) => PostgresValue::Timestamp(ts),
#[cfg(feature = "chrono")]
OwnedPostgresValue::TimestampTz(ts) => PostgresValue::TimestampTz(ts),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Interval(dur) => PostgresValue::Interval(dur),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeDate(v) => PostgresValue::TimeDate(v),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeTime(v) => PostgresValue::TimeTime(v),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeTimestamp(v) => PostgresValue::TimeTimestamp(v),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeTimestampTz(v) => PostgresValue::TimeTimestampTz(v),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeInterval(v) => PostgresValue::TimeInterval(v),
#[cfg(feature = "cidr")]
OwnedPostgresValue::Inet(net) => PostgresValue::Inet(net),
#[cfg(feature = "cidr")]
OwnedPostgresValue::Cidr(net) => PostgresValue::Cidr(net),
#[cfg(feature = "cidr")]
OwnedPostgresValue::MacAddr(mac) => PostgresValue::MacAddr(mac),
#[cfg(feature = "cidr")]
OwnedPostgresValue::MacAddr8(mac) => PostgresValue::MacAddr8(mac),
#[cfg(feature = "geo-types")]
OwnedPostgresValue::Point(point) => PostgresValue::Point(point),
#[cfg(feature = "geo-types")]
OwnedPostgresValue::LineString(line) => PostgresValue::LineString(line),
#[cfg(feature = "geo-types")]
OwnedPostgresValue::Rect(rect) => PostgresValue::Rect(rect),
#[cfg(feature = "bit-vec")]
OwnedPostgresValue::BitVec(bv) => PostgresValue::BitVec(bv),
OwnedPostgresValue::Array(arr) => {
let postgres_arr = arr.into_iter().map(PostgresValue::from).collect();
PostgresValue::Array(postgres_arr)
}
OwnedPostgresValue::Enum(enum_val) => PostgresValue::Enum(enum_val),
OwnedPostgresValue::Null => PostgresValue::Null,
}
}
}
impl<'a> From<&'a OwnedPostgresValue> for PostgresValue<'a> {
fn from(value: &'a OwnedPostgresValue) -> Self {
match value {
OwnedPostgresValue::Smallint(i) => PostgresValue::Smallint(*i),
OwnedPostgresValue::Integer(i) => PostgresValue::Integer(*i),
OwnedPostgresValue::Bigint(i) => PostgresValue::Bigint(*i),
OwnedPostgresValue::Real(r) => PostgresValue::Real(*r),
OwnedPostgresValue::DoublePrecision(r) => PostgresValue::DoublePrecision(*r),
#[cfg(feature = "rust-decimal")]
OwnedPostgresValue::Numeric(d) => PostgresValue::Numeric(*d),
OwnedPostgresValue::Text(s) => PostgresValue::Text(Cow::Borrowed(s)),
OwnedPostgresValue::Bytea(b) => PostgresValue::Bytea(Cow::Borrowed(b)),
OwnedPostgresValue::Boolean(b) => PostgresValue::Boolean(*b),
#[cfg(feature = "uuid")]
OwnedPostgresValue::Uuid(uuid) => PostgresValue::Uuid(*uuid),
#[cfg(feature = "serde")]
OwnedPostgresValue::Json(json) => PostgresValue::Json(json.clone()),
#[cfg(feature = "serde")]
OwnedPostgresValue::Jsonb(json) => PostgresValue::Jsonb(json.clone()),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Date(value) => PostgresValue::Date(*value),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Time(value) => PostgresValue::Time(*value),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Timestamp(value) => PostgresValue::Timestamp(*value),
#[cfg(feature = "chrono")]
OwnedPostgresValue::TimestampTz(value) => PostgresValue::TimestampTz(*value),
#[cfg(feature = "chrono")]
OwnedPostgresValue::Interval(value) => PostgresValue::Interval(*value),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeDate(value) => PostgresValue::TimeDate(*value),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeTime(value) => PostgresValue::TimeTime(*value),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeTimestamp(value) => PostgresValue::TimeTimestamp(*value),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeTimestampTz(value) => PostgresValue::TimeTimestampTz(*value),
#[cfg(feature = "time")]
OwnedPostgresValue::TimeInterval(value) => PostgresValue::TimeInterval(*value),
#[cfg(feature = "cidr")]
OwnedPostgresValue::Inet(value) => PostgresValue::Inet(*value),
#[cfg(feature = "cidr")]
OwnedPostgresValue::Cidr(value) => PostgresValue::Cidr(*value),
#[cfg(feature = "cidr")]
OwnedPostgresValue::MacAddr(value) => PostgresValue::MacAddr(*value),
#[cfg(feature = "cidr")]
OwnedPostgresValue::MacAddr8(value) => PostgresValue::MacAddr8(*value),
#[cfg(feature = "geo-types")]
OwnedPostgresValue::Point(value) => PostgresValue::Point(*value),
#[cfg(feature = "geo-types")]
OwnedPostgresValue::LineString(value) => PostgresValue::LineString(value.clone()),
#[cfg(feature = "geo-types")]
OwnedPostgresValue::Rect(value) => PostgresValue::Rect(*value),
#[cfg(feature = "bit-vec")]
OwnedPostgresValue::BitVec(value) => PostgresValue::BitVec(value.clone()),
OwnedPostgresValue::Array(values) => {
PostgresValue::Array(values.iter().map(PostgresValue::from).collect())
}
OwnedPostgresValue::Enum(enum_val) => PostgresValue::Enum(enum_val.clone()),
OwnedPostgresValue::Null => PostgresValue::Null,
}
}
}
impl From<i16> for OwnedPostgresValue {
fn from(value: i16) -> Self {
Self::Smallint(value)
}
}
impl From<i32> for OwnedPostgresValue {
fn from(value: i32) -> Self {
Self::Integer(value)
}
}
impl From<i64> for OwnedPostgresValue {
fn from(value: i64) -> Self {
Self::Bigint(value)
}
}
impl From<f32> for OwnedPostgresValue {
fn from(value: f32) -> Self {
Self::Real(value)
}
}
impl From<f64> for OwnedPostgresValue {
fn from(value: f64) -> Self {
Self::DoublePrecision(value)
}
}
#[cfg(feature = "rust-decimal")]
impl From<Decimal> for OwnedPostgresValue {
fn from(value: Decimal) -> Self {
Self::Numeric(value)
}
}
#[cfg(feature = "rust-decimal")]
impl From<&Decimal> for OwnedPostgresValue {
fn from(value: &Decimal) -> Self {
Self::Numeric(*value)
}
}
impl From<&str> for OwnedPostgresValue {
fn from(value: &str) -> Self {
Self::Text(value.to_string())
}
}
impl From<&String> for OwnedPostgresValue {
fn from(value: &String) -> Self {
Self::Text(value.clone())
}
}
impl From<Box<str>> for OwnedPostgresValue {
fn from(value: Box<str>) -> Self {
Self::Text(value.into())
}
}
impl From<&Box<str>> for OwnedPostgresValue {
fn from(value: &Box<str>) -> Self {
Self::Text(value.as_ref().to_string())
}
}
impl From<Rc<str>> for OwnedPostgresValue {
fn from(value: Rc<str>) -> Self {
Self::Text(value.as_ref().to_string())
}
}
impl From<&Rc<str>> for OwnedPostgresValue {
fn from(value: &Rc<str>) -> Self {
Self::Text(value.as_ref().to_string())
}
}
impl From<Arc<str>> for OwnedPostgresValue {
fn from(value: Arc<str>) -> Self {
Self::Text(value.as_ref().to_string())
}
}
impl From<&Arc<str>> for OwnedPostgresValue {
fn from(value: &Arc<str>) -> Self {
Self::Text(value.as_ref().to_string())
}
}
impl From<String> for OwnedPostgresValue {
fn from(value: String) -> Self {
Self::Text(value)
}
}
impl From<Box<String>> for OwnedPostgresValue {
fn from(value: Box<String>) -> Self {
Self::Text(*value)
}
}
impl From<&Box<String>> for OwnedPostgresValue {
fn from(value: &Box<String>) -> Self {
Self::Text(value.as_ref().clone())
}
}
impl From<Rc<String>> for OwnedPostgresValue {
fn from(value: Rc<String>) -> Self {
Self::Text(value.as_ref().clone())
}
}
impl From<&Rc<String>> for OwnedPostgresValue {
fn from(value: &Rc<String>) -> Self {
Self::Text(value.as_ref().clone())
}
}
impl From<Arc<String>> for OwnedPostgresValue {
fn from(value: Arc<String>) -> Self {
Self::Text(value.as_ref().clone())
}
}
impl From<&Arc<String>> for OwnedPostgresValue {
fn from(value: &Arc<String>) -> Self {
Self::Text(value.as_ref().clone())
}
}
impl From<Vec<u8>> for OwnedPostgresValue {
fn from(value: Vec<u8>) -> Self {
Self::Bytea(value)
}
}
impl From<Box<Vec<u8>>> for OwnedPostgresValue {
fn from(value: Box<Vec<u8>>) -> Self {
Self::Bytea(*value)
}
}
impl From<&Box<Vec<u8>>> for OwnedPostgresValue {
fn from(value: &Box<Vec<u8>>) -> Self {
Self::Bytea(value.as_ref().clone())
}
}
impl From<Rc<Vec<u8>>> for OwnedPostgresValue {
fn from(value: Rc<Vec<u8>>) -> Self {
Self::Bytea(value.as_ref().clone())
}
}
impl From<&Rc<Vec<u8>>> for OwnedPostgresValue {
fn from(value: &Rc<Vec<u8>>) -> Self {
Self::Bytea(value.as_ref().clone())
}
}
impl From<Arc<Vec<u8>>> for OwnedPostgresValue {
fn from(value: Arc<Vec<u8>>) -> Self {
Self::Bytea(value.as_ref().clone())
}
}
impl From<&Arc<Vec<u8>>> for OwnedPostgresValue {
fn from(value: &Arc<Vec<u8>>) -> Self {
Self::Bytea(value.as_ref().clone())
}
}
impl From<bool> for OwnedPostgresValue {
fn from(value: bool) -> Self {
Self::Boolean(value)
}
}
#[cfg(feature = "uuid")]
impl From<Uuid> for OwnedPostgresValue {
fn from(value: Uuid) -> Self {
Self::Uuid(value)
}
}
#[cfg(feature = "serde")]
impl From<serde_json::Value> for OwnedPostgresValue {
fn from(value: serde_json::Value) -> Self {
Self::Json(value)
}
}
#[cfg(feature = "time")]
impl From<TimeDate> for OwnedPostgresValue {
fn from(value: TimeDate) -> Self {
Self::TimeDate(value)
}
}
#[cfg(feature = "time")]
impl From<TimeTime> for OwnedPostgresValue {
fn from(value: TimeTime) -> Self {
Self::TimeTime(value)
}
}
#[cfg(feature = "time")]
impl From<PrimitiveDateTime> for OwnedPostgresValue {
fn from(value: PrimitiveDateTime) -> Self {
Self::TimeTimestamp(value)
}
}
#[cfg(feature = "time")]
impl From<OffsetDateTime> for OwnedPostgresValue {
fn from(value: OffsetDateTime) -> Self {
Self::TimeTimestampTz(value)
}
}
#[cfg(feature = "time")]
impl From<TimeDuration> for OwnedPostgresValue {
fn from(value: TimeDuration) -> Self {
Self::TimeInterval(value)
}
}
#[cfg(feature = "arrayvec")]
impl<const N: usize> From<arrayvec::ArrayString<N>> for OwnedPostgresValue {
fn from(value: arrayvec::ArrayString<N>) -> Self {
Self::Text(value.to_string())
}
}
#[cfg(feature = "compact-str")]
impl From<compact_str::CompactString> for OwnedPostgresValue {
fn from(value: compact_str::CompactString) -> Self {
Self::Text(value.to_string())
}
}
#[cfg(feature = "arrayvec")]
impl<const N: usize> From<arrayvec::ArrayVec<u8, N>> for OwnedPostgresValue {
fn from(value: arrayvec::ArrayVec<u8, N>) -> Self {
Self::Bytea(value.to_vec())
}
}
#[cfg(feature = "bytes")]
impl From<bytes::Bytes> for OwnedPostgresValue {
fn from(value: bytes::Bytes) -> Self {
Self::Bytea(value.to_vec())
}
}
#[cfg(feature = "bytes")]
impl From<bytes::BytesMut> for OwnedPostgresValue {
fn from(value: bytes::BytesMut) -> Self {
Self::Bytea(value.to_vec())
}
}
#[cfg(feature = "smallvec")]
impl<const N: usize> From<smallvec::SmallVec<[u8; N]>> for OwnedPostgresValue {
fn from(value: smallvec::SmallVec<[u8; N]>) -> Self {
Self::Bytea(value.into_vec())
}
}
impl TryFrom<OwnedPostgresValue> for i16 {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Smallint(i) => Ok(i),
OwnedPostgresValue::Integer(i) => Ok(i.try_into()?),
OwnedPostgresValue::Bigint(i) => Ok(i.try_into()?),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to i16").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for i32 {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Smallint(i) => Ok(i.into()),
OwnedPostgresValue::Integer(i) => Ok(i),
OwnedPostgresValue::Bigint(i) => Ok(i.try_into()?),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to i32").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for i64 {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Smallint(i) => Ok(i.into()),
OwnedPostgresValue::Integer(i) => Ok(i.into()),
OwnedPostgresValue::Bigint(i) => Ok(i),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to i64").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for f32 {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
fn parse_float<N: core::fmt::Display>(value: N) -> Result<f32, DrizzleError> {
format!("{value}").parse::<f32>().map_err(|e| {
DrizzleError::ConversionError(format!("Cannot convert to f32: {e}").into())
})
}
match value {
OwnedPostgresValue::Real(r) => Ok(r),
OwnedPostgresValue::DoublePrecision(r) => parse_float(r),
OwnedPostgresValue::Smallint(i) => Ok(Self::from(i)),
OwnedPostgresValue::Integer(i) => parse_float(i),
OwnedPostgresValue::Bigint(i) => parse_float(i),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to f32").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for f64 {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
fn parse_double<N: core::fmt::Display>(value: N) -> Result<f64, DrizzleError> {
format!("{value}").parse::<f64>().map_err(|e| {
DrizzleError::ConversionError(format!("Cannot convert to f64: {e}").into())
})
}
match value {
OwnedPostgresValue::Real(r) => Ok(Self::from(r)),
OwnedPostgresValue::DoublePrecision(r) => Ok(r),
OwnedPostgresValue::Smallint(i) => Ok(Self::from(i)),
OwnedPostgresValue::Integer(i) => Ok(Self::from(i)),
OwnedPostgresValue::Bigint(i) => parse_double(i),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to f64").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for String {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Text(s) => Ok(s),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to String").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for Box<String> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
String::try_from(value).map(Self::new)
}
}
impl TryFrom<OwnedPostgresValue> for Rc<String> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
String::try_from(value).map(Self::new)
}
}
impl TryFrom<OwnedPostgresValue> for Arc<String> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
String::try_from(value).map(Self::new)
}
}
impl TryFrom<OwnedPostgresValue> for Box<str> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Text(s) => Ok(s.into_boxed_str()),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to Box<str>").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for Rc<str> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Text(s) => Ok(Self::from(s)),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to Rc<str>").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for Arc<str> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Text(s) => Ok(Self::from(s)),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to Arc<str>").into(),
)),
}
}
}
#[cfg(feature = "compact-str")]
impl TryFrom<OwnedPostgresValue> for compact_str::CompactString {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
String::try_from(value).map(Self::new)
}
}
impl TryFrom<OwnedPostgresValue> for Vec<u8> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Bytea(b) => Ok(b),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to Vec<u8>").into(),
)),
}
}
}
impl TryFrom<OwnedPostgresValue> for Box<Vec<u8>> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
Vec::<u8>::try_from(value).map(Self::new)
}
}
impl TryFrom<OwnedPostgresValue> for Rc<Vec<u8>> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
Vec::<u8>::try_from(value).map(Self::new)
}
}
impl TryFrom<OwnedPostgresValue> for Arc<Vec<u8>> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
Vec::<u8>::try_from(value).map(Self::new)
}
}
#[cfg(feature = "bytes")]
impl TryFrom<OwnedPostgresValue> for bytes::Bytes {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
Vec::<u8>::try_from(value).map(Self::from)
}
}
#[cfg(feature = "bytes")]
impl TryFrom<OwnedPostgresValue> for bytes::BytesMut {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
Vec::<u8>::try_from(value).map(|v| Self::from(v.as_slice()))
}
}
#[cfg(feature = "smallvec")]
impl<const N: usize> TryFrom<OwnedPostgresValue> for smallvec::SmallVec<[u8; N]> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
Vec::<u8>::try_from(value).map(|v| {
let mut out = Self::new();
out.extend_from_slice(&v);
out
})
}
}
impl TryFrom<OwnedPostgresValue> for bool {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Boolean(b) => Ok(b),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to bool").into(),
)),
}
}
}
#[cfg(feature = "uuid")]
impl TryFrom<OwnedPostgresValue> for Uuid {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Uuid(uuid) => Ok(uuid),
OwnedPostgresValue::Text(s) => Self::parse_str(&s).map_err(|e| {
DrizzleError::ConversionError(format!("Failed to parse UUID: {e}").into())
}),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to UUID").into(),
)),
}
}
}
#[cfg(feature = "serde")]
impl TryFrom<OwnedPostgresValue> for serde_json::Value {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Json(json) | OwnedPostgresValue::Jsonb(json) => Ok(json),
OwnedPostgresValue::Text(s) => serde_json::from_str(&s).map_err(|e| {
DrizzleError::ConversionError(format!("Failed to parse JSON: {e}").into())
}),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to JSON").into(),
)),
}
}
}
#[cfg(feature = "arrayvec")]
impl<const N: usize> TryFrom<OwnedPostgresValue> for arrayvec::ArrayString<N> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Text(s) => Self::from(&s).map_err(|_| {
DrizzleError::ConversionError(
format!("Text length {} exceeds ArrayString capacity {}", s.len(), N).into(),
)
}),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to ArrayString").into(),
)),
}
}
}
#[cfg(feature = "arrayvec")]
impl<const N: usize> TryFrom<OwnedPostgresValue> for arrayvec::ArrayVec<u8, N> {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::Bytea(bytes) => Self::try_from(bytes.as_slice()).map_err(|_| {
DrizzleError::ConversionError(
format!(
"Bytea length {} exceeds ArrayVec capacity {}",
bytes.len(),
N
)
.into(),
)
}),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to ArrayVec<u8>").into(),
)),
}
}
}
#[cfg(feature = "time")]
impl TryFrom<OwnedPostgresValue> for TimeDate {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::TimeDate(date) => Ok(date),
OwnedPostgresValue::TimeTimestamp(ts) => Ok(ts.date()),
OwnedPostgresValue::TimeTimestampTz(ts) => Ok(ts.date()),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to time::Date").into(),
)),
}
}
}
#[cfg(feature = "time")]
impl TryFrom<OwnedPostgresValue> for TimeTime {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::TimeTime(time) => Ok(time),
OwnedPostgresValue::TimeTimestamp(ts) => Ok(ts.time()),
OwnedPostgresValue::TimeTimestampTz(ts) => Ok(ts.time()),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to time::Time").into(),
)),
}
}
}
#[cfg(feature = "time")]
impl TryFrom<OwnedPostgresValue> for PrimitiveDateTime {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::TimeTimestamp(ts) => Ok(ts),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to time::PrimitiveDateTime").into(),
)),
}
}
}
#[cfg(feature = "time")]
impl TryFrom<OwnedPostgresValue> for OffsetDateTime {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::TimeTimestampTz(ts) => Ok(ts),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to time::OffsetDateTime").into(),
)),
}
}
}
#[cfg(feature = "time")]
impl TryFrom<OwnedPostgresValue> for TimeDuration {
type Error = DrizzleError;
fn try_from(value: OwnedPostgresValue) -> Result<Self, Self::Error> {
match value {
OwnedPostgresValue::TimeInterval(dur) => Ok(dur),
_ => Err(DrizzleError::ConversionError(
format!("Cannot convert {value:?} to time::Duration").into(),
)),
}
}
}