cs-codex-dist-tests/ProjectPlugins/CodexPlugin/OverwatchSupport/CodexTranscriptWriter.cs

92 lines
2.8 KiB
C#
Raw Normal View History

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