mirror of
https://github.com/apple/swift-foundation.git
synced 2025-05-21 13:02:30 +08:00
* rdar://107778676 Stop vendoring the Collections package * rdar://107778676 Fix test expectation AttributedString.CharacterView needs to round all indices down to the nearest Character boundary to avoid semantic issues with its Collection conformance. This means that CharacterView slices can never start or end in between Character boundaries. * Remove a stray print statement
209 lines
7.5 KiB
Swift
209 lines
7.5 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2020-2023 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if FOUNDATION_FRAMEWORK
|
|
@_implementationOnly @_spi(Unstable) import CollectionsInternal
|
|
#else
|
|
import _RopeModule
|
|
#endif
|
|
|
|
@dynamicMemberLookup
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
public struct AttributedSubstring : Sendable {
|
|
/// The guts of the base attributed string.
|
|
internal var _guts: AttributedString.Guts
|
|
|
|
/// The boundary range of this substring.
|
|
///
|
|
/// This addresses an arbitrary range of Unicode scalars -- substrings don't necessarily
|
|
/// start and end on `Character` boundaries in the base string. The precise boundaries are
|
|
/// maintained and exposed via the `unicodeScalars` view, but not via `characters`: when
|
|
/// accessing characters, the end points are unconditionally and implicitly rounded down
|
|
/// to character boundaries. (This is to prevent having to resync grapheme breaks on slicing
|
|
/// operations -- otherwise substring slicing would be an O(n) operation.)
|
|
internal var _range: Range<AttributedString.Index>
|
|
|
|
internal var _identity: Int = 0
|
|
|
|
internal init(_ guts: AttributedString.Guts, _ range: Range<AttributedString.Index>) {
|
|
self._guts = guts
|
|
self._range = range
|
|
}
|
|
|
|
public init() {
|
|
let str = AttributedString()
|
|
self.init(str._guts, str.startIndex ..< str.endIndex)
|
|
}
|
|
}
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
extension AttributedSubstring {
|
|
public var base: AttributedString {
|
|
return AttributedString(_guts)
|
|
}
|
|
|
|
|
|
internal var _unicodeScalars: BigSubstring.UnicodeScalarView {
|
|
_guts.string.unicodeScalars[_range._bstringRange]
|
|
}
|
|
|
|
internal var _characters: BigSubstring {
|
|
_guts.string[_range._bstringRange]
|
|
}
|
|
}
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
extension AttributedSubstring { // CustomStringConvertible
|
|
public var description: String {
|
|
var result = ""
|
|
self._guts.enumerateRuns(containing: self._guts.utf8OffsetRange(from: _range)) { run, loc, _, modified in
|
|
let range = self._guts.utf8IndexRange(from: loc ..< loc + run.length)
|
|
result += (result.isEmpty ? "" : "\n") + "\(String(self.characters[range])) \(run.attributes)"
|
|
modified = .guaranteedNotModified
|
|
}
|
|
return result
|
|
}
|
|
}
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
extension AttributedSubstring { // Equatable
|
|
public static func == (lhs: Self, rhs: Self) -> Bool {
|
|
if lhs._guts === rhs._guts && lhs._range == rhs._range {
|
|
return true
|
|
}
|
|
return AttributedString.Guts.characterwiseIsEqual(
|
|
lhs._guts, in: lhs._bounds,
|
|
to: rhs._guts, in: rhs._bounds)
|
|
}
|
|
}
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
extension AttributedSubstring : AttributedStringProtocol {
|
|
public var startIndex: AttributedString.Index {
|
|
get {
|
|
return _range.lowerBound
|
|
}
|
|
}
|
|
|
|
public var endIndex: AttributedString.Index {
|
|
get {
|
|
return _range.upperBound
|
|
}
|
|
}
|
|
|
|
internal mutating func ensureUniqueReference() {
|
|
// Note: slices should never discard the data outside their bounds, so we must make a
|
|
// copy of the entire base string here.
|
|
//
|
|
// (Discarding out-of-range data would change index values, interfere with "in-place"
|
|
// mutations of slices via the subscript accessors, and it would confuse the semantics of
|
|
// the `base` property.)
|
|
if !isKnownUniquelyReferenced(&_guts) {
|
|
_guts = _guts.copy()
|
|
}
|
|
}
|
|
|
|
public mutating func setAttributes(_ attributes: AttributeContainer) {
|
|
ensureUniqueReference()
|
|
_guts.set(attributes: attributes, in: _range)
|
|
}
|
|
|
|
public mutating func mergeAttributes(_ attributes: AttributeContainer, mergePolicy: AttributedString.AttributeMergePolicy = .keepNew) {
|
|
ensureUniqueReference()
|
|
_guts.add(attributes: attributes, in: _range, mergePolicy: mergePolicy)
|
|
}
|
|
|
|
public mutating func replaceAttributes(_ attributes: AttributeContainer, with others: AttributeContainer) {
|
|
guard attributes != others else {
|
|
return
|
|
}
|
|
ensureUniqueReference()
|
|
let hasConstrainedAttributes = attributes.storage.hasConstrainedAttributes || others.storage.hasConstrainedAttributes
|
|
var fixupRanges = [Range<Int>]()
|
|
_guts.enumerateRuns(containing: _range._utf8OffsetRange) { run, location, _, modified in
|
|
guard run.matches(attributes) else {
|
|
modified = .guaranteedNotModified
|
|
return
|
|
}
|
|
modified = .guaranteedModified
|
|
for key in attributes.storage.keys {
|
|
run.attributes[key] = nil
|
|
}
|
|
run.attributes.mergeIn(others)
|
|
if hasConstrainedAttributes {
|
|
fixupRanges.append(location ..< location + run.length)
|
|
}
|
|
}
|
|
|
|
for range in fixupRanges {
|
|
// FIXME: Collect boundary constraints.
|
|
_guts.enforceAttributeConstraintsAfterMutation(in: range, type: .attributes)
|
|
}
|
|
}
|
|
|
|
public var runs : AttributedString.Runs {
|
|
get { .init(_guts, _range) }
|
|
}
|
|
|
|
public var characters : AttributedString.CharacterView {
|
|
return AttributedString.CharacterView(_guts, startIndex ..< endIndex)
|
|
}
|
|
|
|
public var unicodeScalars : AttributedString.UnicodeScalarView {
|
|
return AttributedString.UnicodeScalarView(_guts, startIndex ..< endIndex)
|
|
}
|
|
|
|
public subscript<R: RangeExpression>(bounds: R) -> AttributedSubstring where R.Bound == AttributedString.Index {
|
|
return AttributedSubstring(_guts, bounds.relative(to: characters))
|
|
}
|
|
}
|
|
|
|
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
|
|
extension AttributedSubstring {
|
|
@preconcurrency
|
|
public subscript<K: AttributedStringKey>(_: K.Type) -> K.Value? where K.Value : Sendable {
|
|
get { _guts.getValue(in: _range, key: K.self)?.rawValue(as: K.self) }
|
|
set {
|
|
ensureUniqueReference()
|
|
if let v = newValue {
|
|
_guts.add(value: v, in: _range, key: K.self)
|
|
} else {
|
|
_guts.remove(attribute: K.self, in: _range)
|
|
}
|
|
}
|
|
}
|
|
|
|
@preconcurrency
|
|
public subscript<K: AttributedStringKey>(dynamicMember keyPath: KeyPath<AttributeDynamicLookup, K>) -> K.Value? where K.Value : Sendable {
|
|
get { self[K.self] }
|
|
set { self[K.self] = newValue }
|
|
}
|
|
|
|
public subscript<S: AttributeScope>(dynamicMember keyPath: KeyPath<AttributeScopes, S.Type>) -> ScopedAttributeContainer<S> {
|
|
get {
|
|
return ScopedAttributeContainer(_guts.getValues(in: _range))
|
|
}
|
|
_modify {
|
|
ensureUniqueReference()
|
|
var container = ScopedAttributeContainer<S>()
|
|
defer {
|
|
if let removedKey = container.removedKey {
|
|
_guts.remove(key: removedKey, in: _range)
|
|
} else {
|
|
_guts.add(attributes: AttributeContainer(container.storage), in: _range)
|
|
}
|
|
}
|
|
yield &container
|
|
}
|
|
}
|
|
}
|