2024-07-26 06:39:27 +00:00
|
|
|
|
using CodexPlugin.Hooks;
|
2024-08-01 08:39:06 +00:00
|
|
|
|
using KubernetesWorkflow;
|
|
|
|
|
using Logging;
|
2024-07-25 14:00:51 +00:00
|
|
|
|
using OverwatchTranscript;
|
2024-07-26 08:11:29 +00:00
|
|
|
|
using Utils;
|
2024-07-25 14:00:51 +00:00
|
|
|
|
|
|
|
|
|
namespace CodexPlugin.OverwatchSupport
|
|
|
|
|
{
|
2024-07-26 06:39:27 +00:00
|
|
|
|
public class CodexTranscriptWriter : ICodexHooksProvider
|
2024-07-25 14:00:51 +00:00
|
|
|
|
{
|
2024-07-29 08:16:37 +00:00
|
|
|
|
private const string CodexHeaderKey = "cdx_h";
|
2024-08-01 08:39:06 +00:00
|
|
|
|
private readonly ILog log;
|
2024-08-21 07:53:20 +00:00
|
|
|
|
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
|
|
|
|
|
2024-08-21 07:53:20 +00:00
|
|
|
|
public CodexTranscriptWriter(ILog log, CodexTranscriptWriterConfig config, ITranscriptWriter transcriptWriter)
|
2024-07-25 14:00:51 +00:00
|
|
|
|
{
|
2024-08-01 08:39:06 +00:00
|
|
|
|
this.log = log;
|
2024-08-21 07:53:20 +00:00
|
|
|
|
this.config = config;
|
2024-07-26 07:14:46 +00:00
|
|
|
|
writer = transcriptWriter;
|
2024-08-21 07:53:20 +00:00
|
|
|
|
converter = new CodexLogConverter(writer, config, identityMap);
|
2024-07-25 14:00:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-26 06:39:27 +00:00
|
|
|
|
public void Finalize(string outputFilepath)
|
|
|
|
|
{
|
2024-08-01 08:39:06 +00:00
|
|
|
|
log.Log("Finalizing Codex transcript...");
|
2024-07-29 08:16:37 +00:00
|
|
|
|
|
2024-08-01 08:39:06 +00:00
|
|
|
|
writer.AddHeader(CodexHeaderKey, CreateCodexHeader());
|
2024-07-26 07:14:46 +00:00
|
|
|
|
writer.Write(outputFilepath);
|
2024-08-01 08:39:06 +00:00
|
|
|
|
|
|
|
|
|
log.Log("Done");
|
2024-07-26 06:39:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ICodexNodeHooks CreateHooks(string nodeName)
|
|
|
|
|
{
|
2024-07-26 08:11:29 +00:00
|
|
|
|
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-26 06:39:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-07-25 14:00:51 +00:00
|
|
|
|
public void ProcessLogs(IDownloadedLog[] downloadedLogs)
|
|
|
|
|
{
|
2024-08-01 08:39:06 +00:00
|
|
|
|
foreach (var l in downloadedLogs)
|
2024-07-26 07:14:46 +00:00
|
|
|
|
{
|
2024-08-01 08:39:06 +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.
|
2024-08-01 08:39:06 +00:00
|
|
|
|
if (IsCodexLog(l))
|
2024-07-26 08:56:22 +00:00
|
|
|
|
{
|
2024-08-01 08:39:06 +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
|
|
|
|
}
|
2024-07-26 06:39:27 +00:00
|
|
|
|
}
|
2024-07-26 08:11:29 +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,
|
2024-07-26 08:11:29 +00:00
|
|
|
|
ScenarioFinished = new ScenarioFinishedEvent
|
|
|
|
|
{
|
|
|
|
|
Success = success,
|
|
|
|
|
Result = result
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2024-07-26 08:56:22 +00:00
|
|
|
|
|
2024-07-29 08:16:37 +00:00
|
|
|
|
private OverwatchCodexHeader CreateCodexHeader()
|
|
|
|
|
{
|
|
|
|
|
return new OverwatchCodexHeader
|
|
|
|
|
{
|
2024-08-14 13:10:33 +00:00
|
|
|
|
Nodes = positionFinder.DeterminePositions(identityMap.Get())
|
2024-07-29 08:16:37 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-26 08:56:22 +00:00
|
|
|
|
private bool IsCodexLog(IDownloadedLog log)
|
|
|
|
|
{
|
|
|
|
|
return log.GetLinesContaining("Run Codex node").Any();
|
|
|
|
|
}
|
2024-07-26 06:39:27 +00:00
|
|
|
|
}
|
2024-07-25 14:00:51 +00:00
|
|
|
|
}
|