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.
210 lines
7.8 KiB
210 lines
7.8 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using EventStore.ClientAPI;
|
|
using EventStore.ClientAPI.Exceptions;
|
|
using Squidex.Infrastructure.Json;
|
|
using Squidex.Infrastructure.Log;
|
|
|
|
namespace Squidex.Infrastructure.EventSourcing
|
|
{
|
|
public sealed class GetEventStore : IEventStore, IInitializable
|
|
{
|
|
private const int WritePageSize = 500;
|
|
private const int ReadPageSize = 500;
|
|
private readonly IEventStoreConnection connection;
|
|
private readonly IJsonSerializer serializer;
|
|
private readonly string prefix;
|
|
private readonly ProjectionClient projectionClient;
|
|
|
|
public GetEventStore(IEventStoreConnection connection, IJsonSerializer serializer, string prefix, string projectionHost)
|
|
{
|
|
Guard.NotNull(connection, nameof(connection));
|
|
Guard.NotNull(serializer, nameof(serializer));
|
|
|
|
this.connection = connection;
|
|
this.serializer = serializer;
|
|
|
|
this.prefix = prefix?.Trim(' ', '-').WithFallback("squidex");
|
|
|
|
projectionClient = new ProjectionClient(connection, prefix, projectionHost);
|
|
}
|
|
|
|
public async Task InitializeAsync(CancellationToken ct = default)
|
|
{
|
|
try
|
|
{
|
|
await connection.ConnectAsync();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw new ConfigurationException("Cannot connect to event store.", ex);
|
|
}
|
|
|
|
await projectionClient.ConnectAsync(ct);
|
|
}
|
|
|
|
public IEventSubscription CreateSubscription(IEventSubscriber subscriber, string streamFilter, string position = null)
|
|
{
|
|
return new GetEventStoreSubscription(connection, subscriber, serializer, projectionClient, position, prefix, streamFilter);
|
|
}
|
|
|
|
public Task CreateIndexAsync(string property)
|
|
{
|
|
return projectionClient.CreateProjectionAsync(property, string.Empty);
|
|
}
|
|
|
|
public async Task QueryAsync(Func<StoredEvent, Task> callback, string property, object value, string position = null, CancellationToken ct = default)
|
|
{
|
|
using (Profiler.TraceMethod<GetEventStore>())
|
|
{
|
|
var streamName = await projectionClient.CreateProjectionAsync(property, value);
|
|
|
|
var sliceStart = projectionClient.ParsePosition(position);
|
|
|
|
await QueryAsync(callback, streamName, sliceStart, ct);
|
|
}
|
|
}
|
|
|
|
public async Task QueryAsync(Func<StoredEvent, Task> callback, string streamFilter = null, string position = null, CancellationToken ct = default)
|
|
{
|
|
using (Profiler.TraceMethod<GetEventStore>())
|
|
{
|
|
var streamName = await projectionClient.CreateProjectionAsync(streamFilter);
|
|
|
|
var sliceStart = projectionClient.ParsePosition(position);
|
|
|
|
await QueryAsync(callback, streamName, sliceStart, ct);
|
|
}
|
|
}
|
|
|
|
private async Task QueryAsync(Func<StoredEvent, Task> callback, string streamName, long sliceStart, CancellationToken ct = default)
|
|
{
|
|
StreamEventsSlice currentSlice;
|
|
do
|
|
{
|
|
currentSlice = await connection.ReadStreamEventsForwardAsync(streamName, sliceStart, ReadPageSize, true);
|
|
|
|
if (currentSlice.Status == SliceReadStatus.Success)
|
|
{
|
|
sliceStart = currentSlice.NextEventNumber;
|
|
|
|
foreach (var resolved in currentSlice.Events)
|
|
{
|
|
var storedEvent = Formatter.Read(resolved, prefix, serializer);
|
|
|
|
await callback(storedEvent);
|
|
}
|
|
}
|
|
}
|
|
while (!currentSlice.IsEndOfStream && !ct.IsCancellationRequested);
|
|
}
|
|
|
|
public async Task<IReadOnlyList<StoredEvent>> QueryAsync(string streamName, long streamPosition = 0)
|
|
{
|
|
using (Profiler.TraceMethod<GetEventStore>())
|
|
{
|
|
var result = new List<StoredEvent>();
|
|
|
|
var sliceStart = streamPosition >= 0 ? streamPosition : StreamPosition.Start;
|
|
|
|
StreamEventsSlice currentSlice;
|
|
do
|
|
{
|
|
currentSlice = await connection.ReadStreamEventsForwardAsync(GetStreamName(streamName), sliceStart, ReadPageSize, true);
|
|
|
|
if (currentSlice.Status == SliceReadStatus.Success)
|
|
{
|
|
sliceStart = currentSlice.NextEventNumber;
|
|
|
|
foreach (var resolved in currentSlice.Events)
|
|
{
|
|
var storedEvent = Formatter.Read(resolved, prefix, serializer);
|
|
|
|
result.Add(storedEvent);
|
|
}
|
|
}
|
|
}
|
|
while (!currentSlice.IsEndOfStream);
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
public Task DeleteStreamAsync(string streamName)
|
|
{
|
|
return connection.DeleteStreamAsync(GetStreamName(streamName), ExpectedVersion.Any);
|
|
}
|
|
|
|
public Task AppendAsync(Guid commitId, string streamName, ICollection<EventData> events)
|
|
{
|
|
return AppendEventsInternalAsync(streamName, EtagVersion.Any, events);
|
|
}
|
|
|
|
public Task AppendAsync(Guid commitId, string streamName, long expectedVersion, ICollection<EventData> events)
|
|
{
|
|
Guard.GreaterEquals(expectedVersion, -1, nameof(expectedVersion));
|
|
|
|
return AppendEventsInternalAsync(streamName, expectedVersion, events);
|
|
}
|
|
|
|
private async Task AppendEventsInternalAsync(string streamName, long expectedVersion, ICollection<EventData> events)
|
|
{
|
|
using (Profiler.TraceMethod<GetEventStore>(nameof(AppendAsync)))
|
|
{
|
|
Guard.NotNullOrEmpty(streamName, nameof(streamName));
|
|
Guard.NotNull(events, nameof(events));
|
|
|
|
if (events.Count == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
var eventsToSave = events.Select(x => Formatter.Write(x, serializer)).ToList();
|
|
|
|
if (eventsToSave.Count < WritePageSize)
|
|
{
|
|
await connection.AppendToStreamAsync(GetStreamName(streamName), expectedVersion, eventsToSave);
|
|
}
|
|
else
|
|
{
|
|
using (var transaction = await connection.StartTransactionAsync(GetStreamName(streamName), expectedVersion))
|
|
{
|
|
for (var p = 0; p < eventsToSave.Count; p += WritePageSize)
|
|
{
|
|
await transaction.WriteAsync(eventsToSave.Skip(p).Take(WritePageSize));
|
|
}
|
|
|
|
await transaction.CommitAsync();
|
|
}
|
|
}
|
|
}
|
|
catch (WrongExpectedVersionException ex)
|
|
{
|
|
throw new WrongEventVersionException(ParseVersion(ex.Message), expectedVersion);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static int ParseVersion(string message)
|
|
{
|
|
return int.Parse(message.Substring(message.LastIndexOf(':') + 1));
|
|
}
|
|
|
|
private string GetStreamName(string streamName)
|
|
{
|
|
return $"{prefix}-{streamName}";
|
|
}
|
|
}
|
|
}
|
|
|