| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- use serde::{de, de::Visitor, Deserialize, Deserializer, Serialize, Serializer};
- use std::{fmt, fmt::Formatter, slice};
- #[derive(Clone, Debug, Eq, PartialEq)]
- pub struct FlowyStr(pub String);
- impl FlowyStr {
- pub fn count_utf16_code_units(&self) -> usize { count_utf16_code_units(&self.0) }
- pub fn utf16_iter(&self) -> FlowyUtf16Iterator { FlowyUtf16Iterator::new(self, 0) }
- pub fn code_point_iter(&self) -> CodePointIterator { CodePointIterator::new(self) }
- pub fn sub_str(&self, interval: Interval) -> String {
- match self.with_interval(interval) {
- None => "".to_owned(),
- Some(s) => s.0,
- }
- }
- pub fn with_interval(&self, interval: Interval) -> Option<FlowyStr> {
- let mut iter = CodePointIterator::new(self);
- let mut buf = vec![];
- while let Some((byte, _len)) = iter.next() {
- if interval.start < iter.code_point_offset && interval.end >= iter.code_point_offset {
- buf.extend_from_slice(byte);
- }
- }
- if buf.is_empty() {
- return None;
- }
- match str::from_utf8(&buf) {
- Ok(item) => Some(item.into()),
- Err(_e) => None,
- }
- }
- }
- pub struct CodePointIterator<'a> {
- s: &'a FlowyStr,
- bytes_offset: usize,
- code_point_offset: usize,
- iter_index: usize,
- iter: slice::Iter<'a, u8>,
- }
- impl<'a> CodePointIterator<'a> {
- pub fn new(s: &'a FlowyStr) -> Self {
- CodePointIterator {
- s,
- bytes_offset: 0,
- code_point_offset: 0,
- iter_index: 0,
- iter: s.as_bytes().iter(),
- }
- }
- }
- impl<'a> Iterator for CodePointIterator<'a> {
- type Item = (&'a [u8], usize);
- fn next(&mut self) -> Option<Self::Item> {
- let start = self.bytes_offset;
- let _end = start;
- while let Some(&b) = self.iter.next() {
- self.iter_index += 1;
- let mut code_point_count = 0;
- if self.bytes_offset > self.iter_index {
- continue;
- }
- if self.bytes_offset == self.iter_index {
- break;
- }
- if (b as i8) >= -0x40 {
- code_point_count += 1
- }
- if b >= 0xf0 {
- code_point_count += 1
- }
- self.bytes_offset += len_utf8_from_first_byte(b);
- self.code_point_offset += code_point_count;
- if code_point_count == 1 {
- break;
- }
- }
- if start == self.bytes_offset {
- return None;
- }
- let byte = &self.s.as_bytes()[start..self.bytes_offset];
- Some((byte, self.bytes_offset - start))
- }
- }
- impl std::ops::Deref for FlowyStr {
- type Target = String;
- fn deref(&self) -> &Self::Target { &self.0 }
- }
- impl std::ops::DerefMut for FlowyStr {
- fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 }
- }
- impl std::convert::From<String> for FlowyStr {
- fn from(s: String) -> Self { FlowyStr(s) }
- }
- impl std::convert::From<&str> for FlowyStr {
- fn from(s: &str) -> Self { s.to_owned().into() }
- }
- impl std::fmt::Display for FlowyStr {
- fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { f.write_str(&self.0) }
- }
- impl std::ops::Add<&str> for FlowyStr {
- type Output = FlowyStr;
- fn add(self, rhs: &str) -> FlowyStr {
- let new_value = self.0 + rhs;
- new_value.into()
- }
- }
- impl std::ops::AddAssign<&str> for FlowyStr {
- fn add_assign(&mut self, rhs: &str) { self.0 += rhs; }
- }
- impl Serialize for FlowyStr {
- fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
- where
- S: Serializer,
- {
- serializer.serialize_str(&self.0)
- }
- }
- impl<'de> Deserialize<'de> for FlowyStr {
- fn deserialize<D>(deserializer: D) -> Result<FlowyStr, D::Error>
- where
- D: Deserializer<'de>,
- {
- struct FlowyStrVisitor;
- impl<'de> Visitor<'de> for FlowyStrVisitor {
- type Value = FlowyStr;
- fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { formatter.write_str("a str") }
- fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
- where
- E: de::Error,
- {
- Ok(s.into())
- }
- }
- deserializer.deserialize_str(FlowyStrVisitor)
- }
- }
- pub struct FlowyUtf16Iterator<'a> {
- s: &'a FlowyStr,
- offset: usize,
- }
- impl<'a> FlowyUtf16Iterator<'a> {
- pub fn new(s: &'a FlowyStr, offset: usize) -> Self { FlowyUtf16Iterator { s, offset } }
- }
- use crate::core::Interval;
- use std::str;
- impl<'a> Iterator for FlowyUtf16Iterator<'a> {
- type Item = String;
- fn next(&mut self) -> Option<Self::Item> {
- if self.offset == self.s.len() {
- None
- } else {
- let byte = self.s.as_bytes()[self.offset];
- let end = len_utf8_from_first_byte(byte);
- let buf = &self.s.as_bytes()[self.offset..self.offset + end];
- self.offset += end;
- match str::from_utf8(buf) {
- Ok(item) => Some(item.to_string()),
- Err(_e) => None,
- }
- }
- }
- }
- pub fn count_utf16_code_units(s: &str) -> usize {
- // bytecount::num_chars(s.as_bytes())
- let mut utf16_count = 0;
- for &b in s.as_bytes() {
- if (b as i8) >= -0x40 {
- utf16_count += 1;
- }
- if b >= 0xf0 {
- utf16_count += 1;
- }
- }
- utf16_count
- }
- /// Given the initial byte of a UTF-8 codepoint, returns the number of
- /// bytes required to represent the codepoint.
- /// RFC reference : https://tools.ietf.org/html/rfc3629#section-4
- pub fn len_utf8_from_first_byte(b: u8) -> usize {
- match b {
- b if b < 0x80 => 1,
- b if b < 0xe0 => 2,
- b if b < 0xf0 => 3,
- _ => 4,
- }
- }
- #[cfg(test)]
- mod tests {
- use crate::core::{FlowyStr, Interval};
- #[test]
- fn flowy_str_utf16_test() {
- let s: FlowyStr = "👋😁👋😁".into();
- let mut iter = s.utf16_iter();
- assert_eq!(iter.next().unwrap(), "👋".to_string());
- assert_eq!(iter.next().unwrap(), "😁".to_string());
- assert_eq!(iter.next().unwrap(), "👋".to_string());
- assert_eq!(iter.next().unwrap(), "😁".to_string());
- assert_eq!(iter.next(), None);
- }
- #[test]
- fn flowy_str_utf16_iter_test() {
- let s: FlowyStr = "👋👋😁😁👋👋".into();
- let iter = s.utf16_iter();
- let result = iter.skip(2).take(2).collect::<String>();
- assert_eq!(result, "😁😁".to_string());
- }
- #[test]
- fn flowy_str_code_point_test() {
- let s: FlowyStr = "👋 \n👋".into();
- let output = s.with_interval(Interval::new(0, 2)).unwrap().0;
- assert_eq!(output, "👋");
- let output = s.with_interval(Interval::new(2, 3)).unwrap().0;
- assert_eq!(output, " ");
- let output = s.with_interval(Interval::new(3, 4)).unwrap().0;
- assert_eq!(output, "\n");
- let output = s.with_interval(Interval::new(4, 6)).unwrap().0;
- assert_eq!(output, "👋");
- }
- }
|