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
|
//===----------------------------------------------------------------------===//
//
// 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 SourceControl
extension SwiftPackageCommand {
struct ArchiveSource: SwiftCommand {
static let configuration = CommandConfiguration(
commandName: "archive-source",
abstract: "Create a source archive for the package"
)
@OptionGroup(visibility: .hidden)
var globalOptions: GlobalOptions
@Option(
name: [.short, .long],
help: "The absolute or relative path for the generated source archive"
)
var output: AbsolutePath?
func run(_ swiftCommandState: SwiftCommandState) throws {
let packageDirectory = try globalOptions.locations.packageDirectory ?? swiftCommandState.getPackageRoot()
let archivePath: AbsolutePath
if let output {
archivePath = output
} else {
let graph = try swiftCommandState.loadPackageGraph()
let packageName = graph.rootPackages[graph.rootPackages.startIndex].manifest.displayName // TODO: use identity instead?
archivePath = packageDirectory.appending("\(packageName).zip")
}
try SwiftPackageCommand.archiveSource(
at: packageDirectory,
to: archivePath,
fileSystem: localFileSystem,
cancellator: swiftCommandState.cancellator
)
if archivePath.isDescendantOfOrEqual(to: packageDirectory) {
let relativePath = archivePath.relative(to: packageDirectory)
print("Created \(relativePath.pathString)")
} else {
print("Created \(archivePath.pathString)")
}
}
}
public static func archiveSource(
at packageDirectory: AbsolutePath,
to archivePath: AbsolutePath,
fileSystem: FileSystem,
cancellator: Cancellator?
) throws {
let gitRepositoryProvider = GitRepositoryProvider()
if (try? gitRepositoryProvider.isValidDirectory(packageDirectory)) == true {
let repository = GitRepository(path: packageDirectory, cancellator: cancellator)
try repository.archive(to: archivePath)
} else {
let zipArchiver = ZipArchiver(fileSystem: fileSystem, cancellator: cancellator)
try temp_await {
zipArchiver.compress(directory: packageDirectory, to: archivePath, completion: $0)
}
}
}
}
|