forked from gobuffalo/pop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialect_sqlite.go
284 lines (243 loc) · 7.06 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
// +build sqlite
package pop
import (
"fmt"
"io"
"net/url"
"os"
"os/exec"
"path/filepath"
"strings"
"sync"
"time"
"github.com/gobuffalo/fizz"
"github.com/gobuffalo/fizz/translators"
_ "github.com/mattn/go-sqlite3" // Load SQLite3 CGo driver
"github.com/pkg/errors"
"github.com/gobuffalo/pop/v5/columns"
"github.com/gobuffalo/pop/v5/internal/defaults"
"github.com/gobuffalo/pop/v5/logging"
)
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 (m *sqlite) Name() 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(s store, model *Model, cols columns.Columns) error {
return m.locker(m.smGil, func() error {
keyType := model.PrimaryKeyType()
switch keyType {
case "int", "int64":
var id int64
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()))
}
log(logging.SQL, query)
res, err := s.NamedExec(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
}
return errors.Wrap(genericCreate(s, model, cols, m), "sqlite create")
})
}
func (m *sqlite) Update(s store, model *Model, cols columns.Columns) error {
return m.locker(m.smGil, func() error {
return errors.Wrap(genericUpdate(s, model, cols, m), "sqlite update")
})
}
func (m *sqlite) Destroy(s store, model *Model) error {
return m.locker(m.smGil, func() error {
return errors.Wrap(genericDestroy(s, model, m), "sqlite destroy")
})
}
func (m *sqlite) SelectOne(s store, model *Model, query Query) error {
return m.locker(m.smGil, func() error {
return errors.Wrap(genericSelectOne(s, model, query), "sqlite select one")
})
}
func (m *sqlite) SelectMany(s store, models *Model, query Query) error {
return m.locker(m.smGil, func() error {
return errors.Wrap(genericSelectMany(s, models, query), "sqlite select many")
})
}
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().Options["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 {
_, err := os.Stat(m.ConnectionDetails.Database)
if err == nil {
return errors.Errorf("could not create SQLite database '%s'; database exists", m.ConnectionDetails.Database)
}
dir := filepath.Dir(m.ConnectionDetails.Database)
err = os.MkdirAll(dir, 0766)
if err != nil {
return errors.Wrapf(err, "could not create SQLite database '%s'", m.ConnectionDetails.Database)
}
_, err = os.Create(m.ConnectionDetails.Database)
if err != nil {
return errors.Wrapf(err, "could not create SQLite database '%s'", m.ConnectionDetails.Database)
}
log(logging.Info, "created database '%s'", m.ConnectionDetails.Database)
return nil
}
func (m *sqlite) DropDB() error {
err := os.Remove(m.ConnectionDetails.Database)
if err != nil {
return errors.Wrapf(err, "could not drop SQLite database %s", m.ConnectionDetails.Database)
}
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) {
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 errors.Wrapf(err, "unable to parse sqlite query")
}
if cd.Options == nil { // prevent panic
cd.Options = make(map[string]string)
}
for k := range q {
cd.Options[k] = q.Get(k)
}
return nil
}
func finalizerSQLite(cd *ConnectionDetails) {
defs := map[string]string{
"_busy_timeout": "5000",
}
forced := map[string]string{
"_fk": "true",
}
if cd.Options == nil { // prevent panic
cd.Options = make(map[string]string)
}
for k, v := range defs {
cd.Options[k] = defaults.String(cd.Options[k], v)
}
for k, v := range forced {
// respect user specified options but print warning!
cd.Options[k] = defaults.String(cd.Options[k], v)
if cd.Options[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.Options[k])
log(logging.Warn, "It is highly recommended to remove '%v: %v' option from your config!", k, cd.Options[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?
}
}