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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2022 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
//
//===----------------------------------------------------------------------===//
import ArgumentParser
import Basics
import CoreCommands
import Workspace
import var TSCBasic.stderrStream
extension SwiftPackageCommand {
struct Config: ParsableCommand {
static let configuration = CommandConfiguration(
abstract: "Manipulate configuration of the package",
subcommands: [SetMirror.self, UnsetMirror.self, GetMirror.self]
)
}
}
extension SwiftPackageCommand.Config {
struct SetMirror: SwiftCommand {
static let configuration = CommandConfiguration(
abstract: "Set a mirror for a dependency"
)
@OptionGroup(visibility: .hidden)
var globalOptions: GlobalOptions
@Option(name: .customLong("package-url"), help: .hidden)
var _deprecate_packageURL: String?
@Option(name: .customLong("original-url"), help: .hidden)
var _deprecate_originalURL: String?
@Option(name: .customLong("mirror-url"), help: .hidden)
var _deprecate_mirrorURL: String?
@Option(help: "The original url or identity")
var original: String?
@Option(help: "The mirror url or identity")
var mirror: String?
func run(_ swiftCommandState: SwiftCommandState) throws {
let config = try getMirrorsConfig(swiftCommandState)
if self._deprecate_packageURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--package-url' option is deprecated; use '--original' instead"
)
}
if self._deprecate_originalURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--original-url' option is deprecated; use '--original' instead"
)
}
if self._deprecate_mirrorURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--mirror-url' option is deprecated; use '--mirror' instead"
)
}
guard let original = self._deprecate_packageURL ?? self._deprecate_originalURL ?? self.original else {
swiftCommandState.observabilityScope.emit(.missingRequiredArg("--original"))
throw ExitCode.failure
}
guard let mirror = self._deprecate_mirrorURL ?? self.mirror else {
swiftCommandState.observabilityScope.emit(.missingRequiredArg("--mirror"))
throw ExitCode.failure
}
try config.applyLocal { mirrors in
try mirrors.set(mirror: mirror, for: original)
}
}
}
struct UnsetMirror: SwiftCommand {
static let configuration = CommandConfiguration(
abstract: "Remove an existing mirror"
)
@OptionGroup(visibility: .hidden)
var globalOptions: GlobalOptions
@Option(name: .customLong("package-url"), help: .hidden)
var _deprecate_packageURL: String?
@Option(name: .customLong("original-url"), help: .hidden)
var _deprecate_originalURL: String?
@Option(name: .customLong("mirror-url"), help: .hidden)
var _deprecate_mirrorURL: String?
@Option(help: "The original url or identity")
var original: String?
@Option(help: "The mirror url or identity")
var mirror: String?
func run(_ swiftCommandState: SwiftCommandState) throws {
let config = try getMirrorsConfig(swiftCommandState)
if self._deprecate_packageURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--package-url' option is deprecated; use '--original' instead"
)
}
if self._deprecate_originalURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--original-url' option is deprecated; use '--original' instead"
)
}
if self._deprecate_mirrorURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--mirror-url' option is deprecated; use '--mirror' instead"
)
}
guard let originalOrMirror = self._deprecate_packageURL ?? self._deprecate_originalURL ?? self
.original ?? self._deprecate_mirrorURL ?? self.mirror
else {
swiftCommandState.observabilityScope.emit(.missingRequiredArg("--original or --mirror"))
throw ExitCode.failure
}
try config.applyLocal { mirrors in
try mirrors.unset(originalOrMirror: originalOrMirror)
}
}
}
struct GetMirror: SwiftCommand {
static let configuration = CommandConfiguration(
abstract: "Print mirror configuration for the given package dependency"
)
@OptionGroup(visibility: .hidden)
var globalOptions: GlobalOptions
@Option(name: .customLong("package-url"), help: .hidden)
var _deprecate_packageURL: String?
@Option(name: .customLong("original-url"), help: .hidden)
var _deprecate_originalURL: String?
@Option(help: "The original url or identity")
var original: String?
func run(_ swiftCommandState: SwiftCommandState) throws {
let config = try getMirrorsConfig(swiftCommandState)
if self._deprecate_packageURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--package-url' option is deprecated; use '--original' instead"
)
}
if self._deprecate_originalURL != nil {
swiftCommandState.observabilityScope.emit(
warning: "'--original-url' option is deprecated; use '--original' instead"
)
}
guard let original = self._deprecate_packageURL ?? self._deprecate_originalURL ?? self.original else {
swiftCommandState.observabilityScope.emit(.missingRequiredArg("--original"))
throw ExitCode.failure
}
if let mirror = config.mirrors.mirror(for: original) {
print(mirror)
} else {
stderrStream.send("not found\n")
stderrStream.flush()
throw ExitCode.failure
}
}
}
static func getMirrorsConfig(_ swiftCommandState: SwiftCommandState) throws -> Workspace.Configuration.Mirrors {
let workspace = try swiftCommandState.getActiveWorkspace()
return try .init(
fileSystem: swiftCommandState.fileSystem,
localMirrorsFile: workspace.location.localMirrorsConfigurationFile,
sharedMirrorsFile: workspace.location.sharedMirrorsConfigurationFile
)
}
}
extension Basics.Diagnostic {
fileprivate static func missingRequiredArg(_ argument: String) -> Self {
.error("missing required argument \(argument)")
}
}
|