forked from h2oai/wave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.go
135 lines (120 loc) · 2.88 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
// Copyright 2020 H2O.ai, Inc.
//
// 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 wave
import (
"bytes"
"io/ioutil"
"net/http"
"strings"
"sync"
)
// Shard represents a collection of key-value pairs.
type Shard struct {
sync.RWMutex
items map[string][]byte
}
// Cache represents a collection of shards.
type Cache struct {
sync.RWMutex
prefix string
shards map[string]*Shard
}
func newCache(prefix string) *Cache {
return &Cache{prefix: prefix, shards: make(map[string]*Shard)}
}
func (c *Cache) at(s string) *Shard {
c.RLock()
shard := c.shards[s]
c.RUnlock()
return shard
}
func (c *Cache) get(s, k string) ([]byte, bool) {
shard := c.at(s)
if shard == nil {
return nil, false
}
shard.RLock()
v, ok := shard.items[k]
shard.RUnlock()
return v, ok
}
func (c *Cache) keys(s string) ([]byte, bool) {
shard := c.at(s)
if shard == nil {
return nil, false
}
shard.RLock()
defer shard.RUnlock()
var b bytes.Buffer
for k := range shard.items {
b.WriteString(k)
b.WriteByte('\n')
}
return b.Bytes(), true
}
func (c *Cache) set(s, k string, v []byte) {
if shard := c.at(s); shard != nil {
shard.Lock()
shard.items[k] = v
shard.Unlock()
return
}
c.Lock()
c.shards[s] = &Shard{items: map[string][]byte{k: v}}
c.Unlock()
}
func (c *Cache) del(s, k string) {
if shard := c.at(s); shard != nil {
shard.Lock()
delete(shard.items, k)
shard.Unlock()
}
}
func (c *Cache) parse(url string) (string, string) {
p := strings.SplitN(strings.TrimPrefix(url, c.prefix), "/", 2) // "/_c/foo/bar/baz" -> "foo", "bar/baz"
if len(p) == 2 {
return p[0], p[1]
}
return p[0], ""
}
func (c *Cache) ServeHTTP(w http.ResponseWriter, r *http.Request) {
s, k := c.parse(r.URL.Path)
switch r.Method {
case http.MethodGet:
if len(k) > 0 {
if v, ok := c.get(s, k); ok {
w.Write(v)
return
}
} else {
if v, ok := c.keys(s); ok {
w.Write(v)
return
}
}
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
case http.MethodPut:
v, err := ioutil.ReadAll(r.Body) // XXX limit
if err != nil {
echo(Log{"t": "read cache request body", "error": err.Error()})
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
c.set(s, k, v)
case http.MethodDelete:
c.del(s, k)
default:
http.Error(w, http.StatusText(http.StatusMethodNotAllowed), http.StatusMethodNotAllowed)
}
}