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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
public import SWBUtil
public enum CommandLineArgument: Equatable, Hashable, ExpressibleByStringLiteral, Serializable, Sendable {
case literal(ByteString)
case path(Path)
case parentPath(Path)
public var asString: String {
switch self {
case .literal(let byteString):
return byteString.asString
case .path(let path):
return path.str
case .parentPath(let path):
return path.dirname.str
}
}
public var asByteString: ByteString {
switch self {
case .literal(let byteString):
return byteString
case .path(let path):
return ByteString(encodingAsUTF8: path.str)
case .parentPath(let path):
return ByteString(encodingAsUTF8: path.dirname.str)
}
}
public init(stringLiteral value: StringLiteralType) {
self = .literal(ByteString(stringLiteral: value))
}
public func serialize<T>(to serializer: T) where T : SWBUtil.Serializer {
switch self {
case .literal(let byteString):
// FIXME: pack in one byte
serializer.beginAggregate(2)
serializer.serialize(0 as UInt8)
serializer.serialize(byteString)
serializer.endAggregate()
case .path(let path):
serializer.beginAggregate(2)
serializer.serialize(1 as UInt8)
serializer.serialize(path)
serializer.endAggregate()
case .parentPath(let path):
serializer.beginAggregate(2)
serializer.serialize(2 as UInt8)
serializer.serialize(path)
serializer.endAggregate()
}
}
public init(from deserializer: any SWBUtil.Deserializer) throws {
try deserializer.beginAggregate(2)
switch try deserializer.deserialize() as UInt8 {
case 0:
self = .literal(try deserializer.deserialize())
case 1:
self = .path(try deserializer.deserialize())
case 2:
self = .parentPath(try deserializer.deserialize())
default:
throw StubError.error("unknown command line argument type")
}
}
}
|