Skip to content

Commit a061425

Browse files
committed
[stdlib] add storage property to Substring.UTF8View
1 parent 3015bf5 commit a061425

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

stdlib/public/core/Substring.swift

+30-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2025 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information
@@ -630,6 +630,7 @@ extension Substring: LosslessStringConvertible {
630630

631631
extension Substring {
632632
@frozen
633+
@_addressableForDependencies
633634
public struct UTF8View: Sendable {
634635
@usableFromInline
635636
internal var _slice: Slice<String.UTF8View>
@@ -749,6 +750,34 @@ extension Substring.UTF8View: BidirectionalCollection {
749750
}
750751
}
751752

753+
extension Substring.UTF8View {
754+
755+
@available(SwiftStdlib 6.2, *)
756+
public var span: Span<UTF8.CodeUnit> {
757+
@lifetime(borrow self)
758+
borrowing get {
759+
let start = _slice._startIndex._encodedOffset
760+
let end = _slice._endIndex._encodedOffset
761+
if _wholeGuts.isSmall {
762+
let a = Builtin.addressOfBorrow(self)
763+
let offset = start &+ (MemoryLayout<String.Index>.stride &<< 1)
764+
let address = unsafe UnsafePointer<UTF8.CodeUnit>(a).advanced(by: offset)
765+
let span = unsafe Span(_unsafeStart: address, count: end &- start)
766+
return unsafe _overrideLifetime(span, borrowing: self)
767+
}
768+
else if _wholeGuts.isFastUTF8 {
769+
let buffer = unsafe _wholeGuts._object.fastUTF8.extracting(start..<end)
770+
let count = end &- start
771+
_internalInvariant(count == buffer.count)
772+
let span = unsafe Span(_unsafeElements: buffer)
773+
return unsafe _overrideLifetime(span, borrowing: self)
774+
}
775+
// handle other Objective-C bridging cases here
776+
fatalError("Some bridged Strings are not supported at this time")
777+
}
778+
}
779+
}
780+
752781
extension Substring {
753782
@inlinable
754783
public var utf8: UTF8View {

test/stdlib/Span/StringUTF8SpanProperty.swift

+33
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,36 @@ suite.test("Span from Large Native String")
5050
expectEqual(span[i], u[i])
5151
}
5252
}
53+
54+
suite.test("Span from Small String's Substring")
55+
.require(.stdlib_6_2).code {
56+
guard #available(SwiftStdlib 6.2, *) else { return }
57+
58+
let s = "A small string.".dropFirst(8).utf8
59+
let u = Array("string.".utf8)
60+
let span = s.span
61+
62+
let count = span.count
63+
expectEqual(count, s.count)
64+
65+
for i in span.indices {
66+
expectEqual(span[i], u[i])
67+
}
68+
}
69+
70+
suite.test("Span from Large Native String's Substring")
71+
.require(.stdlib_6_2).code {
72+
guard #available(SwiftStdlib 6.2, *) else { return }
73+
74+
let t = "A long string that is altogether not smol."
75+
let s = t.dropFirst(22).prefix(10).utf8
76+
let u = Array("altogether".utf8)
77+
let span = s.span
78+
79+
let count = span.count
80+
expectEqual(count, s.count)
81+
82+
for i in span.indices {
83+
expectEqual(span[i], u[i])
84+
}
85+
}

0 commit comments

Comments
 (0)