use bytes::Bytes;
use std::fmt;
use std::ops::Deref;
use std::str::{from_utf8, from_utf8_unchecked, Utf8Error};
#[cfg(feature = "serde")]
mod serde;
#[derive(Default, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct BytesStr {
bytes: Bytes,
}
impl BytesStr {
#[inline]
pub const fn empty() -> Self {
BytesStr {
bytes: Bytes::new(),
}
}
#[inline]
pub const fn from_static(str: &'static str) -> Self {
Self {
bytes: Bytes::from_static(str.as_bytes()),
}
}
#[inline]
pub fn from_parse(src: &Bytes, subset: &str) -> Self {
Self {
bytes: src.slice_ref(subset.as_bytes()),
}
}
#[inline]
pub fn from_utf8_bytes(bytes: Bytes) -> Result<Self, Utf8Error> {
from_utf8(&bytes)?;
Ok(Self { bytes })
}
#[inline]
pub unsafe fn from_utf8_bytes_unchecked(bytes: Bytes) -> Self {
debug_assert!(from_utf8(&bytes).is_ok());
Self { bytes }
}
#[inline]
pub fn as_str(&self) -> &str {
unsafe { from_utf8_unchecked(&self.bytes) }
}
#[inline]
pub fn slice_ref(&self, subset: &str) -> Self {
Self::from_parse(&self.bytes, subset)
}
#[inline]
pub fn clone_detach(&self) -> Self {
Self {
bytes: Bytes::copy_from_slice(&self.bytes),
}
}
}
impl PartialEq<[u8]> for BytesStr {
fn eq(&self, other: &[u8]) -> bool {
self.bytes.eq(other)
}
}
impl PartialEq<str> for BytesStr {
fn eq(&self, other: &str) -> bool {
self.bytes.eq(other.as_bytes())
}
}
impl PartialEq<&str> for BytesStr {
fn eq(&self, other: &&str) -> bool {
self.bytes.eq(other.as_bytes())
}
}
impl Deref for BytesStr {
type Target = str;
fn deref(&self) -> &Self::Target {
self.as_str()
}
}
impl AsRef<str> for BytesStr {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl AsRef<[u8]> for BytesStr {
fn as_ref(&self) -> &[u8] {
&self.bytes
}
}
impl AsRef<Bytes> for BytesStr {
fn as_ref(&self) -> &Bytes {
&self.bytes
}
}
impl From<&str> for BytesStr {
fn from(s: &str) -> Self {
BytesStr {
bytes: Bytes::copy_from_slice(s.as_bytes()),
}
}
}
impl From<String> for BytesStr {
fn from(s: String) -> Self {
Self {
bytes: Bytes::from(s.into_bytes()),
}
}
}
impl fmt::Display for BytesStr {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.as_str().fmt(f)
}
}
impl fmt::Debug for BytesStr {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.as_str().fmt(f)
}
}