forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewString.swift
237 lines (181 loc) Β· 7.12 KB
/
NewString.swift
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
// RUN: %target-run-stdlib-swift | %FileCheck %s
// REQUIRES: executable_test
// REQUIRES: objc_interop
import Foundation
import Swift
// ==== Tests =====
func hex(_ x: UInt64) -> String { return String(x, radix:16) }
func hexAddrVal<T>(_ x: T) -> String {
return "@0x" + hex(UInt64(unsafeBitCast(x, to: UInt.self)))
}
func repr(_ x: NSString) -> String {
return "\(NSStringFromClass(object_getClass(x)!))\(hexAddrVal(x)) = \"\(x)\""
}
func repr(_ x: _StringRepresentation) -> String {
switch x._form {
case ._small:
return """
Small(count: \(x._count))
"""
case ._cocoa(let object):
return """
Cocoa(\
owner: \(hexAddrVal(object)), \
count: \(x._count))
"""
case ._native(let object):
return """
Native(\
owner: \(hexAddrVal(object)), \
count: \(x._count), \
capacity: \(x._capacity))
"""
case ._immortal(_):
return """
Unmanaged(count: \(x._count))
"""
}
}
func repr(_ x: String) -> String {
return "String(\(repr(x._classify()))) = \"\(x)\""
}
// CHECK-LABEL: Testing...
print("Testing...")
//===--------- Native Strings ---------===
// Force the string literal representation into a Native, heap-allocated buffer
var nsb = "πββ
ββοΈβοΈβοΈ"
// CHECK-NEXT: Hello, snowy world: πββ
ββοΈβοΈβοΈ
print("Hello, snowy world: \(nsb)")
// CHECK-NEXT: String(Unmanaged(count: 31))
print(" \(repr(nsb))")
var empty = String()
// CHECK-NEXT: These are empty: <>
print("These are empty: <\(empty)>")
// CHECK-NEXT: String({{Unmanaged|Small}}(count: 0))
print(" \(repr(empty))")
//===--------- non-ASCII ---------===
func nonASCII() {
// Cocoa stores non-ASCII in a UTF-16 buffer
// Code units in each character: 2 1 1 1 2 2 2
// Offset of each character: 0 2 3 4 5 7 9 11
let nsUTF16 = NSString(utf8String: "πββ
ββοΈβοΈβοΈ")!
// CHECK-NEXT: has UTF-16: true
print("has UTF-16: \(CFStringGetCharactersPtr(unsafeBitCast(nsUTF16, to: CFString.self)) != nil)")
// CHECK-LABEL: --- UTF-16 basic round-tripping ---
print("--- UTF-16 basic round-tripping ---")
// check that no extraneous objects are created
// CHECK-NEXT: __NSCFString@[[utf16address:[x0-9a-f]+]] = "πββ
ββοΈβοΈβοΈ"
print(" \(repr(nsUTF16))")
// CHECK-NEXT: String(Cocoa(owner: @[[utf16address]], count: 11)) = "πββ
ββοΈβοΈβοΈ"
let newNSUTF16 = nsUTF16 as String
print(" \(repr(newNSUTF16))")
// CHECK-NEXT: __NSCFString@[[utf16address]] = "πββ
ββοΈβοΈβοΈ"
let nsRoundTripUTF16 = newNSUTF16 as NSString
print(" \(repr(nsRoundTripUTF16))")
// CHECK-LABEL: --- UTF-16 slicing ---
print("--- UTF-16 slicing ---")
// Slicing the String allocates a new buffer
// CHECK-NOT: String(Native(owner: @[[utf16address]],
// CHECK-NEXT: String(Native(owner: @[[sliceAddress:[x0-9a-f]+]], count: 18
let i2 = newNSUTF16.index(newNSUTF16.startIndex, offsetBy: 2)
let i8 = newNSUTF16.index(newNSUTF16.startIndex, offsetBy: 6)
let slice = String(newNSUTF16[i2..<i8])
print(" \(repr(slice))")
// CHECK-LABEL: --- NSString slicing ---
print("--- NSString slicing ---")
// The storage of the slice implements NSString directly
// CHECK-NOT: @[[utf16address]] = "β
ββοΈβοΈ"
// CHECK-NEXT: {{.*}}StringStorage@[[sliceAddress]] = "β
ββοΈβοΈ"
let nsSlice = slice as NSString
print(" \(repr(nsSlice))")
// Check that we can recover the original buffer
// CHECK-NEXT: String(Native(owner: @[[sliceAddress]], count: 18
print(" \(repr(nsSlice as String))")
}
nonASCII()
//===--------- ASCII ---------===
func ascii() {
// Cocoa stores ASCII in a buffer of bytes. This is an important case
// because it doesn't provide a contiguous array of UTF-16, so we'll be
// treating it as an opaque NSString.
let nsASCII = NSString(utf8String: "foobar")!
// CHECK-NEXT: has UTF-16: false
print("has UTF-16: \(CFStringGetCharactersPtr(unsafeBitCast(nsASCII, to: CFString.self)) != nil)")
print("has ASCII pointer: \(CFStringGetCStringPtr(unsafeBitCast(nsASCII, to: CFString.self), 0x0600) != nil)")
print("has ASCII pointer: \(CFStringGetCStringPtr(unsafeBitCast(nsASCII, to: CFString.self), 0x08000100) != nil)")
// CHECK-LABEL: --- ASCII basic round-tripping ---
print("--- ASCII basic round-tripping ---")
// CHECK-NEXT: [[nsstringclass:(__NSCFString|NSTaggedPointerString)]]@[[asciiaddress:[x0-9a-f]+]] = "foobar"
print(" \(repr(nsASCII))")
// CHECK-NEXT NO: String(Opaque(buffer: @[[asciiaddress]][0...6]))
let newNSASCII = nsASCII as String
// print(" \(repr(newNSASCII))")
// CHECK-NEXT: [[nsstringclass]]@[[asciiaddress]] = "foobar"
let nsRoundTripASCII = newNSASCII as NSString
print(" \(repr(nsRoundTripASCII))")
// CHECK-LABEL: --- ASCII slicing ---
print("--- ASCII slicing ---")
let i3 = newNSASCII.index(newNSASCII.startIndex, offsetBy: 3)
let i6 = newNSASCII.index(newNSASCII.startIndex, offsetBy: 6)
// Slicing the String
print(" \(repr(String(newNSASCII[i3..<i6])))")
// Representing a slice as an NSString
let nsSliceASCII = newNSASCII[i3..<i6] as NSString
print(" \(repr(nsSliceASCII))")
// Round-tripped back to Swift
print(" \(repr(nsSliceASCII as String))")
}
ascii()
//===-------- Literals --------===
// String literals default to UTF-16.
// CHECK-LABEL: --- Literals ---
print("--- Literals ---")
// CHECK-NEXT: String({{Unmanaged|Small}}(count: 6)) = "foobar"
// CHECK-NEXT: true
let asciiLiteral: String = "foobar"
print(" \(repr(asciiLiteral))")
print(" \(asciiLiteral._classify()._isASCII)")
// CHECK-NEXT: String(Unmanaged(count: 31)) = "πββ
ββοΈβοΈβοΈ"
// CHECK-NEXT: false
let nonASCIILiteral: String = "πββ
ββοΈβοΈβοΈ"
print(" \(repr(nonASCIILiteral))")
print(" \(nonASCIILiteral._classify()._isASCII)")
// ===------- Appending -------===
// These tests are in NewStringAppending.swift.
// ===---------- Comparison --------===
// CHECK-LABEL: --- Comparison ---
print("--- Comparison ---")
var s = "ABCDEF"
let s1 = s + "G"
// CHECK-NEXT: true
print("\(s) == \(s) => \(s == s)")
// CHECK-NEXT: false
print("\(s) == \(s1) => \(s == s1)")
// CHECK-NEXT: true
let abcdef: String = "ABCDEF"
print("\(s) == \"\(abcdef)\" => \(s == abcdef)")
let so: String = "so"
let sox: String = "sox"
let tocks: String = "tocks"
// CHECK-NEXT: false
print("so < so => \(so < so)")
// CHECK-NEXT: true
print("so < sox => \(so < sox)")
// CHECK-NEXT: true
print("so < tocks => \(so < tocks)")
// CHECK-NEXT: true
print("sox < tocks => \(sox < tocks)")
let qqq = nonASCIILiteral.hasPrefix("πβ")
let rrr = nonASCIILiteral.hasPrefix("β")
let zz = (
nonASCIILiteral.hasPrefix("πβ"), nonASCIILiteral.hasPrefix("β"),
nonASCIILiteral.hasSuffix("βοΈβοΈ"), nonASCIILiteral.hasSuffix("β"))
// CHECK-NEXT: <true, false, true, false>
print("<\(zz.0), \(zz.1), \(zz.2), \(zz.3)>")
// ===---------- Interpolation --------===
// CHECK-NEXT: {{.*}}"interpolated: foobar πββ
ββοΈβοΈβοΈ 42 3.14 true"
s = "interpolated: \(asciiLiteral) \(nonASCIILiteral) \(42) \(3.14) \(true)"
print("\(repr(s))")
// ===---------- Done --------===
// CHECK-NEXT: Done.
print("Done.")