This repository has been archived by the owner on Apr 18, 2020. It is now read-only.
forked from trickstercache/trickster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boltdb.go
232 lines (173 loc) · 5.64 KB
/
boltdb.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 2018 Comcast Cable Communications Management, LLC
* 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 main
import (
"fmt"
"strconv"
"strings"
"time"
bolt "github.com/coreos/bbolt"
"github.com/go-kit/kit/log/level"
)
// BoltDBCache describes a BoltDB Cache
type BoltDBCache struct {
T *TricksterHandler
Config BoltDBCacheConfig
dbh *bolt.DB
}
// Connect instantiates the BoltDBCache mutex map and starts the Expired Entry Reaper goroutine
func (c *BoltDBCache) Connect() error {
level.Info(c.T.Logger).Log("event", "boltdb cache setup", "cacheFile", c.Config.Filename)
var err error
c.dbh, err = bolt.Open(c.Config.Filename, 0644, &bolt.Options{Timeout: 1 * time.Second})
if err != nil {
return err
}
err = c.dbh.Update(func(tx *bolt.Tx) error {
tx.CreateBucketIfNotExists([]byte(c.Config.Bucket))
if err != nil {
return fmt.Errorf("create bucket: %s", err)
}
return nil
})
if err != nil {
return err
}
go c.Reap()
return nil
}
// Store places an object in the cache using the specified key and ttl
func (c *BoltDBCache) Store(cacheKey string, data string, ttl int64) error {
expKey, dataKey := c.getKeyNames(cacheKey)
expiration := []byte(strconv.FormatInt(time.Now().Unix()+ttl, 10))
err := c.dbh.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(c.Config.Bucket))
err := b.Put([]byte(dataKey), []byte(data))
if err != nil {
return err
}
return b.Put([]byte(expKey), expiration)
})
if err != nil {
return err
}
level.Debug(c.T.Logger).Log("event", "boltdb cache store", "key", dataKey, "expKey", expKey)
return nil
}
// Retrieve looks for an object in cache and returns it (or an error if not found)
func (c *BoltDBCache) Retrieve(cacheKey string) (string, error) {
level.Debug(c.T.Logger).Log("event", "boltdb cache retrieve", "key", cacheKey)
_, dataKey := c.getKeyNames(cacheKey)
c.checkExpiration(cacheKey)
return c.retrieve(dataKey)
}
// retrieve looks for an object in cache and returns it (or an error if not found)
func (c *BoltDBCache) retrieve(cacheKey string) (string, error) {
content := ""
err := c.dbh.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(c.Config.Bucket))
v := b.Get([]byte(cacheKey))
if v == nil {
level.Debug(c.T.Logger).Log("event", "boltdb cache miss", "key", cacheKey)
return fmt.Errorf("Value for key [%s] not in cache", cacheKey)
}
content = string(v)
return nil
})
if err != nil {
return "", err
}
return content, nil
}
// checkExpiration verifies that a cacheKey is not expired
func (c *BoltDBCache) checkExpiration(cacheKey string) {
expKey, _ := c.getKeyNames(cacheKey)
content, err := c.retrieve(expKey)
if err == nil {
// We found this key, let's see if it's expired
expiration, err := strconv.ParseInt(string(content), 10, 64)
if err != nil || expiration < time.Now().Unix() {
c.Delete(cacheKey)
}
}
}
// Delete removes an object in cache, if present
func (c *BoltDBCache) Delete(cacheKey string) error {
level.Debug(c.T.Logger).Log("event", "boltdb cache delete", "key", cacheKey)
expKey, dataKey := c.getKeyNames(cacheKey)
return c.dbh.Update(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(c.Config.Bucket))
err1 := b.Delete([]byte(expKey))
if err1 != nil {
level.Error(c.T.Logger).Log("event", "boltdb cache key delete failure", "key", expKey, "reason", err1.Error())
}
err2 := b.Delete([]byte(dataKey))
if err2 != nil {
level.Error(c.T.Logger).Log("event", "boltdb cache key delete failure", "key", dataKey, "reason", err2.Error())
}
c.T.ChannelCreateMtx.Lock()
// Close out the channel if it exists
if _, ok := c.T.ResponseChannels[cacheKey]; ok {
close(c.T.ResponseChannels[cacheKey])
delete(c.T.ResponseChannels, cacheKey)
}
// Unlock
c.T.ChannelCreateMtx.Unlock()
if err1 != nil {
return err1
}
if err2 != nil {
return err2
}
return nil
})
}
// Reap continually iterates through the cache to find expired elements and removes them
func (c *BoltDBCache) Reap() {
for {
c.ReapOnce()
time.Sleep(time.Duration(c.T.Config.Caching.ReapSleepMS) * time.Millisecond)
}
}
// ReapOnce makes a single iteration through the cache to to find and remove expired elements
func (c *BoltDBCache) ReapOnce() {
now := time.Now().Unix()
expiredKeys := make([]string, 0)
// Iterate through the cache to find any expiration keys and check their value
c.dbh.View(func(tx *bolt.Tx) error {
// Assume bucket exists and has keys
b := tx.Bucket([]byte(c.Config.Bucket))
cursor := b.Cursor()
for k, v := cursor.First(); k != nil; k, v = cursor.Next() {
expKey := string(k)
if strings.HasSuffix(expKey, ".expiration") {
expiration, err := strconv.ParseInt(string(v), 10, 64)
if err != nil || expiration < now {
expiredKeys = append(expiredKeys, strings.Replace(expKey, ".expiration", "", -1))
}
}
}
return nil
})
// Iterate through the expired keys so we can delete them
for _, cacheKey := range expiredKeys {
c.Delete(cacheKey)
}
}
// Close closes the BoltDBCache
func (c *BoltDBCache) Close() error {
return c.dbh.Close()
}
func (c *BoltDBCache) getKeyNames(cacheKey string) (string, string) {
return cacheKey + ".expiration", cacheKey + ".data"
}