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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
#![no_std] #[cfg(feature = "alloc")] extern crate alloc; use core::{cmp, u32}; mod convert; mod fmt; mod ops; #[cfg(feature = "serde")] mod serde; /// An index into a string. /// /// The index is stored as a 32 bit integer, /// assuming we only deal with text shorter than 4 GiB. #[derive(Copy, Clone, Default, Ord, PartialOrd, Eq, PartialEq, Hash)] pub struct StrIndex { raw: u32, } impl StrIndex { /// Index equal to the string length of this `char`. /// /// # Examples /// /// ``` /// # use str_index::*; /// assert_eq!( /// StrIndex::from_char_len('😂'), /// StrIndex::from(4), /// ); /// ``` pub fn from_char_len(c: char) -> Self { StrIndex::from(c.len_utf8() as u32) } /// Index equal to the length of this string. /// /// # Examples /// /// ``` /// # use str_index::*; /// assert_eq!( /// StrIndex::from_str_len("メカジキ"), /// StrIndex::from(12), /// ); /// ``` pub fn from_str_len(s: &str) -> Self { assert!(s.len() < u32::MAX as usize, "string index too large"); StrIndex { raw: s.len() as u32, } } /// This index as a raw `usize`. pub fn to_usize(self) -> usize { self.into() } /// Checked integer addition. pub fn checked_add(self, rhs: Self) -> Option<Self> { self.raw.checked_add(rhs.raw).map(StrIndex::from) } /// Checked integer subtraction. pub fn checked_sub(self, rhs: Self) -> Option<Self> { self.raw.checked_sub(rhs.raw).map(StrIndex::from) } /// A range starting at this index. /// /// # Example /// /// ```rust /// # use str_index::*; /// let point = StrIndex::from(5); /// assert_eq!( /// point.range_for(10.into()), /// StrRange::from(5.into()..15.into()), /// ); /// ``` pub fn range_for(self, len: StrIndex) -> StrRange { StrRange::from(self..self + len) } /// A range from this index to another. /// /// # Panics /// /// Panics if `end < self`. /// /// # Example /// /// ```rust /// # use str_index::*; /// let start = StrIndex::from(0); /// let end = StrIndex::from(10); /// assert_eq!( /// start.range_to(end), /// StrRange::from(start..end), /// ); /// ``` pub fn range_to(self, end: StrIndex) -> StrRange { StrRange::from(self..end) } /// The empty range at this index. /// /// # Example /// /// ```rust /// # use str_index::*; /// let point = StrIndex::from(10); /// assert_eq!( /// point.as_unit_range(), /// point.range_to(point), /// ); /// ``` pub fn as_unit_range(self) -> StrRange { StrRange::from(self..self) } } /// A range of a string, represented as a half-open range of `StrIndex`. /// /// Construct a `StrRange` by using `from` conversion from `std::ops::Range`/`RangeTo`. /// The range is always guaranteed increasing; conversion panics if `end < start`. /// /// # Examples /// /// ```rust /// # use str_index::{StrRange, StrIndex}; /// let zero = StrIndex::from(0); /// let start = StrIndex::from(10); /// let end = StrIndex::from(20); /// assert_eq!( /// format!("{:?}", StrRange::from(start..end)), /// format!("{:?}", start..end), /// ); /// assert_eq!( /// format!("{:?}", StrRange::from(..end)), /// format!("{:?}", zero..end), /// ); /// ``` /// /// ```rust,should_panic /// # use str_index::{StrRange, StrIndex}; /// # let start = StrIndex::from(10); /// # let end = StrIndex::from(20); /// let this_panics = StrRange::from(end..start); /// ``` #[derive(Copy, Clone, Default, Ord, PartialOrd, Eq, PartialEq, Hash)] pub struct StrRange { start: StrIndex, end: StrIndex, } impl StrRange { /// The (inclusive) start index of this range. pub fn start(self) -> StrIndex { self.start } /// The (exclusive) end index of this range. pub fn end(self) -> StrIndex { self.end } /// The length of this range. pub fn len(self) -> StrIndex { self.end() - self.start() } /// Is this range a unit range? /// That is, does this range have equivalent start and end points? pub fn is_empty(self) -> bool { self.start() == self.end() } /// A range with an adjusted end. /// /// # Panics /// /// Panics if `self.end() < start`. /// /// # Example /// /// ```rust /// # use str_index::*; /// let range = StrRange::from(5.into()..10.into()); /// let point = StrIndex::from(0); /// assert_eq!( /// range.with_start(point), /// point.range_to(range.end()), /// ); /// ``` pub fn with_start(self, start: StrIndex) -> StrRange { StrRange::from(start..self.end()) } /// A range with an adjusted end. /// /// # Panics /// /// Panics if `end < self.start()`. /// /// # Example /// /// ```rust /// # use str_index::*; /// let range = StrRange::from(0.into()..5.into()); /// let point = StrIndex::from(10); /// assert_eq!( /// range.with_end(point), /// range.start().range_to(point), /// ); /// ``` pub fn with_end(self, end: StrIndex) -> StrRange { StrRange::from(self.start()..end) } /// Are these ranges disjoint? /// /// Ranges that touch end to start are disjoint, as no byte is in both ranges. /// /// # Examples /// /// ```rust /// # use str_index::*; /// let left = StrRange::from(0.into()..20.into()); /// let right = StrRange::from(10.into()..30.into()); /// assert!(!left.is_disjoint(right)); /// assert!(!right.is_disjoint(left)); /// /// let left = StrRange::from(0.into()..10.into()); /// let right = StrRange::from(10.into()..20.into()); /// assert!(left.is_disjoint(right)); /// assert!(right.is_disjoint(left)); /// /// let empty = StrRange::from(10.into()..10.into()); /// assert!(empty.is_disjoint(empty)); /// ``` pub fn is_disjoint(self, other: StrRange) -> bool { self.end() <= other.start() || other.end() <= self.start() } /// The range that is both in `self` and `other`. /// /// Note that ranges that touch but do not overlap return `Some(empty range)` /// and ranges that do not touch and do not overlap return `None`. /// /// # Examples /// /// ``` /// # use str_index::*; /// let left = StrRange::from(0.into()..20.into()); /// let right = StrRange::from(10.into()..30.into()); /// assert_eq!( /// left.intersection(right), /// Some(StrRange::from(10.into()..20.into())), /// ); /// /// let left = StrRange::from(0.into()..10.into()); /// let right = StrRange::from(10.into()..20.into()); /// assert_eq!( /// left.intersection(right), /// Some(StrRange::from(10.into()..10.into())), /// ); /// ``` pub fn intersection(self, other: Self) -> Option<Self> { let start = cmp::max(self.start(), other.start()); let end = cmp::min(self.end(), other.end()); if start <= end { Some(StrRange::from(start..end)) } else { None } } /// Like [`intersection`], but disjoint ranges always return `None`. /// /// # Examples /// /// ``` /// # use str_index::*; /// let left = StrRange::from(0.into()..20.into()); /// let right = StrRange::from(10.into()..30.into()); /// assert_eq!( /// left.nonempty_intersection(right), /// left.intersection(right), /// ); /// /// let left = StrRange::from(0.into()..10.into()); /// let right = StrRange::from(10.into()..20.into()); /// assert_eq!( /// left.nonempty_intersection(right), /// None, /// ); /// ``` pub fn nonempty_intersection(self, other: Self) -> Option<Self> { let start = cmp::max(self.start(), other.start()); let end = cmp::min(self.end(), other.end()); if start < end { Some(StrRange::from(start..end)) } else { None } } /// The range that covers both `self` and `other`. /// /// Note that it will also cover any space between `self` and `other`. /// /// # Example /// /// ``` /// # use str_index::*; /// let left = StrRange::from(0.into()..10.into()); /// let right = StrRange::from(20.into()..30.into()); /// assert_eq!( /// left.merge(right), /// StrRange::from(0.into()..30.into()), /// ); /// ``` pub fn merge(self, other: Self) -> Self { let start = cmp::min(self.start(), other.start()); let end = cmp::max(self.end(), other.end()); StrRange::from(start..end) } /// Does this range contain `other`? /// /// `other` must be completely within `self`, but may share endpoints. /// /// # Examples /// /// ```rust /// # use str_index::*; /// let range = StrRange::from(0.into()..20.into()); /// assert!(range.contains(StrRange::from(5.into()..15.into()))); /// assert!(range.contains(range)); /// ``` pub fn contains(self, other: StrRange) -> bool { self.start() <= other.start() && other.end() <= self.end() } /// Does this range contain this index? /// /// This is an exclusive test; use `StrIndex::as_unit_range` for an inclusive test. /// /// # Examples /// /// ```rust /// # use str_index::*; /// let range = StrRange::from(10.into()..20.into()); /// assert!(range.contains_exclusive(range.start())); /// assert!(!range.contains_exclusive(range.end())); /// assert!(range.contains(range.end().as_unit_range())); /// ``` pub fn contains_exclusive(self, index: StrIndex) -> bool { self.start() <= index && index < self.end() } }