2022-08-04 14:37:51 -06:00
|
|
|
package event
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Aggregate interface {
|
|
|
|
// ApplyEvent applies the event to the aggrigate state
|
|
|
|
ApplyEvent(...Event)
|
|
|
|
|
|
|
|
AggregateRootInterface
|
|
|
|
}
|
|
|
|
|
|
|
|
// Raise adds new uncommitted events
|
|
|
|
func Raise(a Aggregate, lis ...Event) {
|
|
|
|
lis = NewEvents(lis...)
|
|
|
|
SetStreamID(a.StreamID(), lis...)
|
|
|
|
a.raise(lis...)
|
|
|
|
a.ApplyEvent(lis...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append adds new committed events
|
|
|
|
func Append(a Aggregate, lis ...Event) {
|
|
|
|
a.append(lis...)
|
|
|
|
a.ApplyEvent(lis...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotExists returns error if there are no events present.
|
|
|
|
func NotExists(a Aggregate) error {
|
|
|
|
if a.StreamVersion() != 0 {
|
|
|
|
return fmt.Errorf("%w, got version == %d", ErrShouldNotExist, a.StreamVersion())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-14 10:04:15 -06:00
|
|
|
// ShouldExists returns error if there are no events present.
|
|
|
|
func ShouldExist(a Aggregate) error {
|
|
|
|
if a.StreamVersion() == 0 {
|
|
|
|
return fmt.Errorf("%w, got version == %d", ErrShouldExist, a.StreamVersion())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-08-04 14:37:51 -06:00
|
|
|
type AggregateRootInterface interface {
|
2022-08-14 10:04:15 -06:00
|
|
|
// Events returns the aggregate events
|
2022-08-04 14:37:51 -06:00
|
|
|
// pass true for only uncommitted events
|
|
|
|
Events(bool) Events
|
2022-08-14 10:04:15 -06:00
|
|
|
// StreamID returns aggregate stream ID
|
|
|
|
StreamID() string
|
|
|
|
// SetStreamID sets aggregate stream ID
|
|
|
|
SetStreamID(streamID string)
|
2022-08-04 14:37:51 -06:00
|
|
|
// StreamVersion returns last commit events
|
|
|
|
StreamVersion() uint64
|
|
|
|
// Version returns the current aggrigate version. (committed + uncommitted)
|
|
|
|
Version() uint64
|
|
|
|
|
|
|
|
raise(lis ...Event)
|
|
|
|
append(lis ...Event)
|
|
|
|
Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ AggregateRootInterface = &AggregateRoot{}
|
|
|
|
|
|
|
|
type AggregateRoot struct {
|
|
|
|
events Events
|
2022-08-14 10:04:15 -06:00
|
|
|
streamID string
|
2022-08-04 14:37:51 -06:00
|
|
|
streamVersion uint64
|
|
|
|
|
|
|
|
mu sync.RWMutex
|
|
|
|
}
|
|
|
|
|
2022-08-14 10:04:15 -06:00
|
|
|
func (a *AggregateRoot) Commit() { a.streamVersion = uint64(len(a.events)) }
|
|
|
|
func (a *AggregateRoot) StreamID() string { return a.streamID }
|
|
|
|
func (a *AggregateRoot) SetStreamID(streamID string) { a.streamID = streamID }
|
|
|
|
func (a *AggregateRoot) StreamVersion() uint64 { return a.streamVersion }
|
|
|
|
func (a *AggregateRoot) Version() uint64 { return uint64(len(a.events)) }
|
2022-08-04 14:37:51 -06:00
|
|
|
func (a *AggregateRoot) Events(new bool) Events {
|
|
|
|
a.mu.RLock()
|
|
|
|
defer a.mu.RUnlock()
|
|
|
|
|
|
|
|
events := a.events
|
|
|
|
if new {
|
|
|
|
events = events[a.streamVersion:]
|
|
|
|
}
|
|
|
|
|
|
|
|
lis := make(Events, len(events))
|
|
|
|
copy(lis, events)
|
|
|
|
|
|
|
|
return lis
|
|
|
|
}
|
|
|
|
|
|
|
|
//lint:ignore U1000 is called by embeded interface
|
|
|
|
func (a *AggregateRoot) raise(lis ...Event) { //nolint
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
|
|
|
|
a.posStartAt(lis...)
|
|
|
|
|
|
|
|
a.events = append(a.events, lis...)
|
|
|
|
}
|
|
|
|
|
|
|
|
//lint:ignore U1000 is called by embeded interface
|
|
|
|
func (a *AggregateRoot) append(lis ...Event) {
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
|
|
|
|
a.posStartAt(lis...)
|
|
|
|
|
|
|
|
a.events = append(a.events, lis...)
|
|
|
|
a.streamVersion += uint64(len(lis))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AggregateRoot) posStartAt(lis ...Event) {
|
|
|
|
for i, e := range lis {
|
|
|
|
m := e.EventMeta()
|
|
|
|
m.Position = a.streamVersion + uint64(i) + 1
|
|
|
|
e.SetEventMeta(m)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var ErrShouldNotExist = errors.New("should not exist")
|
2022-08-14 10:04:15 -06:00
|
|
|
var ErrShouldExist = errors.New("should exist")
|