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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2023 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 struct Basics.AbsolutePath
import class Basics.ObservabilityScope
import struct Basics.RelativePath
import func Basics.temp_await
import struct PackageGraph.PackageGraphRootInput
import struct SourceControl.Revision
import class TSCBasic.InMemoryFileSystem
extension Workspace {
/// Edit implementation.
func _edit(
packageName: String,
path: AbsolutePath? = nil,
revision: Revision? = nil,
checkoutBranch: String? = nil,
observabilityScope: ObservabilityScope
) throws {
// Look up the dependency and check if we can edit it.
guard let dependency = self.state.dependencies[.plain(packageName)] else {
observabilityScope.emit(.dependencyNotFound(packageName: packageName))
return
}
let observabilityScope = observabilityScope.makeChildScope(
description: "editing package",
metadata: dependency.packageRef.diagnosticsMetadata
)
let checkoutState: CheckoutState
switch dependency.state {
case .sourceControlCheckout(let _checkoutState):
checkoutState = _checkoutState
case .edited:
observabilityScope.emit(error: "dependency '\(dependency.packageRef.identity)' already in edit mode")
return
case .fileSystem:
observabilityScope.emit(error: "local dependency '\(dependency.packageRef.identity)' can't be edited")
return
case .registryDownload:
observabilityScope.emit(error: "registry dependency '\(dependency.packageRef.identity)' can't be edited")
return
case .custom:
observabilityScope.emit(error: "custom dependency '\(dependency.packageRef.identity)' can't be edited")
return
}
// If a path is provided then we use it as destination. If not, we
// use the folder with packageName inside editablesPath.
let destination = path ?? self.location.editsDirectory.appending(component: packageName)
// If there is something present at the destination, we confirm it has
// a valid manifest with name same as the package we are trying to edit.
if fileSystem.exists(destination) {
// FIXME: this should not block
let manifest = try temp_await {
self.loadManifest(
packageIdentity: dependency.packageRef.identity,
packageKind: .fileSystem(destination),
packagePath: destination,
packageLocation: dependency.packageRef.locationString,
observabilityScope: observabilityScope,
completion: $0
)
}
guard manifest.displayName == packageName else {
return observabilityScope
.emit(
error: "package at '\(destination)' is \(manifest.displayName) but was expecting \(packageName)"
)
}
// Emit warnings for branch and revision, if they're present.
if let checkoutBranch {
observabilityScope.emit(.editBranchNotCheckedOut(
packageName: packageName,
branchName: checkoutBranch
))
}
if let revision {
observabilityScope.emit(.editRevisionNotUsed(
packageName: packageName,
revisionIdentifier: revision.identifier
))
}
} else {
// Otherwise, create a checkout at the destination from our repository store.
//
// Get handle to the repository.
// TODO: replace with async/await when available
let repository = try dependency.packageRef.makeRepositorySpecifier()
let handle = try temp_await {
repositoryManager.lookup(
package: dependency.packageRef.identity,
repository: repository,
updateStrategy: .never,
observabilityScope: observabilityScope,
delegateQueue: .sharedConcurrent,
callbackQueue: .sharedConcurrent,
completion: $0
)
}
let repo = try handle.open()
// Do preliminary checks on branch and revision, if provided.
if let branch = checkoutBranch, repo.exists(revision: Revision(identifier: branch)) {
throw WorkspaceDiagnostics.BranchAlreadyExists(branch: branch)
}
if let revision, !repo.exists(revision: revision) {
throw WorkspaceDiagnostics.RevisionDoesNotExist(revision: revision.identifier)
}
let workingCopy = try handle.createWorkingCopy(at: destination, editable: true)
try workingCopy.checkout(revision: revision ?? checkoutState.revision)
// Checkout to the new branch if provided.
if let branch = checkoutBranch {
try workingCopy.checkout(newBranch: branch)
}
}
// For unmanaged dependencies, create the symlink under editables dir.
if let path {
try fileSystem.createDirectory(self.location.editsDirectory)
// FIXME: We need this to work with InMem file system too.
if !(fileSystem is InMemoryFileSystem) {
let symLinkPath = self.location.editsDirectory.appending(component: packageName)
// Cleanup any existing symlink.
if fileSystem.isSymlink(symLinkPath) {
try fileSystem.removeFileTree(symLinkPath)
}
// FIXME: We should probably just warn in case we fail to create
// this symlink, which could happen if there is some non-symlink
// entry at this location.
try fileSystem.createSymbolicLink(symLinkPath, pointingAt: path, relative: false)
}
}
// Remove the existing checkout.
do {
let oldCheckoutPath = self.location.repositoriesCheckoutSubdirectory(for: dependency)
try fileSystem.chmod(.userWritable, path: oldCheckoutPath, options: [.recursive, .onlyFiles])
try fileSystem.removeFileTree(oldCheckoutPath)
}
// Save the new state.
try self.state.dependencies.add(
dependency.edited(subpath: RelativePath(validating: packageName), unmanagedPath: path)
)
try self.state.save()
}
/// Unedit a managed dependency. See public API unedit(packageName:forceRemove:).
func unedit(
dependency: ManagedDependency,
forceRemove: Bool,
root: PackageGraphRootInput? = nil,
observabilityScope: ObservabilityScope
) throws {
// Compute if we need to force remove.
var forceRemove = forceRemove
// If the dependency isn't in edit mode, we can't unedit it.
guard case .edited(_, let unmanagedPath) = dependency.state else {
throw WorkspaceDiagnostics
.DependencyNotInEditMode(dependencyName: dependency.packageRef.identity.description)
}
// Set force remove to true for unmanaged dependencies. Note that
// this only removes the symlink under the editable directory and
// not the actual unmanaged package.
if unmanagedPath != nil {
forceRemove = true
}
// Form the edit working repo path.
let path = self.location.editSubdirectory(for: dependency)
// Check for uncommitted and unpushed changes if force removal is off.
if !forceRemove {
let workingCopy = try repositoryManager.openWorkingCopy(at: path)
guard !workingCopy.hasUncommittedChanges() else {
throw WorkspaceDiagnostics.UncommittedChanges(repositoryPath: path)
}
guard try !workingCopy.hasUnpushedCommits() else {
throw WorkspaceDiagnostics.UnpushedChanges(repositoryPath: path)
}
}
// Remove the editable checkout from disk.
if fileSystem.exists(path) {
try fileSystem.removeFileTree(path)
}
// If this was the last editable dependency, remove the editables directory too.
if fileSystem.exists(self.location.editsDirectory),
try fileSystem.getDirectoryContents(self.location.editsDirectory).isEmpty
{
try fileSystem.removeFileTree(self.location.editsDirectory)
}
if case .edited(let basedOn, _) = dependency.state,
case .sourceControlCheckout(let checkoutState) = basedOn?.state
{
// Restore the original checkout.
//
// The retrieve method will automatically update the managed dependency state.
_ = try self.checkoutRepository(
package: dependency.packageRef,
at: checkoutState,
observabilityScope: observabilityScope
)
} else {
// The original dependency was removed, update the managed dependency state.
self.state.dependencies.remove(dependency.packageRef.identity)
try self.state.save()
}
// Resolve the dependencies if workspace root is provided. We do this to
// ensure the unedited version of this dependency is resolved properly.
if let root {
try self._resolve(
root: root,
explicitProduct: .none,
resolvedFileStrategy: .update(forceResolution: false),
observabilityScope: observabilityScope
)
}
}
}
|