102 lines
3.4 KiB
C#
Raw Normal View History

2025-01-16 13:51:29 +01:00
using CodexClient.Hooks;
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
}
2025-04-25 15:42:13 +02:00
public void FinalizeWriter()
{
log.Log("Finalizing Codex transcript...");
writer.AddHeader(CodexHeaderKey, CreateCodexHeader());
2025-04-25 15:42:13 +02:00
writer.Write(GetOutputFullPath());
log.Log("Done");
}
2025-04-25 15:42:13 +02:00
private string GetOutputFullPath()
{
var outputPath = Path.GetDirectoryName(log.GetFullName());
if (outputPath == null) throw new Exception("Logfile path is null");
var filename = Path.GetFileNameWithoutExtension(log.GetFullName());
if (string.IsNullOrEmpty(filename)) throw new Exception("Logfile name is null or empty");
var outputFile = Path.Combine(outputPath, filename + "_" + config.OutputPath);
if (!outputFile.EndsWith(".owts")) outputFile += ".owts";
return outputFile;
}
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
}