-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandHandler.fs
3146 lines (2869 loc) · 165 KB
/
CommandHandler.fs
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 FSharp.Core
open FSharpPlus
open Microsoft.Extensions.Logging
open Microsoft.Extensions.Logging.Abstractions
open Sharpino.Cache
open Sharpino.Core
open Sharpino.Storage
open Sharpino.Definitions
open Sharpino.StateView
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 =
// will play around DI to improve logging
// let host = Host.CreateApplicationBuilder().Build()
//
// let factory: ILoggerFactory = LoggerFactory.Create(fun builder -> builder.AddConsole() |> ignore)
type UnitResult = ((unit -> unit) * AsyncReplyChannel<unit>)
let logger: Microsoft.Extensions.Logging.ILogger ref = ref NullLogger.Instance
let setLogger (newLogger: ILogger) =
logger := newLogger
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)
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
let inline getAggregateStorageFreshStateViewer<'A, 'E, 'F
when 'A :> Aggregate<'F>
and '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) -> getAggregateFreshState<'A, 'E, 'F> id eventStore
let config =
try
Conf.config ()
with
| :? _ as ex ->
logger.Value.LogError (sprintf "appSettings.json file not found using defult!!! %A\n" ex)
printf "appSettings.json file not found using defult!!! %A\n" ex
Conf.defaultConf
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.Value.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 'A :> Aggregate<'F>
and 'E :> Event<'A>
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.Value.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.Value.LogDebug "mkSnapshotIfIntervalPassed"
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 mkAggregateSnapshotIfIntervalPassed<'A, 'E, 'F
when 'A :> Aggregate<'F>
and 'E :> Event<'A>
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member SnapshotsInterval : int)
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.Value.LogDebug "mkAggregateSnapshotIfIntervalPassed"
Async.RunSynchronously
(async {
return
ResultCE.result
{
let lastEventId =
storage.TryGetLastAggregateEventId 'A.Version 'A.StorageName aggregateId
|> Option.defaultValue 0
let snapEventId = storage.TryGetLastAggregateSnapshotEventId 'A.Version 'A.StorageName aggregateId |> Option.defaultValue 0
let result =
if ((lastEventId - snapEventId)) >= 'A.SnapshotsInterval || snapEventId = 0 then
mkAggregateSnapshot<'A, 'E, 'F > storage aggregateId
else
() |> Ok
return! result
}
}, Commons.generalAsyncTimeOut)
let inline mkAggregateSnapshotIfIntervalPassed2<'A, 'E, 'F
when 'A :> Aggregate<'F>
and 'E :> Event<'A>
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member SnapshotsInterval : int)
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.Value.LogDebug "mkAggregateSnapshotIfIntervalPassed"
Async.RunSynchronously
(async {
return
ResultCE.result
{
let lastEventId =
storage.TryGetLastAggregateEventId 'A.Version 'A.StorageName aggregateId
|> Option.defaultValue 0
let snapEventId = storage.TryGetLastAggregateSnapshotEventId 'A.Version 'A.StorageName aggregateId |> Option.defaultValue 0
let result =
if ((lastEventId - snapEventId)) >= 'A.SnapshotsInterval || snapEventId = 0 then
storage.SetAggregateSnapshot 'A.Version (aggregateId, eventId, state.Serialize) 'A.StorageName
// mkAggregateSnapshot<'A, 'E, 'F > storage aggregateId
else
() |> Ok
return! result
}
}, Commons.generalAsyncTimeOut)
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.Value.LogDebug (sprintf "runCommand %A\n" command)
let command = fun () ->
result {
let! (eventId, state) = getFreshState<'A, 'E, 'F> eventStore
let! (newState, events) =
state
|> command.Execute
let events' =
events
|>> fun x -> x.Serialize
let! ids =
events' |> 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 ()
}
let processor = MailBoxProcessors.Processors.Instance.GetProcessor 'A.StorageName
MailBoxProcessors.postToTheProcessor processor command
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.Value.LogDebug (sprintf "runCommand %A\n" command)
runCommandMd eventStore eventBroker Metadata.Empty command
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:> Aggregate<'F>
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(storage: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A1)
(md: Metadata)
(command: Command<'A, 'E>)
=
logger.Value.LogDebug (sprintf "runInitAndCommand %A %A" 'A.StorageName command)
let command = fun () ->
result {
let! (eventId, state) = getFreshState<'A, 'E, 'F> storage
let! (newState, events)=
state
|> command.Execute
let events' =
events
|>> fun x -> x.Serialize
let! ids =
events' |> 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)
AggregateCache<'A1,'F>.Instance.Memoize2 (initialInstance |> Ok) (0, initialInstance.Id)
return ()
}
let processor = MailBoxProcessors.Processors.Instance.GetProcessor 'A.StorageName
MailBoxProcessors.postToTheProcessor processor command
let inline runInitAndCommand<'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:> Aggregate<'F>
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(storage: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A1)
(command: Command<'A, 'E>)
=
logger.Value.LogDebug (sprintf "runInitAndCommand %A %A" 'A.StorageName command)
runInitAndCommandMd<'A, 'E, 'A1, 'F> storage eventBroker initialInstance Metadata.Empty command
let rec inline runInitAndAggregateCommandMd<'A1, 'E1, 'A2, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1: (static member SnapshotsInterval : int)
and 'A2 :> Aggregate<'F>
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
>
(aggregateId: Guid)
(storage: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A2)
(md: Metadata)
(command: AggregateCommand<'A1, 'E1>)
=
logger.Value.LogDebug (sprintf "runInitAndAggregateCommand %A %A" 'A1.StorageName command)
let command = fun () ->
result {
let! (eventId, state) = getAggregateFreshState<'A1, 'E1, 'F> aggregateId storage
let! (newState, events) =
state
|> command.Execute
let events' =
events
|>> fun x -> x.Serialize
let! ids =
events' |> storage.SetInitialAggregateStateAndAddAggregateEventsMd eventId initialInstance.Id 'A2.Version 'A2.StorageName aggregateId initialInstance.Serialize 'A1.Version 'A1.StorageName md
AggregateCache<'A1, 'F>.Instance.Memoize2 (newState |> Ok) ((ids |> List.last, aggregateId))
AggregateCache<'A2, 'F>.Instance.Memoize2 (initialInstance |> Ok) (0, initialInstance.Id)
let _ = mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> storage aggregateId newState (ids |> List.last)
return ()
}
let processor = MailBoxProcessors.Processors.Instance.GetProcessor 'A1.StorageName
MailBoxProcessors.postToTheProcessor processor command
let inline runInitAndAggregateCommand<'A1, 'E1, 'A2, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1: (static member SnapshotsInterval : int)
and 'A2 :> Aggregate<'F>
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
>
(aggregateId: Guid)
(storage: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A2)
(command: AggregateCommand<'A1, 'E1>)
=
logger.Value.LogDebug (sprintf "runInitAndAggregateCommand %A %A" 'A1.StorageName command)
runInitAndAggregateCommandMd<'A1, 'E1, 'A2, 'F> aggregateId storage eventBroker initialInstance String.Empty command
let inline runInitAndTwoAggregateCommandsMd<'A1, 'E1, 'A2, 'E2, 'F, 'A3
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1: (static member SnapshotsInterval : int)
and 'A2 :> Aggregate<'F>
and 'E2 :> Event<'A2>
and 'E2 : (member Serialize: 'F)
and 'E2 : (static member Deserialize: 'F -> Result<'E2, string>)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
and 'A2: (static member SnapshotsInterval : int)
and 'A3 :> Aggregate<'F>
and 'A3: (static member StorageName: string)
and 'A3: (static member Version: string)
>
(aggregateId1: Guid)
(aggregateId2: Guid)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A3)
(md: Metadata)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
=
logger.Value.LogDebug (sprintf "runInitAndTwoAggregateCommands %A %A %A %A %A %A" 'A1.StorageName 'A2.StorageName command1 command2 aggregateId1 aggregateId2)
let command = fun () ->
result {
let! (eventId1, state1) = getAggregateFreshState<'A1, 'E1, 'F> aggregateId1 eventStore
let! (eventId2, state2) = getAggregateFreshState<'A2, 'E2, 'F> aggregateId2 eventStore
let! (newState1, events1) =
state1
|> command1.Execute
let! (newState2, events2) =
state2
|> command2.Execute
let events1' =
events1
|>> fun x -> x.Serialize
let events2' =
events2
|>> fun x -> x.Serialize
let multiEvents =
[
(eventId1, events1', 'A1.Version, 'A1.StorageName, aggregateId1)
(eventId2, events2', 'A2.Version, 'A2.StorageName, aggregateId2)
]
let! ids =
eventStore.SetInitialAggregateStateAndMultiAddAggregateEventsMd initialInstance.Id 'A3.Version 'A3.StorageName initialInstance.Serialize md multiEvents
AggregateCache<'A1, 'F>.Instance.Memoize2 (newState1 |> Ok) ((ids.[0] |> List.last, aggregateId1))
AggregateCache<'A2, 'F>.Instance.Memoize2 (newState2 |> Ok) ((ids.[1] |> List.last, aggregateId2))
AggregateCache<'A3, 'F>.Instance.Memoize2 (initialInstance |> Ok) (0, initialInstance.Id)
let _ = mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> eventStore aggregateId1 newState1 (ids.[0] |> List.last)
let _ = mkAggregateSnapshotIfIntervalPassed2<'A2, 'E2, 'F> eventStore aggregateId2 newState2 (ids.[1] |> List.last)
return ()
}
let lookupName = sprintf "%s_%s" 'A1.StorageName 'A2.StorageName
MailBoxProcessors.postToTheProcessor (MailBoxProcessors.Processors.Instance.GetProcessor lookupName) command
let inline runInitAndTwoAggregateCommands<'A1, 'E1, 'A2, 'E2, 'F, 'A3
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1: (static member SnapshotsInterval : int)
and 'A2 :> Aggregate<'F>
and 'E2 :> Event<'A2>
and 'E2 : (member Serialize: 'F)
and 'E2 : (static member Deserialize: 'F -> Result<'E2, string>)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
and 'A2: (static member SnapshotsInterval : int)
and 'A3 :> Aggregate<'F>
and 'A3: (static member StorageName: string)
and 'A3: (static member Version: string)
>
(aggregateId1: Guid)
(aggregateId2: Guid)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A3)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
=
logger.Value.LogDebug (sprintf "runInitAndTwoAggregateCommands %A %A %A %A %A %A" 'A1.StorageName 'A2.StorageName command1 command2 aggregateId1 aggregateId2)
runInitAndTwoAggregateCommandsMd<'A1, 'E1, 'A2, 'E2, 'F, 'A3> aggregateId1 aggregateId2 eventStore eventBroker initialInstance String.Empty command1 command2
let inline runInitAndThreeAggregateCommandsMd<'A1, 'E1, 'A2, 'E2, 'A3, 'E3, 'F, 'A4
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1: (static member SnapshotsInterval : int)
and 'A2 :> Aggregate<'F>
and 'E2 :> Event<'A2>
and 'E2 : (member Serialize: 'F)
and 'E2 : (static member Deserialize: 'F -> Result<'E2, string>)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
and 'A2: (static member SnapshotsInterval : int)
and 'A3 :> Aggregate<'F>
and 'E3 :> Event<'A3>
and 'E3 : (member Serialize: 'F)
and 'E3 : (static member Deserialize: 'F -> Result<'E3, string>)
and 'A3: (static member StorageName: string)
and 'A3: (static member Version: string)
and 'A3: (static member Deserialize: 'F -> Result<'A3, string>)
and 'A3: (static member SnapshotsInterval : int)
and 'A4 :> Aggregate<'F>
and 'A4: (static member StorageName: string)
and 'A4: (static member Version: string)
>
(aggregateId1: Guid)
(aggregateId2: Guid)
(aggregateId3: Guid)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A4)
(md: Metadata)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
(command3: AggregateCommand<'A3, 'E3>)
=
logger.Value.LogDebug (sprintf "runInitAndThreeAggregateCommands %A %A %A %A %A %A %A %A %A" 'A1.StorageName 'A2.StorageName 'A3.StorageName command1 command2 command3 aggregateId1 aggregateId2 aggregateId3)
let command = fun () ->
result {
let! (eventId1, state1) = getAggregateFreshState<'A1, 'E1, 'F> aggregateId1 eventStore
let! (eventId2, state2) = getAggregateFreshState<'A2, 'E2, 'F> aggregateId2 eventStore
let! (eventId3, state3) = getAggregateFreshState<'A3, 'E3, 'F> aggregateId3 eventStore
let! (newState1, events1) =
state1
|> command1.Execute
let! (newState2, events2) =
state2
|> command2.Execute
let! (newState3, events3) =
state3
|> command3.Execute
let serEvents1 =
events1
|>> fun x -> x.Serialize
let serEvents2 =
events2
|>> fun x -> x.Serialize
let serEvents3 =
events3
|>> fun x -> x.Serialize
let multiEvents =
[
(eventId1, serEvents1, 'A1.Version, 'A1.StorageName, aggregateId1)
(eventId2, serEvents2, 'A2.Version, 'A2.StorageName, aggregateId2)
(eventId3, serEvents3, 'A3.Version, 'A3.StorageName, aggregateId3)
]
let! ids =
eventStore.SetInitialAggregateStateAndMultiAddAggregateEventsMd initialInstance.Id 'A4.Version 'A4.StorageName initialInstance.Serialize md multiEvents
AggregateCache<'A1,'F>.Instance.Memoize2 (newState1 |> Ok) ((ids.[0] |> List.last, aggregateId1))
AggregateCache<'A2,'F>.Instance.Memoize2 (newState2 |> Ok) ((ids.[1] |> List.last, aggregateId2))
AggregateCache<'A3,'F>.Instance.Memoize2 (newState3 |> Ok) ((ids.[2] |> List.last, aggregateId3))
let _ = mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> eventStore aggregateId1 newState1 (ids.[0] |> List.last)
let _ = mkAggregateSnapshotIfIntervalPassed2<'A2, 'E2, 'F> eventStore aggregateId2 newState2 (ids.[1] |> List.last)
let _ = mkAggregateSnapshotIfIntervalPassed2<'A3, 'E3, 'F> eventStore aggregateId3 newState3 (ids.[2] |> List.last)
return ()
}
let lookupName = sprintf "%s_%s_%s" 'A1.StorageName 'A2.StorageName 'A3.StorageName
MailBoxProcessors.postToTheProcessor (MailBoxProcessors.Processors.Instance.GetProcessor lookupName) command
let inline runInitAndThreeAggregateCommands<'A1, 'E1, 'A2, 'E2, 'A3, 'E3, 'F, 'A4
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1: (static member StorageName: string)
and 'A1: (static member Version: string)
and 'A1: (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1: (static member SnapshotsInterval : int)
and 'A2 :> Aggregate<'F>
and 'E2 :> Event<'A2>
and 'E2 : (member Serialize: 'F)
and 'E2 : (static member Deserialize: 'F -> Result<'E2, string>)
and 'A2: (static member StorageName: string)
and 'A2: (static member Version: string)
and 'A2: (static member Deserialize: 'F -> Result<'A2, string>)
and 'A2: (static member SnapshotsInterval : int)
and 'A3 :> Aggregate<'F>
and 'E3 :> Event<'A3>
and 'E3 : (member Serialize: 'F)
and 'E3 : (static member Deserialize: 'F -> Result<'E3, string>)
and 'A3: (static member StorageName: string)
and 'A3: (static member Version: string)
and 'A3: (static member Deserialize: 'F -> Result<'A3, string>)
and 'A3: (static member SnapshotsInterval : int)
and 'A4 :> Aggregate<'F>
and 'A4: (static member StorageName: string)
and 'A4: (static member Version: string)
>
(aggregateId1: Guid)
(aggregateId2: Guid)
(aggregateId3: Guid)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(initialInstance: 'A4)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
(command3: AggregateCommand<'A3, 'E3>)
=
logger.Value.LogDebug (sprintf "runInitAndThreeAggregateCommands %A %A %A %A %A %A %A %A %A" 'A1.StorageName 'A2.StorageName 'A3.StorageName command1 command2 command3 aggregateId1 aggregateId2 aggregateId3)
runInitAndThreeAggregateCommandsMd<'A1, 'E1, 'A2, 'E2, 'A3, 'E3, 'F, 'A4> aggregateId1 aggregateId2 aggregateId3 eventStore eventBroker initialInstance Metadata.Empty command1 command2 command3
let inline runAggregateCommandMd<'A, 'E, 'F
when 'A :> Aggregate<'F>
and 'E :> Event<'A>
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)
and 'A : (static member SnapshotsInterval: int)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'E : (member Serialize: 'F)
>
(aggregateId: Guid)
(storage: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(md: Metadata)
(command: AggregateCommand<'A, 'E>)
=
logger.Value.LogDebug (sprintf "runAggregateCommand %A, %A, id: %A" 'A.StorageName command aggregateId)
let command = fun () ->
result {
let! (eventId, state) = getAggregateFreshState<'A, 'E, 'F> aggregateId storage
let! (newState, events) =
state
|> command.Execute
let serEvents =
events
|>> fun x -> x.Serialize
let! ids =
serEvents |> storage.AddAggregateEventsMd eventId 'A.Version 'A.StorageName state.Id md
AggregateCache<'A, 'F>.Instance.Memoize2 (newState |> Ok) ((ids |> List.last, state.Id))
let _ = mkAggregateSnapshotIfIntervalPassed2<'A, 'E, 'F> storage aggregateId newState (ids |> List.last)
return ()
}
let processor = MailBoxProcessors.Processors.Instance.GetProcessor (sprintf "%s_%s" 'A.StorageName (aggregateId.ToString()))
MailBoxProcessors.postToTheProcessor processor command
let inline runAggregateCommand<'A, 'E, 'F
when 'A :> Aggregate<'F>
and 'E :> Event<'A>
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)
and 'A : (static member SnapshotsInterval: int)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'E : (member Serialize: 'F)
>
(aggregateId: Guid)
(storage: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(command: AggregateCommand<'A, 'E>)
=
logger.Value.LogDebug (sprintf "runAggregateCommand %A, %A, id: %A" 'A.StorageName command aggregateId)
runAggregateCommandMd<'A, 'E, 'F> aggregateId storage eventBroker Metadata.Empty command
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
// the "force" version of running N Commands has been improved and so
// it is safe to use them in place of the non-force version
// using the same aggregateId in more different commands
let inline forceRunNAggregateCommandsMd<'A1, 'E1, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1 : (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1 : (static member SnapshotsInterval: int)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(aggregateIds: List<Guid>)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(md: Metadata)
(commands: List<AggregateCommand<'A1, 'E1>>)
=
logger.Value.LogDebug "forceRunNAggregateCommands"
let commands = fun () ->
result {
let aggregateIdsWithCommands =
List.zip aggregateIds commands
|> List.groupBy fst
|> List.map (fun (id, cmds) -> (id, cmds |> List.map snd))
let! uniqueInitialStates =
aggregateIdsWithCommands
|> List.traverseResultM (fun (id, cmds) -> getAggregateFreshState<'A1, 'E1, 'F> id eventStore)
let uniqueStatesOnly =
uniqueInitialStates
|>> fun (_, state) -> state
let multiCommands =
aggregateIdsWithCommands
|>> fun (_, cmds) -> cmds
let statesAndMultiCommands =
List.zip uniqueStatesOnly multiCommands
let! newStatesAndEvents =
statesAndMultiCommands
|> List.traverseResultM (fun (state, cmds) -> foldCommands state cmds)
let newEvents =
newStatesAndEvents
|>> snd
let newStates =
newStatesAndEvents
|>> fst
let serializedNewEvents =
newEvents
|>> fun x -> x |>> fun (z: 'E1) -> z.Serialize
let initialStatesEventIds =
uniqueInitialStates
|>> fst
let uniqueAggregateIds =
aggregateIdsWithCommands
|>> fst
let currentEventIdsEventsAnAggregateIds =
List.zip3 initialStatesEventIds serializedNewEvents uniqueAggregateIds
|>> fun (currentStateEventId, events, id) -> (currentStateEventId, events, 'A1.Version, 'A1.StorageName, id)
let! dbEventIds =
currentEventIdsEventsAnAggregateIds
|> eventStore.MultiAddAggregateEventsMd md
for i in 0 .. (uniqueAggregateIds.Length - 1) do
AggregateCache<'A1, 'F>.Instance.Memoize2 (newStates.[i] |> Ok) (dbEventIds.[i] |> List.last, uniqueAggregateIds.[i])
mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> eventStore uniqueAggregateIds.[i] newStates.[i] (dbEventIds.[i] |> List.last) |> ignore
return ()
}
let lookupName = 'A1.StorageName
let processor = MailBoxProcessors.Processors.Instance.GetProcessor lookupName
MailBoxProcessors.postToTheProcessor processor commands
let inline forceRunNAggregateCommands<'A1, 'E1, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1 : (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1 : (static member SnapshotsInterval: int)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(aggregateIds: List<Guid>)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(commands: List<AggregateCommand<'A1, 'E1>>)
=
logger.Value.LogDebug "forceRunNAggregateCommands"
forceRunNAggregateCommandsMd<'A1, 'E1, 'F> aggregateIds eventStore eventBroker Metadata.Empty commands
let inline runNAggregateCommandsMd<'A1, 'E1, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1 : (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1 : (static member SnapshotsInterval: int)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(aggregateIds: List<Guid>)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(md: Metadata)
(commands: List<AggregateCommand<'A1, 'E1>>)
=
logger.Value.LogDebug "runNAggregateCommands"
let aggregateIdsAreUnique = aggregateIds |> List.distinct |> List.length = aggregateIds.Length
if (not aggregateIdsAreUnique) then
Error "aggregateIds are not unique"
else
let commands = fun () ->
result {
let! states =
aggregateIds
|> List.traverseResultM (fun id -> getAggregateFreshState<'A1, 'E1, 'F> id eventStore)
let states' =
states
|>> fun (_, state) -> state
let lastEventIds =
states
|>> fun (eventId, _) -> eventId
let statesAndCommands =
List.zip states' commands
let! stateEvents =
statesAndCommands
|>> fun (state, command) -> (command.Execute state)
|> List.traverseResultM id
let newStates =
stateEvents
|>> fun (state, _) -> state
let events =
stateEvents
|>> fun (_, events) -> events
let serializedEvents =
events
|>> fun x -> x |>> fun (z: 'E1) -> z.Serialize
let currentStateEventIdEventsAndAggregateIds =
List.zip3 lastEventIds serializedEvents aggregateIds
|>> fun (eventId, events, id) -> (eventId, events, 'A1.Version, 'A1.StorageName, id)
let! eventIds =
eventStore.MultiAddAggregateEventsMd md currentStateEventIdEventsAndAggregateIds
for i in 0..(aggregateIds.Length - 1) do
AggregateCache<'A1, 'F>.Instance.Memoize2 (newStates.[i] |> Ok) (eventIds.[i] |> List.last, aggregateIds.[i])
mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> eventStore aggregateIds.[i] newStates.[i] (eventIds.[i] |> List.last) |> ignore
return ()
}
let lookupName = 'A1.StorageName
let processor = MailBoxProcessors.Processors.Instance.GetProcessor lookupName
MailBoxProcessors.postToTheProcessor processor commands
let inline runNAggregateCommands<'A1, 'E1, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1 : (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1 : (static member SnapshotsInterval: int)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
>
(aggregateIds: List<Guid>)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(commands: List<AggregateCommand<'A1, 'E1>>)
=
logger.Value.LogDebug "runNAggregateCommands"
runNAggregateCommandsMd<'A1, 'E1, 'F> aggregateIds eventStore eventBroker Metadata.Empty commands
let inline runTwoAggregateCommandsMd<'A1, 'E1, 'A2, 'E2, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1 : (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1 : (static member SnapshotsInterval: int)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
and 'A2 :> Aggregate<'F>
and 'E2 :> Event<'A2>
and 'E2 : (member Serialize: 'F)
and 'E2 : (static member Deserialize: 'F -> Result<'E2, string>)
and 'A2 : (static member Deserialize: 'F -> Result<'A2, string>)
and 'A2 : (static member SnapshotsInterval: int)
and 'A2 : (static member StorageName: string)
and 'A2 : (static member Version: string)
>
(aggregateId1: Guid)
(aggregateId2: Guid)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(md: Metadata)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
=
let commands = fun () ->
result {
let! (eventId1, state1) = getAggregateFreshState<'A1, 'E1, 'F> aggregateId1 eventStore
let! (eventId2, state2) = getAggregateFreshState<'A2, 'E2, 'F> aggregateId2 eventStore
let! (newState1, events1) =
state1
|> command1.Execute
let! (newState2, events2) =
state2
|> command2.Execute
let serializedEvents1 =
events1
|>> fun x -> x.Serialize
let serializedEvents2 =
events2
|>> fun x -> x.Serialize
let! newLastStateIdsList =
eventStore.MultiAddAggregateEventsMd
md
[
(eventId1, serializedEvents1, 'A1.Version, 'A1.StorageName, aggregateId1)
(eventId2, serializedEvents2, 'A2.Version, 'A2.StorageName, aggregateId2)
]
AggregateCache<'A1, 'F>.Instance.Memoize2 (newState1 |> Ok) ((newLastStateIdsList.[0] |> List.last, aggregateId1))
AggregateCache<'A2, 'F>.Instance.Memoize2 (newState2 |> Ok) ((newLastStateIdsList.[1] |> List.last, aggregateId2))
let _ = mkAggregateSnapshotIfIntervalPassed2<'A1, 'E1, 'F> eventStore aggregateId1 newState1 (newLastStateIdsList.[0] |> List.last)
let _ = mkAggregateSnapshotIfIntervalPassed2<'A2, 'E2, 'F> eventStore aggregateId2 newState2 (newLastStateIdsList.[1] |> List.last)
return ()
}
let lookupName = sprintf "%s_%s" 'A1.StorageName 'A2.StorageName
MailBoxProcessors.postToTheProcessor (MailBoxProcessors.Processors.Instance.GetProcessor lookupName) commands
let inline runTwoAggregateCommands<'A1, 'E1, 'A2, 'E2, 'F
when 'A1 :> Aggregate<'F>
and 'E1 :> Event<'A1>
and 'E1 : (member Serialize: 'F)
and 'E1 : (static member Deserialize: 'F -> Result<'E1, string>)
and 'A1 : (static member Deserialize: 'F -> Result<'A1, string>)
and 'A1 : (static member SnapshotsInterval: int)
and 'A1 : (static member StorageName: string)
and 'A1 : (static member Version: string)
and 'A2 :> Aggregate<'F>
and 'E2 :> Event<'A2>
and 'E2 : (member Serialize: 'F)
and 'E2 : (static member Deserialize: 'F -> Result<'E2, string>)
and 'A2 : (static member Deserialize: 'F -> Result<'A2, string>)
and 'A2 : (static member SnapshotsInterval: int)
and 'A2 : (static member StorageName: string)
and 'A2 : (static member Version: string)
>
(aggregateId1: Guid)
(aggregateId2: Guid)
(eventStore: IEventStore<'F>)
(eventBroker: IEventBroker<'F>)
(command1: AggregateCommand<'A1, 'E1>)
(command2: AggregateCommand<'A2, 'E2>)
=
runTwoAggregateCommandsMd<'A1, 'E1, 'A2, 'E2, 'F> aggregateId1 aggregateId2 eventStore eventBroker String.Empty command1 command2
// all those Saga-like functions are convoluted and not really needed, but they are a good way to test the undoer mechanism
let inline runSagaNAggregateCommandsUndoersMd<'A, 'E, 'F
when 'A :> Aggregate<'F>
and 'E :> Event<'A>
and 'E : (member Serialize: 'F)
and 'E : (static member Deserialize: 'F -> Result<'E, string>)
and 'A : (static member Deserialize: 'F -> Result<'A, string>)
and 'A : (static member SnapshotsInterval: int)
and 'A : (static member StorageName: string)
and 'A : (static member Version: string)