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

90 lines
2.6 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;
2024-07-26 07:14:46 +00:00
private readonly ITranscriptWriter writer;
private readonly CodexLogConverter converter;
private readonly NameIdMap nameIdMap = new NameIdMap();
2024-07-25 14:00:51 +00:00
public CodexTranscriptWriter(ILog log, ITranscriptWriter transcriptWriter)
2024-07-25 14:00:51 +00:00
{
this.log = log;
2024-07-26 07:14:46 +00:00
writer = transcriptWriter;
converter = new CodexLogConverter(writer, nameIdMap);
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-07-26 07:14:46 +00:00
return new CodexNodeTranscriptWriter(writer, nameIdMap, nodeName);
}
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-07-29 09:02:24 +00:00
Name = string.Empty,
PeerId = string.Empty,
ScenarioFinished = new ScenarioFinishedEvent
{
Success = success,
Result = result
}
});
}
2024-07-26 08:56:22 +00:00
private OverwatchCodexHeader CreateCodexHeader()
{
return new OverwatchCodexHeader
{
TotalNumberOfNodes = nameIdMap.Size
};
}
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
}