Files
swift-mirror/stdlib/public/core/Substring.swift
Karoy Lorentey a44997eeea [stdlib] Factor scalar-aligned String index validation out into a set of common routines
There are three flavors, corresponding to i < endIndex, i <= endIndex, and range containment checks.
Additionally, we have separate variants for index validation in substrings.
2022-03-24 21:00:00 -07:00

1124 lines
37 KiB
Swift

//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
extension String {
// FIXME(strings): at least temporarily remove it to see where it was applied
/// Creates a new string from the given substring.
///
/// - Parameter substring: A substring to convert to a standalone `String`
/// instance.
///
/// - Complexity: O(*n*), where *n* is the length of `substring`.
@inlinable
public init(_ substring: __shared Substring) {
self = String._fromSubstring(substring)
}
}
/// A slice of a string.
///
/// When you create a slice of a string, a `Substring` instance is the result.
/// Operating on substrings is fast and efficient because a substring shares
/// its storage with the original string. The `Substring` type presents the
/// same interface as `String`, so you can avoid or defer any copying of the
/// string's contents.
///
/// The following example creates a `greeting` string, and then finds the
/// substring of the first sentence:
///
/// let greeting = "Hi there! It's nice to meet you! 👋"
/// let endOfSentence = greeting.firstIndex(of: "!")!
/// let firstSentence = greeting[...endOfSentence]
/// // firstSentence == "Hi there!"
///
/// You can perform many string operations on a substring. Here, we find the
/// length of the first sentence and create an uppercase version.
///
/// print("'\(firstSentence)' is \(firstSentence.count) characters long.")
/// // Prints "'Hi there!' is 9 characters long."
///
/// let shoutingSentence = firstSentence.uppercased()
/// // shoutingSentence == "HI THERE!"
///
/// Converting a Substring to a String
/// ==================================
///
/// This example defines a `rawData` string with some unstructured data, and
/// then uses the string's `prefix(while:)` method to create a substring of
/// the numeric prefix:
///
/// let rawInput = "126 a.b 22219 zzzzzz"
/// let numericPrefix = rawInput.prefix(while: { "0"..."9" ~= $0 })
/// // numericPrefix is the substring "126"
///
/// When you need to store a substring or pass it to a function that requires a
/// `String` instance, you can convert it to a `String` by using the
/// `String(_:)` initializer. Calling this initializer copies the contents of
/// the substring to a new string.
///
/// func parseAndAddOne(_ s: String) -> Int {
/// return Int(s, radix: 10)! + 1
/// }
/// _ = parseAndAddOne(numericPrefix)
/// // error: cannot convert value...
/// let incrementedPrefix = parseAndAddOne(String(numericPrefix))
/// // incrementedPrefix == 127
///
/// Alternatively, you can convert the function that takes a `String` to one
/// that is generic over the `StringProtocol` protocol. The following code
/// declares a generic version of the `parseAndAddOne(_:)` function:
///
/// func genericParseAndAddOne<S: StringProtocol>(_ s: S) -> Int {
/// return Int(s, radix: 10)! + 1
/// }
/// let genericallyIncremented = genericParseAndAddOne(numericPrefix)
/// // genericallyIncremented == 127
///
/// You can call this generic function with an instance of either `String` or
/// `Substring`.
///
/// - Important: Don't store substrings longer than you need them to perform a
/// specific operation. A substring holds a reference to the entire storage
/// of the string it comes from, not just to the portion it presents, even
/// when there is no other reference to the original string. Storing
/// substrings may, therefore, prolong the lifetime of string data that is
/// no longer otherwise accessible, which can appear to be memory leakage.
@frozen
public struct Substring: Sendable {
@usableFromInline
internal var _slice: Slice<String>
@inline(__always)
internal init(_unchecked slice: Slice<String>) {
_internalInvariant(slice.endIndex <= slice._base._guts.endIndex)
_internalInvariant(
slice._base._guts.hasMatchingEncoding(slice.startIndex) &&
slice._base._guts.hasMatchingEncoding(slice.endIndex))
_internalInvariant(
slice.startIndex._isScalarAligned && slice.endIndex._isScalarAligned)
self._slice = slice
_invariantCheck()
}
@usableFromInline
@available(*, deprecated) // Use `init(_unchecked:)` in new code.
internal init(_ slice: Slice<String>) {
let r = slice.base._guts.validateScalarRange(
slice.startIndex ..< slice.endIndex)
self._slice = Slice(base: slice.base, bounds: r)
_invariantCheck()
}
@inline(__always)
internal init(_ slice: _StringGutsSlice) {
self.init(String(slice._guts)[slice.range])
}
/// Creates an empty substring.
@inlinable @inline(__always)
public init() {
self._slice = Slice()
}
}
extension Substring {
/// Returns the underlying string from which this substring was derived.
@_alwaysEmitIntoClient
public var base: String { return _slice.base }
@inlinable @inline(__always)
internal var _wholeGuts: _StringGuts { return base._guts }
@inlinable @inline(__always)
internal var _offsetRange: Range<Int> {
return Range(
_uncheckedBounds: (startIndex._encodedOffset, endIndex._encodedOffset))
}
#if !INTERNAL_CHECKS_ENABLED
@inlinable @inline(__always) internal func _invariantCheck() {}
#else
@usableFromInline @inline(never) @_effects(releasenone)
internal func _invariantCheck() {
_internalInvariant(_slice.endIndex <= base._guts.endIndex)
_internalInvariant(
base._guts.hasMatchingEncoding(_slice.startIndex) &&
base._guts.hasMatchingEncoding(_slice.endIndex))
// Indices are always scalar aligned
_internalInvariant(
_slice.startIndex == base._guts.scalarAlign(_slice.startIndex) &&
_slice.endIndex == base._guts.scalarAlign(_slice.endIndex))
self.base._invariantCheck()
}
#endif // INTERNAL_CHECKS_ENABLED
}
extension Substring {
@inline(__always)
internal func _validateScalarIndex(_ i: String.Index) -> String.Index {
_slice._base._guts.validateScalarIndex(i, from: startIndex, to: endIndex)
}
@inline(__always)
internal func _validateInclusiveScalarIndex(
_ i: String.Index
) -> String.Index {
_slice._base._guts.validateInclusiveScalarIndex(
i, from: startIndex, to: endIndex)
}
@inline(__always)
internal func _validateScalarRange(
_ range: Range<String.Index>
) -> Range<String.Index> {
_slice._base._guts.validateScalarRange(
range, from: startIndex, to: endIndex)
}
}
extension Substring: StringProtocol {
public typealias Index = String.Index
public typealias SubSequence = Substring
@inlinable @inline(__always)
public var startIndex: Index { return _slice.startIndex }
@inlinable @inline(__always)
public var endIndex: Index { return _slice.endIndex }
public func index(after i: Index) -> Index {
// Note: in Swift 5.6 and below, this method used to be inlinable,
// forwarding to `_slice.base.index(after:)`. Unfortunately, that approach
// isn't compatible with SE-0180, as it allows Unicode scalars outside the
// substring to affect grapheme breaking results within the substring. This
// leads to Collection conformance issues when the `Substring`'s bounds do
// not fall on grapheme boundaries in `base`.
let i = _validateScalarIndex(i)
let r = _uncheckedIndex(after: i)
return _slice.base._guts.internalMarkEncoding(r)
}
/// A version of `index(after:)` that assumes that the given index:
///
/// - has the right encoding,
/// - is within bounds, and
/// - is scalar aligned.
///
/// It does not mark the encoding of the returned index.
internal func _uncheckedIndex(after i: Index) -> Index {
// FIXME: Unlike `index(before:)`, this function may return incorrect
// results if `i` isn't on a grapheme cluster boundary. (The grapheme
// breaking algorithm assumes we start on a break when we go forward.)
_internalInvariant(_slice.base._guts.hasMatchingEncoding(i))
_internalInvariant(i < endIndex)
_internalInvariant(i._isScalarAligned)
let stride = _characterStride(startingAt: i)
let nextOffset = i._encodedOffset &+ stride
let nextIndex = Index(_encodedOffset: nextOffset)._scalarAligned
guard
// Don't cache character strides in indices of exotic substrings whose
// startIndex isn't aligned on a grapheme cluster boundary. (Their
// grapheme breaks may not match with those in `base`.)
_knownToStartOnGraphemeBreak,
// Don't cache the stride if we end on a partial grapheme cluster.
nextIndex < endIndex || _knownToEndOnGraphemeBreak
else {
return nextIndex
}
let nextStride = _characterStride(startingAt: nextIndex)
let r = Index(encodedOffset: nextOffset, characterStride: nextStride)
return r._scalarAligned
}
public func index(before i: Index) -> Index {
// Note: in Swift 5.6 and below, this method used to be inlinable,
// forwarding to `_slice.base.index(before:)`. Unfortunately, that approach
// isn't compatible with SE-0180, as it allows Unicode scalars outside the
// substring to affect grapheme breaking results within the substring. This
// leads to Collection conformance issues when the `Substring`'s bounds do
// not fall on grapheme boundaries in `base`.
let i = _validateInclusiveScalarIndex(i)
// Note: Scalar aligning an index may move it closer towards the
// `startIndex`, so the `i > startIndex` check needs to come after the
// `validateScalarIndex` call.
_precondition(i > startIndex, "Substring index is out of bounds")
let r = _uncheckedIndex(before: i)
return _slice.base._guts.internalMarkEncoding(r)
}
/// A version of `index(before:)` that assumes that the given index:
///
/// - has the right encoding,
/// - is within bounds, and
/// - is scalar aligned.
///
/// It does not mark the encoding of the returned index.
internal func _uncheckedIndex(before i: Index) -> Index {
_internalInvariant(_slice.base._guts.hasMatchingEncoding(i))
_internalInvariant(i < endIndex)
_internalInvariant(i._isScalarAligned)
// TODO: known-ASCII fast path, single-scalar-grapheme fast path, etc.
let stride = _characterStride(endingAt: i)
let priorOffset = i._encodedOffset &- stride
_internalInvariant(priorOffset >= startIndex._encodedOffset)
guard _knownToStartOnGraphemeBreak else {
// Don't cache character strides in indices of exotic substrings whose
// startIndex isn't aligned on a grapheme cluster boundary. (Their
// grapheme breaks may not match with those in `base`.)
return Index(_encodedOffset: priorOffset)._scalarAligned
}
return Index(
encodedOffset: priorOffset, characterStride: stride)._scalarAligned
}
public func index(_ i: Index, offsetBy distance: Int) -> Index {
// Note: in Swift 5.6 and below, this method used to be inlinable,
// forwarding to `_slice.base.index(_:offsetBy:)`. Unfortunately, that
// approach isn't compatible with SE-0180, as it allows Unicode scalars
// outside the substring to affect grapheme breaking results within the
// substring. This leads to Collection conformance issues when the
// `Substring`'s bounds do not fall on grapheme boundaries in `base`.
// TODO: known-ASCII and single-scalar-grapheme fast path, etc.
var i = _validateInclusiveScalarIndex(i)
if distance >= 0 {
for _ in stride(from: 0, to: distance, by: 1) {
_precondition(i < endIndex, "String index is out of bounds")
i = _uncheckedIndex(after: i)
}
} else {
for _ in stride(from: 0, to: distance, by: -1) {
_precondition(i > startIndex, "String index is out of bounds")
i = _uncheckedIndex(before: i)
}
}
return _slice.base._guts.internalMarkEncoding(i)
}
public func index(
_ i: Index, offsetBy distance: Int, limitedBy limit: Index
) -> Index? {
// Note: in Swift 5.6 and below, this method used to be inlinable,
// forwarding to `_slice.base.index(_:offsetBy:limitedBy:)`. Unfortunately,
// that approach isn't compatible with SE-0180, as it allows Unicode scalars
// outside the substring to affect grapheme breaking results within the
// substring. This leads to Collection conformance issues when the
// `Substring`'s bounds do not fall on grapheme boundaries in `base`.
// Per SE-0180, `i` and `limit` are allowed to fall in between grapheme
// breaks, in which case this function must still terminate without trapping
// and return a result that makes sense.
// Note: `limit` is intentionally not scalar aligned to ensure our behavior
// exactly matches the documentation.
let limit = _slice.base._guts.ensureMatchingEncoding(limit)
var i = _validateInclusiveScalarIndex(i)
let start = i
if distance >= 0 {
for _ in stride(from: 0, to: distance, by: 1) {
guard limit < start || i < limit else { return nil }
_precondition(i < endIndex, "String index is out of bounds")
i = _uncheckedIndex(after: i)
}
guard limit < start || i <= limit else { return nil }
} else {
for _ in stride(from: 0, to: distance, by: -1) {
guard limit > start || i > limit else { return nil }
_precondition(i > startIndex, "String index is out of bounds")
i = _uncheckedIndex(before: i)
}
guard limit > start || i >= limit else { return nil }
}
return _slice.base._guts.internalMarkEncoding(i)
}
public func distance(from start: Index, to end: Index) -> Int {
// Note: in Swift 5.6 and below, this method used to be inlinable,
// forwarding to `_slice.base.distance(from:to:)`. Unfortunately, that
// approach isn't compatible with SE-0180, as it allows Unicode scalars
// outside the substring to affect grapheme breaking results within the
// substring. This leads to Collection conformance issues when the
// `Substring`'s bounds do not fall on grapheme boundaries in `base`.
// FIXME: Due to the `index(after:)` problem above, this function doesn't
// always return consistent results when the given indices fall between
// grapheme breaks -- swapping `start` and `end` may change the magnitude of
// the result.
let start = _validateInclusiveScalarIndex(start)
let end = _validateInclusiveScalarIndex(end)
// TODO: known-ASCII and single-scalar-grapheme fast path, etc.
// Per SE-0180, `start` and `end` are allowed to fall in between Character
// boundaries, in which case this function must still terminate without
// trapping and return a result that makes sense.
var i = start
var count = 0
if i < end {
while i < end { // Note `<` instead of `==`
count += 1
i = _uncheckedIndex(after: i)
}
}
else if i > end {
while i > end { // Note `<` instead of `==`
count -= 1
i = _uncheckedIndex(before: i)
}
}
return count
}
public subscript(i: Index) -> Character {
let i = _validateScalarIndex(i)
let distance = _characterStride(startingAt: i)
return _slice.base._guts.errorCorrectedCharacter(
startingAt: i._encodedOffset, endingAt: i._encodedOffset &+ distance)
}
public mutating func replaceSubrange<C>(
_ subrange: Range<Index>,
with newElements: C
) where C: Collection, C.Iterator.Element == Iterator.Element {
_replaceSubrange(subrange, with: newElements)
}
public mutating func replaceSubrange(
_ subrange: Range<Index>, with newElements: Substring
) {
_replaceSubrange(subrange, with: newElements)
}
internal mutating func _replaceSubrange<C: Collection>(
_ subrange: Range<Index>, with newElements: C
) where C.Element == Element {
let subrange = _validateScalarRange(subrange)
// TODO(lorentey): We can't delegate to Slice here; it doesn't handle
// subscalar indices or the case where `newElements` changes character
// breaks in the surrounding context. The substring's
// `startIndex`/`endIndex` may get broken.
_slice.replaceSubrange(subrange, with: newElements)
}
/// Creates a string from the given Unicode code units in the specified
/// encoding.
///
/// - Parameters:
/// - codeUnits: A collection of code units encoded in the encoding
/// specified in `sourceEncoding`.
/// - sourceEncoding: The encoding in which `codeUnits` should be
/// interpreted.
@inlinable // specialization
public init<C: Collection, Encoding: _UnicodeEncoding>(
decoding codeUnits: C, as sourceEncoding: Encoding.Type
) where C.Iterator.Element == Encoding.CodeUnit {
self.init(String(decoding: codeUnits, as: sourceEncoding))
}
/// Creates a string from the null-terminated, UTF-8 encoded sequence of
/// bytes at the given pointer.
///
/// - Parameter nullTerminatedUTF8: A pointer to a sequence of contiguous,
/// UTF-8 encoded bytes ending just before the first zero byte.
public init(cString nullTerminatedUTF8: UnsafePointer<CChar>) {
self.init(String(cString: nullTerminatedUTF8))
}
/// Creates a string from the null-terminated sequence of bytes at the given
/// pointer.
///
/// - Parameters:
/// - nullTerminatedCodeUnits: A pointer to a sequence of contiguous code
/// units in the encoding specified in `sourceEncoding`, ending just
/// before the first zero code unit.
/// - sourceEncoding: The encoding in which the code units should be
/// interpreted.
@inlinable // specialization
public init<Encoding: _UnicodeEncoding>(
decodingCString nullTerminatedCodeUnits: UnsafePointer<Encoding.CodeUnit>,
as sourceEncoding: Encoding.Type
) {
self.init(
String(decodingCString: nullTerminatedCodeUnits, as: sourceEncoding))
}
/// Calls the given closure with a pointer to the contents of the string,
/// represented as a null-terminated sequence of UTF-8 code units.
///
/// The pointer passed as an argument to `body` is valid only during the
/// execution of `withCString(_:)`. Do not store or return the pointer for
/// later use.
///
/// - Parameter body: A closure with a pointer parameter that points to a
/// null-terminated sequence of UTF-8 code units. If `body` has a return
/// value, that value is also used as the return value for the
/// `withCString(_:)` method. The pointer argument is valid only for the
/// duration of the method's execution.
/// - Returns: The return value, if any, of the `body` closure parameter.
@inlinable // specialization
public func withCString<Result>(
_ body: (UnsafePointer<CChar>) throws -> Result) rethrows -> Result {
// TODO(String performance): Detect when we cover the rest of a nul-
// terminated String, and thus can avoid a copy.
return try String(self).withCString(body)
}
/// Calls the given closure with a pointer to the contents of the string,
/// represented as a null-terminated sequence of code units.
///
/// The pointer passed as an argument to `body` is valid only during the
/// execution of `withCString(encodedAs:_:)`. Do not store or return the
/// pointer for later use.
///
/// - Parameters:
/// - body: A closure with a pointer parameter that points to a
/// null-terminated sequence of code units. If `body` has a return
/// value, that value is also used as the return value for the
/// `withCString(encodedAs:_:)` method. The pointer argument is valid
/// only for the duration of the method's execution.
/// - targetEncoding: The encoding in which the code units should be
/// interpreted.
/// - Returns: The return value, if any, of the `body` closure parameter.
@inlinable // specialization
public func withCString<Result, TargetEncoding: _UnicodeEncoding>(
encodedAs targetEncoding: TargetEncoding.Type,
_ body: (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result
) rethrows -> Result {
// TODO(String performance): Detect when we cover the rest of a nul-
// terminated String, and thus can avoid a copy.
return try String(self).withCString(encodedAs: targetEncoding, body)
}
}
extension Substring {
// TODO(lorentey): Rename to proper terminology
internal var _knownToStartOnGraphemeBreak: Bool {
startIndex._encodedOffset == 0 || startIndex.characterStride != nil
}
// TODO(lorentey): Rename to proper terminology
internal var _knownToEndOnGraphemeBreak: Bool {
endIndex == _slice.base.endIndex || endIndex.characterStride != nil
}
internal var _encodedOffsetRange: Range<Int> {
let lower = _slice._startIndex._encodedOffset
let upper = _slice._endIndex._encodedOffset
return Range(_uncheckedBounds: (lower, upper))
}
internal func _characterStride(startingAt i: Index) -> Int {
_internalInvariant(i._isScalarAligned)
// Fast path if the index already has its stride cached. Substrings that
// don't start on a grapheme cluster boundary may have different grapheme
// break positions than their base string, so we must ignore the cache in
// that case.
if let d = i.characterStride, _knownToStartOnGraphemeBreak {
// Make sure a cached stride cannot lead us beyond the substring's end
// index. This can happen if `self` ends between grapheme cluster
// boundaries.
return Swift.min(d, endIndex._encodedOffset &- i._encodedOffset)
}
if i == endIndex { return 0 }
return _slice.base._guts._opaqueCharacterStride(
startingAt: i._encodedOffset, in: _encodedOffsetRange)
}
internal func _characterStride(endingAt i: Index) -> Int {
_internalInvariant(i._isScalarAligned)
if i == startIndex { return 0 }
return _slice.base._guts._opaqueCharacterStride(
endingAt: i._encodedOffset, in: _encodedOffsetRange)
}
}
#if SWIFT_ENABLE_REFLECTION
extension Substring: CustomReflectable {
public var customMirror: Mirror { return String(self).customMirror }
}
#endif
extension Substring: CustomStringConvertible {
@inlinable @inline(__always)
public var description: String { return String(self) }
}
extension Substring: CustomDebugStringConvertible {
public var debugDescription: String { return String(self).debugDescription }
}
extension Substring: LosslessStringConvertible {
public init(_ content: String) {
let range = Range(_uncheckedBounds: (content.startIndex, content.endIndex))
self.init(_unchecked: Slice(base: content, bounds: range))
}
}
extension Substring {
@frozen
public struct UTF8View: Sendable {
@usableFromInline
internal var _slice: Slice<String.UTF8View>
/// Creates an instance that slices `base` at `_bounds`.
@inlinable
internal init(_ base: String.UTF8View, _bounds: Range<Index>) {
_slice = Slice(
base: String(base._guts).utf8,
bounds: _bounds)
}
}
}
extension Substring.UTF8View: BidirectionalCollection {
public typealias Index = String.UTF8View.Index
public typealias Indices = String.UTF8View.Indices
public typealias Element = String.UTF8View.Element
public typealias SubSequence = Substring.UTF8View
//
// Plumb slice operations through
//
@inlinable
public var startIndex: Index { return _slice.startIndex }
@inlinable
public var endIndex: Index { return _slice.endIndex }
@inlinable
public subscript(index: Index) -> Element { return _slice[index] }
@inlinable
public var indices: Indices { return _slice.indices }
@inlinable
public func index(after i: Index) -> Index { return _slice.index(after: i) }
@inlinable
public func formIndex(after i: inout Index) {
// TODO(lorentey): Review index validation
_slice.formIndex(after: &i)
}
@inlinable
public func index(_ i: Index, offsetBy n: Int) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(i, offsetBy: n)
}
@inlinable
public func index(
_ i: Index, offsetBy n: Int, limitedBy limit: Index
) -> Index? {
// TODO(lorentey): Review index validation
return _slice.index(i, offsetBy: n, limitedBy: limit)
}
@inlinable
public func distance(from start: Index, to end: Index) -> Int {
// TODO(lorentey): Review index validation
return _slice.distance(from: start, to: end)
}
@_alwaysEmitIntoClient
@inlinable
public func withContiguousStorageIfAvailable<R>(
_ body: (UnsafeBufferPointer<Element>) throws -> R
) rethrows -> R? {
return try _slice.withContiguousStorageIfAvailable(body)
}
@inlinable
public func _failEarlyRangeCheck(_ index: Index, bounds: Range<Index>) {
// TODO(lorentey): Review index validation
_slice._failEarlyRangeCheck(index, bounds: bounds)
}
@inlinable
public func _failEarlyRangeCheck(
_ range: Range<Index>, bounds: Range<Index>
) {
// TODO(lorentey): Review index validation
_slice._failEarlyRangeCheck(range, bounds: bounds)
}
@inlinable
public func index(before i: Index) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(before: i)
}
@inlinable
public func formIndex(before i: inout Index) {
// TODO(lorentey): Review index validation
_slice.formIndex(before: &i)
}
@inlinable
public subscript(r: Range<Index>) -> Substring.UTF8View {
// TODO(lorentey): Review index validation
// FIXME(strings): tests.
_precondition(r.lowerBound >= startIndex && r.upperBound <= endIndex,
"UTF8View index range out of bounds")
return Substring.UTF8View(_slice.base, _bounds: r)
}
}
extension Substring {
@inlinable
public var utf8: UTF8View {
get {
return base.utf8[startIndex..<endIndex]
}
set {
self = Substring(newValue)
}
}
/// Creates a Substring having the given content.
///
/// - Complexity: O(1)
public init(_ content: UTF8View) {
self = String(
content._slice.base._guts
)[content.startIndex..<content.endIndex]
}
}
extension String {
/// Creates a String having the given content.
///
/// If `codeUnits` is an ill-formed code unit sequence, the result is `nil`.
///
/// - Complexity: O(N), where N is the length of the resulting `String`'s
/// UTF-16.
public init?(_ codeUnits: Substring.UTF8View) {
let guts = codeUnits._slice.base._guts
guard guts.isOnUnicodeScalarBoundary(codeUnits._slice.startIndex),
guts.isOnUnicodeScalarBoundary(codeUnits._slice.endIndex) else {
return nil
}
self = String(Substring(codeUnits))
}
}
extension Substring {
@frozen
public struct UTF16View: Sendable {
@usableFromInline
internal var _slice: Slice<String.UTF16View>
/// Creates an instance that slices `base` at `_bounds`.
@inlinable
internal init(_ base: String.UTF16View, _bounds: Range<Index>) {
// TODO(lorentey): Review index validation
_slice = Slice(
base: String(base._guts).utf16,
bounds: _bounds)
}
}
}
extension Substring.UTF16View: BidirectionalCollection {
public typealias Index = String.UTF16View.Index
public typealias Indices = String.UTF16View.Indices
public typealias Element = String.UTF16View.Element
public typealias SubSequence = Substring.UTF16View
//
// Plumb slice operations through
//
@inlinable
public var startIndex: Index { return _slice.startIndex }
@inlinable
public var endIndex: Index { return _slice.endIndex }
@inlinable
public subscript(index: Index) -> Element {
// TODO(lorentey): Review index validation
return _slice[index]
}
@inlinable
public var indices: Indices { return _slice.indices }
@inlinable
public func index(after i: Index) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(after: i)
}
@inlinable
public func formIndex(after i: inout Index) {
// TODO(lorentey): Review index validation
_slice.formIndex(after: &i)
}
@inlinable
public func index(_ i: Index, offsetBy n: Int) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(i, offsetBy: n)
}
@inlinable
public func index(
_ i: Index, offsetBy n: Int, limitedBy limit: Index
) -> Index? {
// TODO(lorentey): Review index validation
return _slice.index(i, offsetBy: n, limitedBy: limit)
}
@inlinable
public func distance(from start: Index, to end: Index) -> Int {
// TODO(lorentey): Review index validation
return _slice.distance(from: start, to: end)
}
@inlinable
public func _failEarlyRangeCheck(_ index: Index, bounds: Range<Index>) {
// TODO(lorentey): Review index validation
_slice._failEarlyRangeCheck(index, bounds: bounds)
}
@inlinable
public func _failEarlyRangeCheck(
_ range: Range<Index>, bounds: Range<Index>
) {
// TODO(lorentey): Review index validation
_slice._failEarlyRangeCheck(range, bounds: bounds)
}
@inlinable
public func index(before i: Index) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(before: i)
}
@inlinable
public func formIndex(before i: inout Index) {
// TODO(lorentey): Review index validation
_slice.formIndex(before: &i)
}
@inlinable
public subscript(r: Range<Index>) -> Substring.UTF16View {
// TODO(lorentey): Review index validation
return Substring.UTF16View(_slice.base, _bounds: r)
}
}
extension Substring {
@inlinable
public var utf16: UTF16View {
get {
return base.utf16[startIndex..<endIndex]
}
set {
self = Substring(newValue)
}
}
/// Creates a Substring having the given content.
///
/// - Complexity: O(1)
public init(_ content: UTF16View) {
self = String(
content._slice.base._guts
)[content.startIndex..<content.endIndex]
}
}
extension String {
/// Creates a String having the given content.
///
/// If `codeUnits` is an ill-formed code unit sequence, the result is `nil`.
///
/// - Complexity: O(N), where N is the length of the resulting `String`'s
/// UTF-16.
public init?(_ codeUnits: Substring.UTF16View) {
let guts = codeUnits._slice.base._guts
guard guts.isOnUnicodeScalarBoundary(codeUnits._slice.startIndex),
guts.isOnUnicodeScalarBoundary(codeUnits._slice.endIndex) else {
return nil
}
self = String(Substring(codeUnits))
}
}
extension Substring {
@frozen
public struct UnicodeScalarView: Sendable {
@usableFromInline
internal var _slice: Slice<String.UnicodeScalarView>
/// Creates an instance that slices `base` at `_bounds`.
@inlinable
internal init(_ base: String.UnicodeScalarView, _bounds: Range<Index>) {
let start = base._guts.scalarAlign(_bounds.lowerBound)
let end = base._guts.scalarAlign(_bounds.upperBound)
_slice = Slice(
base: String(base._guts).unicodeScalars,
bounds: Range(_uncheckedBounds: (start, end)))
}
}
}
extension Substring.UnicodeScalarView: BidirectionalCollection {
public typealias Index = String.UnicodeScalarView.Index
public typealias Indices = String.UnicodeScalarView.Indices
public typealias Element = String.UnicodeScalarView.Element
public typealias SubSequence = Substring.UnicodeScalarView
//
// Plumb slice operations through
//
@inlinable
public var startIndex: Index { return _slice.startIndex }
@inlinable
public var endIndex: Index { return _slice.endIndex }
@inlinable
public subscript(index: Index) -> Element {
// TODO(lorentey): Review index validation
return _slice[index]
}
@inlinable
public var indices: Indices {
// TODO(lorentey): Review index validation
return _slice.indices
}
@inlinable
public func index(after i: Index) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(after: i)
}
@inlinable
public func formIndex(after i: inout Index) {
// TODO(lorentey): Review index validation
_slice.formIndex(after: &i)
}
@inlinable
public func index(_ i: Index, offsetBy n: Int) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(i, offsetBy: n)
}
@inlinable
public func index(
_ i: Index, offsetBy n: Int, limitedBy limit: Index
) -> Index? {
// TODO(lorentey): Review index validation
return _slice.index(i, offsetBy: n, limitedBy: limit)
}
@inlinable
public func distance(from start: Index, to end: Index) -> Int {
// TODO(lorentey): Review index validation
return _slice.distance(from: start, to: end)
}
@inlinable
public func _failEarlyRangeCheck(_ index: Index, bounds: Range<Index>) {
// TODO(lorentey): Review index validation
_slice._failEarlyRangeCheck(index, bounds: bounds)
}
@inlinable
public func _failEarlyRangeCheck(
_ range: Range<Index>, bounds: Range<Index>
) {
// TODO(lorentey): Review index validation
_slice._failEarlyRangeCheck(range, bounds: bounds)
}
@inlinable
public func index(before i: Index) -> Index {
// TODO(lorentey): Review index validation
return _slice.index(before: i)
}
@inlinable
public func formIndex(before i: inout Index) {
// TODO(lorentey): Review index validation
_slice.formIndex(before: &i)
}
@inlinable
public subscript(r: Range<Index>) -> Substring.UnicodeScalarView {
// TODO(lorentey): Review index validation
_failEarlyRangeCheck(r, bounds: startIndex..<endIndex)
return Substring.UnicodeScalarView(_slice.base, _bounds: r)
}
}
extension Substring {
@inlinable
public var unicodeScalars: UnicodeScalarView {
get {
return base.unicodeScalars[startIndex..<endIndex]
}
set {
self = Substring(newValue)
}
}
/// Creates a Substring having the given content.
///
/// - Complexity: O(1)
public init(_ content: UnicodeScalarView) {
self = String(
content._slice.base._guts
)[content.startIndex..<content.endIndex]
}
}
extension String {
/// Creates a String having the given content.
///
/// - Complexity: O(N), where N is the length of the resulting `String`'s
/// UTF-16.
public init(_ content: Substring.UnicodeScalarView) {
self = String(Substring(content))
}
}
// FIXME: The other String views should be RangeReplaceable too.
extension Substring.UnicodeScalarView: RangeReplaceableCollection {
@inlinable
public init() { _slice = Slice.init() }
public mutating func replaceSubrange<C: Collection>(
_ subrange: Range<Index>, with replacement: C
) where C.Element == Element {
// TODO(lorentey): Review index validation
let subrange = _slice.base._guts.validateScalarRange(
subrange, from: startIndex, to: endIndex)
_slice.replaceSubrange(subrange, with: replacement)
}
}
extension Substring: RangeReplaceableCollection {
@_specialize(where S == String)
@_specialize(where S == Substring)
@_specialize(where S == Array<Character>)
public init<S: Sequence>(_ elements: S)
where S.Element == Character {
if let str = elements as? String {
self.init(str)
return
}
if let subStr = elements as? Substring {
self = subStr
return
}
self.init(String(elements))
}
@inlinable // specialize
public mutating func append<S: Sequence>(contentsOf elements: S)
where S.Element == Character {
var string = String(self)
self = Substring() // Keep unique storage if possible
string.append(contentsOf: elements)
self = Substring(string)
}
}
extension Substring {
public func lowercased() -> String {
return String(self).lowercased()
}
public func uppercased() -> String {
return String(self).uppercased()
}
public func filter(
_ isIncluded: (Element) throws -> Bool
) rethrows -> String {
return try String(self.lazy.filter(isIncluded))
}
}
extension Substring: TextOutputStream {
public mutating func write(_ other: String) {
append(contentsOf: other)
}
}
extension Substring: TextOutputStreamable {
@inlinable // specializable
public func write<Target: TextOutputStream>(to target: inout Target) {
target.write(String(self))
}
}
extension Substring: ExpressibleByUnicodeScalarLiteral {
@inlinable
public init(unicodeScalarLiteral value: String) {
self.init(value)
}
}
extension Substring: ExpressibleByExtendedGraphemeClusterLiteral {
@inlinable
public init(extendedGraphemeClusterLiteral value: String) {
self.init(value)
}
}
extension Substring: ExpressibleByStringLiteral {
@inlinable
public init(stringLiteral value: String) {
self.init(value)
}
}
// String/Substring Slicing
extension String {
@available(swift, introduced: 4)
public subscript(r: Range<Index>) -> Substring {
let r = _guts.validateScalarRange(r)
return Substring(_unchecked: Slice(base: self, bounds: r))
}
}
extension Substring {
@available(swift, introduced: 4)
public subscript(r: Range<Index>) -> Substring {
let r = _validateScalarRange(r)
return Substring(_unchecked: Slice(base: base, bounds: r))
}
}