-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCache.swift
More file actions
127 lines (105 loc) · 5.02 KB
/
Cache.swift
File metadata and controls
127 lines (105 loc) · 5.02 KB
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
//=----------------------------------------------------------------------------=
// This source file is part of the DiffableTextViews open source project.
//
// Copyright (c) 2022 Oscar Byström Ericsson
// Licensed under Apache License, Version 2.0
//
// See http://www.apache.org/licenses/LICENSE-2.0 for license information.
//=----------------------------------------------------------------------------=
import DiffableTextKit
import Foundation
//*============================================================================*
// MARK: * Cache
//*============================================================================*
@usableFromInline protocol _Cache: NullableTextStyle {
associatedtype Format: _Format where Format.FormatInput == Value
//=------------------------------------------------------------------------=
// MARK: State
//=------------------------------------------------------------------------=
@inlinable var bounds: _Bounds<Value> { get }
@inlinable var precision: _Precision<Value> { get }
@inlinable var parser: Parser<Format> { get }
@inlinable var formatter: Formatter<Format> { get }
@inlinable var interpreter: Interpreter { get }
//=------------------------------------------------------------------------=
// MARK: Utilities
//=------------------------------------------------------------------------=
@inlinable func snapshot(_ characters: String) -> Snapshot
}
//=----------------------------------------------------------------------------=
// MARK: + Utilities
//=----------------------------------------------------------------------------=
extension _Cache {
//=------------------------------------------------------------------------=
// MARK: Inactive
//=------------------------------------------------------------------------=
@inlinable public func format(_ value: Value, with cache: inout Void) -> String {
formatter.precision(precision.inactive()).format(value)
}
//=------------------------------------------------------------------------=
// MARK: Active
//=------------------------------------------------------------------------=
@inlinable public func interpret(_ value: Value, with cache: inout Void) -> Commit<Value> {
var value = value
//=--------------------------------------=
// Autocorrect
//=--------------------------------------=
bounds.autocorrect(&value)
//=--------------------------------------=
// Number
//=--------------------------------------=
let formatter = formatter.precision(precision.active())
let numberable = self.snapshot(formatter.format(value))
var number = try! interpreter.number(numberable, as: Value.self)!
//=--------------------------------------=
// Autocorrect
//=--------------------------------------=
bounds .autocorrect(&number)
precision.autocorrect(&number)
//=--------------------------------------=
// Value
//=--------------------------------------=
value = try! parser.parse(number)
//=--------------------------------------=
// Commit
//=--------------------------------------=
return Commit(value,snapshot(formatter.format(
value, number, with: interpreter.components)))
}
//=------------------------------------------------------------------------=
// MARK: Interactive
//=------------------------------------------------------------------------=
@inlinable public func resolve(_ proposal: Proposal,
with cache: inout Void) throws -> Commit<Value> {
try resolve(interpreter.number(proposal, as: Value.self)!)
}
@inlinable public func resolve(optional proposal: Proposal,
with cache: inout Void) throws -> Commit<Value?> {
let number = try interpreter.number(proposal, as: Value?.self)
return try number.map({ try Commit(resolve($0)) }) ?? Commit()
}
@inlinable func resolve(_ number: Number) throws -> Commit<Value> {
var number = number
let count = Count(number)
//=--------------------------------------=
// Autovalidate
//=--------------------------------------=
try bounds .autovalidate(&number)
try precision.autovalidate(&number, count)
//=--------------------------------------=
// Value
//=--------------------------------------=
let value = try parser.parse(number)
//=--------------------------------------=
// Autovalidate
//=--------------------------------------=
try bounds.autovalidate(value, &number)
//=--------------------------------------=
// Commit
//=--------------------------------------=
let precision = precision.interactive(count)
let formatter = formatter.precision(precision)
return Commit(value,snapshot(formatter.format(
value, number, with: interpreter.components)))
}
}