mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 03:12:21 +08:00
32 lines
879 B
C#
32 lines
879 B
C#
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public partial class QueryFileSize : Command
|
|
{
|
|
[GeneratedRegex(@"^\d+\s+\w+\s+[0-9a-f]+\s+(\d+)\s+.*$")]
|
|
private static partial Regex REG_FORMAT();
|
|
|
|
public QueryFileSize(string repo, string file, string revision)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = $"ls-tree {revision} -l -- {file.Quoted()}";
|
|
}
|
|
|
|
public async Task<long> GetResultAsync()
|
|
{
|
|
var rs = await ReadToEndAsync().ConfigureAwait(false);
|
|
if (rs.IsSuccess)
|
|
{
|
|
var match = REG_FORMAT().Match(rs.StdOut);
|
|
if (match.Success)
|
|
return long.Parse(match.Groups[1].Value);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|