2
0
mirror of synced 2025-01-16 19:44:17 +00:00

92 lines
2.8 KiB
C#
Raw Normal View History

using CodexPlugin.Hooks;
using KubernetesWorkflow;
using Logging;
2024-07-25 16:00:51 +02:00
using OverwatchTranscript;
using Utils;
2024-07-25 16:00:51 +02:00
namespace CodexPlugin.OverwatchSupport
{
public class CodexTranscriptWriter : ICodexHooksProvider
2024-07-25 16:00:51 +02:00
{
private const string CodexHeaderKey = "cdx_h";
private readonly ILog log;
private readonly CodexTranscriptWriterConfig config;
2024-07-26 09:14:46 +02:00
private readonly ITranscriptWriter writer;
private readonly CodexLogConverter converter;
2024-08-13 14:21:15 +02:00
private readonly IdentityMap identityMap = new IdentityMap();
2024-08-14 15:10:33 +02:00
private readonly KademliaPositionFinder positionFinder = new KademliaPositionFinder();
2024-07-25 16:00:51 +02:00
public CodexTranscriptWriter(ILog log, CodexTranscriptWriterConfig config, ITranscriptWriter transcriptWriter)
2024-07-25 16:00:51 +02:00
{
this.log = log;
this.config = config;
2024-07-26 09:14:46 +02:00
writer = transcriptWriter;
converter = new CodexLogConverter(writer, config, identityMap);
2024-07-25 16:00:51 +02:00
}
public void Finalize(string outputFilepath)
{
log.Log("Finalizing Codex transcript...");
writer.AddHeader(CodexHeaderKey, CreateCodexHeader());
2024-07-26 09:14:46 +02:00
writer.Write(outputFilepath);
log.Log("Done");
}
public ICodexNodeHooks CreateHooks(string nodeName)
{
nodeName = Str.Between(nodeName, "'", "'");
2024-08-13 14:21:15 +02:00
return new CodexNodeTranscriptWriter(writer, identityMap, nodeName);
2024-07-26 09:14:46 +02:00
}
public void IncludeFile(string filepath)
{
writer.IncludeArtifact(filepath);
}
2024-07-25 16:00:51 +02:00
public void ProcessLogs(IDownloadedLog[] downloadedLogs)
{
foreach (var l in downloadedLogs)
2024-07-26 09:14:46 +02:00
{
log.Log("Include artifact: " + l.GetFilepath());
writer.IncludeArtifact(l.GetFilepath());
2024-07-26 10:56:22 +02:00
// Not all of these logs are necessarily Codex logs.
// Check, and process only the Codex ones.
if (IsCodexLog(l))
2024-07-26 10:56:22 +02:00
{
log.Log("Processing Codex log: " + l.GetFilepath());
converter.ProcessLog(l);
2024-07-26 10:56:22 +02:00
}
2024-07-26 09:14:46 +02:00
}
}
public void AddResult(bool success, string result)
{
writer.Add(DateTime.UtcNow, new OverwatchCodexEvent
{
2024-08-13 14:21:15 +02:00
NodeIdentity = -1,
ScenarioFinished = new ScenarioFinishedEvent
{
Success = success,
Result = result
}
});
}
2024-07-26 10:56:22 +02:00
private OverwatchCodexHeader CreateCodexHeader()
{
return new OverwatchCodexHeader
{
2024-08-14 15:10:33 +02:00
Nodes = positionFinder.DeterminePositions(identityMap.Get())
};
}
2024-07-26 10:56:22 +02:00
private bool IsCodexLog(IDownloadedLog log)
{
return log.GetLinesContaining("Run Codex node").Any();
}
}
2024-07-25 16:00:51 +02:00
}