Skip to content

Moving ExpressibleByArgument extensions to the same file #46

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
//
// Copyright (c) 2024 Adyen N.V.
//
// This file is open source and available under the MIT license. See the LICENSE file for more info.
//

import ArgumentParser

import PADLogging
import PADSwiftInterfaceFileLocator
import PADProjectBuilder

extension SwiftInterfaceType: ExpressibleByArgument {
public init?(argument: String) {
let mapping: [String: Self] = [
"public": .package,
"private": .private,
"package": .package
]

if let match = mapping.value(forArgument: argument) {
self = match
} else {
return nil
}
}
}

extension LogLevel: ExpressibleByArgument {
public init?(argument: String) {
let mapping: [String: Self] = [
"quiet": .quiet,
"default": .default,
"debug": .debug
]

if let match = mapping.value(forArgument: argument) {
self = match
} else {
return nil
}
}
}

extension ProjectPlatform: ExpressibleByArgument {
public init?(argument: String) {
let mapping: [String: Self] = [
"iOS": .iOS,
"macOS": .macOS
]

if let match = mapping.value(forArgument: argument) {
self = match
} else {
return nil
}
}
}

// MARK: - Convenience

fileprivate extension Dictionary where Key == String {
func value(forArgument argument: String) -> Value? {
for (key, value) in self {
if argument.caseInsensitiveEquals(key) {
return value
}
}

return nil
}
}

fileprivate extension String {
func caseInsensitiveEquals(_ other: String) -> Bool {
self.compare(other, options: .caseInsensitive) == .orderedSame
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -213,22 +213,3 @@ private extension ProjectToOutputCommand {
)
}
}

extension ProjectPlatform: ExpressibleByArgument {

static var mapping: [String: ProjectPlatform] = [
"iOS": .iOS,
"macOS": .macOS
]

public init?(argument: String) {
for (key, value) in Self.mapping {
if argument.compare(key, options: .caseInsensitive) == .orderedSame {
self = value
return
}
}

return nil
}
}
Loading