-
Notifications
You must be signed in to change notification settings - Fork 53
/
kvutil.go
103 lines (84 loc) · 2.17 KB
/
kvutil.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
package storage
import (
"context"
"sync"
)
type KeyValueStoreLocker[T any] interface {
KeyValueStoreT[T]
sync.Locker
}
type kvStoreLockerImpl[T any] struct {
KeyValueStoreT[T]
sync.Mutex
}
func NewKeyValueStoreLocker[T any](s KeyValueStoreT[T]) KeyValueStoreLocker[T] {
return &kvStoreLockerImpl[T]{
KeyValueStoreT: s,
}
}
type ValueStoreLocker[T any] interface {
ValueStoreT[T]
sync.Locker
}
type valueStoreLockerImpl[T any] struct {
ValueStoreT[T]
sync.Locker
}
func NewValueStoreLocker[T any](s ValueStoreT[T], mutex ...sync.Locker) ValueStoreLocker[T] {
var locker sync.Locker
if len(mutex) == 0 {
locker = &sync.Mutex{}
} else {
locker = mutex[0]
}
return &valueStoreLockerImpl[T]{
ValueStoreT: s,
Locker: locker,
}
}
type kvStorePrefixImpl[T any] struct {
base KeyValueStoreT[T]
prefix string
}
func (s *kvStorePrefixImpl[T]) Put(ctx context.Context, key string, value T) error {
return s.base.Put(ctx, s.prefix+key, value)
}
func (s *kvStorePrefixImpl[T]) Get(ctx context.Context, key string) (T, error) {
return s.base.Get(ctx, s.prefix+key)
}
func (s *kvStorePrefixImpl[T]) Delete(ctx context.Context, key string) error {
return s.base.Delete(ctx, s.prefix+key)
}
func (s *kvStorePrefixImpl[T]) ListKeys(ctx context.Context, prefix string) ([]string, error) {
return s.base.ListKeys(ctx, s.prefix+prefix)
}
func NewKeyValueStoreWithPrefix[T any](base KeyValueStoreT[T], prefix string) KeyValueStoreT[T] {
return &kvStorePrefixImpl[T]{
base: base,
prefix: prefix,
}
}
type ValueStoreT[T any] interface {
Put(ctx context.Context, value T) error
Get(ctx context.Context) (T, error)
Delete(ctx context.Context) error
}
type valueStoreImpl[T any] struct {
base KeyValueStoreT[T]
key string
}
func (s *valueStoreImpl[T]) Put(ctx context.Context, value T) error {
return s.base.Put(ctx, s.key, value)
}
func (s *valueStoreImpl[T]) Get(ctx context.Context) (T, error) {
return s.base.Get(ctx, s.key)
}
func (s *valueStoreImpl[T]) Delete(ctx context.Context) error {
return s.base.Delete(ctx, s.key)
}
func NewValueStore[T any](base KeyValueStoreT[T], key string) ValueStoreT[T] {
return &valueStoreImpl[T]{
base: base,
key: key,
}
}