2024-02-05 23:08:37 -08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace SourceGit.Commands {
|
|
|
|
|
public class QuerySubmodules : Command {
|
2024-02-20 20:26:09 -08:00
|
|
|
|
private readonly Regex REG_FORMAT1 = new Regex(@"^[\-\+ ][0-9a-f]+\s(.*)\s\(.*\)$");
|
|
|
|
|
private readonly Regex REG_FORMAT2 = new Regex(@"^[\-\+ ][0-9a-f]+\s(.*)$");
|
2024-02-05 23:08:37 -08:00
|
|
|
|
|
|
|
|
|
public QuerySubmodules(string repo) {
|
|
|
|
|
WorkingDirectory = repo;
|
|
|
|
|
Context = repo;
|
|
|
|
|
Args = "submodule status";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<string> Result() {
|
|
|
|
|
Exec();
|
|
|
|
|
return _submodules;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnReadline(string line) {
|
2024-02-20 20:26:09 -08:00
|
|
|
|
var match = REG_FORMAT1.Match(line);
|
|
|
|
|
if (match.Success) {
|
|
|
|
|
_submodules.Add(match.Groups[1].Value);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
match = REG_FORMAT2.Match(line);
|
|
|
|
|
if (match.Success) {
|
|
|
|
|
_submodules.Add(match.Groups[1].Value);
|
|
|
|
|
}
|
2024-02-05 23:08:37 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<string> _submodules = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|