devela/text/grapheme/nonul.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
// devela::text::grapheme::nonul
//
//!
//
// TOC
// - definitions
// - trait impls
// - conversions
use super::Grapheme;
#[cfg(_char··)]
use crate::text::char::*;
#[cfg(feature = "alloc")]
use crate::CString;
use crate::{unwrap, ConstDefault, IterChars, MismatchedCapacity, StringNonul};
// use unicode_segmentation::UnicodeSegmentation;
/* definitions */
/// An <abbr title="Extended Grapheme Cluster">EGC</abbr> backed by a [`StringNonul`].
#[must_use]
#[repr(transparent)]
#[derive(Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct GraphemeNonul<const CAP: usize>(StringNonul<CAP>);
/* impls */
impl<const CAP: usize> GraphemeNonul<CAP> {
/// Creates a new empty `GraphemeNonul`.
///
/// # Errors
/// Returns [`MismatchedCapacity`] if `CAP` > 255.
pub const fn new() -> Result<Self, MismatchedCapacity> {
Ok(Self(unwrap![ok? StringNonul::new()]))
}
/// Creates a new `GraphemeNonul` from a `char7`.
///
/// If `c`.[`is_nul()`][char7#method.is_nul] an empty grapheme will be returned.
///
/// # Errors
/// Returns [`MismatchedCapacity`] if `CAP` > 255,
/// or if `!c.is_nul()` and `CAP` < 1.
///
/// Will always succeed if `CAP` >= 1.
#[cfg(feature = "_char7")]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "_char7")))]
pub const fn from_char7(c: char7) -> Result<Self, MismatchedCapacity> {
Ok(Self(unwrap![ok? StringNonul::from_char7(c)]))
}
/// Creates a new `GraphemeNonul` from a `char8`.
///
/// If `c`.[`is_nul()`][char8#method.is_nul] an empty grapheme will be returned.
///
/// # Errors
/// Returns [`MismatchedCapacity`] if `CAP` > 255,
/// or if `!c.is_nul()` and `CAP` < `c.`[`len_utf8()`][char8#method.len_utf8].
///
/// Will always succeed if `CAP` >= 2.
#[cfg(feature = "_char8")]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "_char8")))]
pub const fn from_char8(c: char8) -> Result<Self, MismatchedCapacity> {
Ok(Self(unwrap![ok? StringNonul::from_char8(c)]))
}
/// Creates a new `GraphemeNonul` from a `char16`.
///
/// If `c`.[`is_nul()`][char16#method.is_nul] an empty grapheme will be returned.
///
/// # Errors
/// Returns [`MismatchedCapacity`] if `CAP` > 255,
/// or if `!c.is_nul()` and `CAP` < `c.`[`len_utf8()`][char16#method.len_utf8].
///
/// Will always succeed if `CAP` >= 3.
#[cfg(feature = "_char16")]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "_char16")))]
pub const fn from_char16(c: char16) -> Result<Self, MismatchedCapacity> {
Ok(Self(unwrap![ok? StringNonul::from_char16(c)]))
}
/// Creates a new `GraphemeNonul` from a `char`.
///
/// If `c`.[`is_nul()`][UnicodeScalar#method.is_nul] an empty grapheme will be returned.
///
/// # Errors
/// Returns [`MismatchedCapacity`] if `CAP` > 255,
/// or if `!c.is_nul()` and `CAP` < `c.`[`len_utf8()`][UnicodeScalar#method.len_utf8].
///
/// Will always succeed if `CAP` >= 4.
pub const fn from_char(c: char) -> Result<Self, MismatchedCapacity> {
Ok(Self(unwrap![ok? StringNonul::from_char(c)]))
}
//
/// Returns the length in bytes.
#[must_use] #[rustfmt::skip]
pub const fn len(&self) -> usize { self.0.len() }
/// Returns `true` if the current length is 0.
#[must_use] #[rustfmt::skip]
pub const fn is_empty(&self) -> bool { self.0.len() == 0 }
/// Returns the total capacity in bytes.
#[must_use] #[rustfmt::skip]
pub const fn capacity() -> usize { CAP }
/// Returns the remaining capacity.
#[must_use] #[rustfmt::skip]
pub const fn remaining_capacity(&self) -> usize { CAP - self.len() }
/// Returns `true` if the current remaining capacity is 0.
#[must_use] #[rustfmt::skip]
pub const fn is_full(&self) -> bool { self.len() == CAP }
/// Sets the length to 0, by resetting all bytes to 0.
#[rustfmt::skip]
pub fn clear(&mut self) { self.0.clear(); }
//
/// Returns a byte slice of the inner string slice.
#[must_use] #[rustfmt::skip]
pub const fn as_bytes(&self) -> &[u8] { self.0.as_bytes() }
/// Returns a mutable byte slice of the inner string slice.
/// # Safety
/// The content must be valid UTF-8.
#[cfg(all(not(feature = "safe_text"), feature = "unsafe_slice"))]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "unsafe_slice")))]
pub unsafe fn as_bytes_mut(&mut self) -> &mut [u8] {
// SAFETY: unsafe fn
unsafe { self.0.as_bytes_mut() }
}
/// Returns a copy of the inner array with the full contents.
///
/// The array contains all the bytes, including those outside the current length.
#[must_use] #[rustfmt::skip]
pub const fn as_array(&self) -> [u8; CAP] { self.0.as_array() }
/// Returns the inner array with the full contents.
///
/// The array contains all the bytes, including those outside the current length.
#[must_use] #[rustfmt::skip]
pub const fn into_array(self) -> [u8; CAP] { self.0.into_array() }
/// Returns the inner string slice.
#[must_use] #[rustfmt::skip]
pub const fn as_str(&self) -> &str { self.0.as_str() }
/// Returns the mutable inner string slice.
/// # Safety
/// The content must be valid UTF-8.
#[must_use] #[rustfmt::skip]
#[cfg(all(not(feature = "safe_text"), feature = "unsafe_slice"))]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "unsafe_slice")))]
pub unsafe fn as_mut_str(&mut self) -> &mut str {
// SAFETY: caller must ensure safety
unsafe { self.0.as_mut_str() }
}
/// Returns an iterator over the `chars` of this grapheme cluster.
#[rustfmt::skip]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
pub fn chars(&self) -> IterChars { self.0.chars() }
/// Returns a new allocated C-compatible, nul-terminanted string.
#[must_use] #[rustfmt::skip]
#[cfg(feature = "alloc")]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
pub fn to_cstring(&self) -> CString { self.0.to_cstring() }
}
/* traits */
impl<const CAP: usize> Grapheme for GraphemeNonul<CAP> {}
mod core_impls {
use super::*;
use core::fmt;
impl<const CAP: usize> Default for GraphemeNonul<CAP> {
/// Returns an empty extended grapheme character.
#[rustfmt::skip]
fn default() -> Self { Self::new().unwrap() }
}
impl<const CAP: usize> ConstDefault for GraphemeNonul<CAP> {
/// Returns an empty string.
///
/// # Panics
/// Panics if `CAP > 255`.
const DEFAULT: Self = unwrap![ok Self::new()];
}
impl<const CAP: usize> fmt::Display for GraphemeNonul<CAP> {
#[rustfmt::skip]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "{}", self.0) }
}
impl<const CAP: usize> fmt::Debug for GraphemeNonul<CAP> {
#[rustfmt::skip]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "{:?}", self.0) }
}
// TODO
// impl<const CAP: usize> From<String> for GraphemeNonul<CAP> {
// fn from(s: String) -> GraphemeNonul<CAP> {
// GraphemeNonul(s.graphemes(true).take(1).collect())
// }
// }
// impl From<&str> for GraphemeNonul {
// fn from(s: &str) -> GraphemeNonul {
// GraphemeNonul(s.graphemes(true).take(1).collect())
// }
// }
// impl From<char> for GraphemeNonul {
// fn from(s: char) -> GraphemeNonul {
// GraphemeNonul(s.into())
// }
// }
}