use crate::prelude::*;
use ::uuid::{Builder, Uuid as Inner, Variant, Version};
#[derive(
Clone, Copy, Default, Deserialize, Eq, From, FromStr, Hash, Ord, PartialEq, PartialOrd, Serialize,
)]
#[serde(transparent)]
pub struct Uuid(Inner);
impl Uuid {
pub const fn nil() -> Self {
Self(Inner::nil())
}
pub fn is_nil(&self) -> bool {
self.0.is_nil()
}
pub fn new() -> Self {
random()
}
pub fn as_bytes(&self) -> &[u8] {
self.0.as_bytes()
}
pub fn to_u128(&self) -> u128 {
self.0.as_u128()
}
}
impl Random for Uuid {
fn random_with(rng: &mut random::Rng) -> Self {
let mut bytes = [0u8; 16];
rng.fill_bytes(&mut bytes);
let uuid =
Builder::from_bytes(bytes).set_variant(Variant::RFC4122).set_version(Version::Random).build();
Self(uuid)
}
}
macro_rules! impl_fmt {
($ty:ident) => {
impl fmt::$ty for Uuid {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::$ty::fmt(&self.0, f)
}
}
};
}
impl_fmt!(Debug);
impl_fmt!(Display);
impl_fmt!(LowerHex);
impl_fmt!(UpperHex);
cfg_if! {
if #[cfg(feature = "postgres")] {
use postgres_types as pg;
impl<'a> pg::FromSql<'a> for Uuid {
fn from_sql(ty: &pg::Type, raw: &'a [u8]) -> Result<Self, Box<dyn Error + Sync + Send>>{
Ok(Self(pg::FromSql::from_sql(ty, raw)?))
}
fn accepts(ty: &pg::Type) -> bool {
<Inner as pg::FromSql>::accepts(ty)
}
}
impl pg::ToSql for Uuid {
fn to_sql(&self, ty: &pg::Type, out: &mut bytes::BytesMut) -> Result<pg::IsNull, Box<dyn Error + Sync + Send>>
where
Self: Sized,
{
self.0.to_sql(ty, out)
}
fn accepts(ty: &pg::Type) -> bool
where
Self: Sized,
{
<Inner as pg::ToSql>::accepts(ty)
}
fn to_sql_checked(&self, ty: &pg::Type, out: &mut bytes::BytesMut) -> Result<pg::IsNull, Box<dyn Error + Sync + Send>> {
self.0.to_sql_checked(ty, out)
}
}
}
}