2023-09-12 13:32:06 +02:00
|
|
|
|
using Core;
|
2023-09-11 16:57:57 +02:00
|
|
|
|
using KubernetesWorkflow;
|
|
|
|
|
|
|
|
|
|
namespace CodexPlugin
|
|
|
|
|
{
|
2023-09-13 16:06:05 +02:00
|
|
|
|
public class CodexPlugin : IProjectPlugin, IHasLogPrefix, IHasMetadata
|
2023-09-11 16:57:57 +02:00
|
|
|
|
{
|
2023-09-13 10:03:11 +02:00
|
|
|
|
private readonly CodexStarter codexStarter;
|
|
|
|
|
private readonly IPluginTools tools;
|
2023-09-13 14:37:53 +02:00
|
|
|
|
private readonly CodexLogLevel defaultLogLevel = CodexLogLevel.Trace;
|
2023-09-11 16:57:57 +02:00
|
|
|
|
|
2023-09-13 10:03:11 +02:00
|
|
|
|
public CodexPlugin(IPluginTools tools)
|
2023-09-11 16:57:57 +02:00
|
|
|
|
{
|
2023-09-13 10:03:11 +02:00
|
|
|
|
codexStarter = new CodexStarter(tools);
|
|
|
|
|
this.tools = tools;
|
2023-09-12 10:31:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-13 10:23:05 +02:00
|
|
|
|
public string LogPrefix => "(Codex) ";
|
2023-09-13 10:03:11 +02:00
|
|
|
|
|
|
|
|
|
public void Announce()
|
2023-09-12 10:31:55 +02:00
|
|
|
|
{
|
2023-09-13 16:06:05 +02:00
|
|
|
|
tools.GetLog().Log($"Loaded with Codex ID: '{codexStarter.GetCodexId()}'");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void AddMetadata(IAddMetadata metadata)
|
|
|
|
|
{
|
|
|
|
|
metadata.Add("codexid", codexStarter.GetCodexId());
|
2023-09-11 16:57:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-13 10:03:11 +02:00
|
|
|
|
public void Decommission()
|
2023-09-12 10:31:55 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-11 16:57:57 +02:00
|
|
|
|
public RunningContainers[] StartCodexNodes(int numberOfNodes, Action<ICodexSetup> setup)
|
|
|
|
|
{
|
2023-09-13 14:37:53 +02:00
|
|
|
|
var codexSetup = new CodexSetup(numberOfNodes);
|
|
|
|
|
codexSetup.LogLevel = defaultLogLevel;
|
2023-09-11 16:57:57 +02:00
|
|
|
|
setup(codexSetup);
|
|
|
|
|
return codexStarter.BringOnline(codexSetup);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ICodexNodeGroup WrapCodexContainers(RunningContainers[] containers)
|
|
|
|
|
{
|
|
|
|
|
return codexStarter.WrapCodexContainers(containers);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|