기존 커밋

This commit is contained in:
2026-04-27 10:54:39 +09:00
parent 31857815d7
commit 57aeba4bb8
13 changed files with 829 additions and 15 deletions

View File

@@ -0,0 +1,755 @@
using System.Text.Json;
using System.Text.RegularExpressions;
using Tornado3_2026Election.Domain;
using Tornado3_2026Election.Services;
internal static class CurrentApiCutDiagnostics
{
private static readonly Regex TopRankSlotCountPattern = new(@"1-(\d+)위", RegexOptions.Compiled);
private static readonly Regex PeopleSlotCountPattern = new(@"(\d+)인", RegexOptions.Compiled);
private static readonly IReadOnlyDictionary<string, string> RegionAliases = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase)
{
["서울"] = "서울",
["서울특별시"] = "서울",
["부산"] = "부산",
["부산광역시"] = "부산",
["대구"] = "대구",
["대구광역시"] = "대구",
["인천"] = "인천",
["인천광역시"] = "인천",
["광주"] = "광주",
["광주광역시"] = "광주",
["대전"] = "대전",
["대전광역시"] = "대전",
["울산"] = "울산",
["울산광역시"] = "울산",
["세종"] = "세종",
["세종특별자치시"] = "세종",
["경기"] = "경기",
["경기도"] = "경기",
["강원"] = "강원",
["강원도"] = "강원",
["강원특별자치도"] = "강원",
["충북"] = "충북",
["충청북도"] = "충북",
["충남"] = "충남",
["충청남도"] = "충남",
["전북"] = "전북",
["전라북도"] = "전북",
["전북특별자치도"] = "전북",
["전남"] = "전남",
["전라남도"] = "전남",
["경북"] = "경북",
["경상북도"] = "경북",
["경남"] = "경남",
["경상남도"] = "경남",
["제주"] = "제주",
["제주도"] = "제주",
["제주특별자치도"] = "제주"
};
public static async Task<int> RunAsync(string[] args)
{
var options = CurrentApiCutDiagnosticsOptions.Parse(args);
Directory.CreateDirectory(options.OutputPath);
Console.WriteLine("Current API cut diagnostics starting.");
Console.WriteLine($"- Phase: {options.Phase}");
Console.WriteLine($"- Station: {(options.AllStations ? "ALL" : options.StationId)}");
Console.WriteLine($"- Region Scope: {options.RegionScope}");
Console.WriteLine($"- Max Regions: {(options.MaxRegions <= 0 ? "all" : options.MaxRegions)}");
Console.WriteLine($"- Simulated Sends: {(options.SimulateSend ? options.SendLimit.ToString() : "off")}");
Console.WriteLine($"- Output: {options.OutputPath}");
var stationCatalog = new StationCatalogService().GetAll();
var stations = options.AllStations
? stationCatalog
: stationCatalog
.Where(station => string.Equals(station.Id, options.StationId, StringComparison.OrdinalIgnoreCase))
.ToArray();
if (stations.Count == 0)
{
Console.WriteLine($"No station matched '{options.StationId}'.");
return 1;
}
var formats = new FormatCatalogService(options.ImageRootPath)
.GetAll()
.Where(template => options.IncludeVideoWall || template.RecommendedChannel != BroadcastChannel.VideoWall)
.Where(template => string.IsNullOrWhiteSpace(options.Filter) ||
template.Id.Contains(options.Filter, StringComparison.OrdinalIgnoreCase) ||
template.Name.Contains(options.Filter, StringComparison.OrdinalIgnoreCase))
.ToArray();
if (options.TemplateLimit is int templateLimit && templateLimit > 0)
{
formats = formats.Take(templateLimit).ToArray();
}
var phase = options.Phase == BroadcastPhase.PreElection
? BroadcastPhase.PreElection
: BroadcastPhase.Counting;
formats = formats
.Where(template => template.IsAvailableInPhase(phase))
.ToArray();
Console.WriteLine($"- Templates: {formats.Length}");
Console.WriteLine();
using var apiClient = new SbsElectionApiClient();
var logService = new LogService();
var adapter = options.SimulateSend ? new MockTornado3Adapter(logService) : null;
var districtCache = new Dictionary<string, IReadOnlyList<SbsElectionApiClient.DistrictSelectionOption>>(StringComparer.Ordinal);
var results = new List<CurrentApiCutDiagnosticResult>();
var simulatedSendCount = 0;
foreach (var station in stations)
{
foreach (var template in formats)
{
var electionType = ResolveScheduleElectionType(template.Name, phase, options.DefaultElectionType);
var districts = await GetDistrictsAsync(apiClient, districtCache, electionType).ConfigureAwait(false);
var targets = ResolveTargets(districts, station, options)
.ToArray();
if (targets.Length == 0)
{
results.Add(CurrentApiCutDiagnosticResult.NoTarget(station, template, phase, electionType));
continue;
}
foreach (var target in targets)
{
var result = new CurrentApiCutDiagnosticResult
{
Station = station.Id,
Channel = template.RecommendedChannel.ToString(),
TemplateId = template.Id,
TemplateName = template.Name,
Phase = phase.ToString(),
ElectionType = electionType,
Region = target.DisplayName,
DistrictCode = target.DistrictCode,
Status = "unknown"
};
try
{
var refreshResult = await apiClient
.RefreshAsync(phase, electionType, target.DisplayName, target.DistrictCode, CancellationToken.None)
.ConfigureAwait(false);
var snapshot = CreateSnapshot(phase, electionType, refreshResult);
PopulateDataFields(result, snapshot, refreshResult.SourcePath);
if (!ValidateSnapshotForFormat(template, snapshot, out var validationError, out var warning))
{
result.Status = "validation-failed";
result.Detail = validationError;
result.Warning = warning;
}
else if (adapter is not null && simulatedSendCount < options.SendLimit)
{
await SimulateSendAsync(adapter, station, template, snapshot, options.ImageRootPath).ConfigureAwait(false);
simulatedSendCount++;
result.Status = "sent-mock";
result.Detail = "validated and mock send completed";
result.Warning = warning;
}
else
{
result.Status = "valid";
result.Detail = adapter is null ? "validated" : "validated; send limit reached";
result.Warning = warning;
}
}
catch (Exception ex)
{
result.Status = "api-or-send-failed";
result.Detail = ex.Message;
}
results.Add(result);
}
}
}
WriteReports(options, results);
PrintSummary(results, options.OutputPath);
return results.Any(result => result.Status is "validation-failed" or "api-or-send-failed" or "no-target")
? 1
: 0;
}
private static async Task<IReadOnlyList<SbsElectionApiClient.DistrictSelectionOption>> GetDistrictsAsync(
SbsElectionApiClient apiClient,
IDictionary<string, IReadOnlyList<SbsElectionApiClient.DistrictSelectionOption>> districtCache,
string electionType)
{
if (!districtCache.TryGetValue(electionType, out var districts))
{
districts = await apiClient.GetDistrictOptionsAsync(electionType, CancellationToken.None).ConfigureAwait(false);
districtCache[electionType] = districts;
}
return districts;
}
private static IEnumerable<SbsElectionApiClient.DistrictSelectionOption> ResolveTargets(
IReadOnlyList<SbsElectionApiClient.DistrictSelectionOption> districts,
BroadcastStationProfile station,
CurrentApiCutDiagnosticsOptions options)
{
IEnumerable<SbsElectionApiClient.DistrictSelectionOption> targets = options.RegionScope switch
{
"all" => districts,
_ => ResolveStationTargets(districts, station)
};
if (options.MaxRegions > 0)
{
targets = targets.Take(options.MaxRegions);
}
return targets;
}
private static IEnumerable<SbsElectionApiClient.DistrictSelectionOption> ResolveStationTargets(
IReadOnlyList<SbsElectionApiClient.DistrictSelectionOption> districts,
BroadcastStationProfile station)
{
var configuredRegions = station.RegionFilters
.Select(NormalizeRegion)
.Where(region => !string.IsNullOrWhiteSpace(region))
.ToHashSet(StringComparer.OrdinalIgnoreCase);
if (configuredRegions.Count == 0)
{
return districts;
}
return districts.Where(district => configuredRegions.Contains(NormalizeRegion(district.RegionName)));
}
private static ElectionDataSnapshot CreateSnapshot(
BroadcastPhase phase,
string electionType,
SbsElectionApiClient.SbsElectionRefreshResult refreshResult)
{
var districtName = string.IsNullOrWhiteSpace(refreshResult.DistrictName)
? refreshResult.ElectionDistrictName
: refreshResult.DistrictName;
var regionName = string.IsNullOrWhiteSpace(refreshResult.RegionName)
? districtName
: refreshResult.RegionName;
var electionDistrictName = string.IsNullOrWhiteSpace(refreshResult.ElectionDistrictName)
? districtName
: refreshResult.ElectionDistrictName;
return new ElectionDataSnapshot
{
BroadcastPhase = phase,
ElectionType = electionType,
DistrictName = districtName ?? string.Empty,
DistrictCode = refreshResult.DistrictCode ?? string.Empty,
RegionName = regionName ?? string.Empty,
ElectionDistrictName = electionDistrictName ?? string.Empty,
Candidates = refreshResult.Candidates ?? Array.Empty<CandidateEntry>(),
TotalExpectedVotes = refreshResult.TotalExpectedVotes,
TurnoutVotes = refreshResult.TurnoutVotes,
CountedVotesFromApi = refreshResult.CountedVotes,
RemainingVotesFromApi = refreshResult.RemainingVotes,
CountedRateFromApi = refreshResult.CountedRate,
ReceivedAt = refreshResult.ReceivedAt == default ? DateTimeOffset.Now : refreshResult.ReceivedAt
};
}
private static async Task SimulateSendAsync(
ITornado3Adapter adapter,
BroadcastStationProfile station,
FormatTemplateDefinition template,
ElectionDataSnapshot snapshot,
string imageRootPath)
{
foreach (var cut in template.Cuts)
{
await adapter.EnsureConnectedAsync(CancellationToken.None).ConfigureAwait(false);
await adapter.ApplyCutAsync(template.RecommendedChannel, template, cut, snapshot, station, imageRootPath, CancellationToken.None).ConfigureAwait(false);
await adapter.PrepareAsync(template.RecommendedChannel, CancellationToken.None).ConfigureAwait(false);
await adapter.TakeAsync(template.RecommendedChannel, CancellationToken.None).ConfigureAwait(false);
await adapter.OutAsync(template.RecommendedChannel, CancellationToken.None).ConfigureAwait(false);
}
}
private static bool ValidateSnapshotForFormat(
FormatTemplateDefinition template,
ElectionDataSnapshot snapshot,
out string errorMessage,
out string warning)
{
warning = string.Empty;
if (IsTurnoutTemplate(template) &&
(snapshot.TurnoutVotes <= 0 || snapshot.TurnoutRate <= 0))
{
errorMessage = "turnout votes/rate is zero";
return false;
}
if (!template.RequiresCandidateData)
{
errorMessage = string.Empty;
return true;
}
var validCandidates = snapshot.Candidates
.Where(IsCandidateReadyForBroadcast)
.ToArray();
if (validCandidates.Length == 0)
{
errorMessage = "candidate list is empty";
return false;
}
if (validCandidates.Length != snapshot.Candidates.Count)
{
errorMessage = "required candidate fields are blank";
return false;
}
var requiredCandidateCount = ResolveRequiredCandidateCount(template);
if (requiredCandidateCount > 0 && validCandidates.Length < requiredCandidateCount)
{
warning = $"template-slot-count-{requiredCandidateCount}-with-{validCandidates.Length}-candidates";
}
if (snapshot.BroadcastPhase == BroadcastPhase.Counting)
{
if (snapshot.CountedVotes <= 0 && snapshot.CountedRate <= 0)
{
errorMessage = "counted votes and counted rate are both zero";
return false;
}
if (snapshot.CountedVotes > 0 && snapshot.CountedRate <= 0)
{
warning = JoinWarning(warning, "counted-rate-zero-with-positive-counted-votes");
}
if (!validCandidates.Any(candidate => candidate.VoteCount > 0 || candidate.VoteRate > 0))
{
errorMessage = "candidate vote data is empty";
return false;
}
}
if (template.RequiresImage && snapshot.Candidates.Any(candidate => !candidate.HasImage))
{
errorMessage = "candidate image is required but missing";
return false;
}
errorMessage = string.Empty;
return true;
}
private static string JoinWarning(string current, string next)
{
if (string.IsNullOrWhiteSpace(current))
{
return next;
}
return $"{current}; {next}";
}
private static bool IsCandidateReadyForBroadcast(CandidateEntry candidate)
{
return !string.IsNullOrWhiteSpace(candidate.Name)
&& !string.IsNullOrWhiteSpace(candidate.Party)
&& !string.IsNullOrWhiteSpace(candidate.CandidateCode);
}
private static bool IsTurnoutTemplate(FormatTemplateDefinition template)
{
return template.Name.Contains("투표율", StringComparison.Ordinal);
}
private static int ResolveRequiredCandidateCount(FormatTemplateDefinition template)
{
foreach (var source in new[] { template.Cuts.FirstOrDefault()?.Name, template.Name, template.Id })
{
var count = ResolveRequiredCandidateCount(source);
if (count > 0)
{
return count;
}
}
return 0;
}
private static int ResolveRequiredCandidateCount(string? source)
{
if (string.IsNullOrWhiteSpace(source))
{
return 0;
}
var sourceName = Path.GetFileNameWithoutExtension(
source
.Replace('/', Path.DirectorySeparatorChar)
.Replace('\\', Path.DirectorySeparatorChar));
var topRankMatch = TopRankSlotCountPattern.Match(sourceName);
if (topRankMatch.Success &&
int.TryParse(topRankMatch.Groups[1].Value, out var topRankSlotCount) &&
topRankSlotCount > 0)
{
return topRankSlotCount;
}
var peopleMatch = PeopleSlotCountPattern.Match(sourceName);
if (peopleMatch.Success &&
int.TryParse(peopleMatch.Groups[1].Value, out var peopleSlotCount) &&
peopleSlotCount > 0)
{
return peopleSlotCount;
}
if (sourceName.StartsWith("1위_", StringComparison.Ordinal) ||
sourceName.Contains("이시각1위", StringComparison.Ordinal) ||
sourceName.StartsWith("당선_", StringComparison.Ordinal) ||
sourceName.StartsWith("경력_", StringComparison.Ordinal))
{
return 1;
}
if (sourceName.Contains("접전", StringComparison.Ordinal))
{
return 2;
}
return 0;
}
private static string ResolveScheduleElectionType(string? formatName, BroadcastPhase phase, string defaultElectionType)
{
var resolvedFormatName = formatName ?? string.Empty;
if (resolvedFormatName.Contains("교육감", StringComparison.Ordinal))
{
return "교육감";
}
if (resolvedFormatName.Contains("기초단체장", StringComparison.Ordinal) ||
resolvedFormatName.Contains("기초의원", StringComparison.Ordinal))
{
return "기초단체장";
}
if (resolvedFormatName.Contains("광역단체장", StringComparison.Ordinal) ||
resolvedFormatName.Contains("광역의원", StringComparison.Ordinal) ||
resolvedFormatName.Contains("보궐선거", StringComparison.Ordinal))
{
return "광역단체장";
}
return phase == BroadcastPhase.PreElection ? "광역단체장" : defaultElectionType;
}
private static string NormalizeRegion(string? regionName)
{
if (string.IsNullOrWhiteSpace(regionName))
{
return string.Empty;
}
var trimmed = regionName.Trim();
return RegionAliases.TryGetValue(trimmed, out var normalized)
? normalized
: trimmed;
}
private static void PopulateDataFields(
CurrentApiCutDiagnosticResult result,
ElectionDataSnapshot snapshot,
string sourcePath)
{
result.SourcePath = sourcePath;
result.CandidateCount = snapshot.Candidates.Count;
result.PositiveCandidateVoteCount = snapshot.Candidates.Count(candidate => candidate.VoteCount > 0 || candidate.VoteRate > 0);
result.CountedVotes = snapshot.CountedVotes;
result.CountedRate = snapshot.CountedRate;
result.TurnoutVotes = snapshot.TurnoutVotes;
result.TurnoutRate = snapshot.TurnoutRate;
result.Leader = snapshot.Candidates
.OrderByDescending(candidate => candidate.VoteCount)
.ThenBy(candidate => candidate.Name, StringComparer.Ordinal)
.FirstOrDefault()?.Name ?? string.Empty;
}
private static void WriteReports(
CurrentApiCutDiagnosticsOptions options,
IReadOnlyList<CurrentApiCutDiagnosticResult> results)
{
var jsonPath = Path.Combine(options.OutputPath, "current-api-cut-diagnostics.json");
File.WriteAllText(
jsonPath,
JsonSerializer.Serialize(results, new JsonSerializerOptions { WriteIndented = true }));
var summaryPath = Path.Combine(options.OutputPath, "summary.md");
using var writer = new StreamWriter(summaryPath);
writer.WriteLine("# Current API Cut Diagnostics");
writer.WriteLine();
writer.WriteLine($"- Phase: {options.Phase}");
writer.WriteLine($"- Station: {(options.AllStations ? "ALL" : options.StationId)}");
writer.WriteLine($"- Results: {results.Count}");
writer.WriteLine();
writer.WriteLine("## Status Counts");
writer.WriteLine();
foreach (var group in results.GroupBy(result => result.Status).OrderBy(group => group.Key, StringComparer.OrdinalIgnoreCase))
{
writer.WriteLine($"- {group.Key}: {group.Count()}");
}
var warningGroups = results
.Where(result => !string.IsNullOrWhiteSpace(result.Warning))
.GroupBy(result => result.Warning)
.OrderByDescending(group => group.Count())
.ToArray();
if (warningGroups.Length > 0)
{
writer.WriteLine();
writer.WriteLine("## Warning Counts");
writer.WriteLine();
foreach (var group in warningGroups)
{
writer.WriteLine($"- {group.Key}: {group.Count()}");
}
}
var failures = results
.Where(result => result.Status is "validation-failed" or "api-or-send-failed" or "no-target")
.Take(60)
.ToArray();
if (failures.Length > 0)
{
writer.WriteLine();
writer.WriteLine("## Failures");
writer.WriteLine();
foreach (var failure in failures)
{
writer.WriteLine($"- [{failure.Status}] {failure.Station} {failure.TemplateName} / {failure.Region}: {failure.Detail}");
}
}
}
private static void PrintSummary(IReadOnlyList<CurrentApiCutDiagnosticResult> results, string outputPath)
{
Console.WriteLine();
Console.WriteLine("Summary");
foreach (var group in results.GroupBy(result => result.Status).OrderBy(group => group.Key, StringComparer.OrdinalIgnoreCase))
{
Console.WriteLine($"- {group.Key}: {group.Count()}");
}
var warnings = results.Count(result => !string.IsNullOrWhiteSpace(result.Warning));
Console.WriteLine($"- warnings: {warnings}");
Console.WriteLine($"- report: {Path.Combine(outputPath, "summary.md")}");
}
private sealed class CurrentApiCutDiagnosticsOptions
{
public BroadcastPhase Phase { get; init; } = BroadcastPhase.Counting;
public string StationId { get; init; } = "KNN";
public bool AllStations { get; init; }
public string RegionScope { get; init; } = "station";
public int MaxRegions { get; init; }
public bool IncludeVideoWall { get; init; }
public int? TemplateLimit { get; init; }
public string Filter { get; init; } = string.Empty;
public bool SimulateSend { get; init; } = true;
public int SendLimit { get; init; } = 24;
public string ImageRootPath { get; init; } = TornadoPathResolver.GetDefaultT3CutPath();
public string OutputPath { get; init; } = Path.Combine(
"artifacts",
"current-api-cut-diagnostics",
DateTime.Now.ToString("yyyyMMdd_HHmmss"));
public string DefaultElectionType { get; init; } = "광역단체장";
public static CurrentApiCutDiagnosticsOptions Parse(string[] args)
{
var phase = BroadcastPhase.Counting;
var stationId = "KNN";
var allStations = false;
var regionScope = "station";
var maxRegions = 0;
var includeVideoWall = false;
int? templateLimit = null;
var filter = string.Empty;
var simulateSend = true;
var sendLimit = 24;
var imageRootPath = TornadoPathResolver.GetDefaultT3CutPath();
var outputPath = Path.Combine(
"artifacts",
"current-api-cut-diagnostics",
DateTime.Now.ToString("yyyyMMdd_HHmmss"));
var defaultElectionType = "광역단체장";
for (var index = 0; index < args.Length; index++)
{
var arg = args[index];
string NextValue() => index + 1 < args.Length ? args[++index] : string.Empty;
switch (arg.ToLowerInvariant())
{
case "--phase":
phase = ParsePhase(NextValue());
break;
case "--station":
stationId = NextValue();
break;
case "--all-stations":
allStations = true;
break;
case "--region-scope":
regionScope = NextValue().ToLowerInvariant() == "all" ? "all" : "station";
break;
case "--max-regions":
int.TryParse(NextValue(), out maxRegions);
break;
case "--include-video-wall":
includeVideoWall = true;
break;
case "--limit":
if (int.TryParse(NextValue(), out var parsedLimit))
{
templateLimit = parsedLimit;
}
break;
case "--filter":
filter = NextValue();
break;
case "--no-send":
simulateSend = false;
break;
case "--send-limit":
if (int.TryParse(NextValue(), out var parsedSendLimit))
{
sendLimit = Math.Max(0, parsedSendLimit);
}
break;
case "--image-root":
imageRootPath = TornadoPathResolver.NormalizeConfiguredPath(NextValue());
break;
case "--output":
outputPath = NextValue();
break;
case "--election-type":
defaultElectionType = NextValue();
break;
}
}
return new CurrentApiCutDiagnosticsOptions
{
Phase = phase,
StationId = stationId,
AllStations = allStations,
RegionScope = regionScope,
MaxRegions = Math.Max(0, maxRegions),
IncludeVideoWall = includeVideoWall,
TemplateLimit = templateLimit,
Filter = filter,
SimulateSend = simulateSend,
SendLimit = sendLimit,
ImageRootPath = imageRootPath,
OutputPath = outputPath,
DefaultElectionType = defaultElectionType
};
}
private static BroadcastPhase ParsePhase(string value)
{
return value.ToLowerInvariant() switch
{
"pre" or "pre-election" or "preelection" => BroadcastPhase.PreElection,
_ => BroadcastPhase.Counting
};
}
}
private sealed class CurrentApiCutDiagnosticResult
{
public string Station { get; set; } = string.Empty;
public string Channel { get; set; } = string.Empty;
public string TemplateId { get; set; } = string.Empty;
public string TemplateName { get; set; } = string.Empty;
public string Phase { get; set; } = string.Empty;
public string ElectionType { get; set; } = string.Empty;
public string Region { get; set; } = string.Empty;
public string DistrictCode { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
public string Detail { get; set; } = string.Empty;
public string Warning { get; set; } = string.Empty;
public string SourcePath { get; set; } = string.Empty;
public int CandidateCount { get; set; }
public int PositiveCandidateVoteCount { get; set; }
public int CountedVotes { get; set; }
public double CountedRate { get; set; }
public int TurnoutVotes { get; set; }
public double TurnoutRate { get; set; }
public string Leader { get; set; } = string.Empty;
public static CurrentApiCutDiagnosticResult NoTarget(
BroadcastStationProfile station,
FormatTemplateDefinition template,
BroadcastPhase phase,
string electionType)
{
return new CurrentApiCutDiagnosticResult
{
Station = station.Id,
Channel = template.RecommendedChannel.ToString(),
TemplateId = template.Id,
TemplateName = template.Name,
Phase = phase.ToString(),
ElectionType = electionType,
Status = "no-target",
Detail = "no matching schedule regions"
};
}
}
}

View File

@@ -52,6 +52,8 @@
<Compile Include="..\..\Tornado3_2026Election\Services\LogService.cs" Link="AppSource\Services\LogService.cs" />
<Compile Include="..\..\Tornado3_2026Election\Services\MockTornado3Adapter.cs" Link="AppSource\Services\MockTornado3Adapter.cs" />
<Compile Include="..\..\Tornado3_2026Election\Services\PartyColorCatalog.cs" Link="AppSource\Services\PartyColorCatalog.cs" />
<Compile Include="..\..\Tornado3_2026Election\Services\SbsElectionApiClient.cs" Link="AppSource\Services\SbsElectionApiClient.cs" />
<Compile Include="..\..\Tornado3_2026Election\Services\StationCatalogService.cs" Link="AppSource\Services\StationCatalogService.cs" />
<Compile Include="..\..\Tornado3_2026Election\Services\TornadoManager.cs" Link="AppSource\Services\TornadoManager.cs" />
<Compile Include="..\..\Tornado3_2026Election\Services\TornadoPathResolver.cs" Link="AppSource\Services\TornadoPathResolver.cs" />
</ItemGroup>

View File

@@ -318,6 +318,12 @@ if (args.Length > 0 && string.Equals(args[0], "--validate-live-cuts", StringComp
return;
}
if (args.Length > 0 && string.Equals(args[0], "--validate-current-api-cuts", StringComparison.OrdinalIgnoreCase))
{
Environment.ExitCode = await CurrentApiCutDiagnostics.RunAsync(args[1..]).ConfigureAwait(false);
return;
}
if (args.Length > 0 && string.Equals(args[0], "--sweep-cut-debug", StringComparison.OrdinalIgnoreCase))
{
Environment.ExitCode = await LiveCutValidation.RunCutDebugSweepAsync(args[1..]).ConfigureAwait(false);