-
Notifications
You must be signed in to change notification settings - Fork 180
/
sql.go
239 lines (195 loc) · 4.46 KB
/
sql.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
/*
* Copyright (c) 2019-2021. 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
import (
"bytes"
"context"
"errors"
migrate "github.com/rubenv/sql-migrate"
"github.com/pydio/cells/v4/common/dao"
"github.com/pydio/cells/v4/common/sql"
"github.com/pydio/cells/v4/common/utils/configx"
json "github.com/pydio/cells/v4/common/utils/jsonx"
"github.com/pydio/cells/v4/common/utils/statics"
)
type SQL struct {
dao dao.DAO
config configx.Values
watchers []*receiver
}
func New(ctx context.Context, driver string, dsn string, prefix string) (configx.Entrypoint, error) {
var d dao.DAO
var de error
switch driver {
case "mysql":
c, er := sql.NewDAO(ctx, driver, dsn, prefix)
if er != nil {
return nil, er
}
d, de = NewDAO(ctx, c)
case "sqlite3":
c, er := sql.NewDAO(ctx, driver, dsn, prefix)
if er != nil {
return nil, er
}
d, de = NewDAO(ctx, c)
}
if de != nil {
return nil, de
}
dc := configx.New()
if er := dc.Val("prepare").Set(true); er != nil {
return nil, er
}
if er := d.Init(ctx, dc); er != nil {
return nil, er
}
return &SQL{
dao: d,
}, nil
}
// Init handler for the SQL DAO
func (s *SQL) Init(ctx context.Context, options configx.Values) error {
migrations := &sql.FSMigrationSource{
Box: statics.AsFS(migrationsFS, "migrations"),
Dir: "./" + s.dao.Driver(),
TablePrefix: s.dao.Prefix(),
}
sqldao := s.dao.(sql.DAO)
_, err := sql.ExecMigration(sqldao.DB(), s.dao.Driver(), migrations, migrate.Up, s.dao.Prefix())
if err != nil {
return err
}
// Preparing the db statements
if options.Val("prepare").Default(true).Bool() {
for key, query := range queries {
if err := sqldao.Prepare(key, query); err != nil {
return err
}
}
}
return nil
}
func (s *SQL) Val(path ...string) configx.Values {
if s.config == nil {
s.Get()
}
return &wrappedConfig{s.config.Val(path...), s}
}
func (s *SQL) Get() configx.Value {
dao := s.dao.(DAO)
v := configx.New(configx.WithJSON())
b, err := dao.Get()
if err != nil {
v.Set(map[string]interface{}{})
}
v.Set(b)
s.config = v
return v
}
func (s *SQL) Set(data interface{}) error {
dao := s.dao.(DAO)
b, err := json.Marshal(data)
if err != nil {
return err
}
if err := dao.Set(b); err != nil {
return err
}
v := configx.New(configx.WithJSON())
v.Set(b)
s.config = v
s.update()
return nil
}
func (s *SQL) update() {
for _, w := range s.watchers {
v := s.Val(w.path...).Bytes()
select {
case w.updates <- v:
default:
}
}
}
func (s *SQL) Del() error {
return s.Set(nil)
}
func (s *SQL) Save(ctxUser, ctxMessage string) error {
return nil
}
func (s *SQL) Watch(oo ...configx.WatchOption) (configx.Receiver, error) {
opts := &configx.WatchOptions{}
for _, o := range oo {
o(opts)
}
r := &receiver{
exit: make(chan bool),
path: opts.Path,
value: s.Val(opts.Path...).Bytes(),
updates: make(chan []byte),
}
s.watchers = append(s.watchers, r)
return r, nil
}
type receiver struct {
exit chan bool
path []string
value []byte
updates chan []byte
}
func (r *receiver) Next() (interface{}, error) {
for {
select {
case <-r.exit:
return nil, errors.New("watcher stopped")
case v := <-r.updates:
if len(r.value) == 0 && len(v) == 0 {
continue
}
if bytes.Equal(r.value, v) {
continue
}
r.value = v
ret := configx.New(configx.WithJSON())
if err := ret.Set(v); err != nil {
return nil, err
}
return ret, nil
}
}
}
func (r *receiver) Stop() {
select {
case <-r.exit:
default:
close(r.exit)
}
}
type wrappedConfig struct {
configx.Values
s *SQL
}
func (w *wrappedConfig) Set(val interface{}) error {
err := w.Values.Set(val)
if err != nil {
return err
}
return w.s.Set(w.Values.Val("#").Map())
}