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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
@available(SwiftStdlib 6.2, *)
extension UTF8Span {
/// Returns an iterator that will decode the code units into
/// `Unicode.Scalar`s.
///
/// The resulting iterator has the same lifetime constraints as `self`.
@lifetime(copy self)
public func makeUnicodeScalarIterator() -> UnicodeScalarIterator {
.init(self)
}
// **TODO**: Examples in below doc
/// Iterate the `Unicode.Scalar`s contents of a `UTF8Span`.
@frozen
public struct UnicodeScalarIterator: ~Escapable {
public let codeUnits: UTF8Span
/// The byte offset of the start of the next scalar. This is
/// always scalar-aligned.
fileprivate(set)
public var currentCodeUnitOffset: Int
@lifetime(copy codeUnits)
public init(_ codeUnits: UTF8Span) {
self.codeUnits = codeUnits
self.currentCodeUnitOffset = 0
}
private var _start: UnsafeRawPointer {
unsafe codeUnits._start()
}
/// Decode and return the scalar starting at `currentCodeUnitOffset`.
/// After the function returns, `currentCodeUnitOffset` holds the
/// position at the end of the returned scalar, which is also the start
/// of the next scalar.
///
/// Returns `nil` if at the end of the `UTF8Span`.
///
/// - Complexity: O(1)
@lifetime(self: copy self)
public mutating func next() -> Unicode.Scalar? {
guard currentCodeUnitOffset < codeUnits.count else {
return nil
}
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
let (result, newPos) = unsafe _start._decodeScalar(startingAt: currentCodeUnitOffset)
self.currentCodeUnitOffset = newPos
return result
}
/// Decode and return the scalar ending at `currentCodeUnitOffset`. After
/// the function returns, `currentCodeUnitOffset` holds the position at
/// the start of the returned scalar, which is also the end of the
/// previous scalar.
///
/// Returns `nil` if at the start of the `UTF8Span`.
///
/// - Complexity: O(1)
@lifetime(self: copy self)
public mutating func previous() -> Unicode.Scalar? {
guard currentCodeUnitOffset > 0 else {
return nil
}
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
let (result, newPos) = unsafe _start._decodeScalar(endingAt: currentCodeUnitOffset)
self.currentCodeUnitOffset = newPos
return result
}
/// Advance `codeUnitOffset` to the end of the current scalar, without
/// decoding it.
///
/// Returns the number of `Unicode.Scalar`s skipped over, which can be 0
/// if at the end of the UTF8Span.
///
/// - Complexity: O(1)
@lifetime(self: copy self)
public mutating func skipForward() -> Int {
guard currentCodeUnitOffset < codeUnits.count else {
return 0
}
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
currentCodeUnitOffset &+= unsafe _start._scalarLength(startingAt: currentCodeUnitOffset)
return 1
}
/// Advance `codeUnitOffset` to the end of `n` scalars, without decoding
/// them.
///
/// Returns the number of `Unicode.Scalar`s skipped over, which can be
/// fewer than `n` if at the end of the UTF8Span.
///
/// - Complexity: O(n)
@lifetime(self: copy self)
public mutating func skipForward(by n: Int) -> Int {
var numSkipped = 0
while numSkipped < n && skipForward() != 0 {
numSkipped += 1
}
return numSkipped
}
/// Move `codeUnitOffset` to the start of the previous scalar, without
/// decoding it.
///
/// Returns the number of `Unicode.Scalar`s skipped over, which can be 0
/// if at the start of the UTF8Span.
///
/// - Complexity: O(1)
@lifetime(self: copy self)
public mutating func skipBack() -> Int {
guard currentCodeUnitOffset > 0 else {
return 0
}
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
currentCodeUnitOffset = unsafe _start._previousScalarStart(currentCodeUnitOffset)
return 1
}
/// Move `codeUnitOffset` to the start of the previous `n` scalars,
/// without decoding them.
///
/// Returns the number of `Unicode.Scalar`s skipped over, which can be
/// fewer than `n` if at the start of the UTF8Span.
///
/// - Complexity: O(n)
@lifetime(self: copy self)
public mutating func skipBack(by n: Int) -> Int {
var numSkipped = 0
while numSkipped < n && skipBack() != 0 {
numSkipped += 1
}
return numSkipped
}
// TODO: Example for reset docs
/// Reset to the nearest scalar-aligned code unit offset `<= i`.
///
/// - Complexity: O(1)
@lifetime(self: copy self)
public mutating func reset(roundingBackwardsFrom i: Int) {
self.currentCodeUnitOffset = codeUnits._scalarAlignBackwards(i)
}
/// Reset to the nearest scalar-aligned code unit offset `>= i`.
///
/// - Complexity: O(1)
@lifetime(self: copy self)
public mutating func reset(roundingForwardsFrom i: Int) {
self.currentCodeUnitOffset = codeUnits._scalarAlignForwards(i)
}
// TODO: for below, verify that there is no path to UB, just garabage-data or guaranteed
// trap!
/// Reset this iterator to `codeUnitOffset`, skipping _all_ safety
/// checks (including bounds checks).
///
/// Note: This is only for very specific, low-level use cases. If
/// `codeUnitOffset` is not properly scalar-aligned, this function can
/// result in undefined behavior when, e.g., `next()` is called.
///
/// For example, this could be used by a regex engine to backtrack to a
/// known-valid previous position.
///
///
/// - Complexity: O(1)
@unsafe
@lifetime(self: copy self)
public mutating func reset(toUnchecked codeUnitOffset: Int) {
_internalInvariant(codeUnits._isScalarAligned(unchecked: codeUnitOffset))
self.currentCodeUnitOffset = codeUnitOffset
}
/// Returns the UTF8Span containing all the content up to the iterator's
/// current position.
///
/// The resultant `UTF8Span` has the same lifetime constraints as `self`.
///
/// - Complexity: O(1)
@lifetime(copy self)
public func prefix() -> UTF8Span {
let slice = codeUnits.span.extracting(0..<currentCodeUnitOffset)
return UTF8Span(
_uncheckedAssumingValidUTF8: slice,
isKnownASCII: codeUnits.isKnownASCII,
isKnownNFC: codeUnits.isKnownNFC)
}
/// Returns the UTF8Span containing all the content after the iterator's
/// current position.
///
/// The resultant `UTF8Span` has the same lifetime constraints as `self`.
///
/// - Complexity: O(1)
@lifetime(copy self)
public func suffix() -> UTF8Span {
let slice = codeUnits.span.extracting(currentCodeUnitOffset..<codeUnits.count)
return UTF8Span(
_uncheckedAssumingValidUTF8: slice,
isKnownASCII: codeUnits.isKnownASCII,
isKnownNFC: codeUnits.isKnownNFC)
}
}
}
@available(SwiftStdlib 6.2, *)
@_unavailableInEmbedded
extension UTF8Span {
/// Returns an iterator that will construct `Character`s from the underlying
/// UTF-8 content.
///
/// The resulting iterator has the same lifetime constraints as `self`.
@lifetime(copy self)
public func makeCharacterIterator() -> CharacterIterator {
.init(self)
}
// **TODO**: Examples in below doc
/// Iterate the `Character` contents of a `UTF8Span`.
public struct CharacterIterator: ~Escapable {
public let codeUnits: UTF8Span
/// The byte offset of the start of the next `Character`. This is always
/// scalar-aligned. It is always `Character`-aligned relative to the last
/// call to `reset` (or the start of the span if not called).
fileprivate(set)
public var currentCodeUnitOffset: Int
@lifetime(copy codeUnits)
public init(_ codeUnits: UTF8Span) {
self.codeUnits = codeUnits
self.currentCodeUnitOffset = 0
}
private var _start: UnsafeRawPointer {
unsafe codeUnits._start()
}
/// Return the `Character` starting at `currentCodeUnitOffset`. After the
/// function returns, `currentCodeUnitOffset` holds the position at the
/// end of the `Character`, which is also the start of the next
/// `Character`.
///
/// Returns `nil` if at the end of the `UTF8Span`.
@lifetime(self: copy self)
public mutating func next() -> Character? {
guard currentCodeUnitOffset < codeUnits.count else { return nil }
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
let (result, newPos) = unsafe _start._decodeCharacter(
startingAt: currentCodeUnitOffset,
limitedBy: codeUnits.count
)
self.currentCodeUnitOffset = newPos
return result
}
/// Return the `Character` ending at `currentCodeUnitOffset`. After the
/// function returns, `currentCodeUnitOffset` holds the position at the
/// start of the returned `Character`, which is also the end of the
/// previous `Character`.
///
/// Returns `nil` if at the start of the `UTF8Span`.
@lifetime(self: copy self)
public mutating func previous() -> Character? {
guard currentCodeUnitOffset > 0 else { return nil }
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
let (result, newPos) = unsafe _start._decodeCharacter(
endingAt: currentCodeUnitOffset,
limitedBy: codeUnits.count)
self.currentCodeUnitOffset = newPos
return result
}
/// Advance `codeUnitOffset` to the end of the current `Character`,
/// without constructing it.
///
/// Returns the number of `Character`s skipped over, which can be 0
/// if at the end of the UTF8Span.
@lifetime(self: copy self)
public mutating func skipForward() -> Int {
guard currentCodeUnitOffset < codeUnits.count else {
return 0
}
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
self.currentCodeUnitOffset = unsafe _start._nextCharacterStart(currentCodeUnitOffset, limitedBy: codeUnits.count)
return 1
}
/// Advance `codeUnitOffset` to the end of `n` `Characters`, without
/// constructing them.
///
/// Returns the number of `Character`s skipped over, which can be
/// fewer than `n` if at the end of the UTF8Span.
@lifetime(self: copy self)
public mutating func skipForward(by n: Int) -> Int {
var numSkipped = 0
while numSkipped < n && skipForward() != 0 {
numSkipped += 1
}
return numSkipped
}
/// Move `codeUnitOffset` to the start of the previous `Character`,
/// without constructing it.
///
/// Returns the number of `Character`s skipped over, which can be 0
/// if at the start of the UTF8Span.
@lifetime(self: copy self)
public mutating func skipBack() -> Int {
guard currentCodeUnitOffset > 0 else {
return 0
}
_internalInvariant(codeUnits._isScalarAligned(unchecked: currentCodeUnitOffset))
currentCodeUnitOffset = unsafe _start._previousCharacterStart(currentCodeUnitOffset, limitedBy: codeUnits.count)
return 1
}
/// Move `codeUnitOffset` to the start of the previous `n` `Character`s,
/// without constructing them.
///
/// Returns the number of `Character`s skipped over, which can be
/// fewer than `n` if at the start of the UTF8Span.
@lifetime(self: copy self)
public mutating func skipBack(by n: Int) -> Int {
var numSkipped = 0
while numSkipped < n && skipBack() != 0 {
numSkipped += 1
}
return numSkipped
}
/// Reset to the nearest character-aligned position `<= i`.
@lifetime(self: copy self)
public mutating func reset(roundingBackwardsFrom i: Int) {
self.currentCodeUnitOffset = codeUnits._scalarAlignBackwards(i)
}
/// Reset to the nearest character-aligned position `>= i`.
@lifetime(self: copy self)
public mutating func reset(roundingForwardsFrom i: Int) {
self.currentCodeUnitOffset = codeUnits._scalarAlignForwards(i)
}
/// Reset this iterator to `codeUnitOffset`, skipping _all_ safety
/// checks.
///
/// Note: This is only for very specific, low-level use cases. If
/// `codeUnitOffset` is not properly scalar-aligned, this function can
/// result in undefined behavior when, e.g., `next()` is called.
///
/// If `i` is scalar-aligned, but not `Character`-aligned, you may get
/// different results from running `Character` iteration.
///
/// For example, this could be used by a regex engine to backtrack to a
/// known-valid previous position.
///
@unsafe
@lifetime(self: copy self)
public mutating func reset(toUnchecked codeUnitOffset: Int) {
_internalInvariant(codeUnits._isScalarAligned(unchecked: codeUnitOffset))
self.currentCodeUnitOffset = codeUnitOffset
}
/// Returns the UTF8Span containing all the content up to the iterator's
/// current position.
@lifetime(copy self)
public func prefix() -> UTF8Span {
let slice = codeUnits.span.extracting(0..<currentCodeUnitOffset)
return UTF8Span(
_uncheckedAssumingValidUTF8: slice,
isKnownASCII: codeUnits.isKnownASCII,
isKnownNFC: codeUnits.isKnownNFC)
}
/// Returns the UTF8Span containing all the content after the iterator's
/// current position.
@lifetime(copy self)
public func suffix() -> UTF8Span {
let slice = codeUnits.span.extracting(currentCodeUnitOffset..<codeUnits.count)
return UTF8Span(
_uncheckedAssumingValidUTF8: slice,
isKnownASCII: codeUnits.isKnownASCII,
isKnownNFC: codeUnits.isKnownNFC)
}
}
}
|