wip: starting work on dir option
This commit is contained in:
parent
73f8e80a23
commit
702188bc22
@ -5,6 +5,7 @@ public class CommitDetail
|
||||
private List<string>? _authors;
|
||||
private SortedList<string, int>? _commitDetails;
|
||||
private string _currentBranch;
|
||||
private string? _selectedDir;
|
||||
|
||||
public List<string>? Authors
|
||||
{
|
||||
@ -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()
|
||||
{
|
||||
using (var repo = new Repository(Directory.GetCurrentDirectory()))
|
||||
using (var repo = new Repository(_selectedDir))
|
||||
{
|
||||
foreach (var c in repo.Commits)
|
||||
{
|
||||
@ -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)
|
||||
{
|
||||
@ -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];
|
||||
|
||||
@ -126,7 +134,7 @@ public class CommitDetail
|
||||
|
||||
public void GetCommitsByTag(string tagName)
|
||||
{
|
||||
using (var repo = new Repository(Directory.GetCurrentDirectory()))
|
||||
using (var repo = new Repository(_selectedDir))
|
||||
{
|
||||
try
|
||||
{
|
||||
|
@ -7,7 +7,7 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<AssemblyName>drillsergeant</AssemblyName>
|
||||
<Version>1.1.0</Version>
|
||||
<Version>1.2.0</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
220
Program.cs
220
Program.cs
@ -22,119 +22,141 @@ static class Program
|
||||
);
|
||||
tagOption.AddAlias("-t");
|
||||
|
||||
var dirOption = new Option<string>(
|
||||
"--file",
|
||||
"Specify a git directory"
|
||||
);
|
||||
dirOption.AddAlias("-f");
|
||||
|
||||
var rootCommand = new RootCommand("Get a tally of contributors' commits")
|
||||
{
|
||||
outputOption,
|
||||
branchOption,
|
||||
tagOption,
|
||||
dirOption,
|
||||
};
|
||||
|
||||
rootCommand.SetHandler((outputOptionValue, branchOptionValue, tagOptionValue) => {
|
||||
CommitDetail commits = new CommitDetail();
|
||||
rootCommand.SetHandler((outputOptionValue, branchOptionValue, tagOptionValue, dirOptionValue) =>
|
||||
{
|
||||
CommitDetail commits = new CommitDetail(dirOptionValue);
|
||||
|
||||
switch (outputOptionValue)
|
||||
switch (outputOptionValue)
|
||||
{
|
||||
case "stdout":
|
||||
StdOutDataService outDataService = new StdOutDataService();
|
||||
DataAccess dataAccess = new DataAccess(outDataService);
|
||||
|
||||
if (branchOptionValue != null && tagOptionValue != null)
|
||||
{
|
||||
case "stdout":
|
||||
StdOutDataService outDataService = new StdOutDataService();
|
||||
DataAccess dataAccess = new DataAccess(outDataService);
|
||||
|
||||
if (branchOptionValue != null && tagOptionValue != null) {
|
||||
Console.WriteLine("Please specify either a branch or a tag");
|
||||
Environment.Exit(2);
|
||||
} else if (branchOptionValue != null && tagOptionValue == null) {
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccess.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccess.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
} else if (branchOptionValue == null && tagOptionValue != null) {
|
||||
commits.GetCommitsByTag(tagOptionValue);
|
||||
dataAccess.WriteData(commits.CommitDetails);
|
||||
}
|
||||
break;
|
||||
case "xlsx":
|
||||
ExcelDataService excelDataService = new ExcelDataService();
|
||||
DataAccess dataAccessExcelCase = new DataAccess(excelDataService);
|
||||
|
||||
if (branchOptionValue != null && tagOptionValue != null) {
|
||||
Console.WriteLine("Please specify either a branch or a tag.");
|
||||
Environment.Exit(2);
|
||||
} else if (branchOptionValue != null && tagOptionValue == null) {
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessExcelCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccessExcelCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
} else if (branchOptionValue == null && tagOptionValue != null) {
|
||||
commits.GetCommitsByTag(tagOptionValue);
|
||||
dataAccessExcelCase.WriteData(commits.CommitDetails);
|
||||
}
|
||||
break;
|
||||
case "pdf":
|
||||
PdfDataService pdfDataService = new PdfDataService();
|
||||
DataAccess dataAccessPdfCase = new DataAccess(pdfDataService);
|
||||
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessPdfCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccessPdfCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case null:
|
||||
StdOutDataService stdOutDataService = new StdOutDataService();
|
||||
DataAccess dataAccessNullCase = new DataAccess(stdOutDataService);
|
||||
|
||||
if (branchOptionValue != null && tagOptionValue != null) {
|
||||
Console.WriteLine("Please specify either a branch or a tag.");
|
||||
Environment.Exit(2);
|
||||
} else if (branchOptionValue != null && tagOptionValue == null) {
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
} else if (branchOptionValue == null && tagOptionValue != null) {
|
||||
commits.GetCommitsByTag(tagOptionValue);
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
} else {
|
||||
Console.WriteLine("Please specify either a branch or a tag");
|
||||
Environment.Exit(2);
|
||||
}
|
||||
else if (branchOptionValue != null && tagOptionValue == null)
|
||||
{
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
}
|
||||
dataAccess.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccess.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (branchOptionValue == null && tagOptionValue != null)
|
||||
{
|
||||
commits.GetCommitsByTag(tagOptionValue);
|
||||
dataAccess.WriteData(commits.CommitDetails);
|
||||
}
|
||||
break;
|
||||
case "xlsx":
|
||||
ExcelDataService excelDataService = new ExcelDataService();
|
||||
DataAccess dataAccessExcelCase = new DataAccess(excelDataService);
|
||||
|
||||
if (branchOptionValue != null && tagOptionValue != null)
|
||||
{
|
||||
Console.WriteLine("Please specify either a branch or a tag.");
|
||||
Environment.Exit(2);
|
||||
}
|
||||
else if (branchOptionValue != null && tagOptionValue == null)
|
||||
{
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessExcelCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccessExcelCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (branchOptionValue == null && tagOptionValue != null)
|
||||
{
|
||||
commits.GetCommitsByTag(tagOptionValue);
|
||||
dataAccessExcelCase.WriteData(commits.CommitDetails);
|
||||
}
|
||||
break;
|
||||
case "pdf":
|
||||
PdfDataService pdfDataService = new PdfDataService();
|
||||
DataAccess dataAccessPdfCase = new DataAccess(pdfDataService);
|
||||
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessPdfCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
System.Console.WriteLine("This should not happen...");
|
||||
Environment.Exit(4);
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccessPdfCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
},
|
||||
outputOption, branchOption, tagOption);
|
||||
break;
|
||||
case null:
|
||||
StdOutDataService stdOutDataService = new StdOutDataService();
|
||||
DataAccess dataAccessNullCase = new DataAccess(stdOutDataService);
|
||||
|
||||
if (branchOptionValue != null && tagOptionValue != null)
|
||||
{
|
||||
Console.WriteLine("Please specify either a branch or a tag.");
|
||||
Environment.Exit(2);
|
||||
}
|
||||
else if (branchOptionValue != null && tagOptionValue == null)
|
||||
{
|
||||
switch (branchOptionValue)
|
||||
{
|
||||
case null:
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
default:
|
||||
commits.GetCommitsByBranch(branchOptionValue);
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (branchOptionValue == null && tagOptionValue != null)
|
||||
{
|
||||
commits.GetCommitsByTag(tagOptionValue);
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
}
|
||||
else
|
||||
{
|
||||
commits.GetCurrentCommitsByName();
|
||||
dataAccessNullCase.WriteData(commits.CommitDetails);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
System.Console.WriteLine("This should not happen...");
|
||||
Environment.Exit(4);
|
||||
break;
|
||||
}
|
||||
},
|
||||
outputOption, branchOption, tagOption, dirOption);
|
||||
|
||||
rootCommand.Invoke(args);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user