-
Notifications
You must be signed in to change notification settings - Fork 3
/
aggregate_store.go
232 lines (191 loc) · 5.78 KB
/
aggregate_store.go
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
// Copyright 2022 Monoskope Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eventsourcing
import (
"context"
"io"
"sync"
esApi "github.com/finleap-connect/monoskope/pkg/api/eventsourcing"
"github.com/google/uuid"
"github.com/finleap-connect/monoskope/pkg/eventsourcing/errors"
"google.golang.org/protobuf/types/known/wrapperspb"
)
// AggregateStore handles storing and loading Aggregates
type AggregateStore interface {
// Get returns the most recent version of all aggregate of a given type.
All(context.Context, AggregateType) ([]Aggregate, error)
// Get returns the most recent version of an aggregate.
Get(context.Context, AggregateType, uuid.UUID) (Aggregate, error)
// Update stores all in-flight events for an aggregate.
Update(context.Context, Aggregate) error
}
// aggregateStore handles storing and loading aggregates from/to the EventStore.
type aggregateStore struct {
registry AggregateRegistry
esClient esApi.EventStoreClient
mutex sync.Mutex
}
// NewAggregateManager creates a new AggregateHandler which loads/updates Aggregates with the given EventStore.
func NewAggregateManager(aggregateRegistry AggregateRegistry, eventStoreClient esApi.EventStoreClient) AggregateStore {
return &aggregateStore{
esClient: eventStoreClient,
registry: aggregateRegistry,
}
}
// Get returns the most recent version of an aggregate.
func (r *aggregateStore) All(ctx context.Context, aggregateType AggregateType) ([]Aggregate, error) {
r.mutex.Lock()
defer r.mutex.Unlock()
// Retrieve events from store
stream, err := r.esClient.Retrieve(ctx, &esApi.EventFilter{
AggregateType: wrapperspb.String(aggregateType.String()),
})
if err != nil {
return nil, err
}
var eventStream []Event
for {
// Read next event
protoEvent, err := stream.Recv()
// End of stream
if err == io.EOF {
break
}
if err != nil { // Some other error
return nil, err
}
event, err := NewEventFromProto(protoEvent)
if err != nil { // Error converting
return nil, err
}
// Append events to the stream
eventStream = append(eventStream, event)
}
// Apply all events gathered from store on aggregate.
aggregates := make(map[uuid.UUID]Aggregate)
for _, event := range eventStream {
if event.AggregateType() != aggregateType {
return nil, errors.ErrInvalidAggregateType
}
var aggregate Aggregate
var ok bool
if aggregate, ok = aggregates[event.AggregateID()]; !ok {
// Create new empty aggregate of type.
aggregate, err = r.registry.CreateAggregate(aggregateType)
if err != nil {
return nil, err
}
}
if err := aggregate.ApplyEvent(event); err != nil {
return nil, err
}
// Set aggregates id to the first event's id
if aggregate.Version() == 0 {
aggregate.setId(event.AggregateID())
}
aggregate.IncrementVersion()
aggregates[event.AggregateID()] = aggregate
}
return toAggregateArray(aggregates), nil
}
func toAggregateArray(aggregateMap map[uuid.UUID]Aggregate) []Aggregate {
var aggregates []Aggregate
for _, aggregate := range aggregateMap {
aggregates = append(aggregates, aggregate)
}
return aggregates
}
// Get returns the most recent version of an aggregate.
func (r *aggregateStore) Get(ctx context.Context, aggregateType AggregateType, id uuid.UUID) (Aggregate, error) {
r.mutex.Lock()
defer r.mutex.Unlock()
// Retrieve events from store
stream, err := r.esClient.Retrieve(ctx, &esApi.EventFilter{
AggregateId: wrapperspb.String(id.String()),
AggregateType: wrapperspb.String(aggregateType.String()),
})
if err != nil {
return nil, err
}
var eventStream []Event
for {
// Read next event
protoEvent, err := stream.Recv()
// End of stream
if err == io.EOF {
break
}
if err != nil { // Some other error
return nil, err
}
event, err := NewEventFromProto(protoEvent)
if err != nil { // Error converting
return nil, err
}
// Append events to the stream
eventStream = append(eventStream, event)
}
// Create new empty aggregate of type.
aggregate, err := r.registry.CreateAggregate(aggregateType)
if err != nil {
return nil, err
}
// Apply all events gathered from store on aggregate.
for _, event := range eventStream {
if event.AggregateType() != aggregateType {
return nil, errors.ErrInvalidAggregateType
}
if err := aggregate.ApplyEvent(event); err != nil {
return nil, err
}
// Set aggregates id to the first event's id
if aggregate.Version() == 0 {
aggregate.setId(event.AggregateID())
}
aggregate.IncrementVersion()
}
return aggregate, nil
}
// Update stores all in-flight events for an aggregate.
func (r *aggregateStore) Update(ctx context.Context, aggregate Aggregate) error {
r.mutex.Lock()
defer r.mutex.Unlock()
events := aggregate.UncommittedEvents()
// Check that there are events in-flight.
if len(events) == 0 {
return nil
}
// Create stream to send events to store.
stream, err := r.esClient.Store(ctx)
if err != nil {
return err
}
for _, event := range events {
// Convert to proto event
protoEvent := NewProtoFromEvent(event)
// Send event to store
err = stream.Send(protoEvent)
if err != nil {
return err
}
// Apply event on aggregate after successful storage
err = aggregate.ApplyEvent(event)
if err != nil {
return err
}
aggregate.IncrementVersion()
}
_, err = stream.CloseAndRecv()
return err
}