-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(datastore): store time zone info in Temporal.DateTime (#3393)
* fix(datastore): store time zone info in Temporal.DateTime * change to use private enum * add support for hh:mm:ss timezone format * resolve comments * refactor implementation with enums
- Loading branch information
Showing
11 changed files
with
241 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,6 @@ extension TemporalSpec { | |
""" | ||
) | ||
} | ||
return Self.init(date) | ||
return Self.init(date, timeZone: timeZone) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
150 changes: 150 additions & 0 deletions
150
Amplify/Categories/DataStore/Model/Temporal/TimeZone+Extension.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
// | ||
// Copyright Amazon.com Inc. or its affiliates. | ||
// All Rights Reserved. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
|
||
import Foundation | ||
|
||
extension TimeZone { | ||
|
||
@usableFromInline | ||
internal init?(iso8601DateString: String) { | ||
switch ISO8601TimeZonePart.from(iso8601DateString: iso8601DateString) { | ||
case .some(.utc): | ||
self.init(abbreviation: "UTC") | ||
case let .some(.hh(hours: hours)): | ||
self.init(secondsFromGMT: hours * 60 * 60) | ||
case let .some(.hhmm(hours: hours, minutes: minutes)), | ||
let .some(.hh_mm(hours: hours, minuts: minutes)): | ||
self.init(secondsFromGMT: hours * 60 * 60 + | ||
(hours > 0 ? 1 : -1) * minutes * 60) | ||
case let .some(.hh_mm_ss(hours: hours, minutes: minutes, seconds: seconds)): | ||
self.init(secondsFromGMT: hours * 60 * 60 + | ||
(hours > 0 ? 1 : -1) * minutes * 60 + | ||
(hours > 0 ? 1 : -1) * seconds) | ||
case .none: | ||
return nil | ||
} | ||
} | ||
} | ||
|
||
|
||
/// ISO8601 Time Zone formats | ||
/// - Note: | ||
/// `±hh:mm:ss` is not a standard of ISO8601 date formate. It's supported by `AWSDateTime` exclusively. | ||
/// | ||
/// references: | ||
/// https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators | ||
/// https://docs.aws.amazon.com/appsync/latest/devguide/scalars.html#graph-ql-aws-appsync-scalars | ||
fileprivate enum ISO8601TimeZoneFormat { | ||
case utc, hh, hhmm, hh_mm, hh_mm_ss | ||
|
||
var format: String { | ||
switch self { | ||
case .utc: | ||
return "Z" | ||
case .hh: | ||
return "±hh" | ||
case .hhmm: | ||
return "±hhmm" | ||
case .hh_mm: | ||
return "±hh:mm" | ||
case .hh_mm_ss: | ||
return "±hh:mm:ss" | ||
} | ||
} | ||
|
||
var regex: NSRegularExpression? { | ||
switch self { | ||
case .utc: | ||
return try? NSRegularExpression(pattern: "^Z$") | ||
case .hh: | ||
return try? NSRegularExpression(pattern: "^[+-]\\d{2}$") | ||
case .hhmm: | ||
return try? NSRegularExpression(pattern: "^[+-]\\d{2}\\d{2}$") | ||
case .hh_mm: | ||
return try? NSRegularExpression(pattern: "^[+-]\\d{2}:\\d{2}$") | ||
case .hh_mm_ss: | ||
return try? NSRegularExpression(pattern: "^[+-]\\d{2}:\\d{2}:\\d{2}$") | ||
} | ||
} | ||
|
||
var parts: [NSRange] { | ||
switch self { | ||
case .utc: | ||
return [] | ||
case .hh: | ||
return [NSRange(location: 0, length: 3)] | ||
case .hhmm: | ||
return [ | ||
NSRange(location: 0, length: 3), | ||
NSRange(location: 3, length: 2) | ||
] | ||
case .hh_mm: | ||
return [ | ||
NSRange(location: 0, length: 3), | ||
NSRange(location: 4, length: 2) | ||
] | ||
case .hh_mm_ss: | ||
return [ | ||
NSRange(location: 0, length: 3), | ||
NSRange(location: 4, length: 2), | ||
NSRange(location: 7, length: 2) | ||
] | ||
} | ||
} | ||
} | ||
|
||
fileprivate enum ISO8601TimeZonePart { | ||
case utc | ||
case hh(hours: Int) | ||
case hhmm(hours: Int, minutes: Int) | ||
case hh_mm(hours: Int, minuts: Int) | ||
case hh_mm_ss(hours: Int, minutes: Int, seconds: Int) | ||
|
||
|
||
static func from(iso8601DateString: String) -> ISO8601TimeZonePart? { | ||
return tryExtract(from: iso8601DateString, with: .utc) | ||
?? tryExtract(from: iso8601DateString, with: .hh) | ||
?? tryExtract(from: iso8601DateString, with: .hhmm) | ||
?? tryExtract(from: iso8601DateString, with: .hh_mm) | ||
?? tryExtract(from: iso8601DateString, with: .hh_mm_ss) | ||
?? nil | ||
} | ||
} | ||
|
||
fileprivate func tryExtract( | ||
from dateString: String, | ||
with format: ISO8601TimeZoneFormat | ||
) -> ISO8601TimeZonePart? { | ||
guard dateString.count > format.format.count else { | ||
return nil | ||
} | ||
|
||
let tz = String(dateString.dropFirst(dateString.count - format.format.count)) | ||
|
||
guard format.regex.flatMap({ | ||
$0.firstMatch(in: tz, range: NSRange(location: 0, length: tz.count)) | ||
}) != nil else { | ||
return nil | ||
} | ||
|
||
let parts = format.parts.compactMap { range in | ||
Range(range, in: tz).flatMap { Int(tz[$0]) } | ||
} | ||
|
||
guard parts.count == format.parts.count else { | ||
return nil | ||
} | ||
|
||
switch format { | ||
case .utc: return .utc | ||
case .hh: return .hh(hours: parts[0]) | ||
case .hhmm: return .hhmm(hours: parts[0], minutes: parts[1]) | ||
case .hh_mm: return .hh_mm(hours: parts[0], minuts: parts[1]) | ||
case .hh_mm_ss: return .hh_mm_ss(hours: parts[0], minutes: parts[1], seconds: parts[2]) | ||
} | ||
} |
Oops, something went wrong.