mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
147 lines
5.4 KiB
Swift
147 lines
5.4 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2016 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import SwiftShims
|
|
|
|
#if _runtime(_ObjC)
|
|
/// Compare two strings using the Unicode collation algorithm in the
|
|
/// deterministic comparison mode. (The strings which are equivalent according
|
|
/// to their NFD form are considered equal. Strings which are equivalent
|
|
/// according to the plain Unicode collation algorithm are additionally ordered
|
|
/// based on their NFD.)
|
|
///
|
|
/// See Unicode Technical Standard #10.
|
|
///
|
|
/// The behavior is equivalent to `NSString.compare()` with default options.
|
|
///
|
|
/// - returns:
|
|
/// * an unspecified value less than zero if `lhs < rhs`,
|
|
/// * zero if `lhs == rhs`,
|
|
/// * an unspecified value greater than zero if `lhs > rhs`.
|
|
@_silgen_name("swift_stdlib_compareNSStringDeterministicUnicodeCollation")
|
|
public func _stdlib_compareNSStringDeterministicUnicodeCollation(
|
|
_ lhs: AnyObject, _ rhs: AnyObject
|
|
) -> Int32
|
|
|
|
@_silgen_name("swift_stdlib_compareNSStringDeterministicUnicodeCollationPtr")
|
|
public func _stdlib_compareNSStringDeterministicUnicodeCollationPointer(
|
|
_ lhs: OpaquePointer, _ rhs: OpaquePointer
|
|
) -> Int32
|
|
#endif
|
|
|
|
extension String {
|
|
#if _runtime(_ObjC)
|
|
/// This is consistent with Foundation, but incorrect as defined by Unicode.
|
|
/// Unicode weights some ASCII punctuation in a different order than ASCII
|
|
/// value. Such as:
|
|
///
|
|
/// 0022 ; [*02FF.0020.0002] # QUOTATION MARK
|
|
/// 0023 ; [*038B.0020.0002] # NUMBER SIGN
|
|
/// 0025 ; [*038C.0020.0002] # PERCENT SIGN
|
|
/// 0026 ; [*0389.0020.0002] # AMPERSAND
|
|
/// 0027 ; [*02F8.0020.0002] # APOSTROPHE
|
|
///
|
|
/// - Precondition: Both `self` and `rhs` are ASCII strings.
|
|
public // @testable
|
|
func _compareASCII(_ rhs: String) -> Int {
|
|
var compare = Int(_swift_stdlib_memcmp(
|
|
self._core.startASCII, rhs._core.startASCII,
|
|
min(self._core.count, rhs._core.count)))
|
|
if compare == 0 {
|
|
compare = self._core.count - rhs._core.count
|
|
}
|
|
// This efficiently normalizes the result to -1, 0, or 1 to match the
|
|
// behavior of NSString's compare function.
|
|
return (compare > 0 ? 1 : 0) - (compare < 0 ? 1 : 0)
|
|
}
|
|
#endif
|
|
|
|
/// Compares two strings with the Unicode Collation Algorithm.
|
|
@inline(never)
|
|
@_semantics("stdlib_binary_only") // Hide the CF/ICU dependency
|
|
public // @testable
|
|
func _compareDeterministicUnicodeCollation(_ rhs: String) -> Int {
|
|
// Note: this operation should be consistent with equality comparison of
|
|
// Character.
|
|
#if _runtime(_ObjC)
|
|
if self._core.hasContiguousStorage && rhs._core.hasContiguousStorage {
|
|
let lhsStr = _NSContiguousString(self._core)
|
|
let rhsStr = _NSContiguousString(rhs._core)
|
|
let res = lhsStr._unsafeWithNotEscapedSelfPointerPair(rhsStr) {
|
|
return Int(
|
|
_stdlib_compareNSStringDeterministicUnicodeCollationPointer($0, $1))
|
|
}
|
|
return res
|
|
}
|
|
return Int(_stdlib_compareNSStringDeterministicUnicodeCollation(
|
|
_bridgeToObjectiveCImpl(), rhs._bridgeToObjectiveCImpl()))
|
|
#else
|
|
switch (_core.isASCII, rhs._core.isASCII) {
|
|
case (true, false):
|
|
return Int(_swift_stdlib_unicode_compare_utf8_utf16(
|
|
_core.startASCII, Int32(_core.count),
|
|
rhs._core.startUTF16, Int32(rhs._core.count)))
|
|
case (false, true):
|
|
// Just invert it and recurse for this case.
|
|
return -rhs._compareDeterministicUnicodeCollation(self)
|
|
case (false, false):
|
|
return Int(_swift_stdlib_unicode_compare_utf16_utf16(
|
|
_core.startUTF16, Int32(_core.count),
|
|
rhs._core.startUTF16, Int32(rhs._core.count)))
|
|
case (true, true):
|
|
return Int(_swift_stdlib_unicode_compare_utf8_utf8(
|
|
_core.startASCII, Int32(_core.count),
|
|
rhs._core.startASCII, Int32(rhs._core.count)))
|
|
}
|
|
#endif
|
|
}
|
|
|
|
public // @testable
|
|
func _compareString(_ rhs: String) -> Int {
|
|
#if _runtime(_ObjC)
|
|
// We only want to perform this optimization on objc runtimes. Elsewhere,
|
|
// we will make it follow the unicode collation algorithm even for ASCII.
|
|
// This is consistent with Foundation, but incorrect as defined by Unicode.
|
|
if _core.isASCII && rhs._core.isASCII {
|
|
return _compareASCII(rhs)
|
|
}
|
|
#endif
|
|
return _compareDeterministicUnicodeCollation(rhs)
|
|
}
|
|
}
|
|
|
|
extension String : Equatable {
|
|
public static func == (lhs: String, rhs: String) -> Bool {
|
|
#if _runtime(_ObjC)
|
|
// We only want to perform this optimization on objc runtimes. Elsewhere,
|
|
// we will make it follow the unicode collation algorithm even for ASCII.
|
|
// This is consistent with Foundation, but incorrect as defined by Unicode.
|
|
if lhs._core.isASCII && rhs._core.isASCII {
|
|
if lhs._core.count != rhs._core.count {
|
|
return false
|
|
}
|
|
return _swift_stdlib_memcmp(
|
|
lhs._core.startASCII, rhs._core.startASCII,
|
|
rhs._core.count) == 0
|
|
}
|
|
#endif
|
|
return lhs._compareString(rhs) == 0
|
|
}
|
|
}
|
|
|
|
extension String : Comparable {
|
|
public static func < (lhs: String, rhs: String) -> Bool {
|
|
return lhs._compareString(rhs) < 0
|
|
}
|
|
}
|
|
|