2018-04-05 16:02:52 +00:00
|
|
|
//! UTF-8 and UTF-16 decoding iterators
|
|
|
|
|
2022-07-29 18:54:47 +00:00
|
|
|
use crate::error::Error;
|
2019-04-15 02:23:21 +00:00
|
|
|
use crate::fmt;
|
2023-04-23 16:22:58 +00:00
|
|
|
use crate::iter::FusedIterator;
|
2019-04-15 02:23:21 +00:00
|
|
|
|
2018-04-05 16:02:52 +00:00
|
|
|
/// An iterator that decodes UTF-16 encoded code points from an iterator of `u16`s.
|
2021-07-29 12:13:41 +00:00
|
|
|
///
|
|
|
|
/// This `struct` is created by the [`decode_utf16`] method on [`char`]. See its
|
|
|
|
/// documentation for more.
|
|
|
|
///
|
|
|
|
/// [`decode_utf16`]: char::decode_utf16
|
2018-04-05 16:02:52 +00:00
|
|
|
#[stable(feature = "decode_utf16", since = "1.9.0")]
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct DecodeUtf16<I>
|
|
|
|
where
|
|
|
|
I: Iterator<Item = u16>,
|
|
|
|
{
|
|
|
|
iter: I,
|
|
|
|
buf: Option<u16>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// An error that can be returned when decoding UTF-16 code points.
|
2021-07-29 12:13:41 +00:00
|
|
|
///
|
|
|
|
/// This `struct` is created when using the [`DecodeUtf16`] type.
|
2018-04-05 16:02:52 +00:00
|
|
|
#[stable(feature = "decode_utf16", since = "1.9.0")]
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
pub struct DecodeUtf16Error {
|
|
|
|
code: u16,
|
|
|
|
}
|
|
|
|
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Creates an iterator over the UTF-16 encoded code points in `iter`,
|
2022-04-01 16:32:02 +00:00
|
|
|
/// returning unpaired surrogates as `Err`s. See [`char::decode_utf16`].
|
2018-04-05 16:02:52 +00:00
|
|
|
#[inline]
|
2022-04-01 16:32:02 +00:00
|
|
|
pub(super) fn decode_utf16<I: IntoIterator<Item = u16>>(iter: I) -> DecodeUtf16<I::IntoIter> {
|
2018-04-05 16:02:52 +00:00
|
|
|
DecodeUtf16 { iter: iter.into_iter(), buf: None }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "decode_utf16", since = "1.9.0")]
|
|
|
|
impl<I: Iterator<Item = u16>> Iterator for DecodeUtf16<I> {
|
|
|
|
type Item = Result<char, DecodeUtf16Error>;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Result<char, DecodeUtf16Error>> {
|
|
|
|
let u = match self.buf.take() {
|
|
|
|
Some(buf) => buf,
|
|
|
|
None => self.iter.next()?,
|
|
|
|
};
|
|
|
|
|
2022-03-07 21:36:13 +00:00
|
|
|
if !u.is_utf16_surrogate() {
|
2019-08-21 17:56:46 +00:00
|
|
|
// SAFETY: not a surrogate
|
2023-01-14 10:48:43 +00:00
|
|
|
Some(Ok(unsafe { char::from_u32_unchecked(u as u32) }))
|
2018-04-05 16:02:52 +00:00
|
|
|
} else if u >= 0xDC00 {
|
|
|
|
// a trailing surrogate
|
|
|
|
Some(Err(DecodeUtf16Error { code: u }))
|
|
|
|
} else {
|
|
|
|
let u2 = match self.iter.next() {
|
|
|
|
Some(u2) => u2,
|
|
|
|
// eof
|
|
|
|
None => return Some(Err(DecodeUtf16Error { code: u })),
|
|
|
|
};
|
|
|
|
if u2 < 0xDC00 || u2 > 0xDFFF {
|
|
|
|
// not a trailing surrogate so we're not a valid
|
|
|
|
// surrogate pair, so rewind to redecode u2 next time.
|
|
|
|
self.buf = Some(u2);
|
|
|
|
return Some(Err(DecodeUtf16Error { code: u }));
|
|
|
|
}
|
|
|
|
|
|
|
|
// all ok, so lets decode it.
|
2022-12-23 12:38:03 +00:00
|
|
|
let c = (((u & 0x3ff) as u32) << 10 | (u2 & 0x3ff) as u32) + 0x1_0000;
|
2019-08-21 17:56:46 +00:00
|
|
|
// SAFETY: we checked that it's a legal unicode value
|
2023-01-14 10:48:43 +00:00
|
|
|
Some(Ok(unsafe { char::from_u32_unchecked(c) }))
|
2018-04-05 16:02:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
|
|
|
let (low, high) = self.iter.size_hint();
|
2022-01-26 21:25:17 +00:00
|
|
|
|
2022-01-30 12:32:21 +00:00
|
|
|
let (low_buf, high_buf) = match self.buf {
|
|
|
|
// buf is empty, no additional elements from it.
|
|
|
|
None => (0, 0),
|
|
|
|
// `u` is a non surrogate, so it's always an additional character.
|
2022-03-07 21:36:13 +00:00
|
|
|
Some(u) if !u.is_utf16_surrogate() => (1, 1),
|
2022-01-30 12:32:21 +00:00
|
|
|
// `u` is a leading surrogate (it can never be a trailing surrogate and
|
|
|
|
// it's a surrogate due to the previous branch) and `self.iter` is empty.
|
|
|
|
//
|
|
|
|
// `u` can't be paired, since the `self.iter` is empty,
|
|
|
|
// so it will always become an additional element (error).
|
|
|
|
Some(_u) if high == Some(0) => (1, 1),
|
|
|
|
// `u` is a leading surrogate and `iter` may be non-empty.
|
|
|
|
//
|
|
|
|
// `u` can either pair with a trailing surrogate, in which case no additional elements
|
|
|
|
// are produced, or it can become an error, in which case it's an additional character (error).
|
|
|
|
Some(_u) => (0, 1),
|
|
|
|
};
|
2022-01-26 21:25:17 +00:00
|
|
|
|
|
|
|
// `self.iter` could contain entirely valid surrogates (2 elements per
|
|
|
|
// char), or entirely non-surrogates (1 element per char).
|
|
|
|
//
|
|
|
|
// On odd lower bound, at least one element must stay unpaired
|
|
|
|
// (with other elements from `self.iter`), so we round up.
|
2022-01-30 12:32:21 +00:00
|
|
|
let low = low.div_ceil(2) + low_buf;
|
|
|
|
let high = high.and_then(|h| h.checked_add(high_buf));
|
2022-01-26 21:25:17 +00:00
|
|
|
|
|
|
|
(low, high)
|
2018-04-05 16:02:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-12 16:45:28 +00:00
|
|
|
#[stable(feature = "decode_utf16_fused_iterator", since = "1.75.0")]
|
2023-04-23 16:22:58 +00:00
|
|
|
impl<I: Iterator<Item = u16> + FusedIterator> FusedIterator for DecodeUtf16<I> {}
|
|
|
|
|
2018-04-05 16:02:52 +00:00
|
|
|
impl DecodeUtf16Error {
|
|
|
|
/// Returns the unpaired surrogate which caused this error.
|
2021-10-14 22:54:55 +00:00
|
|
|
#[must_use]
|
2018-04-05 16:02:52 +00:00
|
|
|
#[stable(feature = "decode_utf16", since = "1.9.0")]
|
|
|
|
pub fn unpaired_surrogate(&self) -> u16 {
|
|
|
|
self.code
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "decode_utf16", since = "1.9.0")]
|
|
|
|
impl fmt::Display for DecodeUtf16Error {
|
2019-04-18 23:37:12 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-04-05 16:02:52 +00:00
|
|
|
write!(f, "unpaired surrogate found: {:x}", self.code)
|
|
|
|
}
|
|
|
|
}
|
2022-07-29 18:54:47 +00:00
|
|
|
|
|
|
|
#[stable(feature = "decode_utf16", since = "1.9.0")]
|
|
|
|
impl Error for DecodeUtf16Error {
|
|
|
|
#[allow(deprecated)]
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
"unpaired surrogate found"
|
|
|
|
}
|
|
|
|
}
|