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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2023 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
//
//===----------------------------------------------------------------------===//
/// A format style that transforms a continuous input into a discrete output and provides
/// information about its discretization boundaries.
///
/// Use this protocol to keep displays up to date if input changes continuously, or to iterate
/// over all possible outputs of a ``FormatStyle`` by obtaining the next discrete input in either direction
/// from ``discreteInput(before:)`` or ``discreteInput(after:)``.
///
/// ## Ordering of Inputs
///
/// The ordering over ``FormatStyle/FormatInput``
/// defined by ``discreteInput(before:)`` / ``discreteInput(after:)`` must be
/// consistent between the two functions. If ``FormatStyle/FormatInput`` conforms to the
/// `Comparable` protocol, the format style's ordering _should_ be consistent with the canonical ordering
/// defined via the `Comparable` conformance, i.e. it should hold that
/// `discreteInput(before: x)! < x < discreteInput(after: x)!` where discrete inputs
/// are not nil.
///
/// ## Stepping through Discrete Input/Output Pairs
///
/// One use case of this protocol is enumerating all discrete inputs of a format style and their respective
/// outputs.
///
/// While the ``discreteInput(before:)`` and ``discreteInput(after:)``
/// functions are the right tool for that, they do not give a guarantee that their respective return values
/// actually produce an output that is different from the output produced by formatting the `input` value
/// used when calling ``discreteInput(before:)`` / ``discreteInput(after:)``, they only
/// provide a value that produces a different output for _most_ inputs. E.g. when formatting a floating point
/// value as an integer, we can get the next discrete input after `x` by calculating `floor(x + 1)`.
/// However, when rounding toward zero, the whole interval (-1;1) formats as zero. It would be ok for a
/// discrete format style to ignore that edge case and return `0` for the ``discreteInput(after:)`` a
/// negative value greater than `-1`. Therefore, to enumerate all discrete input/output pairs, adjacent
/// outputs must be deduplicated in order to guarantee no adjacent outputs are the same.
///
/// The following example produces all discrete input/output pairs for inputs in a given `range` making
/// sure adjacent outputs are unequal:
///
/// ```swift
/// extension DiscreteFormatStyle
/// where FormatInput : Comparable, FormatOutput : Equatable
/// {
/// func enumerated(
/// in range: ClosedRange<FormatInput>
/// ) -> [(input: FormatInput, output: FormatOutput)] {
/// var input = range.lowerBound
/// var output = format(input)
///
/// var pairs = [(input: FormatInput, output: FormatOutput)]()
/// pairs.append((input, output))
///
/// // get the next discretization bound
/// while let nextInput = discreteInput(after: input),
/// // check that it is still in the requested `range`
/// nextInput <= range.upperBound {
/// // get the respective formatted output
/// let nextOutput = format(nextInput)
/// // deduplicate based on the formatted output
/// if nextOutput != output {
/// pairs.append((nextInput, nextOutput))
/// }
/// input = nextInput
/// output = nextOutput
/// }
///
/// return pairs
/// }
/// }
/// ```
///
/// ## Imperfect Discretization Boundaries
///
/// In some scenarios, a format style cannot provide precise discretization boundaries in
/// a performant manner. In those cases it must override ``input(before:)`` and
/// ``input(after:)`` to reflect that. For any discretization boundary `x` returned by either
/// ``discreteInput(before:)`` or ``discreteInput(after:)`` based on the
/// original input `y`, all values representable in the ``FormatStyle/FormatInput``strictly between
/// `x` and the return value of `input(after: x)` or `input(before: x)`, respectively, are not
/// guaranteed to produce the same formatted output as `y`.
///
/// The following schematic shows an overview of the guarantees given by the protocol:
///
/// xB = discreteInput(before: y) y xA = discreteInput(after: y)
/// | | |
/// <-----+---+-------------------------+-------------------------+---+--->
/// | |
/// zB = input(after: xB) zA = input(before: xA)
///
/// - the formatted output for everything in `zB...zA` (including bounds) is **guaranteed** to be equal
/// to `format(y)`
/// - the formatted output for `xB` and lower is **most likely** different from `format(y)`
/// - the formatted output for `xA` and higher is **most likely** different from `format(y)`
/// - the formatted output between `xB` and `zB`, as well as `zA` and `xA` (excluding bounds) cannot
/// be predicted
@available(FoundationPreview 0.4, *)
public protocol DiscreteFormatStyle<FormatInput, FormatOutput> : FormatStyle {
/// The next discretization boundary before the given input.
///
/// Use this function to determine the next "smaller" input that warrants updating the formatted output.
/// The following example prints all possible outputs the format style can produce downwards starting
/// from the `startInput`:
///
/// ```swift
/// var previousInput = startInput
/// while let nextInput = style.discreteInput(before: previousInput) {
/// print(style.format(nextInput))
/// previousInput = nextInput
/// }
/// ```
///
/// - Returns: For most `input`s, the method returns the "greatest" value "smaller" than
/// `input` for which the style produces a different ``FormatStyle/FormatOutput``, or `nil`
/// if no such value exists. For some input values, the function may also return a value "smaller" than
/// `input` for which the style still produces the same ``FormatStyle/FormatOutput`` as for
/// `input`.
func discreteInput(before input: FormatInput) -> FormatInput?
/// The next discretization boundary after the given input.
///
/// Use this function to determine the next "greater" input that warrants updating the formatted output.
/// The following example prints all possible outputs the format style can produce upwards starting
/// from the `startInput`:
///
/// ```swift
/// var previousInput = startInput
/// while let nextInput = style.discreteInput(after: previousInput) {
/// print(style.format(nextInput))
/// previousInput = nextInput
/// }
/// ```
///
/// - Returns: For most `input`s, the method returns the "smallest" value "greater" than
/// `input` for which the style produces a different ``FormatStyle/FormatOutput``, or `nil`
/// if no such value exists. For some input values, the function may also return a value "greater" than
/// `input` for which the style still produces the same ``FormatStyle/FormatOutput`` as for
/// `input`.
func discreteInput(after input: FormatInput) -> FormatInput?
/// The next input value before the given input.
///
/// Use this function to determine if the return value provided by ``discreteInput(after:)`` is
/// precise enough for your use case for any input `y`:
///
/// ```swift
/// guard let x = style.discreteInput(after: y) else {
/// return
/// }
///
/// let z = style.input(before: x) ?? y
/// ```
///
/// If the distance between `z` and `x` is too large for the precision you require, you may want
/// to manually probe ``FormatStyle/format(_:)`` at a higher rate in that interval, as there is
/// no guarantee for what the output will be in that interval.
///
/// - Returns: The next "smalller" input value that can be represented by
/// ``FormatStyle/FormatInput`` or an underlying representation the format style uses
/// internally.
func input(before input: FormatInput) -> FormatInput?
/// The next input value after the given input.
///
/// Use this function to determine if the return value provided by ``discreteInput(before:)`` is
/// precise enough for your use case for any input `y`:
///
/// ```swift
/// guard let x = style.discreteInput(before: y) else {
/// return
/// }
///
/// let z = style.input(after: x) ?? y
/// ```
///
/// If the distance between `x` and `z` is too large for the precision you require, you may want
/// to manually probe ``FormatStyle/format(_:)`` at a higher rate in that interval, as there is
/// no guarantee for what the output will be in that interval.
///
/// - Returns: The next "greater" input value that can be represented by
/// ``FormatStyle/FormatInput`` or an underlying representation the format style uses
/// internally.
func input(after input: FormatInput) -> FormatInput?
}
@available(FoundationPreview 0.4, *)
extension DiscreteFormatStyle where FormatInput : FloatingPoint {
public func input(before input: FormatInput) -> FormatInput? {
guard input > -FormatInput.infinity else {
return nil
}
return input.nextDown
}
public func input(after input: FormatInput) -> FormatInput? {
guard input < FormatInput.infinity else {
return nil
}
return input.nextUp
}
}
@available(FoundationPreview 0.4, *)
extension DiscreteFormatStyle where FormatInput : FixedWidthInteger {
public func input(before input: FormatInput) -> FormatInput? {
guard input > FormatInput.min else {
return nil
}
return input - 1
}
public func input(after input: FormatInput) -> FormatInput? {
guard input < FormatInput.max else {
return nil
}
return input + 1
}
}
@available(FoundationPreview 0.4, *)
extension DiscreteFormatStyle where FormatInput == Date {
public func input(before input: FormatInput) -> FormatInput? {
guard input > Date.distantPast else {
return nil
}
return input.nextDown
}
public func input(after input: FormatInput) -> FormatInput? {
guard input < Date.distantFuture else {
return nil
}
return input.nextUp
}
}
extension Date {
package var nextDown: Date {
.init(timeIntervalSinceReferenceDate: timeIntervalSinceReferenceDate.nextDown)
}
package var nextUp: Date {
.init(timeIntervalSinceReferenceDate: timeIntervalSinceReferenceDate.nextUp)
}
}
@available(FoundationPreview 0.4, *)
extension DiscreteFormatStyle where FormatInput == Duration {
public func input(before input: FormatInput) -> FormatInput? {
guard input > .seconds(Int64.min) else {
return nil
}
return input.nextDown
}
public func input(after input: FormatInput) -> FormatInput? {
guard input < .seconds(Int64.max) else {
return nil
}
return input.nextUp
}
}
extension Duration {
package var nextDown: Duration {
self - .init(secondsComponent: 0, attosecondsComponent: 1)
}
package var nextUp: Duration {
self + .init(secondsComponent: 0, attosecondsComponent: 1)
}
}
|