-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathapi_sqlite.go
79 lines (64 loc) · 1.38 KB
/
api_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
// +build !windows
// +build sqlite
package db
import (
"database/sql"
"sync"
_ "github.com/mattn/go-sqlite3"
)
type luaSQLite struct {
config *dbConfig
sync.Mutex
db *sql.DB
}
func init() {
RegisterDriver(`sqlite3`, &luaSQLite{})
}
var (
sharedSqlite = make(map[string]*luaSQLite, 0)
sharedSqliteLock = &sync.Mutex{}
)
func (sqlite *luaSQLite) constructor(config *dbConfig) (luaDB, error) {
sharedSqliteLock.Lock()
defer sharedSqliteLock.Unlock()
if config.sharedMode {
result, ok := sharedSqlite[config.connString]
if ok {
return result, nil
}
}
db, err := sql.Open(`sqlite3`, config.connString)
if err != nil {
return nil, err
}
db.SetMaxIdleConns(config.maxOpenConns)
db.SetMaxOpenConns(config.maxOpenConns)
result := &luaSQLite{config: config}
result.db = db
if config.sharedMode {
sharedSqlite[config.connString] = result
}
return result, nil
}
func (sqlite *luaSQLite) getDB() *sql.DB {
sqlite.Lock()
defer sqlite.Unlock()
return sqlite.db
}
func (sqlite *luaSQLite) getTXOptions() *sql.TxOptions {
return &sql.TxOptions{ReadOnly: sqlite.config.readOnly}
}
func (sqlite *luaSQLite) closeDB() error {
sqlite.Lock()
defer sqlite.Unlock()
err := sqlite.db.Close()
if err != nil {
return err
}
if sqlite.config.sharedMode {
sharedSqliteLock.Lock()
delete(sharedSqlite, sqlite.config.connString)
sharedSqliteLock.Unlock()
}
return nil
}