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 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2022 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
import CoreFoundation
internal import os
#if canImport(CoreFoundation_Private.CFLocale)
internal import CoreFoundation_Private.CFLocale
#endif
#if canImport(Foundation_Private.NSLocale)
internal import Foundation_Private.NSLocale
#endif
/// Entry points for the ObjC and C code to call into the common Swift implementation.
@objc
extension NSLocale {
@objc
static var _autoupdatingCurrent: NSLocale {
LocaleCache.cache.autoupdatingCurrentNSLocale()
}
@objc
static var _current: NSLocale {
LocaleCache.cache.currentNSLocale()
}
@objc
static var _system: NSLocale {
LocaleCache.cache.systemNSLocale()
}
@objc
private class func _newLocaleWithIdentifier(_ idStr: String) -> NSLocale {
LocaleCache.cache.fixedNSLocale(identifier: idStr)
}
@objc
private class func _newLocaleAsIfCurrent(_ name: String?, overrides: CFDictionary?, disableBundleMatching: Bool) -> NSLocale? {
#if canImport(_FoundationICU)
let inner = LocaleCache.cache.localeAsIfCurrent(name: name, cfOverrides: overrides, disableBundleMatching: disableBundleMatching)
return _NSSwiftLocale(inner)
#else
return nil
#endif
}
@objc(_currentLocaleWithBundleLocalizations:disableBundleMatching:)
private class func _currentLocaleWithBundleLocalizations(_ availableLocalizations: [String], allowsMixedLocalizations: Bool) -> NSLocale? {
guard let inner = LocaleCache.cache.localeAsIfCurrentWithBundleLocalizations(availableLocalizations, allowsMixedLocalizations: allowsMixedLocalizations) else {
return nil
}
return _NSSwiftLocale(inner)
}
@objc
private class func _resetCurrent() {
LocaleCache.cache.reset()
}
@objc
private class func _preferredLanguagesForCurrentUser(_ forCurrentUser: Bool) -> [String] {
LocaleCache.cache.preferredLanguages(forCurrentUser: forCurrentUser)
}
#if canImport(_FoundationICU)
@objc
class var _availableLocaleIdentifiers: [String] {
Locale.availableIdentifiers
}
#endif
// This is internal, but silence the compiler's warnings about deprecation by deprecating this, too.
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc
class var _isoLanguageCodes: [String] {
Locale.isoLanguageCodes
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc
class var _isoCountryCodes: [String] {
Locale.isoRegionCodes
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc
class var _isoCurrencyCodes: [String] {
Locale.isoCurrencyCodes
}
#if canImport(_FoundationICU)
@objc
class var _commonISOCurrencyCodes: [String] {
Locale.commonISOCurrencyCodes
}
#endif
@objc
class var _preferredLanguages: [String] {
Locale.preferredLanguages
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc(_componentsFromLocaleIdentifier:)
class func _components(fromLocaleIdentifier string: String) -> [String : String] {
Locale.components(fromIdentifier: string)
}
@objc(_localeIdentifierFromComponents:)
class func _localeIdentifier(fromComponents dict: [String : Any]) -> String {
// n.b. the CFLocaleCreateLocaleIdentifierFromComponents API is normally [String: String], but for 'convenience' allows a `Calendar` value for "kCFLocaleCalendarKey"/"calendar". We call through to a compatibility version of `Locale.identifier(fromComponents:)` to support this.
Locale.identifier(fromAnyComponents: dict)
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc(_canonicalLocaleIdentifierFromString:)
class func _canonicalLocaleIdentifier(from string: String) -> String {
Locale.canonicalIdentifier(from: string)
}
@objc(_canonicalLanguageIdentifierFromString:)
class func _canonicalLanguageIdentifier(from string: String) -> String {
Locale.canonicalLanguageIdentifier(from: string)
}
#if canImport(_FoundationICU)
@objc(_localeIdentifierFromWindowsLocaleCode:)
class func _localeIdentifier(fromWindowsLocaleCode: UInt32) -> String? {
guard let code = Int(exactly: fromWindowsLocaleCode) else {
return nil
}
return Locale.identifier(fromWindowsLocaleCode: code)
}
@objc(_windowsLocaleCodeFromLocaleIdentifier:)
class func _windowsLocaleCode(fromLocaleIdentifier localeIdentifier: String) -> UInt32 {
if let result = Locale.windowsLocaleCode(fromIdentifier: localeIdentifier) {
return UInt32(result)
}
return 0
}
#endif
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc(_characterDirectionForLanguage:)
class func _characterDirection(forLanguage isoLangCode: String) -> NSLocale.LanguageDirection {
NSLocale.LanguageDirection(rawValue: Locale.characterDirection(forLanguage: isoLangCode).rawValue) ?? .rightToLeft
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
@objc(_lineDirectionForLanguage:)
class func _lineDirection(forLanguage isoLangCode: String) -> NSLocale.LanguageDirection {
NSLocale.LanguageDirection(rawValue: Locale.lineDirection(forLanguage: isoLangCode).rawValue) ?? .rightToLeft
}
@objc(_numberingSystemForLocaleIdentifier:)
class func _numberingSystem(forLocaleIdentifier identifier: String) -> String? {
#if canImport(_FoundationICU)
let components = Locale.Components(identifier: identifier)
if let system = components.numberingSystem {
return system.identifier
}
if let defaultSystem = Locale.NumberingSystem.defaultNumberingSystem(for: identifier) {
return defaultSystem.identifier
}
#endif
return nil
}
@objc(_validNumberingSystemsForLocaleIdentifier:)
class func _validNumberingSystems(forLocaleIdentifier identifier: String) -> [String] {
#if canImport(_FoundationICU)
Locale.NumberingSystem.validNumberingSystems(for: identifier).map { $0.identifier }
#else
[]
#endif
}
@objc(_localeIdentifierByReplacingLanguageCodeAndScriptCodeForLangCode:desiredComponents:)
class func _localeIdentifierByReplacingLanguageCodeAndScriptCode(_ localeIDWithDesiredLangCode: String, desiredComponents localeIDWithDesiredComponents: String) -> String? {
#if canImport(_FoundationICU)
Locale.localeIdentifierByReplacingLanguageCodeAndScriptCode(localeIDWithDesiredLangCode: localeIDWithDesiredLangCode, localeIDWithDesiredComponents: localeIDWithDesiredComponents)
#else
nil
#endif
}
@objc(_localeIdentifierByAddingLikelySubtags:)
class func _localeIdentifierByAddingLikelySubtags(_ localeID: String) -> String {
#if canImport(_FoundationICU)
Locale.localeIdentifierWithLikelySubtags(localeID)
#else
""
#endif
}
@objc(_localeWithNewCalendarIdentifier:)
func _localeWithNewCalendarIdentifier(_ calendarIdentifier: String?) -> NSLocale? {
guard calendarIdentifier != nil else {
// No real need to copy here; Locale is immutable
return self
}
// Default implementation returns `nil` - subclass `_NSSwiftLocale` implements a better version
return nil
}
@objc(_doesNotRequireSpecialCaseHandling)
func _doesNotRequireSpecialCaseHandling() -> Bool {
// Unable to use cached locale; create a new one. Subclass `_NSSwiftLocale` implements a better version
return Locale(identifier: localeIdentifier).doesNotRequireSpecialCaseHandling
}
}
/// Wraps a Swift `struct Locale` with an `NSLocale`, so that it can be used from Objective-C.
/// The goal is to forward as much of the implementation as possible into Swift.
@objc(_NSSwiftLocale)
internal class _NSSwiftLocale: _NSLocaleBridge, @unchecked Sendable {
var locale: Locale
internal init(_ locale: Locale) {
self.locale = locale
// The superclass does not care at all what the identifier is. Avoid a potentially recursive call into the Locale cache here by just using an empty string.
super.init(localeIdentifier: "")
}
// MARK: - Coding
override var classForCoder: AnyClass {
if locale == Locale.autoupdatingCurrent {
return NSAutoLocale.self
} else {
return NSLocale.self
}
}
override init(localeIdentifier string: String) {
self.locale = Locale(identifier: string)
super.init(localeIdentifier: "")
}
// Even though we do not expect init(coder:) to be called, we have to implement it per the DI rules - and if we implement it, we are required to override this method to prove that we support secure coding.
override static var supportsSecureCoding: Bool { true }
required init?(coder: NSCoder) {
// TODO: This will never be invoked as long as we have a "placeholder" NSLocale in CoreFoundation
guard coder.allowsKeyedCoding else {
coder.failWithError(CocoaError(CocoaError.coderReadCorrupt, userInfo: [NSDebugDescriptionErrorKey : "Cannot be decoded without keyed coding"]))
return nil
}
guard let ident = coder.decodeObject(forKey: "NS.identifier") as? String else {
coder.failWithError(CocoaError(CocoaError.coderReadCorrupt, userInfo: [NSDebugDescriptionErrorKey : "Identifier has been corrupted"]))
return nil
}
locale = Locale(identifier: ident)
// Must call a DI; this one does nothing so it's safe to call here.
super.init(localeIdentifier: "")
}
override func encode(with coder: NSCoder) {
if coder.allowsKeyedCoding {
coder.encode(locale.identifier, forKey: "NS.identifier")
} else {
coder.failWithError(CocoaError(CocoaError.coderReadCorrupt, userInfo: [NSDebugDescriptionErrorKey : "Cannot be encoded without keyed coding"]))
}
}
// MARK: -
// Primitives. Silence the deprecation warning used here.
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override func object(forKey key: NSLocale.Key) -> Any? {
switch key {
case .identifier: return self.localeIdentifier
case .languageCode: return self.languageCode
case .countryCode: return self.countryCode
case .scriptCode: return self.scriptCode
case .variantCode: return self.variantCode
#if FOUNDATION_FRAMEWORK
case .exemplarCharacterSet: return self.exemplarCharacterSet
#endif
case .calendarIdentifier: return self.calendarIdentifier
case .calendar: return locale.calendar
case .collationIdentifier: return self.collationIdentifier
case .usesMetricSystem: return self.usesMetricSystem
case .measurementSystem:
switch locale.measurementSystem {
case .us: return NSLocaleMeasurementSystemUS
case .uk: return NSLocaleMeasurementSystemUK
case .metric: return NSLocaleMeasurementSystemMetric
default: return NSLocaleMeasurementSystemMetric
}
case .temperatureUnit:
switch locale.temperatureUnit {
case .celsius: return NSLocaleTemperatureUnitCelsius
case .fahrenheit: return NSLocaleTemperatureUnitFahrenheit
default: return NSLocaleTemperatureUnitCelsius
}
case .decimalSeparator: return self.decimalSeparator
case .groupingSeparator: return self.groupingSeparator
case .currencySymbol: return self.currencySymbol
case .currencyCode: return self.currencyCode
case .collatorIdentifier, .cfLocaleCollatorID: return self.collatorIdentifier
case .quotationBeginDelimiterKey: return self.quotationBeginDelimiter
case .quotationEndDelimiterKey: return self.quotationEndDelimiter
case .alternateQuotationBeginDelimiterKey: return self.alternateQuotationBeginDelimiter
case .alternateQuotationEndDelimiterKey: return self.alternateQuotationEndDelimiter
case .languageIdentifier: return self.languageIdentifier
default:
return nil
}
}
override func displayName(forKey key: NSLocale.Key, value: Any) -> String? {
guard let value = value as? String else {
return nil
}
switch key {
case .identifier: return self._nullableLocalizedString(forLocaleIdentifier: value)
case .languageCode: return self.localizedString(forLanguageCode: value)
case .countryCode: return self.localizedString(forCountryCode: value)
case .scriptCode: return self.localizedString(forScriptCode: value)
case .variantCode: return self.localizedString(forVariantCode: value)
#if FOUNDATION_FRAMEWORK
case .exemplarCharacterSet: return nil
#endif
case .calendarIdentifier, .calendar: return self.localizedString(forCalendarIdentifier: value)
case .collationIdentifier: return self.localizedString(forCollationIdentifier: value)
case .usesMetricSystem: return nil
case .measurementSystem: return nil
case .decimalSeparator: return nil
case .groupingSeparator: return nil
case .currencySymbol: return self.localizedString(forCurrencySymbol: value)
case .currencyCode: return self.localizedString(forCurrencyCode: value)
case .collatorIdentifier: return self.localizedString(forCollatorIdentifier: value)
case .quotationBeginDelimiterKey: return nil
case .quotationEndDelimiterKey: return nil
case .alternateQuotationBeginDelimiterKey: return nil
case .alternateQuotationEndDelimiterKey: return nil
default:
return nil
}
}
// MARK: -
override var localeIdentifier: String {
locale.identifier
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var languageCode: String {
locale.languageCode ?? ""
}
override var languageIdentifier: String {
let langIdentifier = locale.language.components.identifier
let localeWithOnlyLanguage = Locale(identifier: langIdentifier)
return localeWithOnlyLanguage.identifier(.bcp47)
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var countryCode: String? {
locale.region?.identifier
}
override var regionCode: String? {
locale.region?.identifier
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var scriptCode: String? {
locale.scriptCode
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var variantCode: String? {
locale.variantCode
}
override var calendarIdentifier: String {
locale._calendarIdentifier.cfCalendarIdentifier
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var collationIdentifier: String? {
locale.collationIdentifier
}
override var decimalSeparator: String {
locale.decimalSeparator ?? ""
}
override var groupingSeparator: String {
locale.groupingSeparator ?? ""
}
override var currencySymbol: String {
locale.currencySymbol ?? ""
}
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var currencyCode: String? {
locale.currencyCode
}
override var collatorIdentifier: String {
locale.collatorIdentifier ?? ""
}
override var quotationBeginDelimiter: String {
locale.quotationBeginDelimiter ?? ""
}
override var quotationEndDelimiter: String {
locale.quotationEndDelimiter ?? ""
}
override var alternateQuotationBeginDelimiter: String {
locale.alternateQuotationBeginDelimiter ?? ""
}
override var alternateQuotationEndDelimiter: String {
locale.alternateQuotationEndDelimiter ?? ""
}
#if FOUNDATION_FRAMEWORK
override var exemplarCharacterSet: CharacterSet {
locale.exemplarCharacterSet ?? CharacterSet()
}
#endif
@available(macOS, deprecated: 13) @available(iOS, deprecated: 16) @available(tvOS, deprecated: 16) @available(watchOS, deprecated: 9)
override var usesMetricSystem: Bool {
locale.usesMetricSystem
}
override func localizedString(forLocaleIdentifier localeIdentifier: String) -> String {
_nullableLocalizedString(forLocaleIdentifier: localeIdentifier) ?? ""
}
/// Some CFLocale APIs require the result to remain `nullable`. They can call this directly, where the `localizedString(forLocaleIdentifier:)` entry point can remain (correctly) non-nullable.
private func _nullableLocalizedString(forLocaleIdentifier localeIdentifier: String) -> String? {
locale.localizedString(forIdentifier: localeIdentifier)
}
override func localizedString(forLanguageCode languageCode: String) -> String? {
locale.localizedString(forLanguageCode: languageCode)
}
override func localizedString(forCountryCode countryCode: String) -> String? {
locale.localizedString(forRegionCode: countryCode)
}
override func localizedString(forScriptCode scriptCode: String) -> String? {
locale.localizedString(forScriptCode: scriptCode)
}
override func localizedString(forVariantCode variantCode: String) -> String? {
locale.localizedString(forVariantCode: variantCode)
}
override func localizedString(forCalendarIdentifier calendarIdentifier: String) -> String? {
guard let id = Calendar._fromNSCalendarIdentifier(.init(calendarIdentifier)) else {
return nil
}
return locale.localizedString(for: id)
}
override func localizedString(forCollationIdentifier collationIdentifier: String) -> String? {
locale.localizedString(forCollationIdentifier: collationIdentifier)
}
override func localizedString(forCurrencyCode currencyCode: String) -> String? {
locale.localizedString(forCurrencyCode: currencyCode)
}
override func localizedString(forCurrencySymbol currencySymbol: String) -> String? {
locale.localizedString(forCurrencySymbol: currencySymbol)
}
override func localizedString(forCollatorIdentifier collatorIdentifier: String) -> String? {
locale.localizedString(forCollatorIdentifier: collatorIdentifier)
}
override func _pref(forKey key: String) -> Any? {
locale.pref(for: key)
}
override func _numberingSystem() -> String! {
locale.numberingSystem.identifier
}
override func _localeWithNewCalendarIdentifier(_ calendarIdentifier: String?) -> NSLocale? {
guard let calendarIdentifier else {
// No real need to copy here; Locale is immutable
return self
}
guard let id = Calendar._fromNSCalendarIdentifier(NSCalendar.Identifier(rawValue: calendarIdentifier)) else {
return nil
}
let copy = locale.copy(newCalendarIdentifier: id)
return _NSSwiftLocale(copy)
}
override func _doesNotRequireSpecialCaseHandling() -> Bool {
return locale.doesNotRequireSpecialCaseHandling
}
}
// MARK: - Bridging
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension Locale : ReferenceConvertible {
public typealias ReferenceType = NSLocale
}
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension Locale : _ObjectiveCBridgeable {
@_semantics("convertToObjectiveC")
public func _bridgeToObjectiveC() -> NSLocale {
_locale.bridgeToNSLocale()
}
public static func _forceBridgeFromObjectiveC(_ input: NSLocale, result: inout Locale?) {
if !_conditionallyBridgeFromObjectiveC(input, result: &result) {
fatalError("Unable to bridge \(_ObjectiveCType.self) to \(self)")
}
}
public static func _conditionallyBridgeFromObjectiveC(_ input: NSLocale, result: inout Locale?) -> Bool {
result = Locale(reference: input)
return true
}
@_effects(readonly)
public static func _unconditionallyBridgeFromObjectiveC(_ source: NSLocale?) -> Locale {
var result: Locale?
_forceBridgeFromObjectiveC(source!, result: &result)
return result!
}
}
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension NSLocale : _HasCustomAnyHashableRepresentation {
// Must be @nonobjc to avoid infinite recursion during bridging.
@nonobjc
public func _toCustomAnyHashable() -> AnyHashable? {
return AnyHashable(self as Locale)
}
}
// MARK: - NSLocale Deprecated API
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension Locale {
/// Returns a list of available `Locale` language codes.
@available(macOS, deprecated: 13, message: "Use `Locale.LanguageCode.isoLanguageCodes` instead")
@available(iOS, deprecated: 16, message: "Use `Locale.LanguageCode.isoLanguageCodes` instead")
@available(tvOS, deprecated: 16, message: "Use `Locale.LanguageCode.isoLanguageCodes` instead")
@available(watchOS, deprecated: 9, message: "Use `Locale.LanguageCode.isoLanguageCodes` instead")
public static var isoLanguageCodes: [String] {
#if canImport(_FoundationICU)
Locale.LanguageCode._isoLanguageCodeStrings
#else
[]
#endif
}
/// Returns a dictionary that splits an identifier into its component pieces.
@available(macOS, deprecated: 13, message: "Use `Locale.Components(identifier:)` to access components")
@available(iOS, deprecated: 16, message: "Use `Locale.Components(identifier:)` to access components")
@available(tvOS, deprecated: 16, message: "Use `Locale.Components(identifier:)` to access components")
@available(watchOS, deprecated: 9, message: "Use `Locale.Components(identifier:)` to access components")
public static func components(fromIdentifier string: String) -> [String : String] {
let comps = CFLocaleCreateComponentsFromLocaleIdentifier(kCFAllocatorSystemDefault, CFLocaleIdentifier(string as CFString))
if let result = comps as? [String: String] {
return result
} else {
return [:]
}
}
/// Returns a list of available `Locale` region codes.
@available(macOS, deprecated: 13, message: "Use `Locale.Region.isoRegions` instead")
@available(iOS, deprecated: 16, message: "Use `Locale.Region.isoRegions` instead")
@available(tvOS, deprecated: 16, message: "Use `Locale.Region.isoRegions` instead")
@available(watchOS, deprecated: 9, message: "Use `Locale.Region.isoRegions` instead")
public static var isoRegionCodes: [String] {
// This was renamed from Obj-C
#if canImport(_FoundationICU)
Locale.Region.isoCountries
#else
[]
#endif
}
/// Returns a list of available `Locale` currency codes.
@available(macOS, deprecated: 13, message: "Use `Locale.Currency.isoCurrencies` instead")
@available(iOS, deprecated: 16, message: "Use `Locale.Currency.isoCurrencies` instead")
@available(tvOS, deprecated: 16, message: "Use `Locale.Currency.isoCurrencies` instead")
@available(watchOS, deprecated: 9, message: "Use `Locale.Currency.isoCurrencies` instead")
public static var isoCurrencyCodes: [String] {
#if canImport(_FoundationICU)
Locale.Currency.isoCurrencies.map { $0.identifier }
#else
[]
#endif
}
/// Returns the character direction for a specified language code.
@available(macOS, deprecated: 13, message: "Use `Locale.Language(identifier:).characterDirection`")
@available(iOS, deprecated: 16, message: "Use `Locale.Language(identifier:).characterDirection`")
@available(tvOS, deprecated: 16, message: "Use `Locale.Language(identifier:).characterDirection`")
@available(watchOS, deprecated: 9, message: "Use `Locale.Language(identifier:).characterDirection`")
public static func characterDirection(forLanguage isoLangCode: String) -> Locale.LanguageDirection {
#if canImport(_FoundationICU)
let language = Locale.Language(components: .init(identifier: isoLangCode))
return language.characterDirection
#else
return .unknown
#endif
}
/// Returns the line direction for a specified language code.
@available(macOS, deprecated: 13, message: "Use `Locale.Language(identifier:).lineLayoutDirection`")
@available(iOS, deprecated: 16, message: "Use `Locale.Language(identifier:).lineLayoutDirection`")
@available(tvOS, deprecated: 16, message: "Use `Locale.Language(identifier:).lineLayoutDirection`")
@available(watchOS, deprecated: 9, message: "Use `Locale.Language(identifier:).lineLayoutDirection`")
public static func lineDirection(forLanguage isoLangCode: String) -> Locale.LanguageDirection {
#if canImport(_FoundationICU)
let language = Locale.Language(components: .init(identifier: isoLangCode))
return language.lineLayoutDirection
#else
return .unknown
#endif
}
}
extension NSLocale.Key {
// Extra keys used by CoreFoundation
static let cfLocaleCollatorID = NSLocale.Key(rawValue: "locale:collator id")
static let languageIdentifier = NSLocale.Key(rawValue: "locale:languageIdentifier")
}
#endif // FOUNDATION_FRAMEWORK
|