236 lines
9.0 KiB
C#
236 lines
9.0 KiB
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Tapeti.Config;
|
|
using Tapeti.Flow.FlowHelpers;
|
|
|
|
namespace Tapeti.Flow.Default
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Default implementation of IFlowStore.
|
|
/// </summary>
|
|
public class FlowStore : IFlowStore
|
|
{
|
|
private class CachedFlowState
|
|
{
|
|
public readonly FlowState FlowState;
|
|
public readonly bool IsPersistent;
|
|
|
|
public CachedFlowState(FlowState flowState, bool isPersistent)
|
|
{
|
|
FlowState = flowState;
|
|
IsPersistent = isPersistent;
|
|
}
|
|
}
|
|
|
|
private readonly ConcurrentDictionary<Guid, CachedFlowState> flowStates = new ConcurrentDictionary<Guid, CachedFlowState>();
|
|
private readonly ConcurrentDictionary<Guid, Guid> continuationLookup = new ConcurrentDictionary<Guid, Guid>();
|
|
private readonly LockCollection<Guid> locks = new LockCollection<Guid>(EqualityComparer<Guid>.Default);
|
|
private HashSet<string> validatedMethods = null;
|
|
|
|
private readonly IFlowRepository repository;
|
|
private readonly ITapetiConfig config;
|
|
|
|
private volatile bool inUse;
|
|
private volatile bool loaded;
|
|
|
|
|
|
/// <summary>
|
|
/// </summary>
|
|
public FlowStore(IFlowRepository repository, ITapetiConfig config)
|
|
{
|
|
this.repository = repository;
|
|
this.config = config;
|
|
}
|
|
|
|
|
|
/// <inheritdoc />
|
|
public async Task Load()
|
|
{
|
|
if (inUse)
|
|
throw new InvalidOperationException("Can only load the saved state once.");
|
|
|
|
inUse = true;
|
|
|
|
flowStates.Clear();
|
|
continuationLookup.Clear();
|
|
|
|
validatedMethods = new HashSet<string>();
|
|
try
|
|
{
|
|
foreach (var flowStateRecord in await repository.GetStates<FlowState>())
|
|
{
|
|
flowStates.TryAdd(flowStateRecord.Key, new CachedFlowState(flowStateRecord.Value, true));
|
|
|
|
foreach (var continuation in flowStateRecord.Value.Continuations)
|
|
{
|
|
ValidateContinuation(flowStateRecord.Key, continuation.Key, continuation.Value);
|
|
continuationLookup.GetOrAdd(continuation.Key, flowStateRecord.Key);
|
|
}
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
validatedMethods = null;
|
|
}
|
|
|
|
loaded = true;
|
|
}
|
|
|
|
|
|
private void ValidateContinuation(Guid flowId, Guid continuationId, ContinuationMetadata metadata)
|
|
{
|
|
// We could check all the things that are required for a continuation or converge method, but this should suffice
|
|
// for the common scenario where you change code without realizing that it's signature has been persisted
|
|
if (validatedMethods.Add(metadata.MethodName))
|
|
{
|
|
var methodInfo = MethodSerializer.Deserialize(metadata.MethodName);
|
|
if (methodInfo == null)
|
|
throw new InvalidDataException($"Flow ID {flowId} references continuation method '{metadata.MethodName}' which no longer exists (continuation Id = {continuationId})");
|
|
|
|
var binding = config.Bindings.ForMethod(methodInfo);
|
|
if (binding == null)
|
|
throw new InvalidDataException($"Flow ID {flowId} references continuation method '{metadata.MethodName}' which no longer has a binding as a message handler (continuation Id = {continuationId})");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(metadata.ConvergeMethodName) || !validatedMethods.Add(metadata.ConvergeMethodName))
|
|
return;
|
|
|
|
var convergeMethodInfo = MethodSerializer.Deserialize(metadata.ConvergeMethodName);
|
|
if (convergeMethodInfo == null)
|
|
throw new InvalidDataException($"Flow ID {flowId} references converge method '{metadata.ConvergeMethodName}' which no longer exists (continuation Id = {continuationId})");
|
|
|
|
var convergeBinding = config.Bindings.ForMethod(convergeMethodInfo);
|
|
if (convergeBinding == null)
|
|
throw new InvalidDataException($"Flow ID {flowId} references converge method '{metadata.ConvergeMethodName}' which no longer has a binding as a message handler (continuation Id = {continuationId})");
|
|
}
|
|
|
|
|
|
/// <inheritdoc />
|
|
public Task<Guid?> FindFlowID(Guid continuationID)
|
|
{
|
|
if (!loaded)
|
|
throw new InvalidOperationException("Flow store is not yet loaded.");
|
|
|
|
return Task.FromResult(continuationLookup.TryGetValue(continuationID, out var result) ? result : (Guid?)null);
|
|
}
|
|
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IFlowStateLock> LockFlowState(Guid flowID)
|
|
{
|
|
if (!loaded)
|
|
throw new InvalidOperationException("Flow store should be loaded before storing flows.");
|
|
|
|
inUse = true;
|
|
|
|
var flowStatelock = new FlowStateLock(this, flowID, await locks.GetLock(flowID));
|
|
return flowStatelock;
|
|
}
|
|
|
|
|
|
private class FlowStateLock : IFlowStateLock
|
|
{
|
|
private readonly FlowStore owner;
|
|
private volatile IDisposable flowLock;
|
|
private CachedFlowState cachedFlowState;
|
|
|
|
public Guid FlowID { get; }
|
|
|
|
|
|
public FlowStateLock(FlowStore owner, Guid flowID, IDisposable flowLock)
|
|
{
|
|
this.owner = owner;
|
|
FlowID = flowID;
|
|
this.flowLock = flowLock;
|
|
|
|
owner.flowStates.TryGetValue(flowID, out cachedFlowState);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
var l = flowLock;
|
|
flowLock = null;
|
|
l?.Dispose();
|
|
}
|
|
|
|
public Task<FlowState> GetFlowState()
|
|
{
|
|
if (flowLock == null)
|
|
throw new ObjectDisposedException("FlowStateLock");
|
|
|
|
return Task.FromResult(cachedFlowState.FlowState?.Clone());
|
|
}
|
|
|
|
public async Task StoreFlowState(FlowState newFlowState, bool persistent)
|
|
{
|
|
if (flowLock == null)
|
|
throw new ObjectDisposedException("FlowStateLock");
|
|
|
|
// Ensure no one has a direct reference to the protected state in the dictionary
|
|
newFlowState = newFlowState.Clone();
|
|
|
|
// Update the lookup dictionary for the ContinuationIDs
|
|
if (cachedFlowState != null)
|
|
{
|
|
foreach (var removedContinuation in cachedFlowState.FlowState.Continuations.Keys.Where(k => !newFlowState.Continuations.ContainsKey(k)))
|
|
owner.continuationLookup.TryRemove(removedContinuation, out _);
|
|
}
|
|
|
|
foreach (var addedContinuation in newFlowState.Continuations.Where(c => cachedFlowState == null || !cachedFlowState.FlowState.Continuations.ContainsKey(c.Key)))
|
|
{
|
|
owner.continuationLookup.TryAdd(addedContinuation.Key, FlowID);
|
|
}
|
|
|
|
var isNew = cachedFlowState == null;
|
|
var wasPersistent = cachedFlowState?.IsPersistent ?? false;
|
|
|
|
cachedFlowState = new CachedFlowState(newFlowState, persistent);
|
|
owner.flowStates[FlowID] = cachedFlowState;
|
|
|
|
if (persistent)
|
|
{
|
|
// Storing the flowstate in the underlying repository
|
|
if (isNew)
|
|
{
|
|
var now = DateTime.UtcNow;
|
|
await owner.repository.CreateState(FlowID, cachedFlowState.FlowState, now);
|
|
}
|
|
else
|
|
{
|
|
await owner.repository.UpdateState(FlowID, cachedFlowState.FlowState);
|
|
}
|
|
}
|
|
else if (wasPersistent)
|
|
{
|
|
// We transitioned from a durable queue to a dynamic queue,
|
|
// remove the persistent state but keep the in-memory version
|
|
await owner.repository.DeleteState(FlowID);
|
|
}
|
|
}
|
|
|
|
public async Task DeleteFlowState()
|
|
{
|
|
if (flowLock == null)
|
|
throw new ObjectDisposedException("FlowStateLock");
|
|
|
|
if (cachedFlowState != null)
|
|
{
|
|
foreach (var removedContinuation in cachedFlowState.FlowState.Continuations.Keys)
|
|
owner.continuationLookup.TryRemove(removedContinuation, out _);
|
|
|
|
owner.flowStates.TryRemove(FlowID, out var removedFlowState);
|
|
cachedFlowState = null;
|
|
|
|
if (removedFlowState.IsPersistent)
|
|
await owner.repository.DeleteState(FlowID);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|