mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
504 lines
17 KiB
Swift
504 lines
17 KiB
Swift
//
|
|
// Repository.swift
|
|
// SwiftGit2
|
|
//
|
|
// Created by Matt Diephouse on 11/7/14.
|
|
// Copyright (c) 2014 GitHub, Inc. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Result
|
|
import libgit2
|
|
|
|
public typealias CheckoutProgressBlock = (String?, Int, Int) -> Void
|
|
|
|
/// Helper function used as the libgit2 progress callback in git_checkout_options.
|
|
/// This is a function with a type signature of git_checkout_progress_cb.
|
|
private func checkoutProgressCallback(path: UnsafePointer<Int8>?, completed_steps: Int, total_steps: Int, payload: UnsafeMutableRawPointer?) -> Void {
|
|
if let payload = payload {
|
|
let buffer = payload.assumingMemoryBound(to: CheckoutProgressBlock.self)
|
|
let block: CheckoutProgressBlock
|
|
if completed_steps < total_steps {
|
|
block = buffer.pointee
|
|
} else {
|
|
block = buffer.move()
|
|
buffer.deallocate(capacity: 1)
|
|
}
|
|
block(path.flatMap(String.init(validatingUTF8:)), completed_steps, total_steps);
|
|
}
|
|
}
|
|
|
|
/// Helper function for initializing libgit2 git_checkout_options.
|
|
///
|
|
/// :param: strategy The strategy to be used when checking out the repo, see CheckoutStrategy
|
|
/// :param: progress A block that's called with the progress of the checkout.
|
|
/// :returns: Returns a git_checkout_options struct with the progress members set.
|
|
private func checkoutOptions(strategy: CheckoutStrategy, progress: CheckoutProgressBlock? = nil) -> git_checkout_options {
|
|
// Do this because GIT_CHECKOUT_OPTIONS_INIT is unavailable in swift
|
|
let pointer = UnsafeMutablePointer<git_checkout_options>.allocate(capacity: 1)
|
|
git_checkout_init_options(pointer, UInt32(GIT_CHECKOUT_OPTIONS_VERSION))
|
|
var options = pointer.move()
|
|
pointer.deallocate(capacity: 1)
|
|
|
|
options.checkout_strategy = strategy.git_checkout_strategy.rawValue
|
|
|
|
if progress != nil {
|
|
options.progress_cb = checkoutProgressCallback
|
|
let blockPointer = UnsafeMutablePointer<CheckoutProgressBlock>.allocate(capacity: 1)
|
|
blockPointer.initialize(to: progress!)
|
|
options.progress_payload = UnsafeMutableRawPointer(blockPointer)
|
|
}
|
|
|
|
return options
|
|
}
|
|
|
|
private func fetchOptions(credentials: Credentials) -> git_fetch_options {
|
|
let pointer = UnsafeMutablePointer<git_fetch_options>.allocate(capacity: 1)
|
|
git_fetch_init_options(pointer, UInt32(GIT_FETCH_OPTIONS_VERSION))
|
|
|
|
var options = pointer.move()
|
|
|
|
pointer.deallocate(capacity: 1)
|
|
|
|
options.callbacks.payload = credentials.toPointer()
|
|
options.callbacks.credentials = credentialsCallback
|
|
|
|
return options
|
|
}
|
|
|
|
private func cloneOptions(bare: Bool = false, localClone: Bool = false, fetchOptions: git_fetch_options? = nil,
|
|
checkoutOptions: git_checkout_options? = nil) -> git_clone_options {
|
|
|
|
let pointer = UnsafeMutablePointer<git_clone_options>.allocate(capacity: 1)
|
|
git_clone_init_options(pointer, UInt32(GIT_CLONE_OPTIONS_VERSION))
|
|
|
|
var options = pointer.move()
|
|
|
|
pointer.deallocate(capacity: 1)
|
|
|
|
options.bare = bare ? 1 : 0
|
|
|
|
if localClone {
|
|
options.local = GIT_CLONE_NO_LOCAL
|
|
}
|
|
|
|
if let checkoutOptions = checkoutOptions {
|
|
options.checkout_opts = checkoutOptions
|
|
}
|
|
|
|
if let fetchOptions = fetchOptions {
|
|
options.fetch_opts = fetchOptions
|
|
}
|
|
|
|
return options
|
|
}
|
|
|
|
/// A git repository.
|
|
final public class Repository {
|
|
|
|
// MARK: - Creating Repositories
|
|
|
|
/// Load the repository at the given URL.
|
|
///
|
|
/// URL - The URL of the repository.
|
|
///
|
|
/// Returns a `Result` with a `Repository` or an error.
|
|
class public func atURL(_ url: URL) -> Result<Repository, NSError> {
|
|
var pointer: OpaquePointer? = nil
|
|
let result = git_repository_open(&pointer, (url as NSURL).fileSystemRepresentation)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_repository_open"))
|
|
}
|
|
|
|
let repository = Repository(pointer!)
|
|
return Result.success(repository)
|
|
}
|
|
|
|
/// Clone the repository from a given URL.
|
|
///
|
|
/// remoteURL - The URL of the remote repository
|
|
/// localURL - The URL to clone the remote repository into
|
|
/// localClone - Will not bypass the git-aware transport, even if remote is local.
|
|
/// bare - Clone remote as a bare repository.
|
|
/// credentials - Credentials to be used when connecting to the remote.
|
|
/// checkoutStrategy - The checkout strategy to use, if being checked out.
|
|
/// checkoutProgress - A block that's called with the progress of the checkout.
|
|
///
|
|
/// Returns a `Result` with a `Repository` or an error.
|
|
class public func cloneFromURL(_ remoteURL: URL, toURL: URL, localClone: Bool = false, bare: Bool = false,
|
|
credentials: Credentials = .Default(), checkoutStrategy: CheckoutStrategy = .Safe, checkoutProgress: CheckoutProgressBlock? = nil) -> Result<Repository, NSError> {
|
|
var options = cloneOptions(
|
|
bare: bare, localClone: localClone,
|
|
fetchOptions: fetchOptions(credentials: credentials),
|
|
checkoutOptions: checkoutOptions(strategy: checkoutStrategy, progress: checkoutProgress))
|
|
|
|
var pointer: OpaquePointer? = nil
|
|
let remoteURLString = (remoteURL as NSURL).isFileReferenceURL() ? remoteURL.path : remoteURL.absoluteString
|
|
let result = git_clone(&pointer, remoteURLString, (toURL as NSURL).fileSystemRepresentation, &options)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_clone"))
|
|
}
|
|
|
|
let repository = Repository(pointer!)
|
|
return Result.success(repository)
|
|
}
|
|
|
|
// MARK: - Initializers
|
|
|
|
/// Create an instance with a libgit2 `git_repository` object.
|
|
///
|
|
/// The Repository assumes ownership of the `git_repository` object.
|
|
public init(_ pointer: OpaquePointer) {
|
|
self.pointer = pointer
|
|
|
|
let path = git_repository_workdir(pointer)
|
|
self.directoryURL = path.map({ path in URL(fileURLWithPath: String(validatingUTF8: path)!, isDirectory: true) })
|
|
}
|
|
|
|
deinit {
|
|
git_repository_free(pointer)
|
|
}
|
|
|
|
// MARK: - Properties
|
|
|
|
/// The underlying libgit2 `git_repository` object.
|
|
public let pointer: OpaquePointer
|
|
|
|
/// The URL of the repository's working directory, or `nil` if the
|
|
/// repository is bare.
|
|
public let directoryURL: URL?
|
|
|
|
// MARK: - Object Lookups
|
|
|
|
/// Load a libgit2 object and transform it to something else.
|
|
///
|
|
/// oid - The OID of the object to look up.
|
|
/// type - The type of the object to look up.
|
|
/// transform - A function that takes the libgit2 object and transforms it
|
|
/// into something else.
|
|
///
|
|
/// Returns the result of calling `transform` or an error if the object
|
|
/// cannot be loaded.
|
|
func withLibgit2Object<T>(_ oid: OID, type: git_otype, transform: (OpaquePointer) -> Result<T, NSError>) -> Result<T, NSError> {
|
|
var pointer: OpaquePointer? = nil
|
|
var oid = oid.oid
|
|
let result = git_object_lookup(&pointer, self.pointer, &oid, type)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_object_lookup"))
|
|
}
|
|
|
|
let value = transform(pointer!)
|
|
git_object_free(pointer)
|
|
return value
|
|
}
|
|
|
|
func withLibgit2Object<T>(_ oid: OID, type: git_otype, transform: (OpaquePointer) -> T) -> Result<T, NSError> {
|
|
return withLibgit2Object(oid, type: type) { Result.success(transform($0)) }
|
|
}
|
|
|
|
/// Loads the object with the given OID.
|
|
///
|
|
/// oid - The OID of the blob to look up.
|
|
///
|
|
/// Returns a `Blob`, `Commit`, `Tag`, or `Tree` if one exists, or an error.
|
|
public func objectWithOID(_ oid: OID) -> Result<ObjectType, NSError> {
|
|
return withLibgit2Object(oid, type: GIT_OBJ_ANY) { object in
|
|
let type = git_object_type(object)
|
|
if type == Blob.type {
|
|
return Result.success(Blob(object))
|
|
} else if type == Commit.type {
|
|
return Result.success(Commit(object))
|
|
} else if type == Tag.type {
|
|
return Result.success(Tag(object))
|
|
} else if type == Tree.type {
|
|
return Result.success(Tree(object))
|
|
}
|
|
|
|
let error = NSError(
|
|
domain: "org.libgit2.SwiftGit2",
|
|
code: 1,
|
|
userInfo: [
|
|
NSLocalizedDescriptionKey: "Unrecognized git_otype '\(type)' for oid '\(oid)'."
|
|
]
|
|
)
|
|
return Result.failure(error)
|
|
}
|
|
}
|
|
|
|
/// Loads the blob with the given OID.
|
|
///
|
|
/// oid - The OID of the blob to look up.
|
|
///
|
|
/// Returns the blob if it exists, or an error.
|
|
public func blobWithOID(_ oid: OID) -> Result<Blob, NSError> {
|
|
return self.withLibgit2Object(oid, type: GIT_OBJ_BLOB) { Blob($0) }
|
|
}
|
|
|
|
/// Loads the commit with the given OID.
|
|
///
|
|
/// oid - The OID of the commit to look up.
|
|
///
|
|
/// Returns the commit if it exists, or an error.
|
|
public func commitWithOID(_ oid: OID) -> Result<Commit, NSError> {
|
|
return self.withLibgit2Object(oid, type: GIT_OBJ_COMMIT) { Commit($0) }
|
|
}
|
|
|
|
/// Loads the tag with the given OID.
|
|
///
|
|
/// oid - The OID of the tag to look up.
|
|
///
|
|
/// Returns the tag if it exists, or an error.
|
|
public func tagWithOID(_ oid: OID) -> Result<Tag, NSError> {
|
|
return self.withLibgit2Object(oid, type: GIT_OBJ_TAG) { Tag($0) }
|
|
}
|
|
|
|
/// Loads the tree with the given OID.
|
|
///
|
|
/// oid - The OID of the tree to look up.
|
|
///
|
|
/// Returns the tree if it exists, or an error.
|
|
public func treeWithOID(_ oid: OID) -> Result<Tree, NSError> {
|
|
return self.withLibgit2Object(oid, type: GIT_OBJ_TREE) { Tree($0) }
|
|
}
|
|
|
|
/// Loads the referenced object from the pointer.
|
|
///
|
|
/// pointer - A pointer to an object.
|
|
///
|
|
/// Returns the object if it exists, or an error.
|
|
public func objectFromPointer<T>(_ pointer: PointerTo<T>) -> Result<T, NSError> {
|
|
return self.withLibgit2Object(pointer.oid, type: pointer.type) { T($0) }
|
|
}
|
|
|
|
/// Loads the referenced object from the pointer.
|
|
///
|
|
/// pointer - A pointer to an object.
|
|
///
|
|
/// Returns the object if it exists, or an error.
|
|
public func objectFromPointer(_ pointer: Pointer) -> Result<ObjectType, NSError> {
|
|
switch pointer {
|
|
case let .Blob(oid):
|
|
return blobWithOID(oid).map { $0 as ObjectType }
|
|
case let .Commit(oid):
|
|
return commitWithOID(oid).map { $0 as ObjectType }
|
|
case let .Tag(oid):
|
|
return tagWithOID(oid).map { $0 as ObjectType }
|
|
case let .Tree(oid):
|
|
return treeWithOID(oid).map { $0 as ObjectType }
|
|
}
|
|
}
|
|
|
|
// MARK: - Remote Lookups
|
|
|
|
/// Loads all the remotes in the repository.
|
|
///
|
|
/// Returns an array of remotes, or an error.
|
|
public func allRemotes() -> Result<[Remote], NSError> {
|
|
let pointer = UnsafeMutablePointer<git_strarray>.allocate(capacity: 1)
|
|
let result = git_remote_list(pointer, self.pointer)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
pointer.deallocate(capacity: 1)
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_remote_list"))
|
|
}
|
|
|
|
let strarray = pointer.pointee
|
|
let remotes: [Result<Remote, NSError>] = strarray.map {
|
|
return self.remoteWithName($0)
|
|
}
|
|
git_strarray_free(pointer)
|
|
pointer.deallocate(capacity: 1)
|
|
|
|
let error = remotes.reduce(nil) { $0 == nil ? $0 : $1.error }
|
|
if let error = error {
|
|
return Result.failure(error)
|
|
}
|
|
return Result.success(remotes.map { $0.value! })
|
|
}
|
|
|
|
/// Load a remote from the repository.
|
|
///
|
|
/// name - The name of the remote.
|
|
///
|
|
/// Returns the remote if it exists, or an error.
|
|
public func remoteWithName(_ name: String) -> Result<Remote, NSError> {
|
|
var pointer: OpaquePointer? = nil
|
|
let result = git_remote_lookup(&pointer, self.pointer, name)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_remote_lookup"))
|
|
}
|
|
|
|
let value = Remote(pointer!)
|
|
git_remote_free(pointer)
|
|
return Result.success(value)
|
|
}
|
|
|
|
// MARK: - Reference Lookups
|
|
|
|
/// Load all the references with the given prefix (e.g. "refs/heads/")
|
|
public func referencesWithPrefix(_ prefix: String) -> Result<[ReferenceType], NSError> {
|
|
let pointer = UnsafeMutablePointer<git_strarray>.allocate(capacity: 1)
|
|
let result = git_reference_list(pointer, self.pointer)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
pointer.deallocate(capacity: 1)
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_reference_list"))
|
|
}
|
|
|
|
let strarray = pointer.pointee
|
|
let references = strarray
|
|
.filter {
|
|
$0.hasPrefix(prefix)
|
|
}
|
|
.map {
|
|
self.referenceWithName($0)
|
|
}
|
|
git_strarray_free(pointer)
|
|
pointer.deallocate(capacity: 1)
|
|
|
|
let error = references.reduce(nil) { $0 == nil ? $0 : $1.error }
|
|
if let error = error {
|
|
return Result.failure(error)
|
|
}
|
|
return Result.success(references.map { $0.value! })
|
|
}
|
|
|
|
/// Load the reference with the given long name (e.g. "refs/heads/master")
|
|
///
|
|
/// If the reference is a branch, a `Branch` will be returned. If the
|
|
/// reference is a tag, a `TagReference` will be returned. Otherwise, a
|
|
/// `Reference` will be returned.
|
|
public func referenceWithName(_ name: String) -> Result<ReferenceType, NSError> {
|
|
var pointer: OpaquePointer? = nil
|
|
let result = git_reference_lookup(&pointer, self.pointer, name)
|
|
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_reference_lookup"))
|
|
}
|
|
|
|
let value = referenceWithLibGit2Reference(pointer!)
|
|
git_reference_free(pointer)
|
|
return Result.success(value)
|
|
}
|
|
|
|
/// Load and return a list of all local branches.
|
|
public func localBranches() -> Result<[Branch], NSError> {
|
|
return referencesWithPrefix("refs/heads/")
|
|
.map { (refs: [ReferenceType]) in
|
|
return refs.map { $0 as! Branch }
|
|
}
|
|
}
|
|
|
|
/// Load and return a list of all remote branches.
|
|
public func remoteBranches() -> Result<[Branch], NSError> {
|
|
return referencesWithPrefix("refs/remotes/")
|
|
.map { (refs: [ReferenceType]) in
|
|
return refs.map { $0 as! Branch }
|
|
}
|
|
}
|
|
|
|
/// Load the local branch with the given name (e.g., "master").
|
|
public func localBranchWithName(_ name: String) -> Result<Branch, NSError> {
|
|
return referenceWithName("refs/heads/" + name).map { $0 as! Branch }
|
|
}
|
|
|
|
/// Load the remote branch with the given name (e.g., "origin/master").
|
|
public func remoteBranchWithName(_ name: String) -> Result<Branch, NSError> {
|
|
return referenceWithName("refs/remotes/" + name).map { $0 as! Branch }
|
|
}
|
|
|
|
/// Load and return a list of all the `TagReference`s.
|
|
public func allTags() -> Result<[TagReference], NSError> {
|
|
return referencesWithPrefix("refs/tags/")
|
|
.map { (refs: [ReferenceType]) in
|
|
return refs.map { $0 as! TagReference }
|
|
}
|
|
}
|
|
|
|
/// Load the tag with the given name (e.g., "tag-2").
|
|
public func tagWithName(_ name: String) -> Result<TagReference, NSError> {
|
|
return referenceWithName("refs/tags/" + name).map { $0 as! TagReference }
|
|
}
|
|
|
|
// MARK: - Working Directory
|
|
|
|
/// Load the reference pointed at by HEAD.
|
|
///
|
|
/// When on a branch, this will return the current `Branch`.
|
|
public func HEAD() -> Result<ReferenceType, NSError> {
|
|
var pointer: OpaquePointer? = nil
|
|
let result = git_repository_head(&pointer, self.pointer)
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_repository_head"))
|
|
}
|
|
let value = referenceWithLibGit2Reference(pointer!)
|
|
git_reference_free(pointer)
|
|
return Result.success(value)
|
|
}
|
|
|
|
/// Set HEAD to the given oid (detached).
|
|
///
|
|
/// :param: oid The OID to set as HEAD.
|
|
/// :returns: Returns a result with void or the error that occurred.
|
|
public func setHEAD(_ oid: OID) -> Result<(), NSError> {
|
|
var oid = oid.oid
|
|
let result = git_repository_set_head_detached(self.pointer, &oid);
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_repository_set_head"))
|
|
}
|
|
return Result.success()
|
|
}
|
|
|
|
/// Set HEAD to the given reference.
|
|
///
|
|
/// :param: reference The reference to set as HEAD.
|
|
/// :returns: Returns a result with void or the error that occurred.
|
|
public func setHEAD(_ reference: ReferenceType) -> Result<(), NSError> {
|
|
let result = git_repository_set_head(self.pointer, reference.longName);
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_repository_set_head"))
|
|
}
|
|
return Result.success()
|
|
}
|
|
|
|
/// Check out HEAD.
|
|
///
|
|
/// :param: strategy The checkout strategy to use.
|
|
/// :param: progress A block that's called with the progress of the checkout.
|
|
/// :returns: Returns a result with void or the error that occurred.
|
|
public func checkout(strategy: CheckoutStrategy, progress: CheckoutProgressBlock? = nil) -> Result<(), NSError> {
|
|
var options = checkoutOptions(strategy: strategy, progress: progress)
|
|
|
|
let result = git_checkout_head(self.pointer, &options)
|
|
if result != GIT_OK.rawValue {
|
|
return Result.failure(libGit2Error(result, libGit2PointOfFailure: "git_checkout_head"))
|
|
}
|
|
|
|
return Result.success()
|
|
}
|
|
|
|
/// Check out the given OID.
|
|
///
|
|
/// :param: oid The OID of the commit to check out.
|
|
/// :param: strategy The checkout strategy to use.
|
|
/// :param: progress A block that's called with the progress of the checkout.
|
|
/// :returns: Returns a result with void or the error that occurred.
|
|
public func checkout(_ oid: OID, strategy: CheckoutStrategy, progress: CheckoutProgressBlock? = nil) -> Result<(), NSError> {
|
|
return setHEAD(oid).flatMap { self.checkout(strategy: strategy, progress: progress) }
|
|
}
|
|
|
|
/// Check out the given reference.
|
|
///
|
|
/// :param: reference The reference to check out.
|
|
/// :param: strategy The checkout strategy to use.
|
|
/// :param: progress A block that's called with the progress of the checkout.
|
|
/// :returns: Returns a result with void or the error that occurred.
|
|
public func checkout(_ reference: ReferenceType, strategy: CheckoutStrategy, progress: CheckoutProgressBlock? = nil) -> Result<(), NSError> {
|
|
return setHEAD(reference).flatMap { self.checkout(strategy: strategy, progress: progress) }
|
|
}
|
|
}
|