liuxiaolong
2020-05-13 aaa2b8f734e8a2f8cc4d57a8e8adfc2fe5da77d9
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
// Package db exposes a lightweight abstraction over the SQLite code.
// It performs some basic mapping of lower-level types to rqlite types.
package syncdb
 
import (
    "database/sql/driver"
    "expvar"
    "fmt"
    "io"
    "net/url"
    "strings"
    "time"
 
    "github.com/mattn/go-sqlite3"
)
 
const bkDelay = 250
 
const (
    fkChecks         = "PRAGMA foreign_keys"
    fkChecksEnabled  = "PRAGMA foreign_keys=ON"
    fkChecksDisabled = "PRAGMA foreign_keys=OFF"
 
    numExecutions      = "executions"
    numExecutionErrors = "execution_errors"
    numQueries         = "queries"
    numETx             = "execute_transactions"
    numQTx             = "query_transactions"
)
 
// DBVersion is the SQLite version.
var DBVersion string
 
// stats captures stats for the DB layer.
var stats *expvar.Map
 
func init() {
    DBVersion, _, _ = sqlite3.Version()
    stats = expvar.NewMap("db")
    stats.Add(numExecutions, 0)
    stats.Add(numExecutionErrors, 0)
    stats.Add(numQueries, 0)
    stats.Add(numETx, 0)
    stats.Add(numQTx, 0)
}
 
// Result represents the outcome of an operation that changes rows.
type Result struct {
    LastInsertID int64   `json:"last_insert_id,omitempty"`
    RowsAffected int64   `json:"rows_affected,omitempty"`
    Error        string  `json:"error,omitempty"`
    Time         float64 `json:"time,omitempty"`
}
 
// Rows represents the outcome of an operation that returns query data.
type Rows struct {
    Columns []string        `json:"columns,omitempty"`
    Types   []string        `json:"types,omitempty"`
    Values  [][]interface{} `json:"values,omitempty"`
    Error   string          `json:"error,omitempty"`
    Time    float64         `json:"time,omitempty"`
}
 
// DB is the SQL database.
type DB struct {
    path     string // Path to database file.
    dsnQuery string // DSN query params, if any.
    memory   bool   // In-memory only.
    fqdsn    string // Fully-qualified DSN for opening SQLite.
}
 
// New returns an instance of the database at path. If the database
// has already been created and opened, this database will share
// the data of that database when connected.
func New(path, dsnQuery string, memory bool) (*DB, error) {
    q, err := url.ParseQuery(dsnQuery)
    if err != nil {
        return nil, err
    }
    if memory {
        q.Set("mode", "memory")
        q.Set("cache", "shared")
    }
 
    if !strings.HasPrefix(path, "file:") {
        path = fmt.Sprintf("file:%s", path)
    }
 
    var fqdsn string
    if len(q) > 0 {
        fqdsn = fmt.Sprintf("%s?%s", path, q.Encode())
    } else {
        fqdsn = path
    }
 
    return &DB{
        path:     path,
        dsnQuery: dsnQuery,
        memory:   memory,
        fqdsn:    fqdsn,
    }, nil
}
 
// Connect returns a connection to the database.
func (d *DB) Connect() (*Conn, error) {
    drv := sqlite3.SQLiteDriver{}
    c, err := drv.Open(d.fqdsn)
    if err != nil {
        return nil, err
    }
 
    return &Conn{
        sqlite: c.(*sqlite3.SQLiteConn),
    }, nil
}
 
// Conn represents a connection to a database. Two Connection objects
// to the same database are READ_COMMITTED isolated.
type Conn struct {
    sqlite *sqlite3.SQLiteConn
}
 
// TransactionActive returns whether a transaction is currently active
// i.e. if the database is NOT in autocommit mode.
func (c *Conn) TransactionActive() bool {
    return !c.sqlite.AutoCommit()
}
 
// AbortTransaction aborts -- rolls back -- any active transaction. Calling code
// should know exactly what it is doing if it decides to call this function. It
// can be used to clean up any dangling state that may result from certain
// error scenarios.
func (c *Conn) AbortTransaction() error {
    _, err := c.Execute([]string{`ROLLBACK`}, false, false)
    return err
}
 
// Execute executes queries that modify the database.
func (c *Conn) Execute(queries []string, tx, xTime bool) ([]*Result, error) {
    stats.Add(numExecutions, int64(len(queries)))
    if tx {
        stats.Add(numETx, 1)
    }
 
    type Execer interface {
        Exec(query string, args []driver.Value) (driver.Result, error)
    }
 
    var allResults []*Result
    err := func() error {
        var execer Execer
        var rollback bool
        var t driver.Tx
        var err error
 
        // Check for the err, if set rollback.
        defer func() {
            if t != nil {
                if rollback {
                    t.Rollback()
                    return
                }
                t.Commit()
            }
        }()
 
        // handleError sets the error field on the given result. It returns
        // whether the caller should continue processing or break.
        handleError := func(result *Result, err error) bool {
            stats.Add(numExecutionErrors, 1)
 
            result.Error = err.Error()
            allResults = append(allResults, result)
            if tx {
                rollback = true // Will trigger the rollback.
                return false
            }
            return true
        }
 
        execer = c.sqlite
 
        // Create the correct execution object, depending on whether a
        // transaction was requested.
        if tx {
            t, err = c.sqlite.Begin()
            if err != nil {
                return err
            }
        }
 
        // Execute each query.
        for _, q := range queries {
            if q == "" {
                continue
            }
 
            result := &Result{}
            start := time.Now()
 
            r, err := execer.Exec(q, nil)
            if err != nil {
                if handleError(result, err) {
                    continue
                }
                break
            }
            if r == nil {
                continue
            }
 
            lid, err := r.LastInsertId()
            if err != nil {
                if handleError(result, err) {
                    continue
                }
                break
            }
            result.LastInsertID = lid
 
            ra, err := r.RowsAffected()
            if err != nil {
                if handleError(result, err) {
                    continue
                }
                break
            }
            result.RowsAffected = ra
            if xTime {
                result.Time = time.Now().Sub(start).Seconds()
            }
            allResults = append(allResults, result)
        }
 
        return nil
    }()
 
    return allResults, err
}
 
// Query executes queries that return rows, but don't modify the database.
func (c *Conn) Query(queries []string, tx, xTime bool) ([]*Rows, error) {
    stats.Add(numQueries, int64(len(queries)))
    if tx {
        stats.Add(numQTx, 1)
    }
 
    type Queryer interface {
        Query(query string, args []driver.Value) (driver.Rows, error)
    }
 
    var allRows []*Rows
    err := func() (err error) {
        var queryer Queryer
        var t driver.Tx
        defer func() {
            // XXX THIS DOESN'T ACTUALLY WORK! Might as WELL JUST COMMIT?
            if t != nil {
                if err != nil {
                    t.Rollback()
                    return
                }
                t.Commit()
            }
        }()
 
        queryer = c.sqlite
 
        // Create the correct query object, depending on whether a
        // transaction was requested.
        if tx {
            t, err = c.sqlite.Begin()
            if err != nil {
                return err
            }
        }
 
        for _, q := range queries {
            if q == "" {
                continue
            }
 
            rows := &Rows{}
            start := time.Now()
 
            rs, err := queryer.Query(q, nil)
            if err != nil {
                rows.Error = err.Error()
                allRows = append(allRows, rows)
                continue
            }
            defer rs.Close()
            columns := rs.Columns()
 
            rows.Columns = columns
            rows.Types = rs.(*sqlite3.SQLiteRows).DeclTypes()
            dest := make([]driver.Value, len(rows.Columns))
            for {
                err := rs.Next(dest)
                if err != nil {
                    if err != io.EOF {
                        rows.Error = err.Error()
                    }
                    break
                }
 
                values := normalizeRowValues(dest, rows.Types)
                rows.Values = append(rows.Values, values)
            }
            if xTime {
                rows.Time = time.Now().Sub(start).Seconds()
            }
            allRows = append(allRows, rows)
        }
 
        return nil
    }()
 
    return allRows, err
}
 
// EnableFKConstraints allows control of foreign key constraint checks.
func (c *Conn) EnableFKConstraints(e bool) error {
    q := fkChecksEnabled
    if !e {
        q = fkChecksDisabled
    }
    _, err := c.sqlite.Exec(q, nil)
    return err
}
 
// FKConstraints returns whether FK constraints are set or not.
func (c *Conn) FKConstraints() (bool, error) {
    r, err := c.sqlite.Query(fkChecks, nil)
    if err != nil {
        return false, err
    }
 
    dest := make([]driver.Value, len(r.Columns()))
    types := r.(*sqlite3.SQLiteRows).DeclTypes()
    if err := r.Next(dest); err != nil {
        return false, err
    }
 
    values := normalizeRowValues(dest, types)
    if values[0] == int64(1) {
        return true, nil
    }
    return false, nil
}
 
// Load loads the connected database from the database connected to src.
// It overwrites the data contained in this database. It is the caller's
// responsibility to ensure that no other connections to this database
// are accessed while this operation is in progress.
func (c *Conn) Load(src *Conn) error {
    return copyDatabase(c.sqlite, src.sqlite)
}
 
// Backup writes a snapshot of the database over the given database
// connection, erasing all the contents of the destination database.
// The consistency of the snapshot is READ_COMMITTED relative to any
// other connections currently open to this database. The caller must
// ensure that all connections to the destination database are not
// accessed during this operation.
func (c *Conn) Backup(dst *Conn) error {
    return copyDatabase(dst.sqlite, c.sqlite)
}
 
// Dump writes a snapshot of the database in SQL text format. The consistency
// of the snapshot is READ_COMMITTED relative to any other connections
// currently open to this database.
func (c *Conn) Dump(w io.Writer) error {
    if _, err := w.Write([]byte("PRAGMA foreign_keys=OFF;\nBEGIN TRANSACTION;\n")); err != nil {
        return err
    }
 
    // Get the schema.
    query := `SELECT "name", "type", "sql" FROM "sqlite_master"
              WHERE "sql" NOT NULL AND "type" == 'table' ORDER BY "name"`
    rows, err := c.Query([]string{query}, false, false)
    if err != nil {
        return err
    }
    row := rows[0]
    for _, v := range row.Values {
        table := v[0].(string)
        var stmt string
 
        if table == "sqlite_sequence" {
            stmt = `DELETE FROM "sqlite_sequence";`
        } else if table == "sqlite_stat1" {
            stmt = `ANALYZE "sqlite_master";`
        } else if strings.HasPrefix(table, "sqlite_") {
            continue
        } else {
            stmt = v[2].(string)
        }
 
        if _, err := w.Write([]byte(fmt.Sprintf("%s;\n", stmt))); err != nil {
            return err
        }
 
        tableIndent := strings.Replace(table, `"`, `""`, -1)
        query = fmt.Sprintf(`PRAGMA table_info("%s")`, tableIndent)
        r, err := c.Query([]string{query}, false, false)
        if err != nil {
            return err
        }
        var columnNames []string
        for _, w := range r[0].Values {
            columnNames = append(columnNames, fmt.Sprintf(`'||quote("%s")||'`, w[1].(string)))
        }
 
        query = fmt.Sprintf(`SELECT 'INSERT INTO "%s" VALUES(%s)' FROM "%s";`,
            tableIndent,
            strings.Join(columnNames, ","),
            tableIndent)
        r, err = c.Query([]string{query}, false, false)
        if err != nil {
            return err
        }
        for _, x := range r[0].Values {
            y := fmt.Sprintf("%s;\n", x[0].(string))
            if _, err := w.Write([]byte(y)); err != nil {
                return err
            }
        }
    }
 
    // Do indexes, triggers, and views.
    query = `SELECT "name", "type", "sql" FROM "sqlite_master"
              WHERE "sql" NOT NULL AND "type" IN ('index', 'trigger', 'view')`
    rows, err = c.Query([]string{query}, false, false)
    if err != nil {
        return err
    }
    row = rows[0]
    for _, v := range row.Values {
        if _, err := w.Write([]byte(fmt.Sprintf("%s;\n", v[2]))); err != nil {
            return err
        }
    }
 
    if _, err := w.Write([]byte("COMMIT;\n")); err != nil {
        return err
    }
 
    return nil
}
 
// Close closes the connection.
func (c *Conn) Close() error {
    if c != nil {
        return c.sqlite.Close()
    }
    return nil
}
 
func copyDatabase(dst *sqlite3.SQLiteConn, src *sqlite3.SQLiteConn) error {
    bk, err := dst.Backup("main", src, "main")
    if err != nil {
        return err
    }
 
    for {
        done, err := bk.Step(-1)
        if err != nil {
            bk.Finish()
            return err
        }
        if done {
            break
        }
        time.Sleep(bkDelay * time.Millisecond)
    }
 
    return bk.Finish()
}
 
// normalizeRowValues performs some normalization of values in the returned rows.
// Text values come over (from sqlite-go) as []byte instead of strings
// for some reason, so we have explicitly convert (but only when type
// is "text" so we don't affect BLOB types)
func normalizeRowValues(row []driver.Value, types []string) []interface{} {
    values := make([]interface{}, len(types))
    for i, v := range row {
        if isTextType(types[i]) {
            switch val := v.(type) {
            case []byte:
                values[i] = string(val)
            default:
                values[i] = val
            }
        } else {
            values[i] = v
        }
    }
    return values
}
 
// isTextType returns whether the given type has a SQLite text affinity.
// http://www.sqlite.org/datatype3.html
func isTextType(t string) bool {
    return t == "text" ||
        t == "json" ||
        t == "" ||
        strings.HasPrefix(t, "varchar") ||
        strings.HasPrefix(t, "varying character") ||
        strings.HasPrefix(t, "nchar") ||
        strings.HasPrefix(t, "native character") ||
        strings.HasPrefix(t, "nvarchar") ||
        strings.HasPrefix(t, "clob")
}