-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.go
More file actions
298 lines (239 loc) · 5.8 KB
/
api.go
File metadata and controls
298 lines (239 loc) · 5.8 KB
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
// Based on https://github.com/jkelin/cache-sqlite-lru-ttl/
package disklru
import (
"context"
"database/sql"
"time"
_ "github.com/mattn/go-sqlite3"
)
type Encoder interface {
Encode(obj interface{}) ([]byte, error)
Decode(in []byte) (interface{}, error)
}
type DiskLRU struct {
handle *sql.DB
encoder Encoder
set_stm, get_stm, get_update_expiry_stm,
peek_stm, delete_stm, purge_stm,
clear_stm, cleanup_expires_stm,
cleanup_lru_stm *sql.Stmt
opts Options
hit, miss Counter
cancel func()
}
func (self *DiskLRU) HouseKeepOnce() {
self.Debug("Housekeeping run")
self.cleanup_lru_stm.Exec(_max_items(self))
self.cleanup_expires_stm.Exec(_now(self))
}
func (self *DiskLRU) houseKeeping(ctx context.Context) {
if self.opts.HouseKeepPeriodSec < 0 {
return
}
if self.opts.HouseKeepPeriodSec == 0 {
self.opts.HouseKeepPeriodSec = 60
}
for {
select {
case <-ctx.Done():
return
case <-time.After(time.Second *
time.Duration(self.opts.HouseKeepPeriodSec)):
self.HouseKeepOnce()
}
}
}
func (self *DiskLRU) Close() error {
self.Debug("Close")
self.cancel()
self.set_stm.Close()
self.get_stm.Close()
self.get_update_expiry_stm.Close()
self.peek_stm.Close()
self.delete_stm.Close()
self.clear_stm.Close()
self.cleanup_lru_stm.Close()
self.cleanup_expires_stm.Close()
return self.handle.Close()
}
func (self *DiskLRU) initTables() error {
_, err := self.handle.Exec(`
PRAGMA journal_mode=WAL;
PRAGMA busy_timeout=60000;
PRAGMA synchronous=NORMAL;
CREATE TABLE IF NOT EXISTS cache (
key TEXT PRIMARY KEY,
value BLOB,
expires BIGINT,
lastAccess BIGINT
);
CREATE UNIQUE INDEX IF NOT EXISTS key ON cache (key);
CREATE INDEX IF NOT EXISTS expires ON cache (expires);
CREATE INDEX IF NOT EXISTS lastAccess ON cache (lastAccess);
`)
return err
}
func (self *DiskLRU) Set(key string, value interface{}) error {
buf, err := self.encoder.Encode(value)
if err != nil {
return err
}
_, err = self.set_stm.Exec(
_now(self), _key(key), _value(buf), _expires(self))
self.Debug("key %v set %v error: %v", key, string(buf), err)
return err
}
func (self *DiskLRU) Get(key string) (interface{}, error) {
var buf []byte
if self.opts.UpdateExpiryOnAccess {
err := self.get_update_expiry_stm.QueryRow(
_now(self), _key(key), _expires(self)).Scan(&buf)
if err != nil {
self.miss.Inc()
self.Debug("Get Key not found %v", key)
return nil, KeyNotFoundError
}
} else {
err := self.get_stm.QueryRow(_now(self), _key(key)).Scan(&buf)
if err != nil {
self.miss.Inc()
self.Debug("Get Key not found %v: %v", key, err)
return nil, KeyNotFoundError
}
}
self.hit.Inc()
self.Debug("Get Key %v: %v", key, string(buf))
return self.encoder.Decode(buf)
}
func (self *DiskLRU) Purge() error {
_, err := self.purge_stm.Exec()
return err
}
type CacheItem struct {
Key string
Value interface{}
}
func (self *DiskLRU) Items() (res []CacheItem) {
now := time.Now()
rows, err := self.handle.Query("SELECT key, value FROM cache")
if err != nil {
return
}
defer rows.Close()
for rows.Next() {
var key string
var buf []byte
err := rows.Scan(&key, &buf)
if err != nil {
continue
}
value, err := self.encoder.Decode(buf)
if err != nil {
continue
}
res = append(res, CacheItem{
Key: key,
Value: value,
})
}
self.Debug("Items call returned %v items in %v", len(res),
time.Now().Sub(now).Round(time.Millisecond).String())
return res
}
func (self *DiskLRU) Peek(key string) (interface{}, error) {
var buf []byte
err := self.peek_stm.QueryRow(_key(key)).Scan(&buf)
if err != nil {
return nil, err
}
return self.encoder.Decode(buf)
}
func (self *DiskLRU) SetEncoder(encoder Encoder) {
self.encoder = encoder
}
func (self *DiskLRU) Delete(key string) bool {
self.Debug("Delete key %v", key)
self.delete_stm.Exec(_key(key))
return false
}
func NewDiskLRU(
ctx context.Context, opts Options) (*DiskLRU, error) {
opts.UpdateDefaults()
handle, err := sql.Open("sqlite3", opts.Filename)
if err != nil {
return nil, err
}
sub_ctx, cancel := context.WithCancel(ctx)
self := &DiskLRU{
handle: handle,
encoder: JsonEncoder{},
opts: opts,
cancel: cancel,
}
err = self.initTables()
if err != nil {
return nil, err
}
self.set_stm, err = handle.Prepare(
`REPLACE INTO cache(key, value, expires, lastAccess)
VALUES (@key, @value, @expires, @now)`)
if err != nil {
return nil, err
}
self.get_stm, err = handle.Prepare(
`UPDATE OR IGNORE cache
SET lastAccess = @now
WHERE key = @key AND (expires > @now OR expires IS NULL)
RETURNING value`)
if err != nil {
return nil, err
}
self.get_update_expiry_stm, err = handle.Prepare(
`UPDATE OR IGNORE cache
SET lastAccess = @now, expires = @expires
WHERE key = @key AND (expires > @now OR expires IS NULL)
RETURNING value`)
if err != nil {
return nil, err
}
self.peek_stm, err = handle.Prepare(
`SELECT value FROM cache
WHERE key = @key`)
if err != nil {
return nil, err
}
self.delete_stm, err = handle.Prepare(
`DELETE FROM cache WHERE key = @key`)
if err != nil {
return nil, err
}
self.purge_stm, err = handle.Prepare(
`DELETE FROM cache`)
if err != nil {
return nil, err
}
self.clear_stm, err = handle.Prepare(`DELETE FROM cache`)
if err != nil {
return nil, err
}
self.cleanup_expires_stm, err = handle.Prepare(
`DELETE FROM cache WHERE expires < @now`)
if err != nil {
return nil, err
}
self.cleanup_lru_stm, err = handle.Prepare(
`DELETE FROM cache
WHERE key IN (
SELECT key FROM cache
ORDER BY lastAccess ASC
LIMIT MAX(0, (SELECT COUNT(*) - @maxItems FROM cache)))`)
if err != nil {
return nil, err
}
if opts.ClearOnStart {
self.clear_stm.Exec()
}
// Run the housekeep thread
go self.houseKeeping(sub_ctx)
return self, nil
}