-
Notifications
You must be signed in to change notification settings - Fork 28
/
cache.go
160 lines (144 loc) · 3.21 KB
/
cache.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
/*
Copyright 2018 The vegamcache 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 vegamcache
import (
"bytes"
"encoding/gob"
"sync"
"time"
"github.com/weaveworks/mesh"
)
type Value struct {
Data interface{}
LastWrite int64
Expiry int64
}
type cache struct {
sync.Mutex
set map[string]Value
}
var _ mesh.GossipData = &cache{}
type externalCache struct {
cache *cache
}
func NewCache() *externalCache {
return &externalCache{&cache{
set: make(map[string]Value),
}}
}
func (ec *externalCache) Get(key string) (interface{}, bool) {
return ec.cache.get(key)
}
func (ec *externalCache) Put(key string, val interface{}, ttl time.Duration) {
var expiryTime int64
if ttl == 0 {
expiryTime = 0
} else {
expiryTime = time.Now().Add(ttl).UnixNano()
}
ec.cache.put(key, Value{
Data: val,
Expiry: expiryTime,
})
}
func (c *cache) Encode() [][]byte {
c.Lock()
defer c.Unlock()
var buf bytes.Buffer
if err := gob.NewEncoder(&buf).Encode(c.set); err != nil {
panic(err)
}
return [][]byte{buf.Bytes()}
}
func (c *cache) Merge(other mesh.GossipData) mesh.GossipData {
return c.mergeComplete(other.(*cache).copy().set)
}
func (c *cache) mergeComplete(other map[string]Value) mesh.GossipData {
c.Lock()
defer c.Unlock()
for k, v := range other {
val, ok := c.set[k]
if !ok {
if v.Expiry < time.Now().UnixNano() {
continue
}
c.set[k] = v
}
// checking existing expiry
if val.Expiry < time.Now().UnixNano() {
delete(c.set, k)
}
if val.LastWrite < v.LastWrite {
c.set[k] = v
continue
}
}
return c
}
func (c *cache) mergeDelta(set map[string]Value) (delta mesh.GossipData) {
for k, v := range set {
val, ok := c.set[k]
if ok && val.LastWrite > v.LastWrite {
delete(set, k)
continue
}
// expired value is not added
if val.Expiry != 0 && val.Expiry < time.Now().UnixNano() {
delete(set, k)
continue
}
c.set[k] = v
}
return &cache{set: set}
}
func (c *cache) mergeRecived(set map[string]Value) (recived mesh.GossipData) {
for k, v := range set {
val, ok := c.set[k]
if ok && val.LastWrite > v.LastWrite {
delete(set, k)
continue
}
// expired value is not added
if val.Expiry != 0 && val.Expiry < time.Now().UnixNano() {
delete(set, k)
continue
}
c.set[k] = v
}
if len(set) == 0 {
return nil
}
return &cache{set: set}
}
func (c *cache) copy() *cache {
return &cache{
set: c.set,
}
}
func (c *cache) get(key string) (interface{}, bool) {
c.Lock()
defer c.Unlock()
if val, ok := c.set[key]; ok {
if val.Expiry == 0 || val.Expiry > time.Now().UnixNano() {
return val.Data, true
}
delete(c.set, key)
return nil, false
}
return nil, false
}
func (c *cache) put(key string, val Value) {
c.Lock()
defer c.Unlock()
c.set[key] = val
}