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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2024 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
internal import _ForSwiftFoundation
#endif
internal import _FoundationCShims
fileprivate let stringEncodingAttributeName = "com.apple.TextEncoding"
private struct ExtendingToUTF16Sequence<Base: Sequence<UInt8>> : Sequence {
typealias Element = UInt16
struct Iterator : IteratorProtocol {
private var base: Base.Iterator
init(_ base: Base.Iterator) {
self.base = base
}
mutating func next() -> Element? {
guard let value = base.next() else { return nil }
return UInt16(value)
}
}
private let base: Base
init(_ base: Base) {
self.base = base
}
func makeIterator() -> Iterator {
Iterator(base.makeIterator())
}
}
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension String {
/// Returns a `String` initialized by converting given `data` into
/// Unicode characters using a given `encoding`.
public init?(data: __shared Data, encoding: Encoding) {
guard let s = String(bytes: data, encoding: encoding) else {
return nil
}
self = s
}
/// Creates a new string equivalent to the given bytes interpreted in the specified encoding.
/// Note: This API does not interpret embedded nulls as termination of the string. Use `String?(validatingCString:)` instead for null-terminated C strings.
/// - Parameters:
/// - bytes: A sequence of bytes to interpret using `encoding`.
/// - encoding: The encoding to use to interpret `bytes`.
public init?<S: Sequence>(bytes: __shared S, encoding: Encoding)
where S.Iterator.Element == UInt8
{
switch encoding {
case .ascii:
func makeString(buffer: UnsafeBufferPointer<UInt8>) -> String? {
return String(_validating: buffer, as: Unicode.ASCII.self)
}
if let string = bytes.withContiguousStorageIfAvailable(makeString) ?? Array(bytes).withUnsafeBufferPointer(makeString) {
self = string
} else {
#if FOUNDATION_FRAMEWORK
// Compatibility path: for callers that expect this API to perform null termination (it does not, it uses the full length of the sequence), NSString would happily return a value with embedded null values, even if it has garbage after the null byte. This sometimes worked, if the result was only inspected at the start, e.g. using prefix functions.
if Self.compatibility1 {
let fromNSString : String? = Array(bytes).withUnsafeBufferPointer { bytes in
if let ns = NSString(bytes: bytes.baseAddress.unsafelyUnwrapped, length: bytes.count, encoding: encoding.rawValue) {
return String._unconditionallyBridgeFromObjectiveC(ns)
} else {
return nil
}
}
if let fromNSString {
self = fromNSString
} else {
return nil
}
} else {
return nil
}
#else
// String is not valid ASCII
return nil
#endif
}
case .utf8:
func makeString(buffer: UnsafeBufferPointer<UInt8>) -> String? {
if let string = String._tryFromUTF8(buffer) {
return string
}
return String(_validating: buffer, as: UTF8.self)
}
if let string = bytes.withContiguousStorageIfAvailable(makeString) ?? Array(bytes).withUnsafeBufferPointer(makeString) {
self = string
} else {
// String is not valid UTF8
return nil
}
case .utf16BigEndian, .utf16LittleEndian, .utf16:
// See also the package extension String?(_utf16:), which does something similar to this without the swapping of big/little.
let e = Endianness(encoding)
let maybe = bytes.withContiguousStorageIfAvailable { buffer -> String? in
withUnsafeTemporaryAllocation(of: UTF8.CodeUnit.self, capacity: buffer.count * 3) { contents in
let s = UTF16EndianAdaptor(buffer, endianness: e)
var count = 0
let error = transcode(s.makeIterator(), from: UTF16.self, to: UTF8.self, stoppingOnError: true) { codeUnit in
contents[count] = codeUnit
count += 1
}
guard !error else {
return nil
}
// Unfortunately no way to skip the validation inside String at this time
return String._tryFromUTF8(UnsafeBufferPointer(rebasing: contents[..<count]))
}
}
if let maybe, let maybe {
self = maybe
} else if let result = String(_validating: UTF16EndianAdaptor(bytes, endianness: e), as: UTF16.self) {
self = result
} else {
return nil
}
case .utf32BigEndian, .utf32LittleEndian, .utf32:
let e = Endianness(encoding)
let maybe = bytes.withContiguousStorageIfAvailable { buffer -> String? in
withUnsafeTemporaryAllocation(of: UTF8.CodeUnit.self, capacity: buffer.count * 3) { contents in
let s = UTF32EndianAdaptor(buffer, endianness: e)
var count = 0
let error = transcode(s.makeIterator(), from: UTF32.self, to: UTF8.self, stoppingOnError: true) { codeUnit in
contents[count] = codeUnit
count += 1
}
guard !error else {
return nil
}
// Unfortunately no way to skip the validation inside String at this time
return String._tryFromUTF8(UnsafeBufferPointer(rebasing: contents[..<count]))
}
}
if let maybe, let maybe {
self = maybe
} else if let result = String(_validating: UTF32EndianAdaptor(bytes, endianness: e), as: UTF32.self) {
self = result
} else {
return nil
}
#if !FOUNDATION_FRAMEWORK
case .isoLatin1:
guard bytes.allSatisfy(\.isValidISOLatin1) else {
return nil
}
// isoLatin1 is an 8-bit encoding that represents a subset of UTF-16
// Map to 16-bit values and decode as UTF-16
self.init(_validating: ExtendingToUTF16Sequence(bytes), as: UTF16.self)
case .macOSRoman:
func buildString(_ bytes: UnsafeBufferPointer<UInt8>) -> String {
String(unsafeUninitializedCapacity: bytes.count * 3) { buffer in
var next = 0
for byte in bytes {
if Unicode.ASCII.isASCII(byte) {
buffer.initializeElement(at: next, to: byte)
next += 1
} else {
next = buffer.suffix(from: next).initialize(fromContentsOf: byte.macRomanNonASCIIAsUTF8)
}
}
return next
}
}
self = bytes.withContiguousStorageIfAvailable(buildString) ?? Array(bytes).withUnsafeBufferPointer(buildString)
#endif
default:
#if FOUNDATION_FRAMEWORK
// In the framework, we can fall back to NS/CFString to handle more esoteric encodings.
func makeNSString(bytes: UnsafeBufferPointer<UInt8>) -> String? {
if let ns = NSString(bytes: bytes.baseAddress.unsafelyUnwrapped, length: bytes.count, encoding: encoding.rawValue) {
return String._unconditionallyBridgeFromObjectiveC(ns)
} else {
return nil
}
}
if let string = (bytes.withContiguousStorageIfAvailable(makeNSString) ??
Array(bytes).withUnsafeBufferPointer(makeNSString)) {
self = string
} else {
return nil
}
#else
return nil
#endif
}
}
#if !NO_FILESYSTEM
/// Produces a string created by reading data from the file at a given path interpreted using a given encoding.
public init(contentsOfFile path: __shared String, encoding enc: Encoding) throws {
let data = try Data(contentsOfFile: path)
guard let str = String(data: data, encoding: enc) else {
throw CocoaError(.fileReadCorruptFile)
}
self = str
}
/// Produces a string created by reading data from a given URL interpreted using a given encoding.
public init(contentsOf url: __shared URL, encoding enc: Encoding) throws {
let data = try Data(contentsOf: url)
guard let str = String(data: data, encoding: enc) else {
throw CocoaError(.fileReadCorruptFile)
}
self = str
}
/// Produces a string created by reading data from the file at a given path and returns by reference the encoding used to interpret the file.
public init(contentsOfFile path: __shared String, usedEncoding: inout Encoding) throws {
self = try String(contentsOfFileOrPath: .path(path), usedEncoding: &usedEncoding)
}
/// Produces a string created by reading data from a given URL and returns by reference the encoding used to interpret the data.
public init(contentsOf url: __shared URL, usedEncoding: inout Encoding) throws {
self = try String(contentsOfFileOrPath: .url(url), usedEncoding: &usedEncoding)
}
internal init(contentsOfFileOrPath path: PathOrURL, usedEncoding: inout Encoding) throws {
var attrs: [String : Data] = [:]
let data = try readDataFromFile(path: path, reportProgress: false, maxLength: nil, options: [], attributesToRead: [stringEncodingAttributeName], attributes: &attrs)
if let encodingAttributeData = attrs[stringEncodingAttributeName], let extendedAttributeEncoding = encodingFromDataForExtendedAttribute(encodingAttributeData) {
guard let str = String(data: data, encoding: extendedAttributeEncoding) else {
throw CocoaError(.fileReadCorruptFile)
}
usedEncoding = extendedAttributeEncoding
self = str
} else {
guard let str = String(dataOfUnknownEncoding: data, usedEncoding: &usedEncoding) else {
throw CocoaError(.fileReadCorruptFile)
}
self = str
}
}
#endif
}
extension String {
internal init?(dataOfUnknownEncoding data: Data, usedEncoding: inout Encoding) {
let len = data.count
let encoding: Encoding
if len >= 4 && (
(data[0] == 0xFF && data[1] == 0xFE && data[2] == 0x00 && data[3] == 0x00) ||
(data[0] == 0x00 && data[1] == 0x00 && data[3] == 0xFE && data[4] == 0xFF)) {
// Looks like UTF32
encoding = .utf32
} else if len >= 2 {
if ((len & 1) == 0) && ((data[0] == 0xfe && data[1] == 0xff) || (data[0] == 0xff && data[1] == 0xfe)) {
// Looks like Unicode
encoding = .unicode
} else {
// Fallback
encoding = .utf8
}
} else {
// Fallback, short string
encoding = .utf8
}
guard let str = String(data: data, encoding: encoding) else {
return nil
}
usedEncoding = encoding
self = str
}
}
internal func encodingFromDataForExtendedAttribute(_ value: Data) -> String.Encoding? {
guard let str = String(data: value, encoding: .utf8) else {
return nil
}
// First look for the integer at the end
var foundEncoding: String.Encoding?
let colonIndex = str.firstIndex(of: ";")
if let colonIndex {
let next = str.index(after: colonIndex)
if next < str.endIndex {
let rest = str[next..<str.endIndex]
if let enc = UInt(rest) {
#if FOUNDATION_FRAMEWORK
if CFStringIsEncodingAvailable(CFStringEncoding(enc)) {
foundEncoding = String.Encoding(rawValue: CFStringConvertEncodingToNSStringEncoding(CFStringEncoding(enc)))
}
#else
foundEncoding = switch enc {
case 0x0: .macOSRoman
case 0x0201: .isoLatin1
case 0x0600: .ascii
case 0x08000100: .utf8
case 0x0100: .utf16
case 0x10000100: .utf16BigEndian
case 0x14000100: .utf16LittleEndian
case 0x0c000100: .utf32
case 0x18000100: .utf32BigEndian
case 0x1c000100: .utf32LittleEndian
default: nil
}
#endif
}
}
}
if foundEncoding != nil {
return foundEncoding
}
// If the number didn't work out, look for the name
let namePart : Substring
if let colonIndex {
namePart = str[str.startIndex..<colonIndex]
} else {
namePart = str[str.startIndex..<str.endIndex]
}
if !namePart.isEmpty {
#if FOUNDATION_FRAMEWORK
let cfEncoding = CFStringConvertIANACharSetNameToEncoding(String(namePart) as CFString)
if cfEncoding != kCFStringEncodingInvalidId {
return String.Encoding(rawValue: CFStringConvertEncodingToNSStringEncoding(cfEncoding))
}
#else
switch namePart {
case "us-ascii": return .ascii
case "utf-8": return .utf8
case "utf-16": return .utf16
case "utf-16be": return .utf16BigEndian
case "utf-16le": return .utf16LittleEndian
case "utf-32": return .utf32
case "utf-32be": return .utf32BigEndian
case "utf-32le": return .utf32LittleEndian
case "iso-8859-1": return .isoLatin1
case "macintosh": return .macOSRoman
default: return nil // Unknown encoding value
}
#endif
}
return nil
}
internal func extendedAttributeData(for encoding: String.Encoding) -> Data? {
#if FOUNDATION_FRAMEWORK
let cfEncoding = CFStringConvertNSStringEncodingToEncoding(encoding.rawValue)
guard cfEncoding != kCFStringEncodingInvalidId else {
return nil
}
let encodingName = CFStringConvertEncodingToIANACharSetName(cfEncoding)
#else
let cfEncoding : UInt? = switch encoding {
case .macOSRoman: 0x0
case .isoLatin1: 0x0201
case .ascii: 0x0600
case .utf8: 0x08000100
case .utf16: 0x0100
case .utf16BigEndian: 0x10000100
case .utf16LittleEndian: 0x14000100
case .utf32: 0x0c000100
case .utf32BigEndian: 0x18000100
case .utf32LittleEndian: 0x1c000100
default: nil
}
guard let cfEncoding else {
return nil
}
let encodingName : String? = switch encoding {
case .ascii: "us-ascii"
case .utf8: "utf-8"
case .utf16: "utf-16"
case .utf16BigEndian: "utf-16be"
case .utf16LittleEndian: "utf-16le"
case .utf32: "utf-32"
case .utf32BigEndian: "utf-32be"
case .utf32LittleEndian: "utf-32le"
case .macOSRoman: "macintosh"
case .isoLatin1: "iso-8859-1"
default: nil
}
#endif
if let encodingName {
return "\(encodingName);\(cfEncoding)".data(using: .utf8)
}
return ";\(cfEncoding)".data(using: .utf8)
}
// MARK: - Writing
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension StringProtocol {
#if !NO_FILESYSTEM
/// Writes the contents of the `String` to a file at a given path using a given encoding.
public func write<T : StringProtocol>(toFile path: T, atomically useAuxiliaryFile: Bool, encoding enc: String.Encoding) throws {
guard let data = data(using: enc) else {
throw CocoaError(.fileWriteInapplicableStringEncoding)
}
let attributes : [String : Data]
if let extendedAttributeData = extendedAttributeData(for: enc) {
attributes = [stringEncodingAttributeName : extendedAttributeData]
} else {
attributes = [:]
}
let options : Data.WritingOptions = useAuxiliaryFile ? [.atomic] : []
try writeToFile(path: .path(String(path)), data: data, options: options, attributes: attributes, reportProgress: false)
}
/// Writes the contents of the `String` to the URL specified by url using the specified encoding.
public func write(to url: URL, atomically useAuxiliaryFile: Bool, encoding enc: String.Encoding) throws {
guard let data = data(using: enc) else {
throw CocoaError(.fileWriteInapplicableStringEncoding)
}
let attributes : [String : Data]
if let extendedAttributeData = extendedAttributeData(for: enc) {
attributes = [stringEncodingAttributeName : extendedAttributeData]
} else {
attributes = [:]
}
let options : Data.WritingOptions = useAuxiliaryFile ? [.atomic] : []
try writeToFile(path: .url(url), data: data, options: options, attributes: attributes, reportProgress: false)
}
#endif
}
// TODO: This is part of the stdlib as of 5.11. This is a copy to support building on previous Swift stdlib versions, but should be replaced with the stdlib one as soon as possible.
extension String {
internal init?<Encoding: Unicode.Encoding>(_validating codeUnits: some Sequence<Encoding.CodeUnit>, as encoding: Encoding.Type) {
var transcoded: [UTF8.CodeUnit] = []
transcoded.reserveCapacity(codeUnits.underestimatedCount)
var isASCII = true
let error = transcode(
codeUnits.makeIterator(),
from: Encoding.self,
to: UTF8.self,
stoppingOnError: true,
into: {
uint8 in
transcoded.append(uint8)
if isASCII && (uint8 & 0x80) == 0x80 { isASCII = false }
}
)
if error { return nil }
let res = transcoded.withUnsafeBufferPointer{
String._tryFromUTF8($0)
}
if let res { self = res } else { return nil }
}
}
|