mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
- Remove all synchronous method in commands - `Command.ReadToEndAsync` now is protected method - Rename `ResultAsync` to `GetResultAsync` - Call `ConfigureAwait(false)` when there's no context Signed-off-by: leo <longshuang@msn.cn>
187 lines
5.7 KiB
C#
187 lines
5.7 KiB
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public abstract class InProgressContext
|
|
{
|
|
protected InProgressContext(string repo, string cmd)
|
|
{
|
|
_repo = repo;
|
|
_cmd = cmd;
|
|
}
|
|
|
|
public Task<bool> AbortAsync()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Args = $"{_cmd} --abort",
|
|
}.ExecAsync();
|
|
}
|
|
|
|
public virtual Task<bool> SkipAsync()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Args = $"{_cmd} --skip",
|
|
}.ExecAsync();
|
|
}
|
|
|
|
public virtual Task<bool> ContinueAsync()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Editor = Commands.Command.EditorType.None,
|
|
Args = $"{_cmd} --continue",
|
|
}.ExecAsync();
|
|
}
|
|
|
|
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).GetResultAsync().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")
|
|
{
|
|
HeadName = File.ReadAllText(Path.Combine(repo.GitDir, "rebase-merge", "head-name")).Trim();
|
|
if (HeadName.StartsWith("refs/heads/"))
|
|
HeadName = HeadName.Substring(11);
|
|
else if (HeadName.StartsWith("refs/tags/"))
|
|
HeadName = HeadName.Substring(10);
|
|
|
|
var stoppedSHAPath = Path.Combine(repo.GitDir, "rebase-merge", "stopped-sha");
|
|
var stoppedSHA = File.Exists(stoppedSHAPath)
|
|
? File.ReadAllText(stoppedSHAPath).Trim()
|
|
: new Commands.QueryRevisionByRefName(repo.FullPath, HeadName).GetResultAsync().Result;
|
|
|
|
if (!string.IsNullOrEmpty(stoppedSHA))
|
|
StoppedAt = new Commands.QuerySingleCommit(repo.FullPath, stoppedSHA).GetResultAsync().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).GetResultAsync().Result ?? new Models.Commit() { SHA = ontoSHA };
|
|
}
|
|
|
|
public override Task<bool> ContinueAsync()
|
|
{
|
|
return new Commands.Command()
|
|
{
|
|
WorkingDirectory = _repo,
|
|
Context = _repo,
|
|
Editor = Commands.Command.EditorType.RebaseEditor,
|
|
Args = "rebase --continue",
|
|
}.ExecAsync();
|
|
}
|
|
}
|
|
|
|
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).GetResultAsync().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 = new Commands.QueryCurrentBranch(repo.FullPath).GetResultAsync().Result;
|
|
|
|
var sourceSHA = File.ReadAllText(Path.Combine(repo.GitDir, "MERGE_HEAD")).Trim();
|
|
Source = new Commands.QuerySingleCommit(repo.FullPath, sourceSHA).GetResultAsync().Result ?? new Models.Commit() { SHA = sourceSHA };
|
|
}
|
|
|
|
public override Task<bool> SkipAsync()
|
|
{
|
|
return Task.FromResult(true);
|
|
}
|
|
}
|
|
}
|