Skip to content

Commit 3548952

Browse files
committed
ExtraStringAPI: Sync with the overlay version
- The three functions are obsoleted in Swift 4.0. The bodies from the overlay wont compile due to use of internal symbols so replace with a fatalError() call which isnt used anyway. - Update callers of advanced(by:) to use index(offsetBy:).
1 parent 1097fd8 commit 3548952

5 files changed

+30
-24
lines changed

Foundation/ExtraStringAPIs.swift

+17-10
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,28 @@
22
//
33
// This source file is part of the Swift.org open source project
44
//
5-
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
5+
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
8-
// See http://swift.org/LICENSE.txt for license information
9-
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
8+
// See https://swift.org/LICENSE.txt for license information
9+
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
// Random access for String.UTF16View, only when Foundation is
14-
// imported. Making this API dependent on Foundation decouples the
15-
// Swift core from a UTF16 representation.
1613
extension String.UTF16View.Index {
17-
public func advanced(by n: Int) -> String.UTF16View.Index {
18-
return String.UTF16View.Index(encodedOffset: encodedOffset.advanced(by: n))
19-
}
20-
}
14+
/// Construct from an integer offset.
15+
@available(swift, obsoleted: 4.0)
16+
public init(_ offset: Int) {
17+
fatalError("Unavailable")
18+
}
2119

20+
@available(swift, obsoleted: 4.0)
21+
public func distance(to other: String.UTF16View.Index?) -> Int {
22+
fatalError("Unavailable")
23+
}
2224

25+
@available(swift, obsoleted: 4.0)
26+
public func advanced(by n: Int) -> String.UTF16View.Index {
27+
fatalError("Unavailable")
28+
}
29+
}

Foundation/NSCFString.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ internal func _CFSwiftStringGetBytes(_ str: AnyObject, encoding: CFStringEncodin
167167
if let buffer = buffer {
168168
for idx in 0..<range.length {
169169
// Since character is 2 bytes but the buffer is in term of 1 byte values, we have to split it up
170-
let character = encodingView[start.advanced(by: idx + range.location)]
170+
let character = encodingView[encodingView.index(start, offsetBy: idx + range.location)]
171171
#if _endian(big)
172172
let byte0 = UInt8((character >> 8) & 0x00ff)
173173
let byte1 = UInt8(character & 0x00ff)

Foundation/NSRegularExpression.swift

+6-6
Original file line numberDiff line numberDiff line change
@@ -258,17 +258,17 @@ extension NSRegularExpression {
258258
let currentRange = result.range
259259
let replacement = replacementString(for: result, in: string, offset: 0, template: templ)
260260
if currentRange.location > NSMaxRange(previousRange) {
261-
let min = start.advanced(by: NSMaxRange(previousRange))
262-
let max = start.advanced(by: currentRange.location)
261+
let min = string.utf16.index(start, offsetBy: NSMaxRange(previousRange))
262+
let max = string.utf16.index(start, offsetBy: currentRange.location)
263263
str += String(string.utf16[min..<max])!
264264
}
265265
str += replacement
266266
previousRange = currentRange
267267
}
268268

269269
if length > NSMaxRange(previousRange) {
270-
let min = start.advanced(by: NSMaxRange(previousRange))
271-
let max = start.advanced(by: length)
270+
let min = string.utf16.index(start, offsetBy: NSMaxRange(previousRange))
271+
let max = string.utf16.index(start, offsetBy: length)
272272
str += String(string.utf16[min..<max])!
273273
}
274274

@@ -344,8 +344,8 @@ extension NSRegularExpression {
344344
}
345345
if substringRange.location != NSNotFound && substringRange.length > 0 {
346346
let start = string.utf16.startIndex
347-
let min = start.advanced(by: substringRange.location)
348-
let max = start.advanced(by: substringRange.location + substringRange.length)
347+
let min = string.utf16.index(start, offsetBy: substringRange.location)
348+
let max = string.utf16.index(start, offsetBy: substringRange.location + substringRange.length)
349349
substring = String(string.utf16[min..<max])!
350350
}
351351
str.replaceCharacters(in: rangeToReplace, with: substring)

Foundation/NSString.swift

+5-6
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ open class NSString : NSObject, NSCopying, NSMutableCopying, NSSecureCoding, NSC
193193
NSRequiresConcreteImplementation()
194194
}
195195
let start = _storage.utf16.startIndex
196-
return _storage.utf16[start.advanced(by: index)]
196+
return _storage.utf16[_storage.utf16.index(start, offsetBy: index)]
197197
}
198198

199199
public override convenience init() {
@@ -347,16 +347,15 @@ extension NSString {
347347

348348
public func substring(from: Int) -> String {
349349
if type(of: self) == NSString.self || type(of: self) == NSMutableString.self {
350-
return String(_storage.utf16.suffix(from: _storage.utf16.startIndex.advanced(by: from)))!
350+
return String(_storage.utf16.suffix(from: _storage.utf16.index(_storage.utf16.startIndex, offsetBy: from)))!
351351
} else {
352352
return substring(with: NSRange(location: from, length: length - from))
353353
}
354354
}
355355

356356
public func substring(to: Int) -> String {
357357
if type(of: self) == NSString.self || type(of: self) == NSMutableString.self {
358-
return String(_storage.utf16.prefix(upTo: _storage.utf16.startIndex
359-
.advanced(by: to)))!
358+
return String(_storage.utf16.prefix(upTo: _storage.utf16.index(_storage.utf16.startIndex, offsetBy: to)))!
360359
} else {
361360
return substring(with: NSRange(location: 0, length: to))
362361
}
@@ -365,8 +364,8 @@ extension NSString {
365364
public func substring(with range: NSRange) -> String {
366365
if type(of: self) == NSString.self || type(of: self) == NSMutableString.self {
367366
let start = _storage.utf16.startIndex
368-
let min = start.advanced(by: range.location)
369-
let max = start.advanced(by: range.location + range.length)
367+
let min = _storage.utf16.index(start, offsetBy: range.location)
368+
let max = _storage.utf16.index(start, offsetBy: range.location + range.length)
370369
return String(decoding: _storage.utf16[min..<max], as: UTF16.self)
371370
} else {
372371
let buff = UnsafeMutablePointer<unichar>.allocate(capacity: range.length)

TestFoundation/TestNSAttributedString.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ class TestNSMutableAttributedString : XCTestCase {
587587
let deleteRange = NSRange(location: 0, length: 10)
588588
mutableAttrString.deleteCharacters(in: deleteRange)
589589

590-
let expectedString = String(string[string.startIndex.advanced(by: 10)...])
590+
let expectedString = String(string[string.index(string.startIndex, offsetBy: 10)...])
591591
XCTAssertEqual(mutableAttrString.string, expectedString)
592592

593593
let expectedLongestEffectiveRange = NSRange(expectedString.startIndex..., in: expectedString)

0 commit comments

Comments
 (0)