mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
78 lines
2.6 KiB
C#
78 lines
2.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public partial class QuerySubmodules : Command
|
|
{
|
|
[GeneratedRegex(@"^[\-\+ ][0-9a-f]+\s(.*)\s\(.*\)$")]
|
|
private static partial Regex REG_FORMAT1();
|
|
[GeneratedRegex(@"^[\-\+ ][0-9a-f]+\s(.*)$")]
|
|
private static partial Regex REG_FORMAT2();
|
|
[GeneratedRegex(@"^\s?[\w\?]{1,4}\s+(.+)$")]
|
|
private static partial Regex REG_FORMAT_STATUS();
|
|
|
|
public QuerySubmodules(string repo)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = "submodule status";
|
|
}
|
|
|
|
public List<Models.Submodule> Result()
|
|
{
|
|
var submodules = new List<Models.Submodule>();
|
|
var rs = ReadToEnd();
|
|
if (!rs.IsSuccess)
|
|
return submodules;
|
|
|
|
var builder = new StringBuilder();
|
|
var lines = rs.StdOut.Split('\n', System.StringSplitOptions.RemoveEmptyEntries);
|
|
foreach (var line in lines)
|
|
{
|
|
var match = REG_FORMAT1().Match(line);
|
|
if (match.Success)
|
|
{
|
|
var path = match.Groups[1].Value;
|
|
builder.Append($"\"{path}\" ");
|
|
submodules.Add(new Models.Submodule() { Path = path });
|
|
continue;
|
|
}
|
|
|
|
match = REG_FORMAT2().Match(line);
|
|
if (match.Success)
|
|
{
|
|
var path = match.Groups[1].Value;
|
|
builder.Append($"\"{path}\" ");
|
|
submodules.Add(new Models.Submodule() { Path = path });
|
|
}
|
|
}
|
|
|
|
if (submodules.Count > 0)
|
|
{
|
|
Args = $"status -uno --porcelain -- {builder}";
|
|
rs = ReadToEnd();
|
|
if (!rs.IsSuccess)
|
|
return submodules;
|
|
|
|
var dirty = new HashSet<string>();
|
|
lines = rs.StdOut.Split('\n', System.StringSplitOptions.RemoveEmptyEntries);
|
|
foreach (var line in lines)
|
|
{
|
|
var match = REG_FORMAT_STATUS().Match(line);
|
|
if (match.Success)
|
|
{
|
|
var path = match.Groups[1].Value;
|
|
dirty.Add(path);
|
|
}
|
|
}
|
|
|
|
foreach (var submodule in submodules)
|
|
submodule.IsDirty = dirty.Contains(submodule.Path);
|
|
}
|
|
|
|
return submodules;
|
|
}
|
|
}
|
|
}
|