forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dao.go
242 lines (205 loc) · 6.01 KB
/
dao.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
233
234
235
236
237
238
239
240
241
242
/*
* Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
// Package sql provides tools and DAOs for speaking SQL as well as managing tables migrations
package sql
import (
"database/sql"
"fmt"
"strings"
"sync"
"sync/atomic"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/dao"
)
var (
ErrNoRows = sql.ErrNoRows
)
// DAO interface definition
type DAO interface {
dao.DAO
DB() *sql.DB
Version() (string, error)
Prepare(string, interface{}) error
GetStmt(string, ...interface{}) (*sql.Stmt, error)
GetStmtWithArgs(string, ...interface{}) (*sql.Stmt, []interface{}, error)
UseExclusion()
Lock()
Unlock()
// Helper functions for expressions that can differ from one dao to another
Concat(...string) string
Hash(...string) string
}
// Handler for the main functions of the DAO
type Handler struct {
dao.DAO
helper Helper
stmts map[string]string
ifuncs map[string]func(DAO, ...interface{}) string // TODO - replace next with this
funcs map[string]func(DAO, ...string) string // Queries that need to be run before we get a statement
funcsWithArgs map[string]func(DAO, ...string) (string, []interface{})
prepared map[string]*sql.Stmt
preparedLock *sync.RWMutex
mu atomic.Value
replacer *strings.Replacer
}
func NewDAO(driver string, dsn string, prefix string) DAO {
conn, err := dao.NewConn(driver, dsn)
if err != nil {
return nil
}
helper, err := newHelper(driver)
if err != nil {
return nil
}
// Special case for sqlite, we use a mutex to simulate locking as sqlite's locking is not quite up to the task
var mu atomic.Value
if driver == "sqlite3" {
mu.Store(&sync.Mutex{})
}
return &Handler{
DAO: dao.NewDAO(conn, driver, prefix),
helper: helper,
stmts: make(map[string]string),
ifuncs: make(map[string]func(DAO, ...interface{}) string),
funcs: make(map[string]func(DAO, ...string) string),
funcsWithArgs: make(map[string]func(DAO, ...string) (string, []interface{})),
prepared: make(map[string]*sql.Stmt),
preparedLock: new(sync.RWMutex),
replacer: strings.NewReplacer("%%PREFIX%%", prefix, "%PREFIX%", prefix),
mu: mu,
}
}
func (h *Handler) Init(c common.ConfigValues) error {
return nil
}
// DB returns the sql DB object
func (h *Handler) DB() *sql.DB {
return h.GetConn().(*sql.DB)
}
// Version
func (h *Handler) Version() (string, error) {
// Here we check the version of mysql and the default charset
var version string
err := h.DB().QueryRow("SELECT VERSION()").Scan(&version)
switch {
case err == sql.ErrNoRows:
return "", fmt.Errorf("Could not retrieve mysql version")
case err != nil:
return "", err
}
return version, nil
}
// Prepare the statements that can be used by the DAO
func (h *Handler) Prepare(key string, query interface{}) error {
switch v := query.(type) {
case func(DAO, ...interface{}) string:
h.ifuncs[key] = v
case func(DAO, ...string) string:
h.funcs[key] = v
case func(DAO, ...string) (string, []interface{}):
h.funcsWithArgs[key] = v
case string:
v = h.replacer.Replace(v)
h.stmts[key] = v
}
return nil
}
func (h *Handler) addStmt(query string) (*sql.Stmt, error) {
stmt, err := h.DB().Prepare(query)
if err != nil {
return nil, err
}
if h.Driver() == "sqlite3" {
// We don't keep statements open with sqlite3
return stmt, nil
}
h.preparedLock.Lock()
defer h.preparedLock.Unlock()
h.prepared[query] = stmt
return stmt, nil
}
func (h *Handler) readStmt(query string) *sql.Stmt {
h.preparedLock.RLock()
defer h.preparedLock.RUnlock()
if stmt, ok := h.prepared[query]; ok {
return stmt
}
return nil
}
func (h *Handler) getStmt(query string) (*sql.Stmt, error) {
// fmt.Println(query)
if stmt := h.readStmt(query); stmt != nil {
return stmt, nil
}
return h.addStmt(query)
}
// GetStmt returns a list of all statements used by the dao
func (h *Handler) GetStmt(key string, args ...interface{}) (*sql.Stmt, error) {
if v, ok := h.stmts[key]; ok {
return h.getStmt(v)
}
if v, ok := h.ifuncs[key]; ok {
query := v(h, args...)
query = h.replacer.Replace(query)
return h.getStmt(query)
}
if v, ok := h.funcs[key]; ok {
var sArgs []string
for _, s := range args {
sArgs = append(sArgs, fmt.Sprintf("%v", s))
}
query := v(h, sArgs...)
query = h.replacer.Replace(query)
return h.getStmt(query)
}
return nil, fmt.Errorf("cannot find statement for key %s", key)
}
// GetStmt returns a list of all statements used by the dao
func (h *Handler) GetStmtWithArgs(key string, params ...interface{}) (*sql.Stmt, []interface{}, error) {
if v, ok := h.funcsWithArgs[key]; ok {
var sParams []string
for _, s := range params {
sParams = append(sParams, fmt.Sprintf("%v", s))
}
query, args := v(h, sParams...)
query = h.replacer.Replace(query)
stmt, err := h.getStmt(query)
return stmt, args, err
}
return nil, nil, fmt.Errorf("cannot find query for " + key)
}
func (h *Handler) UseExclusion() {
}
func (h *Handler) Lock() {
if current, ok := h.mu.Load().(*sync.Mutex); ok {
current.Lock()
}
}
func (h *Handler) Unlock() {
if current, ok := h.mu.Load().(*sync.Mutex); ok {
current.Unlock()
}
}
func (h *Handler) Concat(s ...string) string {
return h.helper.Concat(s...)
}
func (h *Handler) Hash(s ...string) string {
return h.helper.Hash(s...)
}