feat: refactored how the pipeline runners are structured
This commit is contained in:
parent
7ec38c160d
commit
f32eca146e
26 changed files with 541 additions and 213 deletions
15
MfGames.sln
15
MfGames.sln
|
@ -87,6 +87,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MfGames.Serilog.SpectreExpr
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NitrideCopyFiles", "examples\NitrideCopyFiles\NitrideCopyFiles.csproj", "{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NitrideCopyFiles", "examples\NitrideCopyFiles\NitrideCopyFiles.csproj", "{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NitridePipelines", "examples\NitridePipelines\NitridePipelines.csproj", "{B044CB47-0024-4338-A56B-DCC049E06DED}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -568,6 +570,18 @@ Global
|
||||||
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}.Release|x64.Build.0 = Release|Any CPU
|
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}.Release|x86.ActiveCfg = Release|Any CPU
|
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}.Release|x86.Build.0 = Release|Any CPU
|
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED}.Release|x86.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(NestedProjects) = preSolution
|
GlobalSection(NestedProjects) = preSolution
|
||||||
{5253E2A6-9565-45AF-92EA-1BFD3A63AC23} = {9C845D9A-B359-43B3-AE9E-B84CE945AF21}
|
{5253E2A6-9565-45AF-92EA-1BFD3A63AC23} = {9C845D9A-B359-43B3-AE9E-B84CE945AF21}
|
||||||
|
@ -609,5 +623,6 @@ Global
|
||||||
{D58365E6-E98B-4A04-8447-4B9417850D85} = {F79B6838-B175-43A3-8C52-69A414CC1386}
|
{D58365E6-E98B-4A04-8447-4B9417850D85} = {F79B6838-B175-43A3-8C52-69A414CC1386}
|
||||||
{25457946-9CD0-498E-8B46-03C420CCF103} = {9C845D9A-B359-43B3-AE9E-B84CE945AF21}
|
{25457946-9CD0-498E-8B46-03C420CCF103} = {9C845D9A-B359-43B3-AE9E-B84CE945AF21}
|
||||||
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D} = {F79B6838-B175-43A3-8C52-69A414CC1386}
|
{1843ECA6-18FD-4CE3-BCD5-6B478C4F893D} = {F79B6838-B175-43A3-8C52-69A414CC1386}
|
||||||
|
{B044CB47-0024-4338-A56B-DCC049E06DED} = {F79B6838-B175-43A3-8C52-69A414CC1386}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
|
@ -9,6 +9,8 @@ using MfGames.Nitride.IO.Directories;
|
||||||
using MfGames.Nitride.IO.Paths;
|
using MfGames.Nitride.IO.Paths;
|
||||||
using MfGames.Nitride.Pipelines;
|
using MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
namespace CopyFiles;
|
namespace CopyFiles;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
1
examples/NitridePipelines/.gitignore
vendored
Normal file
1
examples/NitridePipelines/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
output/
|
44
examples/NitridePipelines/DelayPipeline1.cs
Normal file
44
examples/NitridePipelines/DelayPipeline1.cs
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
using MfGames.Gallium;
|
||||||
|
using MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
|
using Zio;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
public class DelayPipeline1 : PipelineBase
|
||||||
|
{
|
||||||
|
private readonly ILogger logger;
|
||||||
|
|
||||||
|
public DelayPipeline1(
|
||||||
|
ILogger logger,
|
||||||
|
InputPipeline1 input1)
|
||||||
|
{
|
||||||
|
this.logger = logger.ForContext<DelayPipeline1>();
|
||||||
|
this.AddDependency(input1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override IAsyncEnumerable<Entity> RunAsync(
|
||||||
|
IEnumerable<Entity> entities,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
entities = entities
|
||||||
|
.Select(
|
||||||
|
entity =>
|
||||||
|
{
|
||||||
|
Thread.Sleep(1000);
|
||||||
|
this.logger.Information(
|
||||||
|
"Delayed {Value}",
|
||||||
|
entity.Get<UPath>());
|
||||||
|
return entity;
|
||||||
|
});
|
||||||
|
|
||||||
|
return entities.ToAsyncEnumerable();
|
||||||
|
}
|
||||||
|
}
|
30
examples/NitridePipelines/InputPipeline1.cs
Normal file
30
examples/NitridePipelines/InputPipeline1.cs
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
using MfGames.Gallium;
|
||||||
|
using MfGames.Nitride.IO.Contents;
|
||||||
|
using MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
public class InputPipeline1 : PipelineBase
|
||||||
|
{
|
||||||
|
private readonly ReadFiles readFiles;
|
||||||
|
|
||||||
|
public InputPipeline1(ReadFiles readFiles)
|
||||||
|
{
|
||||||
|
this.readFiles = readFiles
|
||||||
|
.WithPattern("/input/input1/*.txt");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override IAsyncEnumerable<Entity> RunAsync(
|
||||||
|
IEnumerable<Entity> _,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
IEnumerable<Entity> entities = this.readFiles.Run();
|
||||||
|
|
||||||
|
return entities.ToAsyncEnumerable();
|
||||||
|
}
|
||||||
|
}
|
30
examples/NitridePipelines/InputPipeline2.cs
Normal file
30
examples/NitridePipelines/InputPipeline2.cs
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
using MfGames.Gallium;
|
||||||
|
using MfGames.Nitride.IO.Contents;
|
||||||
|
using MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
public class InputPipeline2 : PipelineBase
|
||||||
|
{
|
||||||
|
private readonly ReadFiles readFiles;
|
||||||
|
|
||||||
|
public InputPipeline2(ReadFiles readFiles)
|
||||||
|
{
|
||||||
|
this.readFiles = readFiles
|
||||||
|
.WithPattern("/input/input2/*.txt");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override IAsyncEnumerable<Entity> RunAsync(
|
||||||
|
IEnumerable<Entity> _,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
IEnumerable<Entity> entities = this.readFiles.Run();
|
||||||
|
|
||||||
|
return entities.ToAsyncEnumerable();
|
||||||
|
}
|
||||||
|
}
|
14
examples/NitridePipelines/NitridePipelines.csproj
Normal file
14
examples/NitridePipelines/NitridePipelines.csproj
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\..\src\MfGames.Nitride.IO\MfGames.Nitride.IO.csproj" />
|
||||||
|
<ProjectReference Include="..\..\src\MfGames.Nitride\MfGames.Nitride.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
19
examples/NitridePipelines/NitridePipelinesModule.cs
Normal file
19
examples/NitridePipelines/NitridePipelinesModule.cs
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
using Autofac;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
public class NitridePipelinesModule : Module
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Load(ContainerBuilder builder)
|
||||||
|
{
|
||||||
|
// This just registers all the non-static classes as singletons
|
||||||
|
// within the system. We use lifetimes in other components depending
|
||||||
|
// on how they are used, but in this case, we don't need it.
|
||||||
|
builder
|
||||||
|
.RegisterAssemblyTypes(this.GetType().Assembly)
|
||||||
|
.AsSelf()
|
||||||
|
.AsImplementedInterfaces()
|
||||||
|
.SingleInstance();
|
||||||
|
}
|
||||||
|
}
|
31
examples/NitridePipelines/NitridePipelinesProgram.cs
Normal file
31
examples/NitridePipelines/NitridePipelinesProgram.cs
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using Autofac;
|
||||||
|
|
||||||
|
using MfGames.IO.Extensions;
|
||||||
|
using MfGames.Nitride;
|
||||||
|
using MfGames.Nitride.IO;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Main entry point into the CopyFiles sample generator.
|
||||||
|
/// </summary>
|
||||||
|
public static class NitridePipelinesProgram
|
||||||
|
{
|
||||||
|
public static async Task<int> Main(string[] args)
|
||||||
|
{
|
||||||
|
DirectoryInfo rootDir = typeof(NitridePipelinesProgram)
|
||||||
|
.GetDirectory()!
|
||||||
|
.FindGitRoot()!
|
||||||
|
.GetDirectory("examples/NitridePipelines");
|
||||||
|
|
||||||
|
return await new NitrideBuilder(args)
|
||||||
|
.UseIO()
|
||||||
|
.WithRootDirectory(rootDir)
|
||||||
|
.ConfigureContainer(
|
||||||
|
x => x.RegisterModule<NitridePipelinesModule>())
|
||||||
|
.RunAsync();
|
||||||
|
}
|
||||||
|
}
|
47
examples/NitridePipelines/OutputPipeline1.cs
Normal file
47
examples/NitridePipelines/OutputPipeline1.cs
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
using MfGames.Gallium;
|
||||||
|
using MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
|
using Zio;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
public class OutputPipeline1 : PipelineBase
|
||||||
|
{
|
||||||
|
private readonly ILogger logger;
|
||||||
|
|
||||||
|
public OutputPipeline1(
|
||||||
|
ILogger logger,
|
||||||
|
DelayPipeline1 delay1,
|
||||||
|
InputPipeline2 input2)
|
||||||
|
{
|
||||||
|
this.logger = logger.ForContext<OutputPipeline1>();
|
||||||
|
this.AddDependency(delay1, input2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override IAsyncEnumerable<Entity> RunAsync(
|
||||||
|
IEnumerable<Entity> entities,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
entities = entities
|
||||||
|
.Select(
|
||||||
|
entity =>
|
||||||
|
{
|
||||||
|
Thread.Sleep(1000);
|
||||||
|
|
||||||
|
this.logger.Information(
|
||||||
|
"Pretended to write {Value}",
|
||||||
|
entity.Get<UPath>());
|
||||||
|
|
||||||
|
return entity;
|
||||||
|
});
|
||||||
|
|
||||||
|
return entities.ToAsyncEnumerable();
|
||||||
|
}
|
||||||
|
}
|
46
examples/NitridePipelines/OutputPipeline2.cs
Normal file
46
examples/NitridePipelines/OutputPipeline2.cs
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
using MfGames.Gallium;
|
||||||
|
using MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
|
using Zio;
|
||||||
|
|
||||||
|
namespace NitridePipelines;
|
||||||
|
|
||||||
|
public class OutputPipeline2 : PipelineBase
|
||||||
|
{
|
||||||
|
private readonly ILogger logger;
|
||||||
|
|
||||||
|
public OutputPipeline2(
|
||||||
|
ILogger logger,
|
||||||
|
InputPipeline2 input2)
|
||||||
|
{
|
||||||
|
this.logger = logger.ForContext<OutputPipeline2>();
|
||||||
|
this.AddDependency(input2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override IAsyncEnumerable<Entity> RunAsync(
|
||||||
|
IEnumerable<Entity> entities,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
entities = entities
|
||||||
|
.Select(
|
||||||
|
entity =>
|
||||||
|
{
|
||||||
|
Thread.Sleep(1000);
|
||||||
|
|
||||||
|
this.logger.Information(
|
||||||
|
"Pretended to write {Value}",
|
||||||
|
entity.Get<UPath>());
|
||||||
|
|
||||||
|
return entity;
|
||||||
|
});
|
||||||
|
|
||||||
|
return entities.ToAsyncEnumerable();
|
||||||
|
}
|
||||||
|
}
|
6
examples/NitridePipelines/README.md
Normal file
6
examples/NitridePipelines/README.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# MfGames.Nitride - Copy Files
|
||||||
|
|
||||||
|
This is probably the most basic generator possible. It simply copies files from
|
||||||
|
the input and places them into the output. However, it also demonstrates a basic
|
||||||
|
setup including creating a pipeline, wiring everything up with modules, and
|
||||||
|
configuring everything.
|
0
examples/NitridePipelines/input/input1/101.txt
Normal file
0
examples/NitridePipelines/input/input1/101.txt
Normal file
0
examples/NitridePipelines/input/input1/102.txt
Normal file
0
examples/NitridePipelines/input/input1/102.txt
Normal file
0
examples/NitridePipelines/input/input1/103.txt
Normal file
0
examples/NitridePipelines/input/input1/103.txt
Normal file
0
examples/NitridePipelines/input/input2/201.txt
Normal file
0
examples/NitridePipelines/input/input2/201.txt
Normal file
0
examples/NitridePipelines/input/input2/202.txt
Normal file
0
examples/NitridePipelines/input/input2/202.txt
Normal file
0
examples/NitridePipelines/input/input2/203.txt
Normal file
0
examples/NitridePipelines/input/input2/203.txt
Normal file
|
@ -28,7 +28,7 @@ public partial class WriteFiles : FileSystemOperationBase, IOperation
|
||||||
IFileSystem fileSystem)
|
IFileSystem fileSystem)
|
||||||
: base(fileSystem)
|
: base(fileSystem)
|
||||||
{
|
{
|
||||||
this.Logger = logger;
|
this.Logger = logger.ForContext<WriteFiles>();
|
||||||
this.validator = validator;
|
this.validator = validator;
|
||||||
this.TextEncoding = Encoding.UTF8;
|
this.TextEncoding = Encoding.UTF8;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ public partial class ClearDirectory : FileSystemOperationBase, IOperation
|
||||||
ILogger logger)
|
ILogger logger)
|
||||||
: base(fileSystem)
|
: base(fileSystem)
|
||||||
{
|
{
|
||||||
this.Logger = logger;
|
this.Logger = logger.ForContext<ClearDirectory>();
|
||||||
this.validator = validator;
|
this.validator = validator;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,8 @@ public class NitrideModule : Module
|
||||||
protected override void Load(ContainerBuilder builder)
|
protected override void Load(ContainerBuilder builder)
|
||||||
{
|
{
|
||||||
// Pipelines
|
// Pipelines
|
||||||
builder.RegisterType<PipelineRunner>()
|
builder
|
||||||
|
.RegisterType<PipelineRunner>()
|
||||||
.AsSelf();
|
.AsSelf();
|
||||||
|
|
||||||
builder.RegisterType<PipelineManager>()
|
builder.RegisterType<PipelineManager>()
|
||||||
|
@ -39,8 +40,12 @@ public class NitrideModule : Module
|
||||||
|
|
||||||
// MfGames.ToolBuilder requires the RootCommand to be registered. This is because
|
// MfGames.ToolBuilder requires the RootCommand to be registered. This is because
|
||||||
// of various things, mostly coordinating between different systems.
|
// of various things, mostly coordinating between different systems.
|
||||||
builder.Register(
|
builder
|
||||||
c =>
|
.Register(this.CreateRootCommand)
|
||||||
|
.AsSelf();
|
||||||
|
}
|
||||||
|
|
||||||
|
private RootCommand CreateRootCommand(IComponentContext c)
|
||||||
{
|
{
|
||||||
// Create the new root command.
|
// Create the new root command.
|
||||||
var root = new RootCommand();
|
var root = new RootCommand();
|
||||||
|
@ -58,8 +63,7 @@ public class NitrideModule : Module
|
||||||
;
|
;
|
||||||
|
|
||||||
// Add in the commands.
|
// Add in the commands.
|
||||||
IEnumerable<Command> commands =
|
IEnumerable<Command> commands = c.Resolve<IEnumerable<Command>>();
|
||||||
c.Resolve<IEnumerable<Command>>();
|
|
||||||
|
|
||||||
foreach (Command command in commands)
|
foreach (Command command in commands)
|
||||||
{
|
{
|
||||||
|
@ -67,7 +71,5 @@ public class NitrideModule : Module
|
||||||
}
|
}
|
||||||
|
|
||||||
return root;
|
return root;
|
||||||
})
|
|
||||||
.AsSelf();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
using MfGames.Gallium;
|
using MfGames.Gallium;
|
||||||
|
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
namespace MfGames.Nitride.Pipelines;
|
namespace MfGames.Nitride.Pipelines;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -11,32 +11,21 @@ namespace MfGames.Nitride.Pipelines;
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class PipelineManager
|
public class PipelineManager
|
||||||
{
|
{
|
||||||
private readonly PipelineRunner.Factory createEntry;
|
|
||||||
|
|
||||||
private readonly ILogger logger;
|
private readonly ILogger logger;
|
||||||
|
|
||||||
private List<PipelineRunner> entries;
|
private List<PipelineRunner> runners;
|
||||||
|
|
||||||
private bool isSetup;
|
private bool isSetup;
|
||||||
|
|
||||||
private ICollection<IPipeline> pipelines;
|
|
||||||
|
|
||||||
public PipelineManager(
|
public PipelineManager(
|
||||||
ILogger logger,
|
ILogger logger,
|
||||||
IEnumerable<IPipeline> pipelines,
|
IEnumerable<IPipeline> pipelines,
|
||||||
PipelineRunner.Factory createEntry)
|
PipelineRunner.Factory runnerFactory)
|
||||||
{
|
{
|
||||||
this.createEntry = createEntry;
|
|
||||||
this.logger = logger.ForContext<PipelineManager>();
|
this.logger = logger.ForContext<PipelineManager>();
|
||||||
this.pipelines = new HashSet<IPipeline>(pipelines);
|
this.runners = pipelines
|
||||||
this.entries = null!;
|
.Select(pipeline => runnerFactory(pipeline))
|
||||||
}
|
.ToList();
|
||||||
|
|
||||||
public ICollection<IPipeline> Pipelines
|
|
||||||
{
|
|
||||||
get => this.pipelines;
|
|
||||||
set => this.pipelines =
|
|
||||||
value ?? throw new ArgumentNullException(nameof(value));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -59,9 +48,9 @@ public class PipelineManager
|
||||||
// resulting tasks and then wait for all of them to end.
|
// resulting tasks and then wait for all of them to end.
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"Starting {Count:l}",
|
"Starting {Count:l}",
|
||||||
"pipeline".ToQuantity(this.pipelines.Count));
|
"pipeline".ToQuantity(this.runners.Count));
|
||||||
|
|
||||||
Task[] tasks = this.entries
|
Task[] tasks = this.runners
|
||||||
.Select(
|
.Select(
|
||||||
x => Task.Run(
|
x => Task.Run(
|
||||||
async () => await x.RunAsync(cancellationToken),
|
async () => await x.RunAsync(cancellationToken),
|
||||||
|
@ -72,7 +61,7 @@ public class PipelineManager
|
||||||
|
|
||||||
while (!Task.WaitAll(tasks, report))
|
while (!Task.WaitAll(tasks, report))
|
||||||
{
|
{
|
||||||
var waiting = this.entries
|
var waiting = this.runners
|
||||||
.Where(x => !x.IsFinished)
|
.Where(x => !x.IsFinished)
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
|
@ -107,7 +96,7 @@ public class PipelineManager
|
||||||
}
|
}
|
||||||
|
|
||||||
// Figure out our return code.
|
// Figure out our return code.
|
||||||
bool hasErrors = this.entries
|
bool hasErrors = this.runners
|
||||||
.Any(x => x.State == PipelineRunnerState.Errored);
|
.Any(x => x.State == PipelineRunnerState.Errored);
|
||||||
|
|
||||||
this.logger.Information(
|
this.logger.Information(
|
||||||
|
@ -130,7 +119,7 @@ public class PipelineManager
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we don't have any pipelines, then we can't process.
|
// If we don't have any pipelines, then we can't process.
|
||||||
if (this.pipelines.Count == 0)
|
if (this.runners.Count == 0)
|
||||||
{
|
{
|
||||||
this.logger.Error(
|
this.logger.Error(
|
||||||
"There are no registered pipelines run, use"
|
"There are no registered pipelines run, use"
|
||||||
|
@ -141,16 +130,12 @@ public class PipelineManager
|
||||||
|
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"Setting up {Count:l}",
|
"Setting up {Count:l}",
|
||||||
"pipeline".ToQuantity(this.pipelines.Count));
|
"pipeline".ToQuantity(this.runners.Count));
|
||||||
|
|
||||||
// Wrap all the pipelines into entries. We do this before the next
|
// Go through and connect the pipelines together using the dependencies
|
||||||
// step so we can have the entries depend on the entries.
|
// that were built through the constructors of the pipelines and then
|
||||||
this.entries = this.pipelines
|
// registered with `AddDependency`.
|
||||||
.Select(x => this.createEntry(x))
|
foreach (PipelineRunner? entry in this.runners)
|
||||||
.ToList();
|
|
||||||
|
|
||||||
// Go through and connect the pipelines together.
|
|
||||||
foreach (PipelineRunner? entry in this.entries)
|
|
||||||
{
|
{
|
||||||
var dependencies = entry.Pipeline
|
var dependencies = entry.Pipeline
|
||||||
.GetDependencies()
|
.GetDependencies()
|
||||||
|
@ -159,7 +144,7 @@ public class PipelineManager
|
||||||
foreach (IPipeline? dependency in dependencies)
|
foreach (IPipeline? dependency in dependencies)
|
||||||
{
|
{
|
||||||
// Get the entry for the dependency.
|
// Get the entry for the dependency.
|
||||||
PipelineRunner dependencyPipeline = this.entries
|
PipelineRunner dependencyPipeline = this.runners
|
||||||
.Single(x => x.Pipeline == dependency);
|
.Single(x => x.Pipeline == dependency);
|
||||||
|
|
||||||
// Set up the bi-directional connection.
|
// Set up the bi-directional connection.
|
||||||
|
@ -170,9 +155,9 @@ public class PipelineManager
|
||||||
|
|
||||||
// Loop through all the entries and tell them we are done providing
|
// Loop through all the entries and tell them we are done providing
|
||||||
// and they can set up internal threads other structures.
|
// and they can set up internal threads other structures.
|
||||||
foreach (PipelineRunner? entry in this.entries)
|
foreach (PipelineRunner runner in this.runners)
|
||||||
{
|
{
|
||||||
entry.Initialize();
|
runner.Setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
// We have run successfully.
|
// We have run successfully.
|
||||||
|
|
|
@ -16,20 +16,22 @@ namespace MfGames.Nitride.Pipelines;
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public class PipelineRunner
|
public class PipelineRunner
|
||||||
{
|
{
|
||||||
|
private readonly ILogger logger;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The manual reset event used to coordinate thread operations.
|
/// The manual reset event used to coordinate thread operations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly ManualResetEventSlim blockDependencies;
|
private readonly ManualResetEventSlim outgoingBlock;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A manual reset event to tell the thread when consumers are done.
|
/// A manual reset event to tell the thread when consumers are done.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly ManualResetEventSlim consumersDone;
|
private readonly ManualResetEventSlim outgoingDone;
|
||||||
|
|
||||||
private readonly ILogger logger;
|
|
||||||
|
|
||||||
private DateTime changed;
|
private DateTime changed;
|
||||||
|
|
||||||
|
private List<Entity> outputs;
|
||||||
|
|
||||||
private bool signaledDoneWithInputs;
|
private bool signaledDoneWithInputs;
|
||||||
|
|
||||||
private DateTime started;
|
private DateTime started;
|
||||||
|
@ -44,15 +46,15 @@ public class PipelineRunner
|
||||||
ILogger logger,
|
ILogger logger,
|
||||||
IPipeline pipeline)
|
IPipeline pipeline)
|
||||||
{
|
{
|
||||||
this.Pipeline =
|
this.Pipeline = pipeline
|
||||||
pipeline ?? throw new ArgumentNullException(nameof(pipeline));
|
?? throw new ArgumentNullException(nameof(pipeline));
|
||||||
this.Incoming = new List<PipelineRunner>();
|
this.Incoming = new List<PipelineRunner>();
|
||||||
this.Outgoing = new List<PipelineRunner>();
|
this.Outgoing = new List<PipelineRunner>();
|
||||||
this.Outputs = new List<Entity>();
|
this.outputs = new List<Entity>();
|
||||||
this.logger = logger.ForContext<PipelineRunner>();
|
this.logger = logger
|
||||||
this.blockDependencies = new ManualResetEventSlim(false);
|
.ForContext(this.Pipeline.GetType());
|
||||||
this.consumersDone = new ManualResetEventSlim(false);
|
this.outgoingBlock = new ManualResetEventSlim(false);
|
||||||
this.started = DateTime.Now;
|
this.outgoingDone = new ManualResetEventSlim(false);
|
||||||
this.changed = DateTime.Now;
|
this.changed = DateTime.Now;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,12 +81,13 @@ public class PipelineRunner
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a value indicating whether this pipeline is done running.
|
/// Gets a value indicating whether this pipeline is done running.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsFinished => this.State is PipelineRunnerState.Finalized
|
public bool IsFinished => this.State
|
||||||
|
is PipelineRunnerState.Finalized
|
||||||
or PipelineRunnerState.Errored;
|
or PipelineRunnerState.Errored;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a value indicating whether this entry is a starting one
|
/// Gets a value indicating whether this entry is one that has no
|
||||||
/// that consumes no data.
|
/// dependencies and therefore could be considered a starting pipeline.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsStarting => this.Incoming.Count == 0;
|
public bool IsStarting => this.Incoming.Count == 0;
|
||||||
|
|
||||||
|
@ -95,14 +98,7 @@ public class PipelineRunner
|
||||||
public ICollection<PipelineRunner> Outgoing { get; }
|
public ICollection<PipelineRunner> Outgoing { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains the list of all the outputs from this pipeline. This is
|
/// The pipeline associated with the runner.
|
||||||
/// only ensured to be valid after the pipeline is in the `Providing`
|
|
||||||
/// state.
|
|
||||||
/// </summary>
|
|
||||||
public List<Entity> Outputs { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The pipeline associated with the entry.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IPipeline Pipeline { get; }
|
public IPipeline Pipeline { get; }
|
||||||
|
|
||||||
|
@ -112,30 +108,46 @@ public class PipelineRunner
|
||||||
public PipelineRunnerState State { get; private set; }
|
public PipelineRunnerState State { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A method that tells the pipeline that one of the dependencies has
|
/// A method that tells the pipeline one of the outgoing pipelines has
|
||||||
/// completed consuming the input.
|
/// completed consuming the output from this runner.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void ConsumerDoneWithOutputs()
|
public void ConsumerDone(PipelineRunner runner)
|
||||||
{
|
{
|
||||||
int current = Interlocked.Decrement(ref this.waitingOnConsumers);
|
int current = Interlocked.Decrement(ref this.waitingOnConsumers);
|
||||||
|
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"{Pipeline:l}: Consumer signalled, waiting for {Count:n0}",
|
"{Runner} signalled, waiting for {Count:n0} more",
|
||||||
this.Pipeline,
|
runner,
|
||||||
current);
|
current);
|
||||||
|
|
||||||
if (current == 0)
|
if (current == 0)
|
||||||
{
|
{
|
||||||
this.consumersDone.Set();
|
this.outgoingDone.Set();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes the runner after all external properties have been
|
/// Contains the list of all the outputs from this pipeline. This is
|
||||||
/// set and configured.
|
/// only ensured to be valid after the pipeline is in the `Providing`
|
||||||
|
/// state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void Initialize()
|
public List<Entity> GetOutputs()
|
||||||
{
|
{
|
||||||
|
return !this.IsValidState(
|
||||||
|
PipelineRunnerState.Providing,
|
||||||
|
PipelineRunnerState.Started,
|
||||||
|
PipelineRunnerState.Restarted)
|
||||||
|
? new List<Entity>()
|
||||||
|
: this.outputs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Resets the internal state for running again. This also goes through
|
||||||
|
/// </summary>
|
||||||
|
public void Reset()
|
||||||
|
{
|
||||||
|
this.started = DateTime.Now;
|
||||||
|
this.outputs = new List<Entity>();
|
||||||
this.ChangeState(PipelineRunnerState.Initialized);
|
this.ChangeState(PipelineRunnerState.Initialized);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -148,55 +160,46 @@ public class PipelineRunner
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Make sure we have a valid state.
|
// Make sure we have a valid state.
|
||||||
switch (this.State)
|
if (!this.IsValidState(
|
||||||
|
PipelineRunnerState.Initialized,
|
||||||
|
PipelineRunnerState.Restarted,
|
||||||
|
PipelineRunnerState.Finalized))
|
||||||
{
|
{
|
||||||
case PipelineRunnerState.Initialized:
|
return;
|
||||||
case PipelineRunnerState.Finalized:
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
this.logger.Error(
|
|
||||||
"{Pipeline:l}: Pipeline cannot be started in a {State}"
|
|
||||||
+ " state (not Initialized or Finalized)",
|
|
||||||
this.Pipeline,
|
|
||||||
this.State);
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare ourselves for running. We have a start/stop state because
|
// Prepare ourselves for running. We have a start/stop state because
|
||||||
// this may be non-zero time.
|
// this may be non-zero time.
|
||||||
this.started = DateTime.Now;
|
|
||||||
this.changed = DateTime.Now;
|
|
||||||
this.ChangeState(PipelineRunnerState.Preparing);
|
this.ChangeState(PipelineRunnerState.Preparing);
|
||||||
this.signaledDoneWithInputs = false;
|
this.signaledDoneWithInputs = false;
|
||||||
this.ChangeState(PipelineRunnerState.Prepared);
|
this.ChangeState(PipelineRunnerState.Prepared);
|
||||||
|
|
||||||
// Go through the incoming and wait for each of the manual resets
|
// Go through the incoming and wait for each of the manual resets
|
||||||
// on the dependency pipelines.
|
// on the dependency pipelines. If there is an error, then we will
|
||||||
if (this.WaitForDependencies())
|
// indicate to our dependencies that we're done processing but
|
||||||
{
|
// nothing will happen because our error state will propagate out.
|
||||||
this.SignalDoneWithInputs();
|
this.WaitForIncoming();
|
||||||
|
|
||||||
|
if (this.State == PipelineRunnerState.Errored)
|
||||||
|
{
|
||||||
|
this.SendDoneToIncoming();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Grab the outputs from the incoming. They will be populated
|
// Grab the outputs from the incoming. They will be populated
|
||||||
// because we have waited for the reset events.
|
// because we have waited for the reset events.
|
||||||
this.ChangeState(PipelineRunnerState.Started);
|
this.ChangeState(PipelineRunnerState.Started);
|
||||||
List<Entity> input = this.GatherDependencyOutputs();
|
|
||||||
|
List<Entity> input = this.GetInputFromIncoming();
|
||||||
|
|
||||||
// Run the pipeline. This may not be resolved until we gather
|
// Run the pipeline. This may not be resolved until we gather
|
||||||
// the output below.
|
// the output below.
|
||||||
await this.RunPipeline(input, cancellationToken);
|
await this.RunPipeline(input, cancellationToken);
|
||||||
|
|
||||||
// At this point, we are completely done with our inputs, so signal
|
// If we have outgoing runners, provide them with the entities we've
|
||||||
// to them in case they have to clean up any of their structures.
|
// produced and start providing those values to to them. This will
|
||||||
this.SignalDoneWithInputs();
|
// block until the dependencies are done consuming.
|
||||||
|
this.UnlockOutgoing();
|
||||||
// If we have outgoing runners, provide them data until they are
|
|
||||||
// done.
|
|
||||||
this.SendToDependants();
|
|
||||||
|
|
||||||
// Finalize ourselves.
|
// Finalize ourselves.
|
||||||
this.ChangeState(PipelineRunnerState.Finalized);
|
this.ChangeState(PipelineRunnerState.Finalized);
|
||||||
|
@ -206,24 +209,30 @@ public class PipelineRunner
|
||||||
// Report the exception.
|
// Report the exception.
|
||||||
this.logger.Error(
|
this.logger.Error(
|
||||||
exception,
|
exception,
|
||||||
"{Pipeline:l}: There was an exception running pipeline",
|
"There was an exception running pipeline");
|
||||||
this.Pipeline);
|
|
||||||
|
|
||||||
// Change our state and then release any pipeline waiting for us
|
// Change our state and then release any pipeline waiting for us
|
||||||
// so they can pick up the error and fail themselves.
|
// so they can pick up the error and fail themselves.
|
||||||
this.ChangeState(PipelineRunnerState.Errored);
|
this.ChangeState(PipelineRunnerState.Errored);
|
||||||
this.blockDependencies.Set();
|
this.UnlockOutgoingAsErrored();
|
||||||
this.SignalDoneWithInputs();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A method to block the call until this runner is done processing and
|
/// Initializes the runner after all external properties have been
|
||||||
/// is ready to provide output.
|
/// set and configured.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void WaitUntilProviding()
|
public void Setup()
|
||||||
{
|
{
|
||||||
this.blockDependencies.Wait();
|
this.started = DateTime.Now;
|
||||||
|
this.outputs = new List<Entity>();
|
||||||
|
this.ChangeState(PipelineRunnerState.Initialized);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return $"PipelineRunner<{this.Pipeline}>";
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -233,8 +242,7 @@ public class PipelineRunner
|
||||||
private void ChangeState(PipelineRunnerState newState)
|
private void ChangeState(PipelineRunnerState newState)
|
||||||
{
|
{
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"{Pipeline:l}: Switching from state {Old} to {New} (elapsed {Elapsed}, duration {Duration})",
|
"Switching from state {Old} to {New} (elapsed {Elapsed}, duration {Duration})",
|
||||||
this.Pipeline,
|
|
||||||
this.State,
|
this.State,
|
||||||
newState,
|
newState,
|
||||||
this.ElapsedFromInitialized,
|
this.ElapsedFromInitialized,
|
||||||
|
@ -244,8 +252,9 @@ public class PipelineRunner
|
||||||
this.State = newState;
|
this.State = newState;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<Entity> GatherDependencyOutputs()
|
private List<Entity> GetInputFromIncoming()
|
||||||
{
|
{
|
||||||
|
// If we have no incoming dependencies, then there is nothing to gather.
|
||||||
if (this.Incoming.Count <= 0)
|
if (this.Incoming.Count <= 0)
|
||||||
{
|
{
|
||||||
return new List<Entity>();
|
return new List<Entity>();
|
||||||
|
@ -253,21 +262,50 @@ public class PipelineRunner
|
||||||
|
|
||||||
// Report that we are gathering our outputs.
|
// Report that we are gathering our outputs.
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"{Pipeline:l}: Gathering outputs from {Count:n0} dependencies",
|
"Gathering outputs from {Count:n0} dependencies",
|
||||||
this.Pipeline,
|
|
||||||
this.Incoming.Count);
|
this.Incoming.Count);
|
||||||
|
|
||||||
var input = this.Incoming.SelectMany(x => x.Outputs)
|
// Gather all the entities from the dependencies into a single list.
|
||||||
|
var input = this.Incoming
|
||||||
|
.SelectMany(x => x.GetOutputs())
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
this.logger.Debug(
|
this.logger.Debug(
|
||||||
"{Pipeline:l}: Got {Count:l} from dependencies",
|
"Got {Count:l} from dependencies",
|
||||||
this.Pipeline,
|
|
||||||
"entity".ToQuantity(input.Count, "N0"));
|
"entity".ToQuantity(input.Count, "N0"));
|
||||||
|
|
||||||
|
// Since we gathered all the inputs, we can have this thread do its
|
||||||
|
// signalling while not waiting for the pipeline to finish.
|
||||||
|
this.SendDoneToIncoming();
|
||||||
|
|
||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ensures that the pipeline runner is in the correct state.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="states">The states that the pipeline runner is considered valid.</param>
|
||||||
|
private bool IsValidState(params PipelineRunnerState[] states)
|
||||||
|
{
|
||||||
|
// If we are in any of the given states, then we're good and nothing
|
||||||
|
// will happen.
|
||||||
|
if (states.Any(a => a == this.State))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Otherwise, we are in an invalid state.
|
||||||
|
this.logger.Error(
|
||||||
|
"Pipeline is in an invalid state of {State}"
|
||||||
|
+ " (not {ValidStates})",
|
||||||
|
this.State,
|
||||||
|
states);
|
||||||
|
|
||||||
|
this.State = PipelineRunnerState.Errored;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private async Task RunPipeline(
|
private async Task RunPipeline(
|
||||||
List<Entity> input,
|
List<Entity> input,
|
||||||
CancellationToken cancellationToken)
|
CancellationToken cancellationToken)
|
||||||
|
@ -277,45 +315,13 @@ public class PipelineRunner
|
||||||
.RunAsync(input, cancellationToken)
|
.RunAsync(input, cancellationToken)
|
||||||
.ToListAsync(cancellationToken);
|
.ToListAsync(cancellationToken);
|
||||||
|
|
||||||
// Gather all the output.
|
// Gather all the output and drain the inputs.
|
||||||
this.logger.Verbose("{Pipeline:l}: Gathering output", this.Pipeline);
|
this.logger.Verbose("Gathering output from incoming pipelines");
|
||||||
this.Outputs.Clear();
|
this.outputs.Clear();
|
||||||
this.Outputs.AddRange(output);
|
this.outputs.AddRange(output);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SendToDependants()
|
private void SendDoneToIncoming()
|
||||||
{
|
|
||||||
if (this.Outgoing.Count <= 0)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make sure our internal wait for the consumers it set.
|
|
||||||
this.logger.Verbose(
|
|
||||||
"{Pipeline:l}: Setting up internal thread controls",
|
|
||||||
this.Pipeline);
|
|
||||||
this.waitingOnConsumers = this.Outgoing.Count;
|
|
||||||
this.consumersDone.Reset();
|
|
||||||
|
|
||||||
// Report how many files we're sending out and then use manual
|
|
||||||
// reset and the semaphore to control the threads.
|
|
||||||
this.logger.Debug(
|
|
||||||
"{Pipeline:l}: Output {Count:l} from pipeline",
|
|
||||||
this.Pipeline,
|
|
||||||
"entity".ToQuantity(this.Outputs.Count, "N0"));
|
|
||||||
|
|
||||||
// Release our manual reset to allow operations to continue.
|
|
||||||
this.ChangeState(PipelineRunnerState.Providing);
|
|
||||||
this.logger.Verbose(
|
|
||||||
"{Pipeline:l}: Release manual reset for consumers",
|
|
||||||
this.Pipeline);
|
|
||||||
this.blockDependencies.Set();
|
|
||||||
|
|
||||||
// Wait until all consumers have finished processing.
|
|
||||||
this.consumersDone.Wait();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void SignalDoneWithInputs()
|
|
||||||
{
|
{
|
||||||
if (this.Incoming.Count <= 0 || this.signaledDoneWithInputs)
|
if (this.Incoming.Count <= 0 || this.signaledDoneWithInputs)
|
||||||
{
|
{
|
||||||
|
@ -325,52 +331,95 @@ public class PipelineRunner
|
||||||
this.signaledDoneWithInputs = true;
|
this.signaledDoneWithInputs = true;
|
||||||
|
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"{Pipeline:l}: Signaling {Count:n0} dependencies done",
|
"Signaling {Count:n0} dependencies done",
|
||||||
this.Pipeline,
|
|
||||||
this.Incoming.Count);
|
this.Incoming.Count);
|
||||||
|
|
||||||
foreach (PipelineRunner? dependency in this.Incoming)
|
foreach (PipelineRunner dependency in this.Incoming)
|
||||||
{
|
{
|
||||||
dependency.ConsumerDoneWithOutputs();
|
dependency.ConsumerDone(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool WaitForDependencies()
|
private void UnlockOutgoing()
|
||||||
{
|
{
|
||||||
|
// If we don't have any outgoing pipelines, then there is nothing to
|
||||||
|
// do and we can finish running.
|
||||||
|
if (this.Outgoing.Count <= 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure our internal wait for the consumers it set.
|
||||||
|
this.logger.Verbose("Setting up internal thread controls");
|
||||||
|
this.waitingOnConsumers = this.Outgoing.Count;
|
||||||
|
this.outgoingDone.Reset();
|
||||||
|
|
||||||
|
// Report how many files we're sending out and then use manual
|
||||||
|
// reset and the semaphore to control the threads.
|
||||||
|
this.logger.Debug(
|
||||||
|
"Output {Count:l} from pipeline",
|
||||||
|
"entity".ToQuantity(this.GetOutputs().Count, "N0"));
|
||||||
|
|
||||||
|
// Release our manual reset to allow operations to continue.
|
||||||
|
this.ChangeState(PipelineRunnerState.Providing);
|
||||||
|
this.logger.Verbose("Release manual reset for consumers");
|
||||||
|
this.outgoingBlock.Set();
|
||||||
|
|
||||||
|
// Wait until all consumers have finished processing.
|
||||||
|
this.outgoingDone.Wait();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UnlockOutgoingAsErrored()
|
||||||
|
{
|
||||||
|
this.ChangeState(PipelineRunnerState.Errored);
|
||||||
|
this.outgoingBlock.Set();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Waits for all the incoming pipelines to be completed and ready to provide
|
||||||
|
/// us input before returning.
|
||||||
|
/// </summary>
|
||||||
|
private void WaitForIncoming()
|
||||||
|
{
|
||||||
|
// If we have no incoming pipelines, then there is nothing to wait for.
|
||||||
if (this.Incoming.Count <= 0)
|
if (this.Incoming.Count <= 0)
|
||||||
{
|
{
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for the dependencies to run first.
|
// Wait for the dependencies to run first.
|
||||||
this.ChangeState(PipelineRunnerState.Waiting);
|
this.ChangeState(PipelineRunnerState.Waiting);
|
||||||
|
|
||||||
this.logger.Verbose(
|
this.logger.Verbose(
|
||||||
"{Pipeline:l}: Waiting for {Count:l} to complete",
|
"Waiting for {Count:l} to complete",
|
||||||
this.Pipeline,
|
|
||||||
"dependency".ToQuantity(this.Incoming.Count));
|
"dependency".ToQuantity(this.Incoming.Count));
|
||||||
|
|
||||||
foreach (PipelineRunner? dependency in this.Incoming)
|
foreach (PipelineRunner dependency in this.Incoming)
|
||||||
{
|
{
|
||||||
dependency.WaitUntilProviding();
|
dependency.WaitUntilIncomingReady();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for any error state in the dependency, if we have one,
|
// Check for any error state in the dependency, if we have one,
|
||||||
// then we need to stop ourselves.
|
// then we need to stop ourselves and any dependency that is waiting
|
||||||
bool hasError =
|
// on us.
|
||||||
this.Incoming.Any(x => x.State == PipelineRunnerState.Errored);
|
bool hasError = this.Incoming
|
||||||
|
.Any(x => x.State == PipelineRunnerState.Errored);
|
||||||
|
|
||||||
if (!hasError)
|
if (!hasError)
|
||||||
{
|
{
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.logger.Error(
|
this.logger.Error("There was an exception in a dependency");
|
||||||
"{Pipeline:l}: There was an exception in an dependency",
|
this.UnlockOutgoingAsErrored();
|
||||||
this.Pipeline);
|
}
|
||||||
this.ChangeState(PipelineRunnerState.Errored);
|
|
||||||
this.blockDependencies.Set();
|
|
||||||
|
|
||||||
return true;
|
/// <summary>
|
||||||
|
/// A method to block the call until this runner is done processing and
|
||||||
|
/// is ready to provide output.
|
||||||
|
/// </summary>
|
||||||
|
private void WaitUntilIncomingReady()
|
||||||
|
{
|
||||||
|
this.outgoingBlock.Wait();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,11 @@ public enum PipelineRunnerState
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Initialized,
|
Initialized,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the runner has been reset, usually by the "watch" command.
|
||||||
|
/// </summary>
|
||||||
|
Restarted,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates that the pipeline is prepare for a new run. This is done
|
/// Indicates that the pipeline is prepare for a new run. This is done
|
||||||
/// when the system determines it needs to run.
|
/// when the system determines it needs to run.
|
||||||
|
|
Loading…
Reference in a new issue