-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkvstore.go
178 lines (149 loc) · 5 KB
/
kvstore.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
package minidb
import (
"database/sql"
"time"
)
// ------------------------------------------------------------------------------
// Key-Value Store
// ------------------------------------------------------------------------------
// GetInt returns the int64 value for a key, 0 if key doesn't exist.
func (db *MDB) GetInt(key int64) int64 {
row := db.base.QueryRow(`SELECT Value FROM _KVINT WHERE Id=?`, key)
var intResult sql.NullInt64
err := row.Scan(&intResult)
if err != nil || !intResult.Valid {
return 0
}
return intResult.Int64
}
func (db *MDB) fetchStr(key int64, store string) string {
row := db.base.QueryRow(`SELECT Value FROM `+store+` WHERE Id=?`, key)
var strResult sql.NullString
err := row.Scan(&strResult)
if err != nil || !strResult.Valid {
return ""
}
return strResult.String
}
// GetStr returns the string value for a key, "" if key doesn't exist.
func (db *MDB) GetStr(key int64) string {
return db.fetchStr(key, "_KVSTR")
}
// GetBlob returns the blob value for a key, nil if key doesn't exist.
func (db *MDB) GetBlob(key int64) []byte {
return []byte(db.fetchStr(key, "_KVBLOB"))
}
// GetDate returns the time.Time value of a, January 1, year 1, 00:00:00.000000000 UTC
// if the key doesn't exist.
func (db *MDB) GetDate(key int64) time.Time {
s := db.fetchStr(key, "_KVDATE")
t, err := ParseTime(s)
if err != nil {
return time.Time{}
}
return t
}
// GetDateStr returns a date in RFC3339 string form, the empty string if the key doesn't exist.
func (db *MDB) GetDateStr(key int64) string {
return db.fetchStr(key, "_KVDATE")
}
// SetInt stores an int64 value by key.
func (tx *Tx) SetInt(key int64, value int64) {
tx.tx.Exec("DELETE FROM _KVINT WHERE Id=?", key)
tx.tx.Exec("INSERT INTO _KVINT (Id, Value) VALUES (?, ?)", key, value)
}
func (tx *Tx) setStrValue(store string, key int64, value string) {
tx.tx.Exec("DELETE FROM "+store+" WHERE Id=?", key)
tx.tx.Exec("INSERT INTO "+store+" (Id, Value) VALUES (?, ?)", key, value)
}
// SetStr stores a string value by key.
func (tx *Tx) SetStr(key int64, value string) {
tx.setStrValue("_KVSTR", key, value)
}
// SetBlob stores a byte array by key.
func (tx *Tx) SetBlob(key int64, value []byte) {
tx.setStrValue("_KVBLOB", key, string(value))
}
// SetDate stores a time.Time value by key.
func (tx *Tx) SetDate(key int64, value time.Time) {
tx.setStrValue("_KVDATE", key, value.UTC().Format(time.RFC3339))
}
// SetDateStr stores a datetime in RFC3339 format by key. The correctness of the string is not validated.
// Use this function in combination with GetDateStr to prevent unnecessary conversions.
func (tx *Tx) SetDateStr(key int64, value string) {
tx.setStrValue("_KVDATE", key, value)
}
func (db *MDB) hasKey(key int64, store string) bool {
var result int
err := db.base.QueryRow(`SELECT EXISTS (SELECT 1 FROM `+store+` WHERE Id=?);`, key).Scan(&result)
if err != nil {
return false
}
return true
}
// HasInt returns true if an int value is stored for the key, false otherwise.
func (db *MDB) HasInt(key int64) bool {
return db.hasKey(key, "_KVINT")
}
// HasStr returns true of a string value is stored for the key, false otherwise.
func (db *MDB) HasStr(key int64) bool {
return db.hasKey(key, "_KVSTR")
}
// HasBlob returns true if a byte array value is stored for the key, false otherwise.
func (db *MDB) HasBlob(key int64) bool {
return db.hasKey(key, "_KVBLOB")
}
// HasDate returns true if a time.Time value is stored for the key, false otherwise.
func (db *MDB) HasDate(key int64) bool {
return db.hasKey(key, "_KVDATE")
}
func (tx *Tx) deleteKV(key int64, store string) {
tx.tx.Exec(`DELETE FROM `+store+` WHERE Id=?;`, key)
}
// DeleteInt deletes the key and int value for given key. It has no effect if the key-value pair doesn't exist.
func (tx *Tx) DeleteInt(key int64) {
tx.deleteKV(key, "_KVINT")
}
// DeleteStr deletes the key and string value for given key. It has no effect if the key-value pair doesn't exist.
func (tx *Tx) DeleteStr(key int64) {
tx.deleteKV(key, "_KVSTR")
}
// DeleteBlob deletes the key and string for given key. It has no effect if the key-value pair doesn't exist.
func (tx *Tx) DeleteBlob(key int64) {
tx.deleteKV(key, "_KVBLOB")
}
// DeleteDate deletes the key and date value for given key. It has no effect if the key-value pair doesn't exist.
func (tx *Tx) DeleteDate(key int64) {
tx.deleteKV(key, "_KVDATE")
}
func (db *MDB) listKV(store string) []int64 {
result := make([]int64, 0)
rows, err := db.base.Query(`SELECT Id FROM ` + store)
defer rows.Close()
if err != nil {
return result
}
for rows.Next() {
var n int64
if err := rows.Scan(&n); err == nil {
result = append(result, n)
}
}
return result
}
// ListInt lists all int keys.
func (db *MDB) ListInt() []int64 {
return db.listKV("_KVINT")
}
// ListStr lists all string keys.
func (db *MDB) ListStr() []int64 {
return db.listKV("_KVSTR")
}
// ListBlob lists all blob keys.
func (db *MDB) ListBlob() []int64 {
return db.listKV("_KVBLOB")
}
// ListDate lists all date keys.
func (db *MDB) ListDate() []int64 {
return db.listKV("_KVDATE")
}