-
Notifications
You must be signed in to change notification settings - Fork 8
/
hour_memory_repository.go
69 lines (54 loc) · 1.44 KB
/
hour_memory_repository.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
package adapters
import (
"context"
"sync"
"time"
"github.com/ThreeDotsLabs/wild-workouts-go-ddd-example/internal/trainer/domain/hour"
)
type MemoryHourRepository struct {
hours map[time.Time]hour.Hour
lock *sync.RWMutex
hourFactory hour.Factory
}
func NewMemoryHourRepository(hourFactory hour.Factory) *MemoryHourRepository {
if hourFactory.IsZero() {
panic("missing hourFactory")
}
return &MemoryHourRepository{
hours: map[time.Time]hour.Hour{},
lock: &sync.RWMutex{},
hourFactory: hourFactory,
}
}
func (m MemoryHourRepository) GetHour(_ context.Context, hourTime time.Time) (*hour.Hour, error) {
m.lock.RLock()
defer m.lock.RUnlock()
return m.getOrCreateHour(hourTime)
}
func (m MemoryHourRepository) getOrCreateHour(hourTime time.Time) (*hour.Hour, error) {
currentHour, ok := m.hours[hourTime]
if !ok {
return m.hourFactory.NewNotAvailableHour(hourTime)
}
// we don't store hours as pointers, but as values
// thanks to that, we are sure that nobody can modify Hour without using UpdateHour
return ¤tHour, nil
}
func (m *MemoryHourRepository) UpdateHour(
_ context.Context,
hourTime time.Time,
updateFn func(h *hour.Hour) (*hour.Hour, error),
) error {
m.lock.Lock()
defer m.lock.Unlock()
currentHour, err := m.getOrCreateHour(hourTime)
if err != nil {
return err
}
updatedHour, err := updateFn(currentHour)
if err != nil {
return err
}
m.hours[hourTime] = *updatedHour
return nil
}