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 UniqueName<'name>(Str<'name>);
assert_impl_all!(UniqueName<'_>: Send, Sync, Unpin);
impl<'name> UniqueName<'name> {
pub fn as_ref(&self) -> UniqueName<'_> {
UniqueName(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_unique_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) -> UniqueName<'static> {
UniqueName(self.0.to_owned())
}
pub fn into_owned(self) -> UniqueName<'static> {
UniqueName(self.0.into_owned())
}
}
impl Deref for UniqueName<'_> {
type Target = str;
fn deref(&self) -> &Self::Target {
self.as_str()
}
}
impl Borrow<str> for UniqueName<'_> {
fn borrow(&self) -> &str {
self.as_str()
}
}
impl Display for UniqueName<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
Display::fmt(&self.as_str(), f)
}
}
impl PartialEq<str> for UniqueName<'_> {
fn eq(&self, other: &str) -> bool {
self.as_str() == other
}
}
impl PartialEq<&str> for UniqueName<'_> {
fn eq(&self, other: &&str) -> bool {
self.as_str() == *other
}
}
impl PartialEq<OwnedUniqueName> for UniqueName<'_> {
fn eq(&self, other: &OwnedUniqueName) -> bool {
*self == other.0
}
}
impl<'de: 'name, 'name> Deserialize<'de> for UniqueName<'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()))
}
}
fn ensure_correct_unique_name(name: &str) -> Result<()> {
if name.is_empty() {
return Err(Error::InvalidUniqueName(String::from(
"must contain at least 4 characters",
)));
} else if name.len() > 255 {
return Err(Error::InvalidUniqueName(format!(
"`{}` is {} characters long, which is longer than maximum allowed (255)",
name,
name.len(),
)));
} else if name == "org.freedesktop.DBus" {
return Ok(());
}
let mut chars = name.chars();
let mut prev = match chars.next().expect("no first char") {
first @ ':' => first,
_ => {
return Err(Error::InvalidUniqueName(String::from(
"must start with a `:`",
)));
}
};
let mut no_dot = true;
for c in chars {
if c == '.' {
if prev == '.' {
return Err(Error::InvalidUniqueName(String::from(
"must not contain a double `.`",
)));
}
if no_dot {
no_dot = false;
}
} else if !c.is_ascii_alphanumeric() && c != '_' && c != '-' {
return Err(Error::InvalidUniqueName(format!(
"`{c}` character not allowed"
)));
}
prev = c;
}
if no_dot {
return Err(Error::InvalidUniqueName(String::from(
"must contain at least 1 `.`",
)));
}
Ok(())
}
impl TryFrom<()> for UniqueName<'_> {
type Error = Error;
fn try_from(_value: ()) -> Result<Self> {
unreachable!("Conversion from `()` is not meant to actually work");
}
}
impl<'name> From<&UniqueName<'name>> for UniqueName<'name> {
fn from(name: &UniqueName<'name>) -> Self {
name.clone()
}
}
impl<'name> From<UniqueName<'name>> for Str<'name> {
fn from(value: UniqueName<'name>) -> Self {
value.0
}
}
impl<'name> NoneValue for UniqueName<'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 OwnedUniqueName(#[serde(borrow)] UniqueName<'static>);
assert_impl_all!(OwnedUniqueName: Send, Sync, Unpin);
impl OwnedUniqueName {
pub fn into_inner(self) -> UniqueName<'static> {
self.0
}
pub fn inner(&self) -> &UniqueName<'static> {
&self.0
}
}
impl Deref for OwnedUniqueName {
type Target = UniqueName<'static>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl Borrow<str> for OwnedUniqueName {
fn borrow(&self) -> &str {
self.0.as_str()
}
}
impl From<OwnedUniqueName> for UniqueName<'static> {
fn from(o: OwnedUniqueName) -> Self {
o.into_inner()
}
}
impl<'unowned, 'owned: 'unowned> From<&'owned OwnedUniqueName> for UniqueName<'unowned> {
fn from(name: &'owned OwnedUniqueName) -> Self {
UniqueName::from_str_unchecked(name.as_str())
}
}
impl From<UniqueName<'_>> for OwnedUniqueName {
fn from(name: UniqueName<'_>) -> Self {
OwnedUniqueName(name.into_owned())
}
}
impl_try_from! {
ty: UniqueName<'s>,
owned_ty: OwnedUniqueName,
validate_fn: ensure_correct_unique_name,
try_from: [&'s str, String, Arc<str>, Cow<'s, str>, Str<'s>],
}
impl From<OwnedUniqueName> for Str<'static> {
fn from(value: OwnedUniqueName) -> Self {
value.into_inner().0
}
}
impl<'de> Deserialize<'de> for OwnedUniqueName {
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
String::deserialize(deserializer)
.and_then(|n| UniqueName::try_from(n).map_err(|e| de::Error::custom(e.to_string())))
.map(Self)
}
}
impl PartialEq<&str> for OwnedUniqueName {
fn eq(&self, other: &&str) -> bool {
self.as_str() == *other
}
}
impl PartialEq<UniqueName<'_>> for OwnedUniqueName {
fn eq(&self, other: &UniqueName<'_>) -> bool {
self.0 == *other
}
}
impl NoneValue for OwnedUniqueName {
type NoneType = <UniqueName<'static> as NoneValue>::NoneType;
fn null_value() -> Self::NoneType {
UniqueName::null_value()
}
}
impl Display for OwnedUniqueName {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
UniqueName::from(self).fmt(f)
}
}