mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This is a giant squashing of a lot of individual changes prototyping a switch of String in Swift 5 to be natively encoded as UTF-8. It includes what's necessary for a functional prototype, dropping some history, but still leaves plenty of history available for future commits. My apologies to anyone trying to do code archeology between this commit and the one prior. This was the lesser of evils.
250 lines
9.2 KiB
Swift
250 lines
9.2 KiB
Swift
//===--- StringCharacterView.swift - String's Collection of Characters ----===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// String is-not-a Sequence or Collection, but it exposes a
|
|
// collection of characters.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FIXME(ABI)#70 : The character string view should have a custom iterator type
|
|
// to allow performance optimizations of linear traversals.
|
|
|
|
import SwiftShims
|
|
|
|
extension String: BidirectionalCollection {
|
|
/// A type that represents the number of steps between two `String.Index`
|
|
/// values, where one value is reachable from the other.
|
|
///
|
|
/// In Swift, *reachability* refers to the ability to produce one value from
|
|
/// the other through zero or more applications of `index(after:)`.
|
|
public typealias IndexDistance = Int
|
|
|
|
public typealias SubSequence = Substring
|
|
|
|
public typealias Element = Character
|
|
|
|
/// The position of the first character in a nonempty string.
|
|
///
|
|
/// In an empty string, `startIndex` is equal to `endIndex`.
|
|
@inlinable
|
|
public var startIndex: Index {
|
|
@inline(__always) get { return Index(encodedOffset: 0) }
|
|
}
|
|
|
|
/// A string's "past the end" position---that is, the position one greater
|
|
/// than the last valid subscript argument.
|
|
///
|
|
/// In an empty string, `endIndex` is equal to `startIndex`.
|
|
@inlinable
|
|
public var endIndex: Index {
|
|
@inline(__always) get { return Index(encodedOffset: _guts.count) }
|
|
}
|
|
|
|
/// The number of characters in a string.
|
|
public var count: Int {
|
|
@inline(__always) get { return distance(from: startIndex, to: endIndex) }
|
|
}
|
|
|
|
/// Returns the position immediately after the given index.
|
|
///
|
|
/// - Parameter i: A valid index of the collection. `i` must be less than
|
|
/// `endIndex`.
|
|
/// - Returns: The index value immediately after `i`.
|
|
public func index(after i: Index) -> Index {
|
|
// TODO(UTF8): populate the stride cache in the resultant iterator
|
|
|
|
let stride = _characterStride(startingAt: i)
|
|
return Index(encodedOffset: i.encodedOffset &+ stride)
|
|
}
|
|
|
|
/// Returns the position immediately before the given index.
|
|
///
|
|
/// - Parameter i: A valid index of the collection. `i` must be greater than
|
|
/// `startIndex`.
|
|
/// - Returns: The index value immediately before `i`.
|
|
public func index(before i: Index) -> Index {
|
|
// TODO: known-ASCII fast path, single-scalar-grapheme fast path, etc.
|
|
|
|
// TODO(UTF8): populate the stride cache in the resultant iterator
|
|
|
|
let stride = _characterStride(endingAt: i)
|
|
return Index(encodedOffset: i.encodedOffset &- stride)
|
|
}
|
|
/// Returns an index that is the specified distance from the given index.
|
|
///
|
|
/// The following example obtains an index advanced four positions from a
|
|
/// string's starting index and then prints the character at that position.
|
|
///
|
|
/// let s = "Swift"
|
|
/// let i = s.index(s.startIndex, offsetBy: 4)
|
|
/// print(s[i])
|
|
/// // Prints "t"
|
|
///
|
|
/// The value passed as `n` must not offset `i` beyond the bounds of the
|
|
/// collection.
|
|
///
|
|
/// - Parameters:
|
|
/// - i: A valid index of the collection.
|
|
/// - n: The distance to offset `i`.
|
|
/// - Returns: An index offset by `n` from the index `i`. If `n` is positive,
|
|
/// this is the same value as the result of `n` calls to `index(after:)`.
|
|
/// If `n` is negative, this is the same value as the result of `-n` calls
|
|
/// to `index(before:)`.
|
|
///
|
|
/// - Complexity: O(*n*), where *n* is the absolute value of `n`.
|
|
@inlinable @inline(__always)
|
|
public func index(_ i: Index, offsetBy n: IndexDistance) -> Index {
|
|
// TODO: known-ASCII and single-scalar-grapheme fast path, etc.
|
|
return __index(i, offsetBy: n)
|
|
}
|
|
|
|
/// Returns an index that is the specified distance from the given index,
|
|
/// unless that distance is beyond a given limiting index.
|
|
///
|
|
/// The following example obtains an index advanced four positions from a
|
|
/// string's starting index and then prints the character at that position.
|
|
/// The operation doesn't require going beyond the limiting `s.endIndex`
|
|
/// value, so it succeeds.
|
|
///
|
|
/// let s = "Swift"
|
|
/// if let i = s.index(s.startIndex, offsetBy: 4, limitedBy: s.endIndex) {
|
|
/// print(s[i])
|
|
/// }
|
|
/// // Prints "t"
|
|
///
|
|
/// The next example attempts to retrieve an index six positions from
|
|
/// `s.startIndex` but fails, because that distance is beyond the index
|
|
/// passed as `limit`.
|
|
///
|
|
/// let j = s.index(s.startIndex, offsetBy: 6, limitedBy: s.endIndex)
|
|
/// print(j)
|
|
/// // Prints "nil"
|
|
///
|
|
/// The value passed as `n` must not offset `i` beyond the bounds of the
|
|
/// collection, unless the index passed as `limit` prevents offsetting
|
|
/// beyond those bounds.
|
|
///
|
|
/// - Parameters:
|
|
/// - i: A valid index of the collection.
|
|
/// - n: The distance to offset `i`.
|
|
/// - limit: A valid index of the collection to use as a limit. If `n > 0`,
|
|
/// a limit that is less than `i` has no effect. Likewise, if `n < 0`, a
|
|
/// limit that is greater than `i` has no effect.
|
|
/// - Returns: An index offset by `n` from the index `i`, unless that index
|
|
/// would be beyond `limit` in the direction of movement. In that case,
|
|
/// the method returns `nil`.
|
|
///
|
|
/// - Complexity: O(*n*), where *n* is the absolute value of `n`.
|
|
@inlinable @inline(__always)
|
|
public func index(
|
|
_ i: Index, offsetBy n: IndexDistance, limitedBy limit: Index
|
|
) -> Index? {
|
|
// TODO: known-ASCII and single-scalar-grapheme fast path, etc.
|
|
return __index(i, offsetBy: n, limitedBy: limit)
|
|
}
|
|
|
|
/// Returns the distance between two indices.
|
|
///
|
|
/// - Parameters:
|
|
/// - start: A valid index of the collection.
|
|
/// - end: Another valid index of the collection. If `end` is equal to
|
|
/// `start`, the result is zero.
|
|
/// - Returns: The distance between `start` and `end`.
|
|
///
|
|
/// - Complexity: O(*n*), where *n* is the resulting distance.
|
|
@inlinable @inline(__always)
|
|
public func distance(from start: Index, to end: Index) -> IndexDistance {
|
|
// TODO: known-ASCII and single-scalar-grapheme fast path, etc.
|
|
return __distance(from: start, to: end)
|
|
}
|
|
|
|
/// Accesses the character at the given position.
|
|
///
|
|
/// You can use the same indices for subscripting a string and its substring.
|
|
/// For example, this code finds the first letter after the first space:
|
|
///
|
|
/// let str = "Greetings, friend! How are you?"
|
|
/// let firstSpace = str.firstIndex(of: " ") ?? str.endIndex
|
|
/// let substr = str[firstSpace...]
|
|
/// if let nextCapital = substr.firstIndex(where: { $0 >= "A" && $0 <= "Z" }) {
|
|
/// print("Capital after a space: \(str[nextCapital])")
|
|
/// }
|
|
/// // Prints "Capital after a space: H"
|
|
///
|
|
/// - Parameter i: A valid index of the string. `i` must be less than the
|
|
/// string's end index.
|
|
@inlinable
|
|
public subscript(i: Index) -> Character {
|
|
@inline(__always) get {
|
|
// FIXME(UTF8): bounds checking
|
|
|
|
// TODO: known-ASCII and single-scalar-grapheme fast path, etc.
|
|
|
|
let distance = _characterStride(startingAt: i)
|
|
|
|
// TODO(UTF8): Probably worth making into `extractRange` on StringGuts.
|
|
if _fastPath(_guts.isFastUTF8) {
|
|
return _guts.withFastUTF8 { utf8 in
|
|
let start = i.encodedOffset
|
|
let end = start + distance
|
|
let cus = UnsafeBufferPointer(rebasing: utf8[start..<end])
|
|
return Character(unchecked: String._uncheckedFromUTF8(cus))
|
|
}
|
|
}
|
|
|
|
return _foreignSubscript(position: i, distance: distance)
|
|
}
|
|
}
|
|
|
|
@inlinable @inline(__always)
|
|
internal func _characterStride(startingAt i: Index) -> Int {
|
|
// Fast check if it's already been measured, otherwise check resiliently
|
|
if let d = i.characterStride { return d }
|
|
|
|
// TODO: Known-single-scalar-grapheme fast path
|
|
return _guts._opaqueCharacterStride(startingAt: i.encodedOffset)
|
|
}
|
|
|
|
@inlinable @inline(__always)
|
|
internal func _characterStride(endingAt i: Index) -> Int {
|
|
// TODO: Known-single-scalar-grapheme fast path
|
|
return _guts._opaqueCharacterStride(endingAt: i.encodedOffset)
|
|
}
|
|
}
|
|
|
|
// Foreign string support
|
|
extension String {
|
|
@usableFromInline @inline(never)
|
|
@_effects(releasenone)
|
|
internal func _foreignSubscript(position: Index, distance: Int) -> Character {
|
|
_sanityCheck(_guts.isForeign)
|
|
|
|
let start = position.encodedOffset
|
|
let end = start + distance
|
|
let count = end - start
|
|
|
|
// TODO(UTF8 perf): Stack buffer if small enough...
|
|
|
|
var cus = Array<UInt16>(repeating: 0, count: count)
|
|
cus.withUnsafeMutableBufferPointer {
|
|
_cocoaStringCopyCharacters(
|
|
from: _guts._object.cocoaObject,
|
|
range: start..<end,
|
|
into: $0.baseAddress._unsafelyUnwrappedUnchecked)
|
|
}
|
|
return cus.withUnsafeBufferPointer {
|
|
return Character(String._uncheckedFromUTF16($0))
|
|
}
|
|
}
|
|
}
|
|
|