mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
292 lines
9.2 KiB
292 lines
9.2 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Threading.Tasks;
|
|
using Orleans;
|
|
using Orleans.Concurrency;
|
|
using Squidex.Infrastructure.Log;
|
|
using Squidex.Infrastructure.Orleans;
|
|
using Squidex.Infrastructure.States;
|
|
using Squidex.Infrastructure.Tasks;
|
|
|
|
namespace Squidex.Infrastructure.EventSourcing.Grains
|
|
{
|
|
public class EventConsumerGrain : GrainOfString, IEventConsumerGrain
|
|
{
|
|
private readonly EventConsumerFactory eventConsumerFactory;
|
|
private readonly IStore<string> store;
|
|
private readonly IEventDataFormatter eventDataFormatter;
|
|
private readonly IEventStore eventStore;
|
|
private readonly ISemanticLog log;
|
|
private TaskScheduler scheduler;
|
|
private IPersistence<EventConsumerState> persistence;
|
|
private IEventSubscription currentSubscription;
|
|
private IEventConsumer eventConsumer;
|
|
private EventConsumerState state = new EventConsumerState();
|
|
|
|
public EventConsumerGrain(
|
|
EventConsumerFactory eventConsumerFactory,
|
|
IStore<string> store,
|
|
IEventStore eventStore,
|
|
IEventDataFormatter eventDataFormatter,
|
|
ISemanticLog log)
|
|
{
|
|
Guard.NotNull(log, nameof(log));
|
|
Guard.NotNull(store, nameof(store));
|
|
Guard.NotNull(eventStore, nameof(eventStore));
|
|
Guard.NotNull(eventDataFormatter, nameof(eventDataFormatter));
|
|
Guard.NotNull(eventConsumerFactory, nameof(eventConsumerFactory));
|
|
|
|
this.log = log;
|
|
this.store = store;
|
|
this.eventStore = eventStore;
|
|
this.eventDataFormatter = eventDataFormatter;
|
|
this.eventConsumerFactory = eventConsumerFactory;
|
|
}
|
|
|
|
public override Task OnActivateAsync(string key)
|
|
{
|
|
scheduler = TaskScheduler.Current;
|
|
|
|
eventConsumer = eventConsumerFactory(key);
|
|
|
|
persistence = store.WithSnapshots<EventConsumerState, string>(GetType(), eventConsumer.Name, s => state = s);
|
|
|
|
return persistence.ReadAsync();
|
|
}
|
|
|
|
public Task<Immutable<EventConsumerInfo>> GetStateAsync()
|
|
{
|
|
return Task.FromResult(state.ToInfo(eventConsumer.Name).AsImmutable());
|
|
}
|
|
|
|
public Task OnEventAsync(Immutable<IEventSubscription> subscription, Immutable<StoredEvent> storedEvent)
|
|
{
|
|
if (subscription.Value != currentSubscription)
|
|
{
|
|
return TaskHelper.Done;
|
|
}
|
|
|
|
return DoAndUpdateStateAsync(async () =>
|
|
{
|
|
var @event = ParseKnownEvent(storedEvent.Value);
|
|
|
|
if (@event != null)
|
|
{
|
|
await DispatchConsumerAsync(@event);
|
|
}
|
|
|
|
state = state.Handled(storedEvent.Value.EventPosition);
|
|
});
|
|
}
|
|
|
|
public Task OnErrorAsync(Immutable<IEventSubscription> subscription, Immutable<Exception> exception)
|
|
{
|
|
if (subscription.Value != currentSubscription)
|
|
{
|
|
return TaskHelper.Done;
|
|
}
|
|
|
|
return DoAndUpdateStateAsync(() =>
|
|
{
|
|
Unsubscribe();
|
|
|
|
state = state.Failed(exception.Value);
|
|
});
|
|
}
|
|
|
|
public Task ActivateAsync()
|
|
{
|
|
if (!state.IsStopped)
|
|
{
|
|
Subscribe(state.Position);
|
|
}
|
|
|
|
return TaskHelper.Done;
|
|
}
|
|
|
|
public Task StartAsync()
|
|
{
|
|
if (!state.IsStopped)
|
|
{
|
|
return TaskHelper.Done;
|
|
}
|
|
|
|
return DoAndUpdateStateAsync(() =>
|
|
{
|
|
Subscribe(state.Position);
|
|
|
|
state = state.Started();
|
|
});
|
|
}
|
|
|
|
public Task StopAsync()
|
|
{
|
|
if (state.IsStopped)
|
|
{
|
|
return TaskHelper.Done;
|
|
}
|
|
|
|
return DoAndUpdateStateAsync(() =>
|
|
{
|
|
Unsubscribe();
|
|
|
|
state = state.Stopped();
|
|
});
|
|
}
|
|
|
|
public Task ResetAsync()
|
|
{
|
|
return DoAndUpdateStateAsync(async () =>
|
|
{
|
|
Unsubscribe();
|
|
|
|
await ClearAsync();
|
|
|
|
Subscribe(null);
|
|
|
|
state = state.Reset();
|
|
});
|
|
}
|
|
|
|
private Task DoAndUpdateStateAsync(Action action, [CallerMemberName] string caller = null)
|
|
{
|
|
return DoAndUpdateStateAsync(() => { action(); return TaskHelper.Done; }, caller);
|
|
}
|
|
|
|
private async Task DoAndUpdateStateAsync(Func<Task> action, [CallerMemberName] string caller = null)
|
|
{
|
|
try
|
|
{
|
|
await action();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
try
|
|
{
|
|
Unsubscribe();
|
|
}
|
|
catch (Exception unsubscribeException)
|
|
{
|
|
ex = new AggregateException(ex, unsubscribeException);
|
|
}
|
|
|
|
log.LogFatal(ex, w => w
|
|
.WriteProperty("action", caller)
|
|
.WriteProperty("status", "Failed")
|
|
.WriteProperty("eventConsumer", eventConsumer.Name));
|
|
|
|
state = state.Failed(ex);
|
|
}
|
|
|
|
await persistence.WriteSnapshotAsync(state);
|
|
}
|
|
|
|
private async Task ClearAsync()
|
|
{
|
|
var actionId = Guid.NewGuid().ToString();
|
|
|
|
log.LogInformation(w => w
|
|
.WriteProperty("action", "EventConsumerReset")
|
|
.WriteProperty("actionId", actionId)
|
|
.WriteProperty("status", "Started")
|
|
.WriteProperty("eventConsumer", eventConsumer.Name));
|
|
|
|
using (log.MeasureTrace(w => w
|
|
.WriteProperty("action", "EventConsumerReset")
|
|
.WriteProperty("actionId", actionId)
|
|
.WriteProperty("status", "Completed")
|
|
.WriteProperty("eventConsumer", eventConsumer.Name)))
|
|
{
|
|
await eventConsumer.ClearAsync();
|
|
}
|
|
}
|
|
|
|
private async Task DispatchConsumerAsync(Envelope<IEvent> @event)
|
|
{
|
|
var eventId = @event.Headers.EventId().ToString();
|
|
var eventType = @event.Payload.GetType().Name;
|
|
|
|
log.LogInformation(w => w
|
|
.WriteProperty("action", "HandleEvent")
|
|
.WriteProperty("actionId", eventId)
|
|
.WriteProperty("status", "Started")
|
|
.WriteProperty("eventId", eventId)
|
|
.WriteProperty("eventType", eventType)
|
|
.WriteProperty("eventConsumer", eventConsumer.Name));
|
|
|
|
using (log.MeasureTrace(w => w
|
|
.WriteProperty("action", "HandleEvent")
|
|
.WriteProperty("actionId", eventId)
|
|
.WriteProperty("status", "Completed")
|
|
.WriteProperty("eventId", eventId)
|
|
.WriteProperty("eventType", eventType)
|
|
.WriteProperty("eventConsumer", eventConsumer.Name)))
|
|
{
|
|
await eventConsumer.On(@event);
|
|
}
|
|
}
|
|
|
|
private void Unsubscribe()
|
|
{
|
|
if (currentSubscription != null)
|
|
{
|
|
currentSubscription.StopAsync().Forget();
|
|
currentSubscription = null;
|
|
}
|
|
}
|
|
|
|
private void Subscribe(string position)
|
|
{
|
|
if (currentSubscription == null)
|
|
{
|
|
currentSubscription?.StopAsync().Forget();
|
|
currentSubscription = CreateSubscription(eventConsumer.EventsFilter, position);
|
|
}
|
|
else
|
|
{
|
|
currentSubscription.WakeUp();
|
|
}
|
|
}
|
|
|
|
private Envelope<IEvent> ParseKnownEvent(StoredEvent message)
|
|
{
|
|
try
|
|
{
|
|
var @event = eventDataFormatter.Parse(message.Data);
|
|
|
|
@event.SetEventPosition(message.EventPosition);
|
|
@event.SetEventStreamNumber(message.EventStreamNumber);
|
|
|
|
return @event;
|
|
}
|
|
catch (TypeNameNotFoundException)
|
|
{
|
|
log.LogDebug(w => w.WriteProperty("oldEventFound", message.Data.Type));
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
protected virtual IEventConsumerGrain GetSelf()
|
|
{
|
|
return this.AsReference<IEventConsumerGrain>();
|
|
}
|
|
|
|
protected virtual IEventSubscription CreateSubscription(IEventStore store, IEventSubscriber subscriber, string streamFilter, string position)
|
|
{
|
|
return new RetrySubscription(store, subscriber, streamFilter, position);
|
|
}
|
|
|
|
private IEventSubscription CreateSubscription(string streamFilter, string position)
|
|
{
|
|
return CreateSubscription(eventStore, new WrapperSubscription(GetSelf(), scheduler), streamFilter, position);
|
|
}
|
|
}
|
|
}
|