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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
|
//===----------------------------------------------------------*- swift -*-===//
//
// This source file is part of the Swift Argument Parser open source project
//
// Copyright (c) 2020 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
//
//===----------------------------------------------------------------------===//
@_implementationOnly import protocol Foundation.LocalizedError
struct UsageGenerator {
var toolName: String
var definition: ArgumentSet
}
extension UsageGenerator {
init(definition: ArgumentSet) {
let toolName = CommandLine.arguments[0].split(separator: "/").last.map(String.init) ?? "<command>"
self.init(toolName: toolName, definition: definition)
}
init(toolName: String, parsable: ParsableArguments, visibility: ArgumentVisibility, parent: InputKey?) {
self.init(
toolName: toolName,
definition: ArgumentSet(type(of: parsable), visibility: visibility, parent: parent))
}
init(toolName: String, definition: [ArgumentSet]) {
self.init(toolName: toolName, definition: ArgumentSet(sets: definition))
}
}
extension UsageGenerator {
/// The tool synopsis.
///
/// In `roff`.
var synopsis: String {
var options = Array(definition)
switch options.count {
case 0:
return toolName
case let x where x > 12:
// When we have too many options, keep required and positional arguments,
// but discard the rest.
options = options.filter {
$0.isPositional || !$0.help.options.contains(.isOptional)
}
// If there are between 1 and 12 options left, print them, otherwise print
// a simplified usage string.
if !options.isEmpty, options.count <= 12 {
let synopsis = options
.map { $0.synopsis }
.joined(separator: " ")
return "\(toolName) [<options>] \(synopsis)"
}
return "\(toolName) <options>"
default:
let synopsis = options
.map { $0.synopsis }
.joined(separator: " ")
return "\(toolName) \(synopsis)"
}
}
}
extension ArgumentDefinition {
var synopsisForHelp: String {
switch kind {
case .named:
let joinedSynopsisString = names
.partitioned
.map { $0.synopsisString }
.joined(separator: ", ")
switch update {
case .unary:
return "\(joinedSynopsisString) <\(valueName)>"
case .nullary:
return joinedSynopsisString
}
case .positional:
return "<\(valueName)>"
case .default:
return ""
}
}
var unadornedSynopsis: String {
switch kind {
case .named:
guard let name = names.preferredName else {
fatalError("preferredName cannot be nil for named arguments")
}
switch update {
case .unary:
return "\(name.synopsisString) <\(valueName)>"
case .nullary:
return name.synopsisString
}
case .positional:
return "<\(valueName)>"
case .default:
return ""
}
}
var synopsis: String {
var synopsis = unadornedSynopsis
if help.options.contains(.isRepeating) {
synopsis += " ..."
}
if help.options.contains(.isOptional) {
synopsis = "[\(synopsis)]"
}
if parsingStrategy == .postTerminator {
synopsis = "-- \(synopsis)"
}
return synopsis
}
}
extension ArgumentSet {
/// Will generate a descriptive help message if possible.
///
/// If no descriptive help message can be generated, `nil` will be returned.
///
/// - Parameter error: the parse error that occurred.
func errorDescription(error: Swift.Error) -> String? {
switch error {
case let parserError as ParserError:
return ErrorMessageGenerator(arguments: self, error: parserError)
.makeErrorMessage()
case let commandError as CommandError:
return ErrorMessageGenerator(arguments: self, error: commandError.parserError)
.makeErrorMessage()
default:
return nil
}
}
func helpDescription(error: Swift.Error) -> String? {
switch error {
case let parserError as ParserError:
return ErrorMessageGenerator(arguments: self, error: parserError)
.makeHelpMessage()
case let commandError as CommandError:
return ErrorMessageGenerator(arguments: self, error: commandError.parserError)
.makeHelpMessage()
default:
return nil
}
}
}
struct ErrorMessageGenerator {
var arguments: ArgumentSet
var error: ParserError
}
extension ErrorMessageGenerator {
func makeErrorMessage() -> String? {
switch error {
case .helpRequested, .versionRequested, .completionScriptRequested, .completionScriptCustomResponse, .dumpHelpRequested:
return nil
case .unsupportedShell(let shell?):
return unsupportedShell(shell)
case .unsupportedShell:
return unsupportedAutodetectedShell
case .notImplemented:
return notImplementedMessage
case .invalidState:
return invalidState
case .unknownOption(let o, let n):
return unknownOptionMessage(origin: o, name: n)
case .missingValueForOption(let o, let n):
return missingValueForOptionMessage(origin: o, name: n)
case .unexpectedValueForOption(let o, let n, let v):
return unexpectedValueForOptionMessage(origin: o, name: n, value: v)
case .unexpectedExtraValues(let v):
return unexpectedExtraValuesMessage(values: v)
case .duplicateExclusiveValues(previous: let previous, duplicate: let duplicate, originalInput: let arguments):
return duplicateExclusiveValues(previous: previous, duplicate: duplicate, arguments: arguments)
case .noValue(forKey: let k):
return noValueMessage(key: k)
case .unableToParseValue(let o, let n, let v, forKey: let k, originalError: let e):
return unableToParseValueMessage(origin: o, name: n, value: v, key: k, error: e)
case .invalidOption(let str):
return "Invalid option: \(str)"
case .nonAlphanumericShortOption(let c):
return "Invalid option: -\(c)"
case .missingSubcommand:
return "Missing required subcommand."
case .userValidationError(let error):
switch error {
case let error as LocalizedError:
return error.errorDescription
default:
return String(describing: error)
}
case .noArguments(let error):
switch error {
case let error as ParserError:
return ErrorMessageGenerator(arguments: self.arguments, error: error).makeErrorMessage()
case let error as LocalizedError:
return error.errorDescription
default:
return String(describing: error)
}
}
}
func makeHelpMessage() -> String? {
switch error {
case .unableToParseValue(let o, let n, let v, forKey: let k, originalError: let e):
return unableToParseHelpMessage(origin: o, name: n, value: v, key: k, error: e)
case .missingValueForOption(_, let n):
return missingValueForOptionHelpMessage(name: n)
case .noValue(let k):
return noValueHelpMessage(key: k)
default:
return nil
}
}
}
extension ErrorMessageGenerator {
func arguments(for key: InputKey) -> [ArgumentDefinition] {
arguments
.filter { $0.help.keys.contains(key) }
}
func help(for key: InputKey) -> ArgumentDefinition.Help? {
arguments
.first { $0.help.keys.contains(key) }
.map { $0.help }
}
func valueName(for name: Name) -> String? {
arguments
.first { $0.names.contains(name) }
.map { $0.valueName }
}
}
extension ErrorMessageGenerator {
var notImplementedMessage: String {
return "Internal error. Parsing command-line arguments hit unimplemented code path."
}
var invalidState: String {
return "Internal error. Invalid state while parsing command-line arguments."
}
var unsupportedAutodetectedShell: String {
"""
Can't autodetect a supported shell.
Please use --generate-completion-script=<shell> with one of:
\(CompletionShell.allCases.map { $0.rawValue }.joined(separator: " "))
"""
}
func unsupportedShell(_ shell: String) -> String {
"""
Can't generate completion scripts for '\(shell)'.
Please use --generate-completion-script=<shell> with one of:
\(CompletionShell.allCases.map { $0.rawValue }.joined(separator: " "))
"""
}
func unknownOptionMessage(origin: InputOrigin.Element, name: Name) -> String {
if case .short = name {
return "Unknown option '\(name.synopsisString)'"
}
// An empirically derived magic number
let SIMILARITY_FLOOR = 4
let notShort: (Name) -> Bool = { (name: Name) in
switch name {
case .short: return false
case .long: return true
case .longWithSingleDash: return true
}
}
let suggestion = arguments
.flatMap({ $0.names })
.filter({ $0.synopsisString.editDistance(to: name.synopsisString) < SIMILARITY_FLOOR }) // only include close enough suggestion
.filter(notShort) // exclude short option suggestions
.min(by: { lhs, rhs in // find the suggestion closest to the argument
lhs.synopsisString.editDistance(to: name.synopsisString) < rhs.synopsisString.editDistance(to: name.synopsisString)
})
if let suggestion = suggestion {
return "Unknown option '\(name.synopsisString)'. Did you mean '\(suggestion.synopsisString)'?"
}
return "Unknown option '\(name.synopsisString)'"
}
func missingValueForOptionMessage(origin: InputOrigin, name: Name) -> String {
if let valueName = valueName(for: name) {
return "Missing value for '\(name.synopsisString) <\(valueName)>'"
} else {
return "Missing value for '\(name.synopsisString)'"
}
}
func unexpectedValueForOptionMessage(origin: InputOrigin.Element, name: Name, value: String) -> String? {
return "The option '\(name.synopsisString)' does not take any value, but '\(value)' was specified."
}
func unexpectedExtraValuesMessage(values: [(InputOrigin, String)]) -> String? {
switch values.count {
case 0:
return nil
case 1:
return "Unexpected argument '\(values.first!.1)'"
default:
let v = values.map { $0.1 }.joined(separator: "', '")
return "\(values.count) unexpected arguments: '\(v)'"
}
}
func duplicateExclusiveValues(previous: InputOrigin, duplicate: InputOrigin, arguments: [String]) -> String? {
func elementString(_ origin: InputOrigin, _ arguments: [String]) -> String? {
guard case .argumentIndex(let split) = origin.elements.first else { return nil }
var argument = "\'\(arguments[split.inputIndex.rawValue])\'"
if case let .sub(offsetIndex) = split.subIndex {
let stringIndex = argument.index(argument.startIndex, offsetBy: offsetIndex+2)
argument = "\'\(argument[stringIndex])\' in \(argument)"
}
return "flag \(argument)"
}
// Note that the RHS of these coalescing operators cannot be reached at this time.
let dupeString = elementString(duplicate, arguments) ?? "position \(duplicate)"
let origString = elementString(previous, arguments) ?? "position \(previous)"
//TODO: review this message once environment values are supported.
return "Value to be set with \(dupeString) had already been set with \(origString)"
}
func noValueMessage(key: InputKey) -> String? {
let args = arguments(for: key)
let possibilities: [String] = args.compactMap {
$0.help.visibility.base == .default
? $0.nonOptional.synopsis
: nil
}
switch possibilities.count {
case 0:
return "No value set for non-argument var \(key). Replace with a static variable, or let constant."
case 1:
return "Missing expected argument '\(possibilities.first!)'"
default:
let p = possibilities.joined(separator: "', '")
return "Missing one of: '\(p)'"
}
}
func unableToParseHelpMessage(origin: InputOrigin, name: Name?, value: String, key: InputKey, error: Error?) -> String {
guard let abstract = help(for: key)?.abstract else { return "" }
let valueName = arguments(for: key).first?.valueName
switch (name, valueName) {
case let (n?, v?):
return "\(n.synopsisString) <\(v)> \(abstract)"
case let (_, v?):
return "<\(v)> \(abstract)"
case (_, _):
return ""
}
}
func missingValueForOptionHelpMessage(name: Name) -> String {
guard let arg = arguments.first(where: { $0.names.contains(name) }) else {
return ""
}
let help = arg.help.abstract
return "\(name.synopsisString) <\(arg.valueName)> \(help)"
}
func noValueHelpMessage(key: InputKey) -> String {
guard let abstract = help(for: key)?.abstract else { return "" }
guard let arg = arguments(for: key).first else { return "" }
if let synopsisString = arg.names.first?.synopsisString {
return "\(synopsisString) <\(arg.valueName)> \(abstract)"
}
return "<\(arg.valueName)> \(abstract)"
}
func unableToParseValueMessage(origin: InputOrigin, name: Name?, value: String, key: InputKey, error: Error?) -> String {
let argumentValue = arguments(for: key).first
let valueName = argumentValue?.valueName
// We want to make the "best effort" in producing a custom error message.
// We favor `LocalizedError.errorDescription` and fall back to
// `CustomStringConvertible`. To opt in, return your custom error message
// as the `description` property of `CustomStringConvertible`.
let customErrorMessage: String = {
switch error {
case let err as LocalizedError where err.errorDescription != nil:
return ": " + err.errorDescription! // !!! Checked above that this will not be nil
case let err?:
return ": " + String(describing: err)
default:
return argumentValue?.formattedValueList ?? ""
}
}()
switch (name, valueName) {
case let (n?, v?):
return "The value '\(value)' is invalid for '\(n.synopsisString) <\(v)>'\(customErrorMessage)"
case let (_, v?):
return "The value '\(value)' is invalid for '<\(v)>'\(customErrorMessage)"
case let (n?, _):
return "The value '\(value)' is invalid for '\(n.synopsisString)'\(customErrorMessage)"
case (nil, nil):
return "The value '\(value)' is invalid.\(customErrorMessage)"
}
}
}
private extension ArgumentDefinition {
var formattedValueList: String {
if help.allValues.isEmpty {
return ""
}
if help.allValues.count < 6 {
let quotedValues = help.allValues.map { "'\($0)'" }
let validList: String
if quotedValues.count <= 2 {
validList = quotedValues.joined(separator: " and ")
} else {
validList = quotedValues.dropLast().joined(separator: ", ") + " or \(quotedValues.last!)"
}
return ". Please provide one of \(validList)."
} else {
let bulletValueList = help.allValues.map { " - \($0)" }.joined(separator: "\n")
return ". Please provide one of the following:\n\(bulletValueList)"
}
}
}
|