mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-25 14:15:00 +00:00
200 lines
5.9 KiB
C#
200 lines
5.9 KiB
C#
using System.IO;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public abstract class InProgressContext
|
|
{
|
|
public InProgressContext(string repo, string cmd)
|
|
{
|
|
_repo = repo;
|
|
_cmd = cmd;
|
|
}
|
|
|
|
public bool Abort()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Args = $"{_cmd} --abort",
|
|
}.Exec();
|
|
}
|
|
|
|
public virtual bool Skip()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Args = $"{_cmd} --skip",
|
|
}.Exec();
|
|
}
|
|
|
|
public virtual bool Continue()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Editor = Commands.Command.EditorType.None,
|
|
Args = $"{_cmd} --continue",
|
|
}.Exec();
|
|
}
|
|
|
|
protected string GetFriendlyNameOfCommit(Models.Commit commit)
|
|
{
|
|
var branchDecorator = commit.Decorators.Find(x => x.Type == Models.DecoratorType.LocalBranchHead || x.Type == Models.DecoratorType.RemoteBranchHead);
|
|
if (branchDecorator != null)
|
|
return branchDecorator.Name;
|
|
|
|
var tagDecorator = commit.Decorators.Find(x => x.Type == Models.DecoratorType.Tag);
|
|
if (tagDecorator != null)
|
|
return tagDecorator.Name;
|
|
|
|
return commit.SHA.Substring(0, 10);
|
|
}
|
|
|
|
protected string _repo = string.Empty;
|
|
protected string _cmd = string.Empty;
|
|
}
|
|
|
|
public class CherryPickInProgress : InProgressContext
|
|
{
|
|
public Models.Commit Head
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public string HeadName
|
|
{
|
|
get => GetFriendlyNameOfCommit(Head);
|
|
}
|
|
|
|
public CherryPickInProgress(Repository repo) : base(repo.FullPath, "cherry-pick")
|
|
{
|
|
var headSHA = File.ReadAllText(Path.Combine(repo.GitDir, "CHERRY_PICK_HEAD")).Trim();
|
|
Head = new Commands.QuerySingleCommit(repo.FullPath, headSHA).Result() ?? new Models.Commit() { SHA = headSHA };
|
|
}
|
|
}
|
|
|
|
public class RebaseInProgress : InProgressContext
|
|
{
|
|
public string HeadName
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public string BaseName
|
|
{
|
|
get => GetFriendlyNameOfCommit(Onto);
|
|
}
|
|
|
|
public Models.Commit StoppedAt
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public Models.Commit Onto
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public RebaseInProgress(Repository repo) : base(repo.FullPath, "rebase")
|
|
{
|
|
_gitDir = repo.GitDir;
|
|
|
|
var stoppedSHA = File.ReadAllText(Path.Combine(repo.GitDir, "rebase-merge", "stopped-sha")).Trim();
|
|
StoppedAt = new Commands.QuerySingleCommit(repo.FullPath, stoppedSHA).Result() ?? new Models.Commit() { SHA = stoppedSHA };
|
|
|
|
var ontoSHA = File.ReadAllText(Path.Combine(repo.GitDir, "rebase-merge", "onto")).Trim();
|
|
Onto = new Commands.QuerySingleCommit(repo.FullPath, ontoSHA).Result() ?? new Models.Commit() { SHA = ontoSHA };
|
|
|
|
HeadName = File.ReadAllText(Path.Combine(repo.GitDir, "rebase-merge", "head-name")).Trim();
|
|
if (HeadName.StartsWith("refs/heads/"))
|
|
HeadName = HeadName.Substring(11);
|
|
}
|
|
|
|
public override bool Continue()
|
|
{
|
|
var succ = new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Editor = Commands.Command.EditorType.RebaseEditor,
|
|
Args = $"rebase --continue",
|
|
}.Exec();
|
|
|
|
if (succ)
|
|
{
|
|
var jobsFile = Path.Combine(_gitDir, "sourcegit_rebase_jobs.json");
|
|
var rebaseMergeHead = Path.Combine(_gitDir, "REBASE_HEAD");
|
|
var rebaseMergeFolder = Path.Combine(_gitDir, "rebase-merge");
|
|
var rebaseApplyFolder = Path.Combine(_gitDir, "rebase-apply");
|
|
if (File.Exists(jobsFile))
|
|
File.Delete(jobsFile);
|
|
if (File.Exists(rebaseMergeHead))
|
|
File.Delete(rebaseMergeHead);
|
|
if (Directory.Exists(rebaseMergeFolder))
|
|
Directory.Delete(rebaseMergeFolder);
|
|
if (Directory.Exists(rebaseApplyFolder))
|
|
Directory.Delete(rebaseApplyFolder);
|
|
}
|
|
|
|
return succ;
|
|
}
|
|
|
|
private string _gitDir;
|
|
}
|
|
|
|
public class RevertInProgress : InProgressContext
|
|
{
|
|
public Models.Commit Head
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public RevertInProgress(Repository repo) : base(repo.FullPath, "revert")
|
|
{
|
|
var headSHA = File.ReadAllText(Path.Combine(repo.GitDir, "REVERT_HEAD")).Trim();
|
|
Head = new Commands.QuerySingleCommit(repo.FullPath, headSHA).Result() ?? new Models.Commit() { SHA = headSHA };
|
|
}
|
|
}
|
|
|
|
public class MergeInProgress : InProgressContext
|
|
{
|
|
public string Current
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public Models.Commit Source
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public string SourceName
|
|
{
|
|
get => GetFriendlyNameOfCommit(Source);
|
|
}
|
|
|
|
public MergeInProgress(Repository repo) : base(repo.FullPath, "merge")
|
|
{
|
|
Current = Commands.Branch.ShowCurrent(repo.FullPath);
|
|
|
|
var sourceSHA = File.ReadAllText(Path.Combine(repo.GitDir, "MERGE_HEAD")).Trim();
|
|
Source = new Commands.QuerySingleCommit(repo.FullPath, sourceSHA).Result() ?? new Models.Commit() { SHA = sourceSHA };
|
|
}
|
|
|
|
public override bool Skip()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|