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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2017 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 Basics
import Dispatch
import Foundation
import SourceControl
import struct PackageModel.CanonicalPackageURL
import struct TSCBasic.ByteString
import enum TSCBasic.FileMode
import struct TSCBasic.FileSystemError
/// The error encountered during in memory git repository operations.
public enum InMemoryGitRepositoryError: Swift.Error {
case unknownRevision
case unknownTag
case tagAlreadyPresent
}
/// A class that implements basic git features on in-memory file system. It takes the path and file system reference
/// where the repository should be created. The class itself is a file system pointing to current revision state
/// i.e. HEAD. All mutations should be made on file system interface of this class and then they can be committed using
/// commit() method. Calls to checkout related methods will checkout the HEAD on the passed file system at the
/// repository path, as well as on the file system interface of this class.
/// Note: This class is intended to be used as testing infrastructure only.
/// Note: This class is not thread safe yet.
public final class InMemoryGitRepository {
/// The revision identifier.
public typealias RevisionIdentifier = String
/// A struct representing a revision state. Minimally it contains a hash identifier for the revision
/// and the file system state.
fileprivate struct RevisionState {
/// The revision identifier hash. It should be unique among all the identifiers.
var hash: RevisionIdentifier
/// The filesystem state contained in this revision.
let fileSystem: InMemoryFileSystem
/// Creates copy of the state.
func copy() -> RevisionState {
return RevisionState(hash: self.hash, fileSystem: self.fileSystem.copy())
}
}
/// THe HEAD i.e. the current checked out state.
fileprivate var head: RevisionState
/// The history dictionary.
fileprivate var history: [RevisionIdentifier: RevisionState] = [:]
/// The map containing tag name to revision identifier values.
fileprivate var tagsMap: [String: RevisionIdentifier] = [:]
/// Indicates whether there are any uncommitted changes in the repository.
fileprivate var isDirty = false
/// The path at which this repository is located.
fileprivate let path: AbsolutePath
/// The file system in which this repository should be installed.
fileprivate let fs: InMemoryFileSystem
private let lock = NSLock()
/// Create a new repository at the given path and filesystem.
public init(path: AbsolutePath, fs: InMemoryFileSystem) {
self.path = path
self.fs = fs
// Point head to a new revision state with empty hash to begin with.
self.head = RevisionState(hash: "", fileSystem: InMemoryFileSystem())
}
/// The array of current tags in the repository.
public func getTags() throws -> [String] {
self.lock.withLock {
Array(self.tagsMap.keys)
}
}
/// The list of revisions in the repository.
public var revisions: [RevisionIdentifier] {
self.lock.withLock {
Array(self.history.keys)
}
}
/// Copy/clone this repository.
fileprivate func copy(at newPath: AbsolutePath? = nil) throws -> InMemoryGitRepository {
let path = newPath ?? self.path
try self.fs.createDirectory(path, recursive: true)
let repo = InMemoryGitRepository(path: path, fs: self.fs)
self.lock.withLock {
for (revision, state) in self.history {
repo.history[revision] = state.copy()
}
repo.tagsMap = self.tagsMap
repo.head = self.head.copy()
}
return repo
}
/// Commits the current state of the repository filesystem and returns the commit identifier.
@discardableResult
public func commit(hash: String? = nil) throws -> String {
// Create a fake hash for this commit.
let hash = hash ?? String((UUID().uuidString + UUID().uuidString).prefix(40))
self.lock.withLock {
self.head.hash = hash
// Store the commit in history.
self.history[hash] = head.copy()
// We are not dirty anymore.
self.isDirty = false
}
// Install the current HEAD i.e. this commit to the filesystem that was passed.
try installHead()
return hash
}
/// Checks out the provided revision.
public func checkout(revision: RevisionIdentifier) throws {
guard let state = (self.lock.withLock { history[revision] }) else {
throw InMemoryGitRepositoryError.unknownRevision
}
// Point the head to the revision state.
self.lock.withLock {
self.head = state
self.isDirty = false
}
// Install this state on the passed filesystem.
try self.installHead()
}
/// Checks out a given tag.
public func checkout(tag: String) throws {
guard let hash = (self.lock.withLock { tagsMap[tag] }) else {
throw InMemoryGitRepositoryError.unknownTag
}
// Point the head to the revision state of the tag.
// It should be impossible that a tag exists which does not have a state.
try self.lock.withLock {
guard let head = history[hash] else {
throw InternalError("unknown hash \(hash)")
}
self.head = head
self.isDirty = false
}
// Install this state on the passed filesystem.
try self.installHead()
}
/// Installs (or checks out) current head on the filesystem on which this repository exists.
fileprivate func installHead() throws {
// Remove the old state.
try self.fs.removeFileTree(self.path)
// Create the repository directory.
try self.fs.createDirectory(self.path, recursive: true)
// Get the file system state at the HEAD,
let headFs = self.lock.withLock { self.head.fileSystem }
/// Recursively copies the content at HEAD to fs.
func install(from sourcePath: AbsolutePath, to destinationPath: AbsolutePath) throws {
assert(headFs.isDirectory(sourcePath))
for entry in try headFs.getDirectoryContents(sourcePath) {
// The full path of the entry.
let sourceEntryPath = sourcePath.appending(component: entry)
let destinationEntryPath = destinationPath.appending(component: entry)
if headFs.isFile(sourceEntryPath) {
// If we have a file just write the file.
let bytes = try headFs.readFileContents(sourceEntryPath)
try self.fs.writeFileContents(destinationEntryPath, bytes: bytes)
} else if headFs.isDirectory(sourceEntryPath) {
// If we have a directory, create that directory and copy its contents.
try self.fs.createDirectory(destinationEntryPath, recursive: false)
try install(from: sourceEntryPath, to: destinationEntryPath)
}
}
}
// Install at the repository path.
try install(from: .root, to: path)
}
/// Tag the current HEAD with the given name.
public func tag(name: String) throws {
guard (self.lock.withLock { self.tagsMap[name] }) == nil else {
throw InMemoryGitRepositoryError.tagAlreadyPresent
}
self.lock.withLock {
self.tagsMap[name] = self.head.hash
}
}
public func hasUncommittedChanges() -> Bool {
self.lock.withLock {
isDirty
}
}
public func fetch() throws {
// TODO.
}
}
extension InMemoryGitRepository: FileSystem {
public func exists(_ path: TSCAbsolutePath, followSymlink: Bool) -> Bool {
self.lock.withLock {
self.head.fileSystem.exists(path, followSymlink: followSymlink)
}
}
public func isDirectory(_ path: TSCAbsolutePath) -> Bool {
self.lock.withLock {
self.head.fileSystem.isDirectory(path)
}
}
public func isFile(_ path: TSCAbsolutePath) -> Bool {
self.lock.withLock {
self.head.fileSystem.isFile(path)
}
}
public func isSymlink(_ path: TSCAbsolutePath) -> Bool {
self.lock.withLock {
self.head.fileSystem.isSymlink(path)
}
}
public func isExecutableFile(_ path: TSCAbsolutePath) -> Bool {
self.lock.withLock {
self.head.fileSystem.isExecutableFile(path)
}
}
public func isReadable(_ path: TSCAbsolutePath) -> Bool {
return self.exists(path)
}
public func isWritable(_ path: TSCAbsolutePath) -> Bool {
return false
}
public var currentWorkingDirectory: TSCAbsolutePath? {
return .root
}
public func changeCurrentWorkingDirectory(to path: TSCAbsolutePath) throws {
throw FileSystemError(.unsupported, path)
}
public var homeDirectory: TSCAbsolutePath {
fatalError("Unsupported")
}
public var cachesDirectory: TSCAbsolutePath? {
fatalError("Unsupported")
}
public var tempDirectory: TSCAbsolutePath {
fatalError("Unsupported")
}
public func getDirectoryContents(_ path: TSCAbsolutePath) throws -> [String] {
try self.lock.withLock {
try self.head.fileSystem.getDirectoryContents(path)
}
}
public func createDirectory(_ path: TSCAbsolutePath, recursive: Bool) throws {
try self.lock.withLock {
try self.head.fileSystem.createDirectory(path, recursive: recursive)
}
}
public func createSymbolicLink(_ path: TSCAbsolutePath, pointingAt destination: TSCAbsolutePath, relative: Bool) throws {
throw FileSystemError(.unsupported, path)
}
public func readFileContents(_ path: TSCAbsolutePath) throws -> ByteString {
try self.lock.withLock {
return try head.fileSystem.readFileContents(path)
}
}
public func writeFileContents(_ path: TSCAbsolutePath, bytes: ByteString) throws {
try self.lock.withLock {
try self.head.fileSystem.writeFileContents(path, bytes: bytes)
self.isDirty = true
}
}
public func removeFileTree(_ path: TSCAbsolutePath) throws {
try self.lock.withLock {
try self.head.fileSystem.removeFileTree(path)
}
}
public func chmod(_ mode: FileMode, path: TSCAbsolutePath, options: Set<FileMode.Option>) throws {
try self.lock.withLock {
try self.head.fileSystem.chmod(mode, path: path, options: options)
}
}
public func copy(from sourcePath: TSCAbsolutePath, to destinationPath: TSCAbsolutePath) throws {
try self.lock.withLock {
try self.head.fileSystem.copy(from: sourcePath, to: destinationPath)
}
}
public func move(from sourcePath: TSCAbsolutePath, to destinationPath: TSCAbsolutePath) throws {
try self.lock.withLock {
try self.head.fileSystem.move(from: sourcePath, to: destinationPath)
}
}
}
extension InMemoryGitRepository: Repository {
public func resolveRevision(tag: String) throws -> Revision {
try self.lock.withLock {
guard let revision = self.tagsMap[tag] else {
throw InternalError("unknown tag \(tag)")
}
return Revision(identifier: revision)
}
}
public func resolveRevision(identifier: String) throws -> Revision {
self.lock.withLock {
return Revision(identifier: self.tagsMap[identifier] ?? identifier)
}
}
public func exists(revision: Revision) -> Bool {
self.lock.withLock {
return self.history[revision.identifier] != nil
}
}
public func openFileView(revision: Revision) throws -> FileSystem {
try self.lock.withLock {
guard let entry = self.history[revision.identifier] else {
throw InternalError("unknown revision \(revision)")
}
return entry.fileSystem
}
}
public func openFileView(tag: String) throws -> FileSystem {
let revision = try self.resolveRevision(tag: tag)
return try self.openFileView(revision: revision)
}
}
extension InMemoryGitRepository: WorkingCheckout {
public func getCurrentRevision() throws -> Revision {
self.lock.withLock {
return Revision(identifier: self.head.hash)
}
}
public func checkout(revision: Revision) throws {
// will lock
try checkout(revision: revision.identifier)
}
public func hasUnpushedCommits() throws -> Bool {
return false
}
public func checkout(newBranch: String) throws {
self.lock.withLock {
self.history[newBranch] = head
}
}
public func isAlternateObjectStoreValid(expected: AbsolutePath) -> Bool {
return true
}
public func areIgnored(_ paths: [AbsolutePath]) throws -> [Bool] {
return [false]
}
}
// Public mutation of `InMemoryGitRepository` is protected with a lock.
extension InMemoryGitRepository: @unchecked Sendable {}
/// This class implement provider for in memory git repository.
public final class InMemoryGitRepositoryProvider: RepositoryProvider {
/// Contains the repository added to this provider.
public var specifierMap = ThreadSafeKeyValueStore<RepositorySpecifier, InMemoryGitRepository>()
/// Contains the repositories which are fetched using this provider.
public var fetchedMap = ThreadSafeKeyValueStore<AbsolutePath, InMemoryGitRepository>()
/// Contains the repositories which are checked out using this provider.
public var checkoutsMap = ThreadSafeKeyValueStore<AbsolutePath, InMemoryGitRepository>()
/// Create a new provider.
public init() {
}
/// Add a repository to this provider. Only the repositories added with this interface can be operated on
/// with this provider.
public func add(specifier: RepositorySpecifier, repository: InMemoryGitRepository) {
// Save the repository in specifier map.
specifierMap[specifier] = repository
}
/// This method returns the stored reference to the git repository which was fetched or checked out.
public func openRepo(at path: AbsolutePath) throws -> InMemoryGitRepository {
if let fetch = fetchedMap[path] {
return fetch
}
guard let checkout = checkoutsMap[path] else {
throw InternalError("unknown repo at \(path)")
}
return checkout
}
// MARK: - RepositoryProvider conformance
// Note: These methods use force unwrap (instead of throwing) to honor their preconditions.
public func fetch(repository: RepositorySpecifier, to path: AbsolutePath, progressHandler: FetchProgress.Handler? = nil) throws {
guard let repo = specifierMap[RepositorySpecifier(location: repository.location)] else {
throw InternalError("unknown repo at \(repository.location)")
}
fetchedMap[path] = try repo.copy()
add(specifier: RepositorySpecifier(path: path), repository: repo)
}
public func copy(from sourcePath: AbsolutePath, to destinationPath: AbsolutePath) throws {
guard let repo = fetchedMap[sourcePath] else {
throw InternalError("unknown repo at \(sourcePath)")
}
fetchedMap[destinationPath] = try repo.copy()
}
public func open(repository: RepositorySpecifier, at path: AbsolutePath) throws -> Repository {
guard let repository = self.fetchedMap[path] else {
throw InternalError("unknown repository at \(path)")
}
return repository
}
public func createWorkingCopy(
repository: RepositorySpecifier,
sourcePath: AbsolutePath,
at destinationPath: AbsolutePath,
editable: Bool
) throws -> WorkingCheckout {
guard let checkout = fetchedMap[sourcePath] else {
throw InternalError("unknown checkout at \(sourcePath)")
}
let copy = try checkout.copy(at: destinationPath)
checkoutsMap[destinationPath] = copy
return copy
}
public func workingCopyExists(at path: AbsolutePath) throws -> Bool {
return checkoutsMap.contains(path)
}
public func openWorkingCopy(at path: AbsolutePath) throws -> WorkingCheckout {
guard let checkout = checkoutsMap[path] else {
throw InternalError("unknown checkout at \(path)")
}
return checkout
}
public func isValidDirectory(_ directory: AbsolutePath) throws -> Bool {
return fetchedMap[directory] != nil || specifierMap.get().values.map(\.path).contains(directory)
}
public func isValidDirectory(_ directory: AbsolutePath, for repository: RepositorySpecifier) throws -> Bool {
return fetchedMap[directory] != nil || specifierMap[repository] != nil
}
public func cancel(deadline: DispatchTime) throws {
// noop
}
}
|