-
Notifications
You must be signed in to change notification settings - Fork 0
/
CLFormatConfig.swift
265 lines (253 loc) · 11.7 KB
/
CLFormatConfig.swift
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
//
// ControlParserConfig.swift
// CLFormat
//
// Created by Matthias Zenger on 19/03/2023.
// Copyright © 2023 Matthias Zenger. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
//
import Foundation
///
/// A format configuration value contains an argument factory, a default representation
/// of `nil`, as well as a mapping from directive identifiers (characters) to directive
/// parsers which parse the directive. Most directives are atomic (i.e. they are not
/// composite) and parsing for those is trivial: they just package up the generically
/// parsed parameters and modifiers in a new directive specifier value. Composite
/// directives have more complex parsing logic.
///
public struct CLFormatConfig {
private var makeArguments: (Locale?, Int, Int, [Any?], Int?) -> Arguments
private var directiveParsers: [Character : DirectiveParser]
public var nilRepresentation: String
public var environment: [String : Any]
public init(makeArguments: @escaping (Locale?, Int, Int, [Any?], Int?) -> Arguments =
Arguments.init,
nilRepresentation: String = "nil") {
self.makeArguments = makeArguments
self.nilRepresentation = nilRepresentation
self.environment = [:]
self.directiveParsers = [:]
}
/// Return a new arguments object.
public func makeArguments(locale: Locale? = nil,
tabsize: Int = 8,
linewidth: Int = 80,
args: [Any?],
numArgumentsLeft: Int? = nil) -> Arguments {
return self.makeArguments(locale, tabsize, linewidth, args, numArgumentsLeft)
}
/// Determines what `makeArguments` is eventually invoking.
public mutating func setArgumentFactory(makeArguments:
@escaping (Locale?, Int, Int, [Any?], Int?) -> Arguments) {
self.makeArguments = makeArguments
}
/// Add a new directive parser to this format configuration for the given
/// array of characters.
public mutating func parse(_ chars: [Character], with parser: @escaping DirectiveParser) {
for char in chars {
self.directiveParsers[char] = parser
}
}
/// Add a new directive parser to this format configuration for the given characters.
public mutating func parse(_ chars: Character..., with parser: @escaping DirectiveParser) {
for char in chars {
self.directiveParsers[char] = parser
}
}
/// Add a new default directive parser which simply appends the directive to the list of
/// control components to this format configuration for the given characters.
public mutating func parse(_ chars: Character..., appending specifier: DirectiveSpecifier) {
self.parse(chars) { parser, parameters, modifiers in
return .append(Directive(parameters: parameters,
modifiers: modifiers,
specifier: specifier))
}
}
/// Remove the directive parser for the given characters.
public mutating func remove(_ chars: Character...) {
for ch in chars {
self.directiveParsers.removeValue(forKey: ch)
}
}
/// Returns the directive parser for the given character, or `null` if the character
/// does not have an associated directive parser in this configuration.
public func parser(for ch: Character) -> DirectiveParser? {
return self.directiveParsers[ch]
}
/// The standard format configuration. Whenever `nil` is specified as a format configuration,
/// this struct is used. The `String` initializers use this configuration as a default.
public static let standard: CLFormatConfig = {
var config = CLFormatConfig()
config.parse("a", "A", appending: StandardDirectiveSpecifier.ascii)
config.parse("w", "W", appending: StandardDirectiveSpecifier.write)
config.parse("s", "S", appending: StandardDirectiveSpecifier.sexpr)
config.parse("d", "D", appending: StandardDirectiveSpecifier.decimal)
config.parse("r", "R", appending: StandardDirectiveSpecifier.radix)
config.parse("b", "B", appending: StandardDirectiveSpecifier.binary)
config.parse("o", "O", appending: StandardDirectiveSpecifier.octal)
config.parse("x", "X", appending: StandardDirectiveSpecifier.hexadecimal)
config.parse("c", "C", appending: StandardDirectiveSpecifier.character)
config.parse("f", "F", appending: StandardDirectiveSpecifier.fixedFloat)
config.parse("e", "E", appending: StandardDirectiveSpecifier.exponentFloat)
config.parse("g", "G", appending: StandardDirectiveSpecifier.generalFloat)
config.parse("$", appending: StandardDirectiveSpecifier.moneyAmount)
config.parse("p", "P", appending: StandardDirectiveSpecifier.plural)
config.parse("t", "T", appending: StandardDirectiveSpecifier.tabular)
config.parse("%", appending: StandardDirectiveSpecifier.percent)
config.parse("&", appending: StandardDirectiveSpecifier.ampersand)
config.parse("|", appending: StandardDirectiveSpecifier.bar)
config.parse("~", appending: StandardDirectiveSpecifier.tilde)
config.parse("*", appending: StandardDirectiveSpecifier.ignoreArgs)
config.parse("^", appending: StandardDirectiveSpecifier.upAndOut)
config.parse("?", appending: StandardDirectiveSpecifier.indirection)
config.parse("\n") { parser, parameters, modifiers in
if modifiers.contains(.colon) && modifiers.contains(.at) {
throw CLControlError.malformedDirective("~:@\\n")
} else if modifiers.contains(.colon) {
return .ignore
}
while let next = parser.lookaheadChar(), next == " " {
_ = try parser.nextChar()
}
if modifiers.contains(.at) {
return .append(Parameters(), Modifiers(), StandardDirectiveSpecifier.percent)
} else {
return .ignore
}
}
config.parse("(") { parser, parameters, modifiers in
_ = try parser.nextChar()
let (control, directive) = try parser.parse()
guard let directive = directive,
directive.specifier.identifier ==
StandardDirectiveSpecifier.conversionEnd.identifier else {
throw CLControlError.malformedDirectiveSyntax("conversion", "~(...~)")
}
return .append(parameters, modifiers, StandardDirectiveSpecifier.conversion(control))
}
config.parse(")") { parser, parameters, modifiers in
guard parameters.parameterCount == 0,
!modifiers.contains(.at), !modifiers.contains(.colon) else {
throw CLControlError.malformedDirective("~\(modifiers))")
}
return .exit(parameters, modifiers, StandardDirectiveSpecifier.conversionEnd)
}
config.parse("[") { parser, parameters, modifiers in
var alternatives = [CLControl]()
var def = false
_ = try parser.nextChar()
while true {
let (control, directive) = try parser.parse()
alternatives.append(control)
if let dir = directive {
if dir.specifier.identifier == StandardDirectiveSpecifier.separator.identifier {
guard !def else {
throw CLControlError.malformedDirectiveSyntax("conditional", "~[...~:;...~]")
}
if dir.modifiers.contains(.colon) {
def = true
}
continue
} else if dir.specifier.identifier ==
StandardDirectiveSpecifier.conditionalEnd.identifier {
break
}
}
throw CLControlError.malformedDirectiveSyntax("conditional", "~[...~]")
}
return .append(parameters,
modifiers,
StandardDirectiveSpecifier.conditional(alternatives, def))
}
config.parse("]") { parser, parameters, modifiers in
guard parameters.parameterCount == 0,
!modifiers.contains(.at), !modifiers.contains(.colon) else {
throw CLControlError.malformedDirective("~\(modifiers)]")
}
return .exit(parameters, modifiers, StandardDirectiveSpecifier.conditionalEnd)
}
config.parse(";") { parser, parameters, modifiers in
guard parameters.parameterCount == 0 ||
(parameters.parameterCount <= 2 && modifiers.contains(.colon)),
!modifiers.contains(.at) else {
throw CLControlError.malformedDirective("~:;")
}
parser.i = parser.control.index(after: parser.i)
return .exit(parameters, modifiers, StandardDirectiveSpecifier.separator)
}
config.parse("{") { parser, parameters, modifiers in
_ = try parser.nextChar()
let (control, directive) = try parser.parse()
guard let directive = directive,
directive.specifier.identifier ==
StandardDirectiveSpecifier.iterationEnd.identifier else {
throw CLControlError.malformedDirectiveSyntax("iteration", "~{...~}")
}
return .append(parameters,
modifiers,
StandardDirectiveSpecifier.iteration(control,
directive.modifiers.contains(.colon)))
}
config.parse("}") { parser, parameters, modifiers in
guard parameters.parameterCount == 0, !modifiers.contains(.at) else {
throw CLControlError.malformedDirective("~\(modifiers)}")
}
return .exit(parameters, modifiers, StandardDirectiveSpecifier.iterationEnd)
}
config.parse("<") { parser, parameters, modifiers in
var sections = [CLControl]()
var spare: Int? = nil
var width: Int? = nil
_ = try parser.nextChar()
while true {
let (control, directive) = try parser.parse()
sections.append(control)
if let dir = directive {
if dir.specifier.identifier == StandardDirectiveSpecifier.separator.identifier {
if dir.modifiers.contains(.colon) {
guard sections.count == 1 else {
throw CLControlError.malformedDirectiveSyntax("justification", "~<...~:;...~>")
}
spare = try dir.parameters.number(0) ?? 0
width = try dir.parameters.number(1)
}
continue
} else if dir.specifier.identifier ==
StandardDirectiveSpecifier.justificationEnd.identifier {
break
}
}
throw CLControlError.malformedDirectiveSyntax("justification", "~<...~>")
}
guard !parameters.parameterProvided(4) || sections.count == 1 else {
throw CLControlError.malformedDirectiveSyntax("justification", "~,,,,X<...~>")
}
return .append(parameters,
modifiers,
StandardDirectiveSpecifier.justification(sections, spare, width))
}
config.parse(">") { parser, parameters, modifiers in
guard parameters.parameterCount == 0,
!modifiers.contains(.at), !modifiers.contains(.colon) else {
throw CLControlError.malformedDirective("~\(modifiers)>")
}
return .exit(parameters, modifiers, StandardDirectiveSpecifier.justificationEnd)
}
return config
}()
/// The default format configuration for the functions `clformat` and `clprintf`. This
/// configuation is mutable so that the behavior can be changed globally. Please note
/// that the `String` initializers do not rely on this mutable config as a default.
public static var `default`: CLFormatConfig = CLFormatConfig.standard
}