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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 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 canImport(Darwin)
import Darwin
#elseif canImport(Glibc)
import Glibc
#endif
internal import _FoundationCShims
/**
`TimeZone` defines the behavior of a time zone. Time zone values represent geopolitical regions. Consequently, these values have names for these regions. Time zone values also represent a temporal offset, either plus or minus, from Greenwich Mean Time (GMT) and an abbreviation (such as PST for Pacific Standard Time).
`TimeZone` provides two static functions to get time zone values: `current` and `autoupdatingCurrent`. The `autoupdatingCurrent` time zone automatically tracks updates made by the user.
Note that time zone database entries such as "America/Los_Angeles" are IDs, not names. An example of a time zone name is "Pacific Daylight Time". Although many `TimeZone` functions include the word "name", they refer to IDs.
Cocoa does not provide any API to change the time zone of the computer, or of other applications.
*/
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
public struct TimeZone : Hashable, Equatable, Sendable {
private var _tz: _TimeZoneProtocol
// MARK: -
//
/// Returns a time zone initialized with a given identifier.
///
/// An example identifier is "America/Los_Angeles".
///
/// If `identifier` is an unknown identifier, then returns `nil`.
public init?(identifier: __shared String) {
// This will create/cache the value if it is valid
guard let cached = TimeZoneCache.cache.fixed(identifier) else {
return nil
}
_tz = cached
}
/// Directly instantiates a time zone without causing infinite recursion by checking the cache.
internal init(inner: some _TimeZoneProtocol) {
_tz = inner
}
/// Returns a time zone initialized with a specific number of seconds from GMT.
///
/// Time zones created with this never have daylight savings and the offset is constant no matter the date. The identifier and abbreviation do NOT follow the POSIX convention (of minutes-west).
///
/// - parameter seconds: The number of seconds from GMT.
/// - returns: A time zone, or `nil` if a valid time zone could not be created from `seconds`.
public init?(secondsFromGMT seconds: Int) {
guard let cached = TimeZoneCache.cache.offsetFixed(seconds) else {
return nil
}
_tz = cached
}
internal init?(name: String) {
// Try the cache first
if let cached = TimeZoneCache.cache.fixed(name) {
_tz = cached
} else {
return nil
}
}
/// Returns a time zone identified by a given abbreviation.
///
/// In general, you are discouraged from using abbreviations except for unique instances such as "GMT". Time Zone abbreviations are not standardized and so a given abbreviation may have multiple meanings--for example, "EST" refers to Eastern Time in both the United States and Australia
///
/// - parameter abbreviation: The abbreviation for the time zone.
/// - returns: A time zone identified by abbreviation determined by resolving the abbreviation to an identifier using the abbreviation dictionary and then returning the time zone for that identifier. Returns `nil` if there is no match for abbreviation.
public init?(abbreviation: __shared String) {
guard let id = TimeZone.identifierForAbbreviation(abbreviation) else {
return nil
}
self.init(identifier: id)
}
internal static func identifierForAbbreviation(_ abbreviation: String) -> String? {
if let name = TimeZone.abbreviationDictionary[abbreviation] {
return name
} else {
// No known time zone for this abbreviation
if let seconds = TimeZone.tryParseGMTName(abbreviation) {
if let gmtName = TimeZone.nameForSecondsFromGMT(seconds) {
return gmtName
}
}
}
return nil
}
#if FOUNDATION_FRAMEWORK
private init(reference: NSTimeZone) {
if let swift = reference as? _NSSwiftTimeZone {
_tz = swift.timeZone._tz
} else {
// This is a custom NSTimeZone subclass
_tz = _TimeZoneBridged(adoptingReference: reference)
}
}
#endif
/// The time zone currently used by the system.
public static var current : TimeZone {
TimeZone(inner: TimeZoneCache.cache.current._tz)
}
/// The time zone currently used by the system, automatically updating to the user's current preference.
///
/// If this time zone is mutated, then it no longer tracks the system time zone.
///
/// The autoupdating time zone only compares equal to itself.
public static var autoupdatingCurrent : TimeZone {
TimeZone(inner: TimeZoneCache.cache.autoupdatingCurrent())
}
/// The default time zone, settable via ObjC but not available in Swift API (because it's global mutable state).
/// The default time zone is not autoupdating, but it can change at any time when the ObjC `setDefaultTimeZone:` API is called.
package static var `default` : TimeZone! {
get {
TimeZoneCache.cache.default
}
set {
TimeZoneCache.cache.setDefault(newValue)
}
}
#if !FOUNDATION_FRAMEWORK
@_spi(SwiftCorelibsFoundation) public static var _default : TimeZone! {
get {
TimeZone.default
}
set {
TimeZone.default = newValue
}
}
#endif
// MARK: -
//
/// The geopolitical region identifier that identifies the time zone.
public var identifier: String {
_tz.identifier
}
/// Used for compatibility with `NSTimeZone`.
internal var data: Data? {
_tz.data
}
/// The current difference in seconds between the time zone and Greenwich Mean Time.
///
/// - parameter date: The date to use for the calculation. The default value is the current date.
public func secondsFromGMT(for date: Date = Date()) -> Int {
_tz.secondsFromGMT(for: date)
}
internal func rawAndDaylightSavingTimeOffset(for date: Date, repeatedTimePolicy: TimeZone.DaylightSavingTimePolicy = .former, skippedTimePolicy: TimeZone.DaylightSavingTimePolicy = .former) -> (rawOffset: Int, daylightSavingOffset: TimeInterval) {
_tz.rawAndDaylightSavingTimeOffset(for: date, repeatedTimePolicy: repeatedTimePolicy, skippedTimePolicy: skippedTimePolicy)
}
/// Returns the abbreviation for the time zone at a given date.
///
/// Note that the abbreviation may be different at different dates. For example, during daylight saving time the US/Eastern time zone has an abbreviation of "EDT." At other times, its abbreviation is "EST."
/// - parameter date: The date to use for the calculation. The default value is the current date.
public func abbreviation(for date: Date = Date()) -> String? {
_tz.abbreviation(for: date)
}
/// Returns a Boolean value that indicates whether the receiver uses daylight saving time at a given date.
///
/// - parameter date: The date to use for the calculation. The default value is the current date.
public func isDaylightSavingTime(for date: Date = Date()) -> Bool {
_tz.isDaylightSavingTime(for: date)
}
/// Returns the daylight saving time offset for a given date.
///
/// - parameter date: The date to use for the calculation. The default value is the current date.
public func daylightSavingTimeOffset(for date: Date = Date()) -> TimeInterval {
_tz.daylightSavingTimeOffset(for: date)
}
/// Returns the next daylight saving time transition after a given date.
///
/// - parameter date: A date.
/// - returns: The next daylight saving time transition after `date`. Depending on the time zone, this function may return a change of the time zone's offset from GMT. Returns `nil` if the time zone of the receiver does not observe daylight savings time as of `date`.
public func nextDaylightSavingTimeTransition(after date: Date) -> Date? {
_tz.nextDaylightSavingTimeTransition(after: date)
}
/// Returns the mapping of abbreviations to time zone identifiers.
public static var abbreviationDictionary : [String : String] {
get {
// TODO: We may want to consider changing this for Essentials, as it returns a list of abbreviations which only Internationalization supports
TimeZoneCache.cache.timeZoneAbbreviations()
}
set {
TimeZoneCache.cache.setTimeZoneAbbreviations(newValue)
}
}
/// Returns the date of the next (after the current instant) daylight saving time transition for the time zone. Depending on the time zone, the value of this property may represent a change of the time zone's offset from GMT. Returns `nil` if the time zone does not currently observe daylight saving time.
public var nextDaylightSavingTimeTransition: Date? {
_tz.nextDaylightSavingTimeTransition(after: Date.now)
}
/// Returns the name of the receiver localized for a given locale.
public func localizedName(for style: TimeZone.NameStyle, locale: Locale?) -> String? {
_tz.localizedName(for: style, locale: locale)
}
@_alwaysEmitIntoClient @_disfavoredOverload
@available(macOS 13, iOS 16, tvOS 16, watchOS 9, *)
public static var gmt: TimeZone { TimeZone(secondsFromGMT: 0)! }
package static let cldrKeywordKey = ICUCLDRKey("tz")
package static let legacyKeywordKey = ICULegacyKey("timezone")
// MARK: -
public func hash(into hasher: inout Hasher) {
_tz.hash(into: &hasher)
}
public static func ==(lhs: TimeZone, rhs: TimeZone) -> Bool {
// Autoupdating is only ever equal to autoupdating. Other time zones compare their values.
if lhs._tz.isAutoupdating && rhs._tz.isAutoupdating {
return true
} else if lhs._tz.isAutoupdating || rhs._tz.isAutoupdating {
return false
} else {
// If both have been initialized with data, then use it for comparison. Otherwise ignore it. Swift TimeZones, including autoupdating and current, do not set it.
if let lhsData = lhs.data, let rhsData = rhs.data {
return lhs.identifier == rhs.identifier && lhsData == rhsData
} else {
// Compare based on identifier only
return lhs.identifier == rhs.identifier
}
}
}
}
/// Constants you use to specify a style when presenting time zone names.
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension TimeZone {
#if !FOUNDATION_FRAMEWORK
/// Enum you use to specify different name style of a time zone.
public enum NameStyle : Int, Sendable {
/// Specifies a standard name style. For example, “Central Standard Time” for Central Time.
case standard
/// Specifies a short name style. For example, “CST” for Central Time.
case shortStandard
/// Specifies a daylight saving name style. For example, “Central Daylight Time” for Central Time.
case daylightSaving
/// Specifies a short daylight saving name style. For example, “CDT” for Central Time.
case shortDaylightSaving
/// Specifies a generic name style. For example, “Central Time” for Central Time.
case generic
/// Specifies a generic time zone name. For example, “CT” for Central Time.
case shortGeneric
}
#else
public typealias NameStyle = NSTimeZone.NameStyle
#endif
}
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension TimeZone : CustomStringConvertible, CustomDebugStringConvertible, CustomReflectable {
public var customMirror : Mirror {
let c: [(label: String?, value: Any)] = [
("identifier", identifier),
("tz", _tz),
("abbreviation", abbreviation() as Any),
("secondsFromGMT", secondsFromGMT()),
("isDaylightSavingTime", isDaylightSavingTime()),
]
return Mirror(self, children: c, displayStyle: Mirror.DisplayStyle.struct)
}
public var description: String {
return _tz.debugDescription
}
public var debugDescription : String {
return _tz.debugDescription
}
}
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension TimeZone : Codable {
private enum CodingKeys : Int, CodingKey {
case identifier
case autoupdating
}
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
if let autoupdating = try container.decodeIfPresent(Bool.self, forKey: .autoupdating), autoupdating {
self = TimeZone.autoupdatingCurrent
return
}
let identifier = try container.decode(String.self, forKey: .identifier)
guard let timeZone = TimeZone(identifier: identifier) else {
throw DecodingError.dataCorrupted(DecodingError.Context(codingPath: decoder.codingPath,
debugDescription: "Invalid TimeZone identifier."))
}
self = timeZone
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
// Even if we are autoupdatingCurrent, encode the identifier for backward compatibility
try container.encode(self.identifier, forKey: .identifier)
if _tz.isAutoupdating {
try container.encode(true, forKey: .autoupdating)
}
}
}
// MARK: - Bridging
#if FOUNDATION_FRAMEWORK
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension TimeZone : ReferenceConvertible, _ObjectiveCBridgeable {
public typealias ReferenceType = NSTimeZone
@_semantics("convertToObjectiveC")
public func _bridgeToObjectiveC() -> NSTimeZone {
_tz.bridgeToNSTimeZone()
}
public static func _forceBridgeFromObjectiveC(_ input: NSTimeZone, result: inout TimeZone?) {
if !_conditionallyBridgeFromObjectiveC(input, result: &result) {
fatalError("Unable to bridge \(_ObjectiveCType.self) to \(self)")
}
}
public static func _conditionallyBridgeFromObjectiveC(_ input: NSTimeZone, result: inout TimeZone?) -> Bool {
result = TimeZone(reference: input)
return true
}
@_effects(readonly)
public static func _unconditionallyBridgeFromObjectiveC(_ source: NSTimeZone?) -> TimeZone {
var result: TimeZone?
_forceBridgeFromObjectiveC(source!, result: &result)
return result!
}
}
@available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
extension NSTimeZone : _HasCustomAnyHashableRepresentation {
// Must be @nonobjc to avoid infinite recursion during bridging.
@nonobjc
public func _toCustomAnyHashable() -> AnyHashable? {
return AnyHashable(self as TimeZone)
}
}
#endif
extension TimeZone {
// Specifies which occurrence of time to use when it falls into the repeated hour or the skipped hour during DST transition day
// For the skipped time frame when transitioning into DST (e.g. 1:00 - 3:00 AM for PDT), use `.former` if asking for the occurrence when DST hasn't happened yet
// For the repeated time frame when DST ends (e.g. 1:00 - 2:00 AM for PDT), use .former if asking for the instance before turning back the clock
package enum DaylightSavingTimePolicy {
case former
case latter
}
}
extension TimeZone {
internal static func dataFromTZFile(_ name: String) -> Data {
#if NO_TZFILE || os(Windows)
return Data()
#else
let path = TZDIR + "/" + name
guard !path.contains("..") else {
// No good reason for .. to be present anywhere in the path
return Data()
}
return (try? Data(contentsOfFile: path)) ?? Data()
#endif
}
internal static func resetSystemTimeZone() -> TimeZone? {
let oldTimeZone = TimeZoneCache.cache.reset()
// Also reset the calendar cache, since the current calendar uses the current time zone
CalendarCache.cache.reset()
return oldTimeZone
}
#if !FOUNDATION_FRAMEWORK
@_spi(SwiftCorelibsFoundation) public static func _dataFromTZFile(_ name: String) -> Data {
TimeZone.dataFromTZFile(name)
}
@_spi(SwiftCorelibsFoundation) public static func _resetSystemTimeZone() -> TimeZone? {
TimeZone.resetSystemTimeZone()
}
#endif
}
|