sourcegit/src/Commands/QueryRevisionObjects.cs

47 lines
1.4 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2021-04-29 05:05:55 -07:00
using System.Text.RegularExpressions;
namespace SourceGit.Commands
{
public partial class QueryRevisionObjects : Command
{
2024-03-16 02:09:27 -07:00
[GeneratedRegex(@"^\d+\s+(\w+)\s+([0-9a-f]+)\s+(.*)$")]
private static partial Regex REG_FORMAT();
private readonly List<Models.Object> objects = new List<Models.Object>();
2021-04-29 05:05:55 -07:00
public QueryRevisionObjects(string repo, string sha)
{
WorkingDirectory = repo;
Context = repo;
2021-04-29 05:05:55 -07:00
Args = $"ls-tree -r {sha}";
}
public List<Models.Object> Result()
{
2021-04-29 05:05:55 -07:00
Exec();
return objects;
}
protected override void OnReadline(string line)
{
2024-03-16 02:09:27 -07:00
var match = REG_FORMAT().Match(line);
2021-04-29 05:05:55 -07:00
if (!match.Success) return;
var obj = new Models.Object();
obj.SHA = match.Groups[2].Value;
obj.Type = Models.ObjectType.Blob;
obj.Path = match.Groups[3].Value;
switch (match.Groups[1].Value)
{
case "blob": obj.Type = Models.ObjectType.Blob; break;
case "tree": obj.Type = Models.ObjectType.Tree; break;
case "tag": obj.Type = Models.ObjectType.Tag; break;
case "commit": obj.Type = Models.ObjectType.Commit; break;
2021-04-29 05:05:55 -07:00
}
objects.Add(obj);
}
}
}