wip: starting work on dir option

This commit is contained in:
2022-12-24 17:46:20 -05:00
parent 73f8e80a23
commit 702188bc22
3 changed files with 148 additions and 118 deletions

View File

@ -5,13 +5,14 @@ public class CommitDetail
private List<string>? _authors;
private SortedList<string, int>? _commitDetails;
private string _currentBranch;
private string? _selectedDir;
public List<string>? Authors
{
public List<string>? Authors
{
get { return _authors; }
set { _authors = value; }
}
public SortedList<string, int>? CommitDetails
{
get { return _commitDetails; }
@ -24,16 +25,23 @@ public class CommitDetail
set { _currentBranch = value; }
}
public CommitDetail()
public string SelectedDir
{
get { return _selectedDir; }
set { _selectedDir = value; }
}
public CommitDetail(string dir)
{
_authors = new List<string>();
_commitDetails = new SortedList<string, int>();
_currentBranch = GetCurrentBranch();
_selectedDir = Directory.Exists(dir) ? dir : Directory.GetCurrentDirectory();
}
public void GetCurrentCommitsByName()
public void GetCurrentCommitsByName()
{
using (var repo = new Repository(Directory.GetCurrentDirectory()))
using (var repo = new Repository(_selectedDir))
{
foreach (var c in repo.Commits)
{
@ -42,7 +50,7 @@ public class CommitDetail
_authors.Add(c.Author.Name);
}
}
foreach (var a in _authors)
{
int commitCount = repo.Commits.Where(r => r.Author.Name == a).Count();
@ -53,7 +61,7 @@ public class CommitDetail
public void GetCurrentCommitsByEmail()
{
using (var repo = new Repository(Directory.GetCurrentDirectory()))
using (var repo = new Repository(_selectedDir))
{
foreach (var c in repo.Commits)
{
@ -62,7 +70,7 @@ public class CommitDetail
_authors.Add(c.Author.Email);
}
}
foreach (var a in _authors)
{
int commitCount = repo.Commits.Where(r => r.Author.Email == a).Count();
@ -73,7 +81,7 @@ public class CommitDetail
public int GetCommitTotal()
{
using (var repo = new Repository(Directory.GetCurrentDirectory()))
using (var repo = new Repository(_selectedDir))
{
return repo.Commits.Count();
}
@ -81,7 +89,7 @@ public class CommitDetail
public string GetCurrentBranch()
{
using (var repo = new Repository(Directory.GetCurrentDirectory()))
using (var repo = new Repository(_selectedDir))
{
return repo.Head.Reference.TargetIdentifier;
}
@ -89,7 +97,7 @@ public class CommitDetail
public void GetCommitsByBranch(string branchName)
{
using (var repo = new Repository(Directory.GetCurrentDirectory()))
using (var repo = new Repository(_selectedDir))
{
var branchResult = repo.Branches[branchName];
@ -100,7 +108,7 @@ public class CommitDetail
branchResult = repo.Branches[$"origin/{branchName}"];
var remoteBranch = repo.CreateBranch(branchName, branchResult.Tip);
repo.Branches.Update(remoteBranch, b => b.UpstreamBranch = $"refs/heads/{branchName}");
}
}
}
catch (System.Exception)
{
@ -115,7 +123,7 @@ public class CommitDetail
_authors.Add(c.Author.Name);
}
}
foreach (var a in _authors)
{
int commitCount = branchResult.Commits.Where(r => r.Author.Name == a).Count();
@ -123,15 +131,15 @@ public class CommitDetail
}
}
}
public void GetCommitsByTag(string tagName)
{
using (var repo = new Repository(Directory.GetCurrentDirectory()))
using (var repo = new Repository(_selectedDir))
{
try
{
var tagResult = repo.Tags[tagName].Target.Sha;
var commitFilter = new CommitFilter
{
IncludeReachableFrom = tagResult,