-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
463 lines (399 loc) · 24.5 KB
/
Program.cs
File metadata and controls
463 lines (399 loc) · 24.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using LibGit2Sharp;
using Microsoft.Extensions.Configuration;
using CheckRelease.Adapters;
using CheckRelease.Interfaces;
namespace CheckRelease
{
class Program
{
static int Main(string[] args)
{
try
{
// Set up configuration
var configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddCommandLine(args)
.Build();
// Create console output
var console = new ConsoleOutput();
// Parse command line arguments
var parser = new CommandLineParser(configuration, console);
var options = parser.Parse(args);
if (options == null)
{
return 1;
}
if (!parser.Validate(options))
{
return 1;
}
// Update console with debug mode
console = new ConsoleOutput(options.DebugMode);
// Add validation for settings path when settings diff is requested
if (options.SettingsDiff && string.IsNullOrWhiteSpace(options.SettingsPath))
{
console.WriteError("Error: Settings path must be provided when using --settings-diff.");
console.WriteError("Example: --settings-diff=\"project-dir/appsettings.json\"");
return 1;
}
// Enable debug mode if requested
if (options.DebugMode)
{
console.WriteDebug($"Debug mode enabled");
console.WriteDebug($"Current directory: {Directory.GetCurrentDirectory()}");
}
// Enable trace mode if requested
if (options.TraceMode)
{
console.WriteDebug($"Trace mode enabled");
// In bash, this would set -x to enable command tracing
// In C#, we'll just log more verbose information
}
// Find a valid Git repository by traversing up the directory tree
string currentDir = Directory.GetCurrentDirectory();
string? repoPath = FindGitRepository(currentDir, options.DebugMode, console);
if (string.IsNullOrEmpty(repoPath))
{
console.WriteError("Error: Could not find a valid Git repository in the current directory or any parent directory.");
return 1;
}
if (options.DebugMode)
{
console.WriteDebug($"Successfully found Git repository at: {repoPath}");
}
// Open the repository using our abstraction
using (var gitRepo = new LibGit2SharpRepository(repoPath, options.DebugMode, console))
{
// Create a tag selector
var tagSelector = new GitTagSelector(gitRepo, options.DebugMode, console);
try
{
// Check if we're using --from-common-ancestor option
if (options.FromCommonAncestor)
{
if (options.DebugMode)
{
console.WriteDebug($"Using --from-common-ancestor mode with {options.Arguments.Count} argument(s)");
}
// Get commits for common ancestor mode
(string commitA, string commitB) commitPair;
if (options.Arguments.Count == 1)
{
// Single argument: compare HEAD to common ancestor with the specified reference
commitPair = tagSelector.SelectHeadToCommonAncestor(options.Arguments[0]);
}
else
{
// Two arguments: compare first argument to common ancestor with second argument
commitPair = tagSelector.SelectReferencesToCommonAncestor(options.Arguments[0], options.Arguments[1]);
}
var (commitA, commitB) = commitPair;
// Process the commit pair
var commitAnalyzer = new CommitAnalyzer(gitRepo, options.Prefix, options.DebugMode, console);
var commits = commitAnalyzer.AnalyzeCommits(commitA, commitB);
var releaseDate = DateTime.Now; // Use current date for HEAD
// Generate output
var outputGenerator = new OutputGenerator(options.HtmlOutput, options.DebugMode, options.Prefix, options.JiraBaseUrl, console);
string output = outputGenerator.GenerateOutput(commitA, commitB, releaseDate, commits);
// Generate settings diff if requested
if (options.SettingsDiff)
{
try
{
if (options.DebugMode)
{
console.WriteDebug($"Generating settings diff for {commitA} -> {commitB}...");
}
var settingsDiffGenerator = new SettingsDiffGenerator(gitRepo, options.DebugMode, options.SettingsPath, console);
string settingsDiff = settingsDiffGenerator.GenerateSettingsDiff(commitA, commitB, options.HtmlOutput);
// Add settings diff to output
output += Environment.NewLine + Environment.NewLine + settingsDiff;
}
catch (Exception ex)
{
console.WriteError($"Error generating settings diff: {ex.Message}");
if (options.DebugMode && ex.InnerException != null)
{
console.WriteError($"Inner Exception: {ex.InnerException.Message}");
}
}
}
// Write output to console
console.WriteLine(string.Empty);
console.WriteLine(output);
}
// Check if we're in auto or stream mode
else if (options.Arguments.Count >= 1 && options.Arguments[0] == "auto")
{
// Get the tag type
string tagType = options.Arguments.Count > 1 ? options.Arguments[1] : "production";
// Get all tag pairs for auto mode
var tagPairs = tagSelector.SelectTagsAuto(tagType, options.SpanDays);
// For HTML output, we need to collect all data first
if (options.HtmlOutput)
{
var allPairsData = new List<(string TagA, string TagB, DateTime ReleaseDate, List<CommitAnalyzer.CommitInfo> Commits, string SettingsDiff)>();
// Process each pair to collect data
foreach (var (tagA, tagB) in tagPairs)
{
var commitAnalyzer = new CommitAnalyzer(gitRepo, options.Prefix, options.DebugMode, console);
var commits = commitAnalyzer.AnalyzeCommits(tagA, tagB);
var releaseDate = GetTagDate(gitRepo, tagB);
// Generate settings diff if requested
string settingsDiff = "";
if (options.SettingsDiff)
{
try
{
var settingsDiffGenerator = new SettingsDiffGenerator(gitRepo, options.DebugMode, options.SettingsPath, console);
settingsDiff = settingsDiffGenerator.GenerateSettingsDiff(tagA, tagB, options.HtmlOutput);
}
catch (Exception ex)
{
if (options.DebugMode)
{
console.WriteError($"Error generating settings diff for {tagA} -> {tagB}: {ex.Message}");
}
}
}
allPairsData.Add((tagA, tagB, releaseDate, commits, settingsDiff));
}
// Generate HTML output with all pairs, but meta tags only from the most recent pair
var outputGenerator = new OutputGenerator(options.HtmlOutput, options.DebugMode, options.Prefix, options.JiraBaseUrl, console);
string output = outputGenerator.GenerateHtmlOutputForMultiplePairs(allPairsData);
// Write output to console
console.WriteLine(string.Empty);
console.WriteLine(output);
}
else
{
// For plain text output, process each pair sequentially
foreach (var (tagA, tagB) in tagPairs)
{
var commitAnalyzer = new CommitAnalyzer(gitRepo, options.Prefix, options.DebugMode, console);
var commits = commitAnalyzer.AnalyzeCommits(tagA, tagB);
var releaseDate = GetTagDate(gitRepo, tagB);
// Generate output
var outputGenerator = new OutputGenerator(options.HtmlOutput, options.DebugMode, options.Prefix, options.JiraBaseUrl, console);
string output = outputGenerator.GenerateOutput(tagA, tagB, releaseDate, commits);
// Generate settings diff if requested
if (options.SettingsDiff)
{
try
{
if (options.DebugMode)
{
console.WriteDebug($"Generating settings diff for {tagA} -> {tagB}...");
}
var settingsDiffGenerator = new SettingsDiffGenerator(gitRepo, options.DebugMode, options.SettingsPath, console);
string settingsDiff = settingsDiffGenerator.GenerateSettingsDiff(tagA, tagB, options.HtmlOutput);
// Add settings diff to output
output += Environment.NewLine + Environment.NewLine + settingsDiff;
}
catch (Exception ex)
{
console.WriteError($"Error generating settings diff: {ex.Message}");
if (options.DebugMode && ex.InnerException != null)
{
console.WriteError($"Inner Exception: {ex.InnerException.Message}");
}
}
}
// Write output to console
console.WriteLine(string.Empty);
console.WriteLine(output);
}
}
}
else if (options.Arguments.Count >= 1 && options.Arguments[0] == "stream")
{
// Get the tag type (optional)
string? tagType = options.Arguments.Count > 1 ? options.Arguments[1] : null;
// Get commits for stream mode
var (commitA, commitB) = tagSelector.SelectStreamCommits(options.SpanDays, tagType);
// Process the commit pair
var commitAnalyzer = new CommitAnalyzer(gitRepo, options.Prefix, options.DebugMode, console);
var commits = commitAnalyzer.AnalyzeCommits(commitA, commitB);
var releaseDate = DateTime.Now; // Use current date for HEAD
// Generate output
var outputGenerator = new OutputGenerator(options.HtmlOutput, options.DebugMode, options.Prefix, options.JiraBaseUrl, console);
string output = outputGenerator.GenerateOutput(commitA, commitB, releaseDate, commits);
// Generate settings diff if requested
if (options.SettingsDiff)
{
try
{
if (options.DebugMode)
{
console.WriteDebug($"Generating settings diff for {commitA} -> {commitB}...");
}
var settingsDiffGenerator = new SettingsDiffGenerator(gitRepo, options.DebugMode, options.SettingsPath, console);
string settingsDiff = settingsDiffGenerator.GenerateSettingsDiff(commitA, commitB, options.HtmlOutput);
// Add settings diff to output
output += Environment.NewLine + Environment.NewLine + settingsDiff;
}
catch (Exception ex)
{
console.WriteError($"Error generating settings diff: {ex.Message}");
if (options.DebugMode && ex.InnerException != null)
{
console.WriteError($"Inner Exception: {ex.InnerException.Message}");
}
}
}
// Write output to console
console.WriteLine(string.Empty);
console.WriteLine(output);
}
else
{
// Handle other modes (direct, type, single tag) as before
var (tagA, tagB) = tagSelector.SelectTags(options.Arguments);
if (options.DebugMode)
{
console.WriteDebug($"Selected tags for comparison: {tagA} -> {tagB}");
}
// Analyze commits between the tags
var commitAnalyzer = new CommitAnalyzer(gitRepo, options.Prefix, options.DebugMode, console);
var commits = commitAnalyzer.AnalyzeCommits(tagA, tagB);
// Get the release date from the tag
var releaseDate = GetTagDate(gitRepo, tagB);
// Generate output
if (options.DebugMode)
{
console.WriteDebug($"Found {commits.Count} commits with JIRA tickets");
foreach (var commit in commits)
{
console.WriteDebug($" {commit.JiraTicketId} - {commit.Description}");
}
}
// Create output generator with configured values
var outputGenerator = new OutputGenerator(options.HtmlOutput, options.DebugMode, options.Prefix, options.JiraBaseUrl, console);
// Generate output
string output = outputGenerator.GenerateOutput(tagA, tagB, releaseDate, commits);
// Generate settings diff if requested
if (options.SettingsDiff)
{
try
{
if (options.DebugMode)
{
console.WriteDebug("Generating settings diff...");
}
var settingsDiffGenerator = new SettingsDiffGenerator(gitRepo, options.DebugMode, options.SettingsPath, console);
string settingsDiff = settingsDiffGenerator.GenerateSettingsDiff(tagA, tagB, options.HtmlOutput);
// Add settings diff to output
output += Environment.NewLine + Environment.NewLine + settingsDiff;
}
catch (Exception ex)
{
console.WriteError($"Error generating settings diff: {ex.Message}");
if (options.DebugMode && ex.InnerException != null)
{
console.WriteError($"Inner Exception: {ex.InnerException.Message}");
}
}
}
// Write output to console
console.WriteLine(string.Empty);
console.WriteLine(output);
}
}
catch (NotImplementedException ex)
{
console.WriteError($"Feature not yet implemented: {ex.Message}");
return 1;
}
catch (Exception ex)
{
console.WriteError($"Error selecting tags: {ex.Message}");
return 1;
}
if (options.DebugMode)
{
console.WriteDebug($"Arguments: {string.Join(", ", options.Arguments)}");
console.WriteDebug($"HTML Output: {options.HtmlOutput}");
console.WriteDebug($"Settings Diff: {options.SettingsDiff}");
}
}
return 0;
}
catch (Exception ex)
{
var console = new ConsoleOutput();
console.WriteError($"Error: {ex.Message}");
if (ex.InnerException != null)
{
console.WriteError($"Inner Exception: {ex.InnerException.Message}");
}
return 1;
}
}
/// <summary>
/// Finds a valid Git repository by traversing up the directory tree.
/// </summary>
/// <param name="startPath">The starting directory path.</param>
/// <param name="debug">Whether to enable debug output.</param>
/// <param name="console">The console output interface.</param>
/// <returns>The path to a valid Git repository, or null if none is found.</returns>
private static string? FindGitRepository(string startPath, bool debug = false, IConsoleOutput? console = null)
{
string currentPath = startPath;
console = console ?? new ConsoleOutput(debug);
while (!string.IsNullOrEmpty(currentPath))
{
if (debug)
{
console.WriteDebug($"Checking if {currentPath} is a Git repository...");
}
if (Repository.IsValid(currentPath))
{
return currentPath;
}
// Move up to the parent directory
DirectoryInfo? parentDir = Directory.GetParent(currentPath);
if (parentDir == null)
{
break;
}
currentPath = parentDir.FullName;
}
return null;
}
/// <summary>
/// Gets the date of a tag.
/// </summary>
/// <param name="repo">The Git repository.</param>
/// <param name="tagName">The tag name.</param>
/// <returns>The date of the tag.</returns>
private static DateTime GetTagDate(IGitRepository repo, string tagName)
{
if (tagName == "HEAD")
{
var headCommit = repo.GetHeadGitCommit();
if (headCommit != null)
{
return headCommit.AuthorWhen.DateTime;
}
return DateTime.Now;
}
var commit = repo.LookupGitCommit(tagName);
if (commit != null)
{
return commit.AuthorWhen.DateTime;
}
var tag = repo.GetTag(tagName);
if (tag != null)
{
return tag.CreatedAt.DateTime;
}
throw new ArgumentException($"Tag or commit '{tagName}' not found.");
}
}
}