use crate::{utils::impl_try_from, Error, Result};
use serde::{de, Deserialize, Serialize};
use static_assertions::assert_impl_all;
use std::{
borrow::{Borrow, Cow},
convert::TryFrom,
fmt::{self, Display, Formatter},
ops::Deref,
sync::Arc,
};
use zvariant::{NoneValue, OwnedValue, Str, Type, Value};
#[derive(
Clone, Debug, Hash, PartialEq, Eq, Serialize, Type, Value, PartialOrd, Ord, OwnedValue,
)]
pub struct ErrorName<'name>(Str<'name>);
assert_impl_all!(ErrorName<'_>: Send, Sync, Unpin);
impl<'name> ErrorName<'name> {
pub fn as_ref(&self) -> ErrorName<'_> {
ErrorName(self.0.as_ref())
}
pub fn as_str(&self) -> &str {
self.0.as_str()
}
pub fn from_str_unchecked(name: &'name str) -> Self {
Self(Str::from(name))
}
pub fn from_static_str(name: &'static str) -> Result<Self> {
ensure_correct_error_name(name)?;
Ok(Self(Str::from_static(name)))
}
pub const fn from_static_str_unchecked(name: &'static str) -> Self {
Self(Str::from_static(name))
}
pub fn from_string_unchecked(name: String) -> Self {
Self(Str::from(name))
}
pub fn to_owned(&self) -> ErrorName<'static> {
ErrorName(self.0.to_owned())
}
pub fn into_owned(self) -> ErrorName<'static> {
ErrorName(self.0.into_owned())
}
}
impl Deref for ErrorName<'_> {
type Target = str;
fn deref(&self) -> &Self::Target {
self.as_str()
}
}
impl Borrow<str> for ErrorName<'_> {
fn borrow(&self) -> &str {
self.as_str()
}
}
impl Display for ErrorName<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
Display::fmt(&self.as_str(), f)
}
}
impl PartialEq<str> for ErrorName<'_> {
fn eq(&self, other: &str) -> bool {
self.as_str() == other
}
}
impl PartialEq<&str> for ErrorName<'_> {
fn eq(&self, other: &&str) -> bool {
self.as_str() == *other
}
}
impl PartialEq<OwnedErrorName> for ErrorName<'_> {
fn eq(&self, other: &OwnedErrorName) -> bool {
*self == other.0
}
}
impl<'de: 'name, 'name> Deserialize<'de> for ErrorName<'name> {
fn deserialize<D>(deserializer: D) -> core::result::Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let name = <Cow<'name, str>>::deserialize(deserializer)?;
Self::try_from(name).map_err(|e| de::Error::custom(e.to_string()))
}
}
impl_try_from! {
ty: ErrorName<'s>,
owned_ty: OwnedErrorName,
validate_fn: ensure_correct_error_name,
try_from: [&'s str, String, Arc<str>, Cow<'s, str>, Str<'s>],
}
fn ensure_correct_error_name(name: &str) -> Result<()> {
if name.len() < 3 {
return Err(Error::InvalidErrorName(format!(
"`{}` is {} characters long, which is smaller than minimum allowed (3)",
name,
name.len(),
)));
} else if name.len() > 255 {
return Err(Error::InvalidErrorName(format!(
"`{}` is {} characters long, which is longer than maximum allowed (255)",
name,
name.len(),
)));
}
let mut prev = None;
let mut no_dot = true;
for c in name.chars() {
if c == '.' {
if prev.is_none() || prev == Some('.') {
return Err(Error::InvalidErrorName(String::from(
"must not contain a double `.`",
)));
}
if no_dot {
no_dot = false;
}
} else if c.is_ascii_digit() && (prev.is_none() || prev == Some('.')) {
return Err(Error::InvalidErrorName(String::from(
"each element must not start with a digit",
)));
} else if !c.is_ascii_alphanumeric() && c != '_' {
return Err(Error::InvalidErrorName(format!(
"`{c}` character not allowed"
)));
}
prev = Some(c);
}
if no_dot {
return Err(Error::InvalidErrorName(String::from(
"must contain at least 1 `.`",
)));
}
Ok(())
}
impl TryFrom<()> for ErrorName<'_> {
type Error = Error;
fn try_from(_value: ()) -> Result<Self> {
unreachable!("Conversion from `()` is not meant to actually work");
}
}
impl<'name> From<&ErrorName<'name>> for ErrorName<'name> {
fn from(name: &ErrorName<'name>) -> Self {
name.clone()
}
}
impl<'name> From<ErrorName<'name>> for Str<'name> {
fn from(value: ErrorName<'name>) -> Self {
value.0
}
}
impl<'name> NoneValue for ErrorName<'name> {
type NoneType = &'name str;
fn null_value() -> Self::NoneType {
<&str>::default()
}
}
#[derive(
Clone, Debug, Hash, PartialEq, Eq, Serialize, Type, Value, PartialOrd, Ord, OwnedValue,
)]
pub struct OwnedErrorName(#[serde(borrow)] ErrorName<'static>);
assert_impl_all!(OwnedErrorName: Send, Sync, Unpin);
impl OwnedErrorName {
pub fn into_inner(self) -> ErrorName<'static> {
self.0
}
pub fn inner(&self) -> &ErrorName<'static> {
&self.0
}
}
impl Deref for OwnedErrorName {
type Target = ErrorName<'static>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl Borrow<str> for OwnedErrorName {
fn borrow(&self) -> &str {
self.0.as_str()
}
}
impl From<OwnedErrorName> for ErrorName<'static> {
fn from(o: OwnedErrorName) -> Self {
o.into_inner()
}
}
impl<'unowned, 'owned: 'unowned> From<&'owned OwnedErrorName> for ErrorName<'unowned> {
fn from(name: &'owned OwnedErrorName) -> Self {
ErrorName::from_str_unchecked(name.as_str())
}
}
impl From<ErrorName<'_>> for OwnedErrorName {
fn from(name: ErrorName<'_>) -> Self {
OwnedErrorName(name.into_owned())
}
}
impl From<OwnedErrorName> for Str<'static> {
fn from(value: OwnedErrorName) -> Self {
value.into_inner().0
}
}
impl<'de> Deserialize<'de> for OwnedErrorName {
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
String::deserialize(deserializer)
.and_then(|n| ErrorName::try_from(n).map_err(|e| de::Error::custom(e.to_string())))
.map(Self)
}
}
impl PartialEq<&str> for OwnedErrorName {
fn eq(&self, other: &&str) -> bool {
self.as_str() == *other
}
}
impl PartialEq<ErrorName<'_>> for OwnedErrorName {
fn eq(&self, other: &ErrorName<'_>) -> bool {
self.0 == *other
}
}
impl Display for OwnedErrorName {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
ErrorName::from(self).fmt(f)
}
}
impl NoneValue for OwnedErrorName {
type NoneType = <ErrorName<'static> as NoneValue>::NoneType;
fn null_value() -> Self::NoneType {
ErrorName::null_value()
}
}