using FileUtils; using KubernetesWorkflow; using Logging; using Utils; namespace Core { public interface IPluginTools : IWorkflowTool, ILogTool, IHttpFactoryTool, IFileTool { } public interface IWorkflowTool { IStartupWorkflow CreateWorkflow(string? namespaceOverride = null); } public interface ILogTool { ILog GetLog(); } public interface IHttpFactoryTool { Http CreateHttp(Address address, string baseUrl, Action onClientCreated, string? logAlias = null); Http CreateHttp(Address address, string baseUrl, string? logAlias = null); } public interface IFileTool { IFileManager GetFileManager(); } internal class PluginTools : IPluginTools { private readonly ITimeSet timeSet; private readonly WorkflowCreator workflowCreator; private readonly IFileManager fileManager; private ILog log; public PluginTools(ILog log, Configuration configuration, string fileManagerRootFolder, ITimeSet timeSet) { this.log = log; this.timeSet = timeSet; fileManager = new FileManager(log, fileManagerRootFolder); workflowCreator = new WorkflowCreator(log, configuration); } public void ApplyLogPrefix(string prefix) { log = new LogPrefixer(log, prefix); } public Http CreateHttp(Address address, string baseUrl, Action onClientCreated, string? logAlias = null) { return new Http(log, timeSet, address, baseUrl, onClientCreated, logAlias); } public Http CreateHttp(Address address, string baseUrl, string? logAlias = null) { return new Http(log, timeSet, address, baseUrl, logAlias); } public IStartupWorkflow CreateWorkflow(string? namespaceOverride = null) { if (namespaceOverride != null) throw new Exception("Namespace override is not supported in the DistTest environment. (It would mess up automatic resource cleanup.)"); return workflowCreator.CreateWorkflow(); } public IFileManager GetFileManager() { return fileManager; } public ILog GetLog() { return log; } } }