-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandHandler.fs
More file actions
6099 lines (5364 loc) · 311 KB
/
Copy pathCommandHandler.fs
File metadata and controls
6099 lines (5364 loc) · 311 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
namespace Sharpino
open System
open System.Reflection
open System.Threading
open System.Threading.Tasks
open FSharp.Core
open FSharpPlus
open Microsoft.Extensions.DependencyInjection
open Microsoft.Extensions.Logging
open Microsoft.Extensions.Logging.Abstractions
open Microsoft.Extensions.Configuration
open Microsoft.Extensions.Hosting
open Sharpino.Cache
open Sharpino.Core
open Sharpino.RabbitMq
open Sharpino.Storage
open Sharpino.Definitions
open Sharpino.StateView
open Sharpino.EventBroker
open FsToolkit.ErrorHandling
// the "md" version of any function is the one that takes a metadata parameter
// the md requires an extra text md field in any event and a proper new funcion on the db side
// like insert_md{Version}{AggregateStorageName}_aggregate_event_and_return_id
// I rather duplicate the code than make it more complex
// after all what we are going for is leaving only the md version and keep the
// non-md only for backward compatibility
module CommandHandler =
let builder = Host.CreateApplicationBuilder()
let myConfig = builder.Configuration
let cancellationTokenSourceExpiration = myConfig.GetValue<int>("CancellationTokenSourceExpiration", 100000)
let eventStoreTimeout = myConfig.GetValue<int>("EventStoreTimeout", 10000)
type StramName = string
// will play around D.I./host to make logging more flexible as something like follows
// let host = Host.CreateApplicationBuilder().Build()
// let factory: ILoggerFactory = LoggerFactory.Create(fun builder -> builder.AddConsole() |> ignore)
// a the moment the logger is a ref to a null logger that can be setted properly
type PreExecutedAggregateCommand<'A, 'F> =
{
AggregateId: Guid
NewState: obj
EventId: EventId
SerializedEvents: List<'F>
Metadata: Metadata
Version: string
StorageName: string
EventType: Type
}
type UnitResult = ((unit -> unit) * AsyncReplyChannel<unit>)
let logger = builder.Services.BuildServiceProvider().GetRequiredService<ILoggerFactory>().CreateLogger("Sharpino.CommandHandler")
[<Obsolete("This method is deprecated and will be removed in a future version. Please config log on appsettings.json")>]
let setLogger (newLogger: ILogger) =
()
// this is not used anymore, as was able to queue the command processing messages of any specific stream. Keeping it
// there to make it come back if needed
let processor = MailboxProcessor<UnitResult>.Start (fun inbox ->
let rec loop() =
async {
let! (statement, replyChannel) = inbox.Receive()
let result = statement()
replyChannel.Reply result
do! loop()
}
loop()
)
let postToProcessor f =
Async.RunSynchronously(processor.PostAndAsyncReply(fun rc -> f, rc), Commons.generalAsyncTimeOut)
// a stateviewer of contexts (single instance aggregates), based on the eventStore/storage will need this
let inline getStorageFreshStateViewer<'A, 'E, 'F
when 'A: (static member Zero: 'A)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (member Serialize: 'F)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'E:> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'E: (member Serialize: 'F)
>(eventStore: IEventStore<'F>) =
fun () -> getFreshState<'A, 'E, 'F> eventStore
// a stateviewer of aggregates, based on the eventStore/storage will need this
let inline getAggregateStorageFreshStateViewer<'A, 'E, 'F
when 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
=
fun (id: Guid) ->
result
{
let! (eventId, result) = getAggregateFreshState<'A, 'E, 'F> id eventStore
return
(eventId, result)
}
let inline getAggregateStorageFreshStateViewerAsync<'A, 'E, 'F
when 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(ct: Option<CancellationToken>)
(id: Guid) : TaskResult<EventId * 'A, string> =
logger.LogDebug (sprintf "getAggregateStorageFreshStateViewerAsync %A - %s - %s" id 'A.Version 'A.StorageName)
taskResult {
let! (eventId: EventId, state: 'A) =
getAggregateFreshStateAsync<'A, 'E, 'F> id eventStore ct
return (eventId, state)
}
// using variuos versions of mkSnapshotIfIntervalPassed instead. Leaving it to allow use from any app if needed
let inline mkSnapshot<'A, 'E, 'F
when 'A: (static member Zero: 'A)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (member Serialize: 'F )
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'E: (member Serialize: 'F)
>
(storage: IEventStore<'F>) =
let stateViewer = getStorageFreshStateViewer<'A, 'E, 'F> storage
logger.LogDebug (sprintf "mkSnapshot %A %A" 'A.Version 'A.StorageName)
Async.RunSynchronously(
async {
return
result
{
let! id, state = stateViewer ()
let serState = state.Serialize
let! result = storage.SetSnapshot 'A.Version (id, serState) 'A.StorageName
return result
}
}, Commons.generalAsyncTimeOut)
let inline mkAggregateSnapshot<'A, 'E, 'F
when 'E :> Event<'A>
and 'A : (member Serialize : 'F)
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'E : (member Serialize: 'F)
>
(storage: IEventStore<'F>)
(aggregateId: AggregateId) =
logger.LogDebug (sprintf "mkAggregateSnapshot %A" aggregateId)
let stateViewer = getAggregateStorageFreshStateViewer<'A, 'E, 'F> storage
Async.RunSynchronously
(async {
return
result
{
let! eventId, state = stateViewer aggregateId
let serState = state.Serialize
let result = storage.SetAggregateSnapshot 'A.Version (aggregateId, eventId, serState) 'A.StorageName
return! result
}
}, Commons.generalAsyncTimeOut)
let inline mkSnapshotIfIntervalPassed2<'A, 'E, 'F
when 'A: (static member Zero: 'A)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (static member SnapshotsInterval : int)
and 'A: (member Serialize: 'F)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'E: (member Serialize: 'F)
>
(storage: IEventStore<'F>)
(state: 'A)
(eventId: int)
=
logger.LogDebug "mkSnapshotIfIntervalPassed2"
Async.RunSynchronously
(async {
return
result
{
let! lastEventId =
storage.TryGetLastEventId 'A.Version 'A.StorageName
|> Result.ofOption "lastEventId is None"
let snapEventId = storage.TryGetLastSnapshotEventId 'A.Version 'A.StorageName |> Option.defaultValue 0
return!
if (lastEventId - snapEventId) > 'A.SnapshotsInterval || snapEventId = 0 then
let result = storage.SetSnapshot 'A.Version (eventId, state.Serialize) 'A.StorageName
result
else
() |> Ok
}
}, Commons.generalAsyncTimeOut)
let inline mkAggregateSnapshotIfIntervalPassed2<'A, 'E, 'F
when 'E :> Event<'A>
and 'A : (member Serialize : 'F)
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'E : (member Serialize: 'F)
>
(storage: IEventStore<'F>)
(aggregateId: AggregateId)
(state: 'A)
(eventId: int)
=
logger.LogDebug "mkAggregateSnapshotIfIntervalPassed2"
task
{
let! distanceFromLatestSnapshot =
storage.GetDistanceFromLatestSnapshotAsync ('A.Version, 'A.StorageName, aggregateId)
if distanceFromLatestSnapshot = 0
then
let _ = storage.SetAggregateSnapshot 'A.Version (aggregateId, eventId, state.Serialize) 'A.StorageName
return Ok ()
else
return Ok ()
}
// this looks the same as mkAggregateSnapshotIfIntervalPassed2 but it will avoid generic
let inline mkAggregateSnapshotIfIntervalPassed3<'F>
(storage: IEventStore<'F>)
(aggregateId: AggregateId)
(storageVersion: string)
(storageName: string)
(eventId: EventId)
(state: 'F) =
logger.LogDebug "mkAggregateSnapshotIfIntervalPassed3"
task
{
let! distanceFromLatestSnapshot =
storage.GetDistanceFromLatestSnapshotAsync (storageVersion, storageName, aggregateId)
if distanceFromLatestSnapshot = 0 then
let _ = storage.SetAggregateSnapshot storageVersion (aggregateId, eventId, state) storageName
return Ok ()
else
return Ok ()
}
// eventBroker is not considered as at the moment there is no message sending infrastracture for single instance (i.e. context) aggregates
let inline runCommandMd<'A, 'E, 'F
when 'A: (static member Zero: 'A)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (member Serialize: 'F)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'A: (static member SnapshotsInterval : int)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'E: (member Serialize: 'F)
>
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(md: Metadata)
(command: Command<'A, 'E>) =
logger.LogDebug (sprintf "runCommandMd %A\n" command)
let command = fun () ->
result {
let! (eventId, state) = getFreshState<'A, 'E, 'F> eventStore
let! (newState, events) =
state
|> command.Execute
let! ids =
(events |>> _.Serialize) |> eventStore.AddEventsMd eventId 'A.Version 'A.StorageName md
StateCache2<'A>.Instance.Memoize2 newState (ids |> List.last)
let _ = mkSnapshotIfIntervalPassed2<'A, 'E, 'F> eventStore newState (ids |> List.last)
return ()
}
#if USING_MAILBOXPROCESSOR
let processor = MailBoxProcessors.Processors.Instance.GetProcessor 'A.StorageName
MailBoxProcessors.postToTheProcessor processor command
#else
command()
#endif
let inline runCommand<'A, 'E, 'F
when 'A: (static member Zero: 'A)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (member Serialize: 'F)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'A: (static member SnapshotsInterval : int)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'E: (member Serialize: 'F)
>
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(command: Command<'A, 'E>) =
logger.LogDebug (sprintf "runCommand %A\n" command)
runCommandMd eventStore eventBroker Metadata.Empty command
// Setting initial states for aggregates is not necessarily also an event, but it could be
// a command of a separate context. It happens they need to be transactional from the
// point of view of the eventstore
let inline runInitAndCommandMd<'A, 'E, 'A1, 'F
when 'A: (static member Zero: 'A)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (member Serialize: 'F)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'A: (static member SnapshotsInterval : int)
and 'E :> Event<'A>
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'E: (member Serialize: 'F)
and 'A1 : (member Serialize: 'F)
and 'A1 : (member Id: Guid)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(storage: IEventStore<'F>)
(messageSenders: MessageSenders)
(initialInstance: 'A1)
(md: Metadata)
(command: Command<'A, 'E>)
=
logger.LogDebug (sprintf "runInitAndCommandMd %A %A" 'A.StorageName command)
let command = fun () ->
result {
let! eventId, state = getFreshState<'A, 'E, 'F> storage
let! newState, events =
state
|> command.Execute
let! ids =
(events |>> _.Serialize) |> storage.SetInitialAggregateStateAndAddEventsMd eventId initialInstance.Id 'A1.Version 'A1.StorageName initialInstance.Serialize 'A.Version 'A.StorageName md
StateCache2<'A>.Instance.Memoize2 newState (ids |> List.last)
let _ = mkSnapshotIfIntervalPassed2<'A, 'E, 'F> storage newState (ids |> List.last)
AggregateCache3.Instance.Memoize2 (0, initialInstance |> box) initialInstance.Id
let _ =
let queueName = 'A1.Version + 'A1.StorageName
optionallySendInitialInstanceAsync<'A1, _> queueName messageSenders initialInstance.Id initialInstance
return ()
}
#if USING_MAILBOXPROCESSOR
let processor = MailBoxProcessors.Processors.Instance.GetProcessor 'A.StorageName
MailBoxProcessors.postToTheProcessor processor command
#else
command ()
#endif
// just make a new aggregate instance and set it's initial state
let inline runInit<'A1, 'E, 'F
when 'E :> Event<'A1>
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(initialInstance: 'A1) =
logger.LogDebug (sprintf "runInit %A" 'A1.StorageName)
result {
let! _ = eventStore.SetInitialAggregateState initialInstance.Id 'A1.Version 'A1.StorageName initialInstance.Serialize
AggregateCache3.Instance.Memoize2 (0, initialInstance |> box) initialInstance.Id
let _ =
let queueName = 'A1.Version + 'A1.StorageName
optionallySendInitialInstanceAsync<'A1, 'E> queueName messageSenders initialInstance.Id initialInstance
return ()
}
let inline runMultipleInit<'A1, 'E, 'F
when 'E :> Event<'A1>
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(initialInstances: ('A1)[]) =
logger.LogDebug (sprintf "runMultipleInit %A" 'A1.StorageName)
result {
let idWithserializedAggregates =
initialInstances
|> Array.map (fun x -> x.Id, x.Serialize)
let! _ = eventStore.SetInitialAggregateStates 'A1.Version 'A1.StorageName idWithserializedAggregates
let _ =
initialInstances
|> Array.iter (fun x -> AggregateCache3.Instance.Memoize2 (0, x |> box) x.Id)
// beware the mumber of threads here
let _ =
let queueName = 'A1.Version + 'A1.StorageName
initialInstances
|> Array.iter (fun x -> optionallySendInitialInstanceAsync<'A1, 'E> queueName messageSenders x.Id x |> ignore)
return ()
}
let inline runMultipleInitAsync<'A1, 'E, 'F
when 'E :> Event<'A1>
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(initialInstances: 'A1[])
(ct: Option<CancellationToken>) =
logger.LogDebug (sprintf "runMultipleInitAsync %A" 'A1.StorageName)
taskResult {
use cts = CancellationTokenSource.CreateLinkedTokenSource
(defaultArg ct CancellationToken.None)
cts.CancelAfter(eventStoreTimeout)
let idWithserializedAggregates =
initialInstances
|>> (fun x -> x.Id, x.Serialize)
let! res = eventStore.SetInitialAggregateStatesAsync('A1.Version, 'A1.StorageName, idWithserializedAggregates, cts.Token)
let _ =
initialInstances
|> Array.iter (fun x -> AggregateCache3.Instance.Memoize2 (0, x |> box) x.Id)
let _ =
let queueName = 'A1.Version + 'A1.StorageName
initialInstances
|> Array.iter (fun x -> optionallySendInitialInstanceAsync<'A1, 'E> queueName messageSenders x.Id x |> ignore)
return res
}
let inline runInitAsync<'A1, 'E, 'F
when 'E :> Event<'A1>
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(initialInstance: 'A1)
(ct: Option<CancellationToken>) =
logger.LogDebug (sprintf "runInitAsync %A" 'A1.StorageName)
taskResult {
use cts = CancellationTokenSource.CreateLinkedTokenSource
(defaultArg ct CancellationToken.None)
cts.CancelAfter(eventStoreTimeout)
let! res = eventStore.SetInitialAggregateStateAsync(initialInstance.Id, 'A1.Version, 'A1.StorageName, initialInstance.Serialize, cts.Token)
let _ = AggregateCache3.Instance.Memoize2 (0, initialInstance |> box) initialInstance.Id
let _ =
let queueName = 'A1.Version + 'A1.StorageName
optionallySendInitialInstanceAsync<'A1, 'E> queueName messageSenders initialInstance.Id initialInstance
return res
}
// delete is a command which doesn't result in any event (not necessarily). It just flags the object as deleted
let inline runDelete<'A1, 'E, 'F
// when 'A1 :> Aggregate<'F> and 'E :> Event<'A1>
when 'E :> Event<'A1>
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(id: AggregateId)
(predicate: 'A1 -> bool)
=
logger.LogDebug (sprintf "runDelete %A" 'A1.StorageName)
result {
let! eventId, state =
StateView.getAggregateFreshState<'A1, 'E, 'F> id eventStore
do!
predicate (state |> unbox)
|> Result.ofBool (sprintf "cannot delete aggregate with id %A of type %s as it is not safe according to the predicate" id 'A1.StorageName)
let serializedState =
state.Serialize
let! _ = eventStore.SnapshotAndMarkDeleted 'A1.Version 'A1.StorageName eventId id serializedState
AggregateCache3.Instance.Clean id
DetailsCache.Instance.RefreshDependentDetailsAsync(id, Some CancellationToken.None).GetAwaiter().GetResult()
let _ =
let queueName = 'A1.Version + 'A1.StorageName
optionallySendDeleteMessageAsync<'A1> queueName messageSenders id
return ()
}
let inline runDeleteAsync<'A1, 'E, 'F
when 'E :> Event<'A1>
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E: (static member Deserialize: 'F -> Result<'E, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(id: AggregateId)
(predicate: 'A1 -> bool)
(ct: Option<CancellationToken>) =
logger.LogDebug (sprintf "runDeleteAsync %A" 'A1.StorageName)
taskResult {
let! eventId, state =
StateView.getAggregateFreshStateAsync<'A1, 'E, 'F> id eventStore ct
do!
predicate (state |> unbox)
|> Result.ofBool (sprintf "cannot delete aggregate with id %A of type %s as it is not safe according to the predicate" id 'A1.StorageName)
let serializedState =
state.Serialize
let! _ = eventStore.SnapshotAndMarkDeletedAsync('A1.Version, 'A1.StorageName, eventId, id, serializedState, ct |> Option.defaultValue CancellationToken.None)
AggregateCache3.Instance.Clean id
DetailsCache.Instance.RefreshDependentDetailsSafeFireAndForget [id]
let _ =
let queueName = 'A1.Version + 'A1.StorageName
optionallySendDeleteMessageAsync<'A1> queueName messageSenders id
return ()
}
// from here and beyond the techniques are to try to pass commands that mixes different objects
// the convoluted sequence of generics is to help the static checking being effective
// (but there is a way out, see the combination of preExecuteAggregateCommand and storeEvents which
// are able to detach type dependencies by casting to object)
let inline runDeleteAndAggregateCommandMd<'A1, 'E1, 'A2, 'E2, 'F
when 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'E2 :> Event<'A2>
and 'E2 :(static member Deserialize: 'F -> Result<'E2, string>)
and 'E2 : (member Serialize: 'F)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A2 : (member Id: Guid)
and 'A2 : (member Serialize: 'F)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
>
(eventStore: IEventStore<'F>)
(messageSenders : MessageSenders)
(md: Metadata)
(id: AggregateId)
(streamAggregateId: AggregateId)
(command: AggregateCommand<'A2, 'E2>)
(predicate: 'A1 -> bool) =
logger.LogDebug (sprintf "runDeleteAndAggregateCommandMd %A" 'A1.StorageName)
result {
let! eventId, state =
getAggregateFreshState<'A1, 'E1, 'F> id eventStore
do!
predicate (state |> unbox)
|> Result.ofBool (sprintf "cannot delete aggregate with id %A of type %s as it is not safe according to the predicate" id 'A1.StorageName)
let! streamEventId, streamState =
getAggregateFreshState<'A2, 'E2, 'F> streamAggregateId eventStore
let! newState, events =
streamState
|> unbox
|> command.Execute
AggregateCache3.Instance.Clean id
let! ids =
eventStore.SnapshotMarkDeletedAndAddAggregateEventsMd
'A1.Version
'A1.StorageName
eventId
id
(state |> unbox<'A1>).Serialize
streamEventId
'A2.Version
'A2.StorageName
streamAggregateId
md
(events |>> _.Serialize)
AggregateCache3.Instance.Memoize2 (ids |> List.last, newState |> box) streamAggregateId
DetailsCache.Instance.RefreshDependentDetailsSafeFireAndForget [id; streamAggregateId]
let _ =
optionallySendDeleteMessageAsync<'A1> ('A1.Version + 'A1.StorageName) messageSenders id
let _ =
optionallySendAggregateEventsAsync<'A2, 'E2> ('A2.Version + 'A2.StorageName) messageSenders streamAggregateId events streamEventId (ids |> List.last)
return ()
}
let inline runDeleteAndTwoAggregateCommandsMd<'A, 'E, 'A1, 'E1, 'A2, 'E2, 'F
when 'A : (member Id: Guid)
and 'A : (member Serialize: 'F)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'E :> Event<'A>
and 'E : (member Serialize: 'F)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize: 'F)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A2 : (member Id: Guid)
and 'A2 : (member Serialize: 'F)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
and 'E2 :> Event<'A2>
and 'E2 :(static member Deserialize: 'F -> Result<'E2, string>)
and 'E2 : (member Serialize: 'F)>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(md: Metadata)
(aggregateId: AggregateId)
(aggregateId1: AggregateId)
(aggregateId2: AggregateId)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
(predicate: 'A -> bool) =
logger.LogDebug (sprintf "runDeleteAndTwoAggregateCommandsMd %A" 'A1.StorageName)
result {
let! eventId, state =
getAggregateFreshState<'A, 'E, 'F> aggregateId eventStore
do!
predicate (state |> unbox)
|> Result.ofBool (sprintf "cannot delete aggregate with id %A of type %s as it is not safe according to the predicate" aggregateId 'A1.StorageName)
let! eventIdA1, stateA1 =
getAggregateFreshState<'A1, 'E1, 'F> aggregateId1 eventStore
let! eventIdA2, stateA2 =
getAggregateFreshState<'A2, 'E2, 'F> aggregateId2 eventStore
let! newStateA1, eventsA1 =
stateA1
|> unbox
|> command1.Execute
let! newStateA2, eventsA2 =
stateA2
|> unbox
|> command2.Execute
DetailsCache.Instance.RefreshDependentDetailsAsync(aggregateId, Some CancellationToken.None).GetAwaiter().GetResult()
DetailsCache.Instance.RefreshDependentDetailsAsync(aggregateId1, Some CancellationToken.None).GetAwaiter().GetResult()
DetailsCache.Instance.RefreshDependentDetailsAsync(aggregateId2, Some CancellationToken.None).GetAwaiter().GetResult()
AggregateCache3.Instance.Clean aggregateId
let! newLastStateIdsList =
eventStore.SnapshotMarkDeletedAndMultiAddAggregateEventsMd
md
'A.Version
'A.StorageName
eventId
aggregateId
(state |> unbox<'A>).Serialize
[
(eventIdA1, eventsA1 |>> _.Serialize, 'A1.Version, 'A1.StorageName, aggregateId1)
(eventIdA2, eventsA2 |>> _.Serialize, 'A2.Version, 'A2.StorageName, aggregateId2)
]
AggregateCache3.Instance.Memoize2 (newLastStateIdsList.[0] |> List.last, newStateA1 |> box) aggregateId1
AggregateCache3.Instance.Memoize2 (newLastStateIdsList.[1] |> List.last, newStateA2 |> box) aggregateId2
let _ = optionallySendDeleteMessageAsync<'A> ('A.StorageName + 'A.Version) messageSenders aggregateId
let _ = optionallySendAggregateEventsAsync<'A1, 'E1> ('A1.StorageName + 'A1.Version) messageSenders aggregateId1 eventsA1 eventIdA1 (newLastStateIdsList.[0] |> List.last)
let _ = optionallySendAggregateEventsAsync<'A2, 'E2> ('A2.StorageName + 'A2.Version) messageSenders aggregateId2 eventsA2 eventIdA2 (newLastStateIdsList.[1] |> List.last)
return ()
}
let inline foldCommands<'A, 'E when 'E:> Event<'A>>
(initialState: 'A)
(commands: List<AggregateCommand<'A, 'E>>) =
let folder (stateResult: Result<'A * List<'E>, string>) (command: AggregateCommand<'A,'E>) =
match stateResult with
| Error e -> Error e
| Ok (state, events) ->
match command.Execute state with
| Error e -> Error e
| Ok (newState, newEvents) -> Ok (newState, events @ newEvents)
List.fold folder (Ok (initialState, [])) commands
let inline runDeleteAndNAggregateCommandsMd<'A, 'E, 'A1, 'E1, 'F
when 'A : (member Id: Guid)
and 'A : (member Serialize : 'F)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'E :> Event<'A>
and 'E : (member Serialize: 'F)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize : 'F)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(md: Metadata)
(aggregateId: AggregateId)
(aggregateIds1: List<AggregateId>)
(command1: List<AggregateCommand<'A1, 'E1>>)
(predicate: 'A -> bool) =
logger.LogDebug "runDeleteAndNAggregateCommandsMd"
result
{
do!
(aggregateIds1.Length = command1.Length)
|> Result.ofBool "aggregateIds and aggregate command length must correspond"
let aggregateIdsWithCommands1 =
List.zip aggregateIds1 command1
|> List.groupBy fst
|> List.map (fun (id, cmds) -> id, cmds |> List.map snd)
let uniqueAggregateIds1 =
aggregateIdsWithCommands1
|>> fst
let! uniqueInitialstates1 =
aggregateIdsWithCommands1
|> List.traverseResultM (fun (id, _) -> getAggregateFreshState<'A1, 'E1, 'F> id eventStore)
let uniqueInitialStatesOnly1 =
uniqueInitialstates1
|>> fun (_, state) -> state
let multicommands1 =
aggregateIdsWithCommands1
|>> fun (_, cmds) -> cmds
let initialStatesAndMultiCommands1 =
List.zip uniqueInitialStatesOnly1 multicommands1
let! newStatesAndEvents1 =
initialStatesAndMultiCommands1
|> List.traverseResultM (fun (state, commands) -> foldCommands (state |> unbox) commands)
let newStates1 =
newStatesAndEvents1
|>> fst
let generatedEvents1 =
newStatesAndEvents1
|>> snd
let initialStateEventIds1 =
uniqueInitialstates1
|>> fst
let serializedEvents1 =
generatedEvents1
|>> fun x -> x |>> fun (z: 'E1) -> z.Serialize
let aggregateIds1 =
aggregateIdsWithCommands1
|>> fst
let initialEventIds1Events1AndAggregateIds1 =
List.zip3 initialStateEventIds1 serializedEvents1 aggregateIds1
|>> fun (eventId, events, id) -> (eventId, events, 'A1.Version, 'A1.StorageName, id)
let! eventId, toBeDeleted = getAggregateFreshState<'A, 'E, 'F> aggregateId eventStore
do! predicate (toBeDeleted |> unbox)
|> Result.ofBool (sprintf "condition %A is not met" predicate)
let _ = AggregateCache3.Instance.Clean aggregateId
let! dbNewStatesEventIds =
let allPacked = initialEventIds1Events1AndAggregateIds1
eventStore.SnapshotMarkDeletedAndMultiAddAggregateEventsMd
md
'A.Version
'A.StorageName
eventId
aggregateId
(toBeDeleted |> unbox<'A>).Serialize
allPacked
DetailsCache.Instance.RefreshDependentDetailsAsync(aggregateId, Some CancellationToken.None).GetAwaiter().GetResult()
let _ =
for id in aggregateIds1 do
DetailsCache.Instance.RefreshDependentDetailsAsync(id, Some CancellationToken.None).GetAwaiter().GetResult()
let doCacheResults =
fun () ->
for i in 0 .. (uniqueAggregateIds1.Length - 1) do
AggregateCache3.Instance.Memoize2 (dbNewStatesEventIds.[i] |> List.last, newStates1.[i] |> box) aggregateIds1.[i]
mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> eventStore uniqueAggregateIds1.[i] newStates1.[i] |> ignore
doCacheResults ()
let duplicatedIds =
aggregateIds1
|> List.groupBy id
|> List.filter (fun (_, ids) -> ids.Length > 1)
|> List.map (fun (id,_ ) -> id)
let _ =
duplicatedIds
|> List.iter (fun id -> AggregateCache3.Instance.Clean id )
let _ =
optionallySendDeleteMessageAsync<'A> ('A.Version + 'A.StorageName) messageSenders aggregateId
let aggregateIdInitEventIdEndEventIdAndEventsA1 =
let initEventIdEndEventIdAndEventsA1 =
List.zip3 initialStateEventIds1 (dbNewStatesEventIds |>> List.last) generatedEvents1
List.zip aggregateIds1 initEventIdEndEventIdAndEventsA1
|>> fun (aggregateId, (initEventId, endEventId, events)) -> (aggregateId, initEventId, endEventId, events)
let _ = optionallySendMultipleAggregateEventsAsync<'A1, 'E1> ('A1.Version + 'A1.StorageName) messageSenders aggregateIdInitEventIdEndEventIdAndEventsA1
return ()
}
let inline runDeleteAndTwoNAggregateCommandsMd<'A, 'E, 'A1, 'E1, 'A2, 'E2, 'F
when 'A : (member Id: Guid)
and 'A : (member Serialize : 'F)
and 'A: (static member StorageName: string)
and 'A: (static member Version: string)
and 'A: (static member Deserialize: 'F -> Result<'A, string>)
and 'E :> Event<'A>
and 'E : (member Serialize: 'F)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'A1 : (member Id: Guid)
and 'A1 : (member Serialize : 'F)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A2 : (member Id: Guid)
and 'A2 : (member Serialize : 'F)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
and 'E2 :> Event<'A2>
and 'E2 :(static member Deserialize: 'F -> Result<'E2, string>)
and 'E2 : (member Serialize: 'F)>
(eventStore: IEventStore<'F>)
(messageSenders: MessageSenders)
(md: Metadata)
(aggregateId: AggregateId)
(aggregateIds1: List<AggregateId>)
(aggregateIds2: List<AggregateId>)
(command1: List<AggregateCommand<'A1, 'E1>>)
(command2: List<AggregateCommand<'A2, 'E2>>)
(predicate: 'A -> bool) =
logger.LogDebug "runDeleteAndTwoNAggregateCommandsMd"
result
{
do!
((aggregateIds1.Length = command1.Length) &&
(aggregateIds2.Length = command2.Length))
|> Result.ofBool "aggregateIds and commands length must correspond"
let aggregateIdsWithCommands1 =
List.zip aggregateIds1 command1
|> List.groupBy fst
|> List.map (fun (id, cmds) -> id, cmds |> List.map snd)
let uniqueAggregateIds1 =
aggregateIdsWithCommands1
|>> fst
let aggregateIdsWithCommands2 =
List.zip aggregateIds2 command2
|> List.groupBy fst
|> List.map (fun (id, cmds) -> id, cmds |> List.map snd)
let uniqueAggregateIds2 =
aggregateIdsWithCommands2
|>> fst
let! uniqueInitialstates1 =
aggregateIdsWithCommands1
|> List.traverseResultM (fun (id, _) -> getAggregateFreshState<'A1, 'E1, 'F> id eventStore)
let! uniqueInitialstates2 =
aggregateIdsWithCommands2
|> List.traverseResultM (fun (id, _) -> getAggregateFreshState<'A2, 'E2, 'F> id eventStore)
let uniqueInitialStatesOnly1 =
uniqueInitialstates1
|>> fun (_, state) -> state
let uniqueInitialStatesOnly2 =
uniqueInitialstates2
|>> fun (_, state) -> state
let multicommands1 =
aggregateIdsWithCommands1
|>> fun (_, cmds) -> cmds
let multicommands2 =
aggregateIdsWithCommands2
|>> fun (_, cmds) -> cmds
let initialStatesAndMultiCommands1 =
List.zip uniqueInitialStatesOnly1 multicommands1
let initialStatesAndMultiCommands2 =
List.zip uniqueInitialStatesOnly2 multicommands2
let! newStatesAndEvents1 =
initialStatesAndMultiCommands1
|> List.traverseResultM (fun (state, commands) -> foldCommands (state |> unbox) commands)
let! newStatesAndEvents2 =
initialStatesAndMultiCommands2
|> List.traverseResultM (fun (state, commands) -> foldCommands (state |> unbox) commands)
let newStates1 =
newStatesAndEvents1
|>> fst
let generatedEvents1 =
newStatesAndEvents1
|>> snd
let newStates2 =
newStatesAndEvents2
|>> fst
let generatedEvents2 =
newStatesAndEvents2
|>> snd
let serializedEvents1 =
generatedEvents1
|>> fun x -> x |>> fun (z: 'E1) -> z.Serialize
let serializedEvents2 =
generatedEvents2
|>> fun x -> x |>> fun (z: 'E2) -> z.Serialize