icu_locale_core/extensions/unicode/
attributes.rs1use super::Attribute;
6
7#[cfg(feature = "alloc")]
8use crate::parser::SubtagIterator;
9use crate::shortvec::ShortBoxSlice;
10#[cfg(feature = "alloc")]
11use crate::ParseError;
12#[cfg(feature = "alloc")]
13use alloc::vec::Vec;
14use core::ops::Deref;
15#[cfg(feature = "alloc")]
16use core::str::FromStr;
17
18)]
41pub struct Attributes(ShortBoxSlice<Attribute>);
42
43impl Attributes {
44 #[inline]
54 pub const fn new() -> Self {
55 Self(ShortBoxSlice::new())
56 }
57
58 #[inline]
61 #[cfg(feature = "alloc")]
62 pub fn try_from_str(s: &str) -> Result<Self, ParseError> {
63 Self::try_from_utf8(s.as_bytes())
64 }
65
66 #[cfg(feature = "alloc")]
68 pub fn try_from_utf8(code_units: &[u8]) -> Result<Self, ParseError> {
69 let mut iter = SubtagIterator::new(code_units);
70 Self::try_from_iter(&mut iter)
71 }
72
73 #[cfg(feature = "alloc")]
94 pub fn from_vec_unchecked(input: Vec<Attribute>) -> Self {
95 Self(input.into())
96 }
97
98 pub fn clear(&mut self) -> Self {
120 core::mem::take(self)
121 }
122
123 #[cfg(feature = "alloc")]
124 pub(crate) fn try_from_iter(iter: &mut SubtagIterator) -> Result<Self, ParseError> {
125 let mut attributes = ShortBoxSlice::new();
126
127 while let Some(subtag) = iter.peek() {
128 if let Ok(attr) = Attribute::try_from_utf8(subtag) {
129 if let Err(idx) = attributes.binary_search(&attr) {
130 attributes.insert(idx, attr);
131 }
132 } else {
133 break;
134 }
135 iter.next();
136 }
137 Ok(Self(attributes))
138 }
139
140 pub(crate) fn for_each_subtag_str<E, F>(&self, f: &mut F) -> Result<(), E>
141 where
142 F: FnMut(&str) -> Result<(), E>,
143 {
144 self.deref().iter().map(|t| t.as_str()).try_for_each(f)
145 }
146}
147
148#[cfg(feature = "alloc")]
149impl FromStr for Attributes {
150 type Err = ParseError;
151
152 #[inline]
153 fn from_str(s: &str) -> Result<Self, Self::Err> {
154 Self::try_from_str(s)
155 }
156}
157
158impl writeable::Writeable for Attributes {
fn write_to<W: core::fmt::Write + ?Sized>(&self, sink: &mut W)
-> core::fmt::Result {
let mut initial = true;
self.for_each_subtag_str(&mut |subtag|
{
if initial {
initial = false;
} else { sink.write_char('-')?; }
sink.write_str(subtag)
})
}
#[inline]
fn writeable_length_hint(&self) -> writeable::LengthHint {
let mut result = writeable::LengthHint::exact(0);
let mut initial = true;
self.for_each_subtag_str::<core::convert::Infallible,
_>(&mut |subtag|
{
if initial { initial = false; } else { result += 1; }
result += subtag.len();
Ok(())
}).expect("infallible");
result
}
}
impl core::fmt::Display for Attributes {
#[inline]
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
::writeable::Writeable::write_to(&self, f)
}
}
impl Attributes {
pub fn to_string(&self) -> ::writeable::_internal::String {
::writeable::Writeable::write_to_string(self).into_owned()
}
}impl_writeable_for_subtag_list!(Attributes, "foobar", "testing");
159
160impl Deref for Attributes {
161 type Target = [Attribute];
162
163 fn deref(&self) -> &[Attribute] {
164 self.0.deref()
165 }
166}
167
168#[cfg(test)]
169mod tests {
170 use super::*;
171
172 #[test]
173 fn test_attributes_fromstr() {
174 let attrs: Attributes = "foo-bar".parse().expect("Failed to parse Attributes");
175 assert_eq!(attrs.to_string(), "bar-foo");
176 }
177}