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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftASN1 open source project
//
// Copyright (c) 2021 Apple Inc. and the SwiftASN1 project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftASN1 project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
/// GeneralizedTime represents a date and time.
///
/// In DER format, this is always in the form of `YYYYMMDDHHMMSSZ`. The type in
/// general is capable of expressing fractional seconds. The time is always in the
/// UTC time zone.
public struct GeneralizedTime: DERImplicitlyTaggable, Hashable, Sendable {
@inlinable
public static var defaultIdentifier: ASN1Identifier {
.generalizedTime
}
/// The numerical year.
@inlinable
public var year: Int {
get {
return self._year
}
set {
self._year = newValue
try! self._validate()
}
}
/// The numerical month.
@inlinable
public var month: Int {
get {
return self._month
}
set {
self._month = newValue
try! self._validate()
}
}
/// The numerical day.
@inlinable
public var day: Int {
get {
return self._day
}
set {
self._day = newValue
try! self._validate()
}
}
/// The numerical hours.
@inlinable
public var hours: Int {
get {
return self._hours
}
set {
self._hours = newValue
try! self._validate()
}
}
/// The numerical minutes.
@inlinable
public var minutes: Int {
get {
return self._minutes
}
set {
self._minutes = newValue
try! self._validate()
}
}
/// The numerical seconds.
@inlinable
public var seconds: Int {
get {
return self._seconds
}
set {
self._seconds = newValue
try! self._validate()
}
}
/// The fractional seconds.
@inlinable
public var fractionalSeconds: Double {
get {
return self._fractionalSeconds
}
set {
self._fractionalSeconds = newValue
try! self._validate()
}
}
@usableFromInline var _year: Int
@usableFromInline var _month: Int
@usableFromInline var _day: Int
@usableFromInline var _hours: Int
@usableFromInline var _minutes: Int
@usableFromInline var _seconds: Int
@usableFromInline var _fractionalSeconds: Double
/// Construct a new ``GeneralizedTime`` from individual components.
///
/// - parameters:
/// - year: The numerical year
/// - month: The numerical month
/// - day: The numerical day
/// - hours: The numerical hours
/// - minutes: The numerical minutes
/// - seconds: The numerical seconds
/// - fractionalSeconds: The numerical fractional seconds.
@inlinable
public init(
year: Int,
month: Int,
day: Int,
hours: Int,
minutes: Int,
seconds: Int,
fractionalSeconds: Double
) throws {
self._year = year
self._month = month
self._day = day
self._hours = hours
self._minutes = minutes
self._seconds = seconds
self._fractionalSeconds = fractionalSeconds
try self._validate()
}
@inlinable
public init(derEncoded node: ASN1Node, withIdentifier identifier: ASN1Identifier) throws {
guard node.identifier == identifier else {
throw ASN1Error.unexpectedFieldType(node.identifier)
}
guard case .primitive(let content) = node.content else {
preconditionFailure("ASN.1 parser generated primitive node with constructed content")
}
self = try TimeUtilities.generalizedTimeFromBytes(content)
}
@inlinable
public func serialize(into coder: inout DER.Serializer, withIdentifier identifier: ASN1Identifier) throws {
coder.appendPrimitiveNode(identifier: identifier) { bytes in
bytes.append(self)
}
}
@inlinable
func _validate() throws {
// Validate that the structure is well-formed.
guard self._year >= 0 && self._year <= 9999 else {
throw ASN1Error.invalidASN1Object(reason: "Invalid year for GeneralizedTime \(self._year)")
}
// This also validates the month.
guard let daysInMonth = TimeUtilities.daysInMonth(self._month, ofYear: self._year) else {
throw ASN1Error.invalidASN1Object(
reason: "Invalid month \(self._month) of year \(self.year) for GeneralizedTime"
)
}
guard self._day >= 1 && self._day <= daysInMonth else {
throw ASN1Error.invalidASN1Object(
reason: "Invalid day \(self._day) of month \(self._month) for GeneralizedTime"
)
}
guard self._hours >= 0 && self._hours < 24 else {
throw ASN1Error.invalidASN1Object(reason: "Invalid hour for GeneralizedTime \(self._hours)")
}
guard self._minutes >= 0 && self._minutes < 60 else {
throw ASN1Error.invalidASN1Object(reason: "Invalid minute for GeneralizedTime \(self._minutes)")
}
// We allow leap seconds here, but don't validate it.
// This exposes us to potential confusion if we naively implement
// comparison here. We should consider whether this needs to be transformable
// to `Date` or similar.
guard self._seconds >= 0 && self._seconds <= 61 else {
throw ASN1Error.invalidASN1Object(reason: "Invalid seconds for Generalized \(self._seconds)")
}
// Fractional seconds may not be negative and may not be 1 or more.
guard self._fractionalSeconds >= 0 && self._fractionalSeconds < 1 else {
throw ASN1Error.invalidASN1Object(
reason: "Invalid fractional seconds for GeneralizedTime \(self._fractionalSeconds)"
)
}
}
}
extension GeneralizedTime: Comparable {
@inlinable
public static func < (lhs: GeneralizedTime, rhs: GeneralizedTime) -> Bool {
if lhs.year < rhs.year { return true } else if lhs.year > rhs.year { return false }
if lhs.month < rhs.month { return true } else if lhs.month > rhs.month { return false }
if lhs.day < rhs.day { return true } else if lhs.day > rhs.day { return false }
if lhs.hours < rhs.hours { return true } else if lhs.hours > rhs.hours { return false }
if lhs.minutes < rhs.minutes { return true } else if lhs.minutes > rhs.minutes { return false }
if lhs.seconds < rhs.seconds { return true } else if lhs.seconds > rhs.seconds { return false }
return lhs.fractionalSeconds < rhs.fractionalSeconds
}
}
|