-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
dialect_sqlite.go
354 lines (307 loc) · 8.53 KB
/
dialect_sqlite.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
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
package pop
import (
"database/sql"
"database/sql/driver"
"errors"
"fmt"
"io"
"net/url"
"os"
"os/exec"
"path/filepath"
"strings"
"sync"
"time"
"github.com/gobuffalo/fizz"
"github.com/gobuffalo/fizz/translators"
"github.com/gobuffalo/pop/v6/columns"
"github.com/gobuffalo/pop/v6/internal/defaults"
"github.com/gobuffalo/pop/v6/logging"
"github.com/jmoiron/sqlx"
)
const nameSQLite3 = "sqlite3"
func init() {
AvailableDialects = append(AvailableDialects, nameSQLite3)
dialectSynonyms["sqlite"] = nameSQLite3
urlParser[nameSQLite3] = urlParserSQLite3
newConnection[nameSQLite3] = newSQLite
finalizer[nameSQLite3] = finalizerSQLite
}
var _ dialect = &sqlite{}
type sqlite struct {
commonDialect
gil *sync.Mutex
smGil *sync.Mutex
}
func requireSQLite3() error {
for _, driverName := range sql.Drivers() {
if driverName == nameSQLite3 {
return nil
}
}
return errors.New("sqlite3 support was not compiled into the binary")
}
func (m *sqlite) Name() string {
return nameSQLite3
}
func (m *sqlite) DefaultDriver() string {
return nameSQLite3
}
func (m *sqlite) Details() *ConnectionDetails {
return m.ConnectionDetails
}
func (m *sqlite) URL() string {
c := m.ConnectionDetails
return c.Database + "?" + c.OptionsString("")
}
func (m *sqlite) MigrationURL() string {
return m.ConnectionDetails.URL
}
func (m *sqlite) Create(c *Connection, model *Model, cols columns.Columns) error {
return m.locker(m.smGil, func() error {
keyType, err := model.PrimaryKeyType()
if err != nil {
return err
}
switch keyType {
case "int", "int64":
var id int64
cols.Remove(model.IDField())
w := cols.Writeable()
var query string
if len(w.Cols) > 0 {
query = fmt.Sprintf("INSERT INTO %s (%s) VALUES (%s)", m.Quote(model.TableName()), w.QuotedString(m), w.SymbolizedString())
} else {
query = fmt.Sprintf("INSERT INTO %s DEFAULT VALUES", m.Quote(model.TableName()))
}
txlog(logging.SQL, c, query, model.Value)
res, err := c.Store.NamedExecContext(model.ctx, query, model.Value)
if err != nil {
return err
}
id, err = res.LastInsertId()
if err == nil {
model.setID(id)
}
if err != nil {
return err
}
return nil
}
if err := genericCreate(c, model, cols, m); err != nil {
return fmt.Errorf("sqlite create: %w", err)
}
return nil
})
}
func (m *sqlite) Update(c *Connection, model *Model, cols columns.Columns) error {
return m.locker(m.smGil, func() error {
if err := genericUpdate(c, model, cols, m); err != nil {
return fmt.Errorf("sqlite update: %w", err)
}
return nil
})
}
func (m *sqlite) UpdateQuery(c *Connection, model *Model, cols columns.Columns, query Query) (int64, error) {
rowsAffected := int64(0)
err := m.locker(m.smGil, func() error {
if n, err := genericUpdateQuery(c, model, cols, m, query, sqlx.QUESTION); err != nil {
rowsAffected = n
return fmt.Errorf("sqlite update query: %w", err)
} else {
rowsAffected = n
return nil
}
})
return rowsAffected, err
}
func (m *sqlite) Destroy(c *Connection, model *Model) error {
return m.locker(m.smGil, func() error {
if err := genericDestroy(c, model, m); err != nil {
return fmt.Errorf("sqlite destroy: %w", err)
}
return nil
})
}
func (m *sqlite) Delete(c *Connection, model *Model, query Query) error {
return genericDelete(c, model, query)
}
func (m *sqlite) SelectOne(c *Connection, model *Model, query Query) error {
return m.locker(m.smGil, func() error {
if err := genericSelectOne(c, model, query); err != nil {
return fmt.Errorf("sqlite select one: %w", err)
}
return nil
})
}
func (m *sqlite) SelectMany(c *Connection, models *Model, query Query) error {
return m.locker(m.smGil, func() error {
if err := genericSelectMany(c, models, query); err != nil {
return fmt.Errorf("sqlite select many: %w", err)
}
return nil
})
}
func (m *sqlite) Lock(fn func() error) error {
return m.locker(m.gil, fn)
}
func (m *sqlite) locker(l *sync.Mutex, fn func() error) error {
if defaults.String(m.Details().option("lock"), "true") == "true" {
defer l.Unlock()
l.Lock()
}
err := fn()
attempts := 0
for err != nil && err.Error() == "database is locked" && attempts <= m.Details().RetryLimit() {
time.Sleep(m.Details().RetrySleep())
err = fn()
attempts++
}
return err
}
func (m *sqlite) CreateDB() error {
durl := m.ConnectionDetails.Database
// Checking whether the url specifies in-memory mode
// as specified in https://github.com/mattn/go-sqlite3#faq
if strings.Contains(durl, ":memory:") || strings.Contains(durl, "mode=memory") {
log(logging.Info, "in memory db selected, no database file created.")
return nil
}
_, err := os.Stat(durl)
if err == nil {
return fmt.Errorf("could not create SQLite database '%s'; database exists", durl)
}
dir := filepath.Dir(durl)
err = os.MkdirAll(dir, 0766)
if err != nil {
return fmt.Errorf("could not create SQLite database '%s': %w", durl, err)
}
f, err := os.Create(durl)
if err != nil {
return fmt.Errorf("could not create SQLite database '%s': %w", durl, err)
}
_ = f.Close()
log(logging.Info, "created database '%s'", durl)
return nil
}
func (m *sqlite) DropDB() error {
err := os.Remove(m.ConnectionDetails.Database)
if err != nil {
return fmt.Errorf("could not drop SQLite database %s: %w", m.ConnectionDetails.Database, err)
}
log(logging.Info, "dropped database '%s'", m.ConnectionDetails.Database)
return nil
}
func (m *sqlite) TranslateSQL(sql string) string {
return sql
}
func (m *sqlite) FizzTranslator() fizz.Translator {
return translators.NewSQLite(m.Details().Database)
}
func (m *sqlite) DumpSchema(w io.Writer) error {
cmd := exec.Command("sqlite3", m.Details().Database, ".schema")
return genericDumpSchema(m.Details(), cmd, w)
}
func (m *sqlite) LoadSchema(r io.Reader) error {
cmd := exec.Command("sqlite3", m.ConnectionDetails.Database)
in, err := cmd.StdinPipe()
if err != nil {
return err
}
go func() {
defer in.Close()
io.Copy(in, r)
}()
log(logging.SQL, strings.Join(cmd.Args, " "))
err = cmd.Start()
if err != nil {
return err
}
err = cmd.Wait()
if err != nil {
return err
}
log(logging.Info, "loaded schema for %s", m.Details().Database)
return nil
}
func (m *sqlite) TruncateAll(tx *Connection) error {
const tableNames = `SELECT name FROM sqlite_master WHERE type = "table"`
names := []struct {
Name string `db:"name"`
}{}
err := tx.RawQuery(tableNames).All(&names)
if err != nil {
return err
}
if len(names) == 0 {
return nil
}
stmts := []string{}
for _, n := range names {
stmts = append(stmts, fmt.Sprintf("DELETE FROM %s", m.Quote(n.Name)))
}
return tx.RawQuery(strings.Join(stmts, "; ")).Exec()
}
func newSQLite(deets *ConnectionDetails) (dialect, error) {
err := requireSQLite3()
if err != nil {
return nil, err
}
deets.URL = fmt.Sprintf("sqlite3://%s", deets.Database)
cd := &sqlite{
gil: &sync.Mutex{},
smGil: &sync.Mutex{},
commonDialect: commonDialect{ConnectionDetails: deets},
}
return cd, nil
}
func urlParserSQLite3(cd *ConnectionDetails) error {
db := strings.TrimPrefix(cd.URL, "sqlite://")
db = strings.TrimPrefix(db, "sqlite3://")
dbparts := strings.Split(db, "?")
cd.Database = dbparts[0]
if len(dbparts) != 2 {
return nil
}
q, err := url.ParseQuery(dbparts[1])
if err != nil {
return fmt.Errorf("unable to parse sqlite query: %w", err)
}
for k := range q {
cd.setOption(k, q.Get(k))
}
return nil
}
func finalizerSQLite(cd *ConnectionDetails) {
defs := map[string]string{
"_busy_timeout": "5000",
}
forced := map[string]string{
"_fk": "true",
}
for k, def := range defs {
cd.setOptionWithDefault(k, cd.option(k), def)
}
for k, v := range forced {
// respect user specified options but print warning!
cd.setOptionWithDefault(k, cd.option(k), v)
if cd.option(k) != v { // when user-defined option exists
log(logging.Warn, "IMPORTANT! '%s: %s' option is required to work properly but your current setting is '%v: %v'.", k, v, k, cd.option(k))
log(logging.Warn, "It is highly recommended to remove '%v: %v' option from your config!", k, cd.option(k))
} // or override with `cd.Options[k] = v`?
if cd.URL != "" && !strings.Contains(cd.URL, k+"="+v) {
log(logging.Warn, "IMPORTANT! '%s=%s' option is required to work properly. Please add it to the database URL in the config!", k, v)
} // or fix user specified url?
}
}
func newSQLiteDriver() (driver.Driver, error) {
err := requireSQLite3()
if err != nil {
return nil, err
}
db, err := sql.Open(nameSQLite3, ":memory:?cache=newSQLiteDriver_temporary")
if err != nil {
return nil, err
}
return db.Driver(), db.Close()
}