-
Notifications
You must be signed in to change notification settings - Fork 25
/
sql.go
200 lines (170 loc) · 4.41 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
// Copyright 2019 Yunion
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sqlchemy
import (
"database/sql"
"strings"
"yunion.io/x/log"
"yunion.io/x/pkg/errors"
)
// DBName is a type of string for name of database
type DBName string
// SDatabase represents a SQL database
type SDatabase struct {
db *sql.DB
name DBName
backend IBackend
}
// DefaultDB is the name for the default database instance
const DefaultDB = DBName("__default__")
// the global DB connection table
var _db_tbl = make(map[DBName]*SDatabase)
// Deprecated
// SetDB sets global DB instance
func SetDB(db *sql.DB) {
SetDefaultDB(db)
}
// SetDefaultDB save default global DB instance
func SetDefaultDB(db *sql.DB) {
SetDBWithNameBackend(db, DefaultDB, MySQLBackend)
}
// SetDBWithName sets a DB instance with given name
// param: name DBName
func SetDBWithNameBackend(db *sql.DB, name DBName, backend DBBackendName) {
_db_tbl[name] = &SDatabase{
name: name,
db: db,
backend: getBackend(backend),
}
}
// GetDB get DB instance
// Deprecated
func GetDB() *sql.DB {
return GetDefaultDB().db
}
// GetDefaultDB get the DB instance set by default
func GetDefaultDB() *SDatabase {
return GetDBWithName(DefaultDB)
}
// GetDBWithName returns the db instance with given name
func GetDBWithName(name DBName) *SDatabase {
if name == DefaultDB && len(_db_tbl) == 1 {
for _, db := range _db_tbl {
return db
}
}
if db, ok := _db_tbl[name]; ok {
return db
}
// panic(fmt.Sprintf("no such database %s", name))
return nil
}
type sDBReferer struct {
dbName DBName
_db_cache *SDatabase
}
func (r *sDBReferer) Database() *SDatabase {
if r._db_cache == nil {
r._db_cache = GetDBWithName(r.dbName)
}
return r._db_cache
}
func (r *sDBReferer) DBName() DBName {
return r.dbName
}
// CloseDB close DB connection
func CloseDB() {
names := make([]DBName, 0)
for n, db := range _db_tbl {
names = append(names, n)
db.db.Close()
}
for _, n := range names {
delete(_db_tbl, n)
}
}
type tableName struct {
Name string
}
// GetTables get all tables' name in default database
// Deprecated
func GetTables() []string {
return GetDefaultDB().GetTables()
}
// GetTables get all tables' name in database
func (db *SDatabase) GetTables() []string {
tables := make([]tableName, 0)
q := db.NewRawQuery(db.backend.GetTableSQL(), "name")
err := q.All(&tables)
if err != nil {
log.Errorf("show tables fail %s", err)
return nil
}
ret := make([]string, len(tables))
for i, t := range tables {
ret[i] = strings.ToLower(t.Name)
}
return ret
}
// Exec execute a raw SQL query for the default db instance
// Deprecated
func Exec(sql string, args ...interface{}) (sql.Result, error) {
return GetDefaultDB().Exec(sql, args...)
}
// Exec execute a raw SQL query for a db instance
func (db *SDatabase) Exec(sql string, args ...interface{}) (sql.Result, error) {
return db.db.Exec(sql, args...)
}
type SSqlResult struct {
Result sql.Result
Error error
}
func (db *SDatabase) TxBatchExec(sqlstr string, varsList [][]interface{}) ([]SSqlResult, error) {
tx, err := db.db.Begin()
if err != nil {
return nil, errors.Wrap(err, "Begin transaction")
}
defer tx.Rollback()
stmt, err := tx.Prepare(sqlstr)
if err != nil {
return nil, errors.Wrapf(err, "Prepare sql %s", SQLPrintf(sqlstr, varsList[0]))
}
defer stmt.Close()
results := make([]SSqlResult, len(varsList))
for i := range varsList {
vars := varsList[i]
result, err := stmt.Exec(vars...)
results[i] = SSqlResult{
Result: result,
Error: err,
}
}
err = tx.Commit()
if err != nil {
return nil, errors.Wrap(err, "Commit transaction")
}
return results, nil
}
func (db *SDatabase) TxExec(sqlstr string, vars ...interface{}) (sql.Result, error) {
results, err := db.TxBatchExec(sqlstr, [][]interface{}{
vars,
})
if err != nil {
return nil, errors.Wrap(err, "db.TxBatchExec")
}
return results[0].Result, results[0].Error
}
func (db *SDatabase) DB() *sql.DB {
return db.db
}