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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2021-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
@_spi(Unstable) internal import CollectionsInternal
#elseif canImport(_RopeModule)
internal import _RopeModule
#elseif canImport(_FoundationCollections)
internal import _FoundationCollections
#endif
// MARK: AttributedStringKey
extension Decoder {
// FIXME: This ought to be public API in the stdlib.
fileprivate func _dataCorruptedError(_ message: String) -> DecodingError {
let context = DecodingError.Context(
codingPath: self.codingPath,
debugDescription: message)
return DecodingError.dataCorrupted(context)
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
public protocol EncodableAttributedStringKey : AttributedStringKey {
static func encode(_ value: Value, to encoder: Encoder) throws
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
public protocol DecodableAttributedStringKey : AttributedStringKey {
static func decode(from decoder: Decoder) throws -> Value
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
public typealias CodableAttributedStringKey = EncodableAttributedStringKey & DecodableAttributedStringKey
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension EncodableAttributedStringKey where Value : Encodable {
public static func encode(_ value: Value, to encoder: Encoder) throws {
try value.encode(to: encoder)
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension DecodableAttributedStringKey where Value : Decodable {
public static func decode(from decoder: Decoder) throws -> Value {
return try Value.init(from: decoder)
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
public protocol MarkdownDecodableAttributedStringKey : AttributedStringKey {
static func decodeMarkdown(from decoder: Decoder) throws -> Value
static var markdownName: String { get }
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension MarkdownDecodableAttributedStringKey {
public static var markdownName: String { name }
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension MarkdownDecodableAttributedStringKey where Self : DecodableAttributedStringKey {
public static func decodeMarkdown(from decoder: Decoder) throws -> Value {
try Self.decode(from: decoder)
}
}
#if FOUNDATION_FRAMEWORK
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension EncodableAttributedStringKey where Value : NSSecureCoding & NSObject {
public static func encode(_ value: Value, to encoder: Encoder) throws {
let data = try NSKeyedArchiver.archivedData(withRootObject: value, requiringSecureCoding: true)
var container = encoder.singleValueContainer()
try container.encode(data)
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension DecodableAttributedStringKey where Value : NSSecureCoding & NSObject {
public static func decode(from decoder: Decoder) throws -> Value {
let container = try decoder.singleValueContainer()
let data = try container.decode(Data.self)
guard
let result = try NSKeyedUnarchiver.unarchivedObject(ofClass: Value.self, from: data)
else {
throw decoder._dataCorruptedError("Unable to unarchive object, result was nil")
}
return result
}
}
#endif // FOUNDATION_FRAMEWORK
// MARK: AttributedString CodableWithConfiguration Conformance
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
public struct AttributeScopeCodableConfiguration : Sendable {
internal let attributesTable : [String : any AttributedStringKey.Type]
internal init(
_ attributesTable: [String : any AttributedStringKey.Type]
) {
self.attributesTable = attributesTable
}
internal init<S: AttributeScope>(
_ scope: S.Type
) {
#if FOUNDATION_FRAMEWORK
self.attributesTable = S.attributeKeyTypes()
#else
self.attributesTable = [:]
#endif // FOUNDATION_FRAMEWORK
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension AttributeScope {
public static var encodingConfiguration: AttributeScopeCodableConfiguration { AttributeScopeCodableConfiguration(Self.self) }
public static var decodingConfiguration: AttributeScopeCodableConfiguration { AttributeScopeCodableConfiguration(Self.self) }
}
#if FOUNDATION_FRAMEWORK
// TODO: Support AttributedString codable conformance in FoundationPreview
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension AttributedString : Codable {
public func encode(to encoder: Encoder) throws {
let conf = AttributeScopeCodableConfiguration(_loadDefaultAttributes())
try encode(to: encoder, configuration: conf)
}
public init(from decoder: Decoder) throws {
let conf = AttributeScopeCodableConfiguration(_loadDefaultAttributes())
try self.init(from: decoder, configuration: conf)
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension AttributedString : CodableWithConfiguration {
private enum CodingKeys : String, CodingKey {
case runs
case attributeTable
}
private struct AttributeKey: CodingKey {
var stringValue: String
var intValue: Int?
init?(stringValue: String) {
self.stringValue = stringValue
}
init?(intValue: Int) {
self.stringValue = "\(intValue)"
self.intValue = intValue
}
}
public func encode(to encoder: Encoder, configuration: AttributeScopeCodableConfiguration) throws {
if self._guts.runs.count == 0 || (self._guts.runs.count == 1 && self._guts.runs.first!.attributes.isEmpty) {
var container = encoder.singleValueContainer()
try container.encode(String(self._guts.string))
return
}
var runsContainer: UnkeyedEncodingContainer
var attributeTable = [_AttributeStorage : Int]()
var attributeTableNextIndex = 0
var attributeTableContainer: UnkeyedEncodingContainer?
if self._guts.runs.count <= 10 {
runsContainer = encoder.unkeyedContainer()
} else {
var topLevelContainer = encoder.container(keyedBy: CodingKeys.self)
runsContainer = topLevelContainer.nestedUnkeyedContainer(forKey: .runs)
attributeTableContainer = topLevelContainer.nestedUnkeyedContainer(forKey: .attributeTable)
}
var currentIndex = self.startIndex._value
for run in self._guts.runs {
let currentEndIndex = self._guts.string.utf8.index(currentIndex, offsetBy: run.length)
let range = currentIndex ..< currentEndIndex
let text = String(self._guts.string.unicodeScalars[range])
try runsContainer.encode(text)
if !run.attributes.isEmpty, var attributeTableContainer = attributeTableContainer {
let index = attributeTable[run.attributes, default: attributeTableNextIndex]
if index == attributeTableNextIndex {
try Self.encodeAttributeContainer(
run.attributes,
to: attributeTableContainer.superEncoder(),
configuration: configuration)
attributeTable[run.attributes] = index
attributeTableNextIndex += 1
}
try runsContainer.encode(index)
} else {
try Self.encodeAttributeContainer(
run.attributes,
to: runsContainer.superEncoder(),
configuration: configuration)
}
currentIndex = currentEndIndex
}
}
fileprivate static func encodeAttributeContainer(
_ attributes: _AttributeStorage,
to encoder: Encoder,
configuration: AttributeScopeCodableConfiguration
) throws {
var attributesContainer = encoder.container(keyedBy: AttributeKey.self)
for name in attributes.keys {
if
let attributeKeyType = configuration.attributesTable[name],
let encodableAttributeType = attributeKeyType as? any EncodableAttributedStringKey.Type
{
let attributeEncoder = attributesContainer.superEncoder(forKey: AttributeKey(stringValue: name)!)
func project<K: EncodableAttributedStringKey>(_: K.Type) throws {
try K.encode(attributes[K.self]!, to: attributeEncoder)
}
try project(encodableAttributeType)
} // else: the attribute was not in the provided scope or was not encodable, so drop it
}
}
public init(from decoder: Decoder, configuration: AttributeScopeCodableConfiguration) throws {
if let svc = try? decoder.singleValueContainer(), let str = try? svc.decode(String.self) {
self.init(str)
return
}
var runsContainer: UnkeyedDecodingContainer
var attributeTable: [_AttributeStorage]?
if let runs = try? decoder.unkeyedContainer() {
runsContainer = runs
attributeTable = nil
} else {
let topLevelContainer = try decoder.container(keyedBy: CodingKeys.self)
runsContainer = try topLevelContainer.nestedUnkeyedContainer(forKey: .runs)
attributeTable = try Self.decodeAttributeTable(
from: topLevelContainer.superDecoder(forKey: .attributeTable),
configuration: configuration)
}
var string: BigString = ""
var runs = Rope<_InternalRun>()
var hasConstrainedAttributes = false
while !runsContainer.isAtEnd {
let substring = try runsContainer.decode(String.self)
var attributes: _AttributeStorage
if let tableIndex = try? runsContainer.decode(Int.self) {
guard let attributeTable = attributeTable else {
throw decoder._dataCorruptedError(
"Attribute table index present with no reference attribute table")
}
guard tableIndex >= 0 && tableIndex < attributeTable.count else {
throw decoder._dataCorruptedError(
"""
Attribute table index \(tableIndex) is not within the bounds of \
the attribute table [0...\(attributeTable.count - 1)]
""")
}
attributes = attributeTable[tableIndex]
} else {
attributes = try Self.decodeAttributeContainer(
from: try runsContainer.superDecoder(),
configuration: configuration)
}
if substring.isEmpty && (runs.count > 0 || !runsContainer.isAtEnd) {
throw decoder._dataCorruptedError(
"When multiple runs are present, runs with empty substrings are not allowed")
}
if substring.isEmpty && !attributes.isEmpty {
throw decoder._dataCorruptedError(
"Runs of empty substrings cannot contain attributes")
}
string.append(contentsOf: substring)
if let previous = runs.last, previous.attributes == attributes {
let last = runs.index(before: runs.endIndex)
runs[last].length += substring.utf8.count
} else {
runs.append(_InternalRun(length: substring.utf8.count, attributes: attributes))
if !hasConstrainedAttributes {
hasConstrainedAttributes = attributes.hasConstrainedAttributes
}
}
}
if runs.isEmpty {
throw decoder._dataCorruptedError("Runs container must not be empty")
}
self.init(Guts(string: string, runs: _InternalRuns(runs)))
self._guts.adjustConstrainedAttributesForUntrustedRuns()
}
private static func decodeAttributeTable(
from decoder: Decoder,
configuration: AttributeScopeCodableConfiguration
) throws -> [_AttributeStorage] {
var container = try decoder.unkeyedContainer()
var table = [_AttributeStorage]()
if let size = container.count {
table.reserveCapacity(size)
}
while !container.isAtEnd {
table.append(try decodeAttributeContainer(from: try container.superDecoder(), configuration: configuration))
}
return table
}
fileprivate static func decodeAttributeContainer(
from decoder: Decoder,
configuration: AttributeScopeCodableConfiguration
) throws -> _AttributeStorage {
let attributesContainer = try decoder.container(keyedBy: AttributeKey.self)
var attributes = _AttributeStorage()
for key in attributesContainer.allKeys {
let name = key.stringValue
if
let attributeKeyType = configuration.attributesTable[name],
let decodableAttributeType = attributeKeyType as? any DecodableAttributedStringKey.Type
{
func project<K: DecodableAttributedStringKey>(_: K.Type) throws {
attributes[K.self] = try K.decode(from: try attributesContainer.superDecoder(forKey: key))
}
try project(decodableAttributeType)
}
// else: the attribute was not in the provided scope or wasn't decodable, so drop it
}
return attributes
}
}
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension AttributeContainer : CodableWithConfiguration {
public func encode(to encoder: Encoder, configuration: AttributeScopeCodableConfiguration) throws {
try AttributedString.encodeAttributeContainer(self.storage, to: encoder, configuration: configuration)
}
public init(from decoder: Decoder, configuration: AttributeScopeCodableConfiguration) throws {
self.storage = try AttributedString.decodeAttributeContainer(from: decoder, configuration: configuration)
}
}
#endif // FOUNDATION_FRAMEWORK
@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
extension CodableConfiguration where ConfigurationProvider : AttributeScope {
public init(wrappedValue: T, from keyPath: KeyPath<AttributeScopes, ConfigurationProvider.Type>) {
self.wrappedValue = wrappedValue
}
}
|