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.
135 lines
4.8 KiB
135 lines
4.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.Reactive.Linq;
|
|
using System.Threading.Tasks;
|
|
using MongoDB.Bson;
|
|
using MongoDB.Driver;
|
|
|
|
namespace Squidex.Infrastructure.EventSourcing
|
|
{
|
|
public partial class MongoEventStore
|
|
{
|
|
private const int MaxWriteAttempts = 20;
|
|
private static readonly BsonTimestamp EmptyTimestamp = new BsonTimestamp(0);
|
|
|
|
public Task AppendAsync(Guid commitId, string streamName, ICollection<EventData> events)
|
|
{
|
|
return AppendEventsInternalAsync(commitId, streamName, EtagVersion.Any, events);
|
|
}
|
|
|
|
public Task AppendAsync(Guid commitId, string streamName, long expectedVersion, ICollection<EventData> events)
|
|
{
|
|
Guard.GreaterEquals(expectedVersion, EtagVersion.Any, nameof(expectedVersion));
|
|
|
|
return AppendEventsInternalAsync(commitId, streamName, expectedVersion, events);
|
|
}
|
|
|
|
private async Task AppendEventsInternalAsync(Guid commitId, string streamName, long expectedVersion, ICollection<EventData> events)
|
|
{
|
|
Guard.NotNullOrEmpty(streamName, nameof(streamName));
|
|
Guard.NotNull(events, nameof(events));
|
|
|
|
if (events.Count == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var currentVersion = await GetEventStreamOffset(streamName);
|
|
|
|
if (expectedVersion != EtagVersion.Any && expectedVersion != currentVersion)
|
|
{
|
|
throw new WrongEventVersionException(currentVersion, expectedVersion);
|
|
}
|
|
|
|
var commit = BuildCommit(commitId, streamName, expectedVersion >= -1 ? expectedVersion : currentVersion, events);
|
|
|
|
for (var attempt = 0; attempt < MaxWriteAttempts; attempt++)
|
|
{
|
|
try
|
|
{
|
|
await Collection.InsertOneAsync(commit);
|
|
|
|
notifier.NotifyEventsStored(streamName);
|
|
|
|
return;
|
|
}
|
|
catch (MongoWriteException ex)
|
|
{
|
|
if (ex.WriteError?.Category == ServerErrorCategory.DuplicateKey)
|
|
{
|
|
currentVersion = await GetEventStreamOffset(streamName);
|
|
|
|
if (expectedVersion != EtagVersion.Any)
|
|
{
|
|
throw new WrongEventVersionException(currentVersion, expectedVersion);
|
|
}
|
|
|
|
if (attempt < MaxWriteAttempts)
|
|
{
|
|
expectedVersion = currentVersion;
|
|
}
|
|
else
|
|
{
|
|
throw new TimeoutException("Could not acquire a free slot for the commit within the provided time.");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private async Task<long> GetEventStreamOffset(string streamName)
|
|
{
|
|
var document =
|
|
await Collection.Find(Filter.Eq(EventStreamField, streamName))
|
|
.Project<BsonDocument>(Projection
|
|
.Include(EventStreamOffsetField)
|
|
.Include(EventsCountField))
|
|
.Sort(Sort.Descending(EventStreamOffsetField)).Limit(1)
|
|
.FirstOrDefaultAsync();
|
|
|
|
if (document != null)
|
|
{
|
|
return document[nameof(MongoEventCommit.EventStreamOffset)].ToInt64() + document[nameof(MongoEventCommit.EventsCount)].ToInt64();
|
|
}
|
|
|
|
return EtagVersion.Empty;
|
|
}
|
|
|
|
private static MongoEventCommit BuildCommit(Guid commitId, string streamName, long expectedVersion, ICollection<EventData> events)
|
|
{
|
|
var commitEvents = new MongoEvent[events.Count];
|
|
|
|
var i = 0;
|
|
|
|
foreach (var e in events)
|
|
{
|
|
var mongoEvent = new MongoEvent(e);
|
|
|
|
commitEvents[i++] = mongoEvent;
|
|
}
|
|
|
|
var mongoCommit = new MongoEventCommit
|
|
{
|
|
Id = commitId,
|
|
Events = commitEvents,
|
|
EventsCount = events.Count,
|
|
EventStream = streamName,
|
|
EventStreamOffset = expectedVersion,
|
|
Timestamp = EmptyTimestamp
|
|
};
|
|
|
|
return mongoCommit;
|
|
}
|
|
}
|
|
}
|