-
Notifications
You must be signed in to change notification settings - Fork 10
/
osm.go
289 lines (255 loc) · 6.34 KB
/
osm.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
package osm
// osm (Object Sql Mapping) 极简sql工具,支持MySQL和PostgreSQL。
import (
"database/sql"
"fmt"
"path"
"reflect"
"runtime"
"strconv"
"strings"
"time"
)
const (
dbTypeMysql = 0
dbTypePostgres = 1
dbTypeMssql = 2
)
type dbRunner interface {
Prepare(query string) (*sql.Stmt, error)
Exec(query string, args ...interface{}) (sql.Result, error)
Query(query string, args ...interface{}) (*sql.Rows, error)
QueryRow(query string, args ...interface{}) *sql.Row
}
type osmBase struct {
db dbRunner
dbType int
options *Options
}
// Osm 对象,通过Struct、Map、Array、value等对象以及Sql Map来操作数据库。可以开启事务。
type Osm struct {
osmBase
}
// Tx 与Osm对象一样,不过是在事务中进行操作
type Tx struct {
osmBase
}
// Options 连接选项和日志设置
type Options struct {
MaxIdleConns int
MaxOpenConns int
ConnMaxLifetime time.Duration
ConnMaxIdleTime time.Duration
// Warn日志
WarnLogger Logger
// Error日志
ErrorLogger Logger
// Info日志
InfoLogger Logger
// ShowSQL 显示执行的sql,用于调试,使用logger打印
ShowSQL bool
// SlowLogDuration 慢查询时间阈值
SlowLogDuration time.Duration
}
func (options *Options) tidy() {
if options.WarnLogger == nil {
options.WarnLogger = &DefaultLogger{}
}
if options.ErrorLogger == nil {
options.ErrorLogger = &DefaultLogger{}
}
if options.InfoLogger == nil {
options.InfoLogger = &DefaultLogger{}
}
if options.SlowLogDuration == 0 {
options.SlowLogDuration = 500 * time.Millisecond
}
}
// New 创建一个新的Osm,这个过程会打开数据库连接。
//
// driverName 是数据库驱动名称如"mysql".
// dataSource 是数据库连接信息如"root:root@/text?charset=utf8".
// options 是数据连接选项和日志设置
//
// 如:
//
// o, err := osm.New("mysql", "root:root@/text?charset=utf8", osm.Options{
// MaxIdleConns: 50,
// MaxOpenConns: 100,
// ConnMaxLifetime: 5 * time.Minute,
// ConnMaxIdleTime: 5 * time.Minute,
// WarnLogger: &WarnLoggor{errorLogger}, // Logger
// ErrorLogger: &ErrorLogger{errorLogger}, // Logger
// InfoLogger: &InfoLogger{infoLogger}, // Logger
// ShowSQL: true, // bool
// SlowLogDuration: 500 * time.Millisecond, // time.Duration
// })
func New(driverName, dataSource string, options Options) (*Osm, error) {
logPrefix := ""
_, file, lineNo, ok := runtime.Caller(1)
if ok {
fileName := path.Base(file)
logPrefix = fileName + ":" + strconv.Itoa(lineNo)
}
options.tidy()
osm := &Osm{
osmBase: osmBase{
options: &options,
},
}
db, err := sql.Open(driverName, dataSource)
if err != nil {
if db != nil {
db.Close()
}
return nil, fmt.Errorf("create osm error : %s", err.Error())
}
err = db.Ping()
if err != nil {
db.Close()
return nil, fmt.Errorf("create osm error : %s", err.Error())
}
go func() {
for {
err := db.Ping()
if err != nil {
osm.options.WarnLogger.Log(logPrefix+"osm Ping fail", map[string]string{"error": err.Error()})
}
time.Sleep(time.Minute)
}
}()
switch driverName {
case "postgres":
osm.dbType = dbTypePostgres
case "mssql":
osm.dbType = dbTypeMssql
default:
osm.dbType = dbTypeMysql
}
osm.db = db
if options.MaxIdleConns > 0 {
db.SetMaxIdleConns(options.MaxIdleConns)
}
if options.MaxOpenConns > 0 {
db.SetMaxOpenConns(options.MaxOpenConns)
}
if options.ConnMaxLifetime > 0 {
db.SetConnMaxLifetime(options.ConnMaxLifetime)
}
if options.ConnMaxIdleTime > 0 {
db.SetConnMaxIdleTime(options.ConnMaxIdleTime)
}
return osm, nil
}
// Begin 打开事务
//
// 如:
//
// tx, err := o.Begin()
func (o *Osm) Begin() (*Tx, error) {
tx := new(Tx)
tx.dbType = o.dbType
tx.options = o.options
if o.db == nil {
return nil, fmt.Errorf("db no opened")
}
sqlDb, ok := o.db.(*sql.DB)
if !ok {
return nil, fmt.Errorf("db no opened")
}
var err error
tx.db, err = sqlDb.Begin()
if err != nil {
return nil, err
}
return tx, nil
}
// Close 与数据库断开连接,释放连接资源
//
// 如:
//
// err := o.Close()
func (o *Osm) Close() error {
if o.db == nil {
return fmt.Errorf("db no opened")
}
sqlDb, ok := o.db.(*sql.DB)
if !ok {
return fmt.Errorf("db no opened")
}
o.db = nil
return sqlDb.Close()
}
// Commit 提交事务
//
// 如:
//
// err := tx.Commit()
func (o *Tx) Commit() error {
if o.db == nil {
return fmt.Errorf("tx no runing")
}
sqlTx, ok := o.db.(*sql.Tx)
if !ok {
return fmt.Errorf("tx no runing")
}
return sqlTx.Commit()
}
// Rollback 事务回滚
//
// 如:
//
// err := tx.Rollback()
func (o *Tx) Rollback() error {
if o.db == nil {
return fmt.Errorf("tx no runing")
}
sqlTx, ok := o.db.(*sql.Tx)
if !ok {
return fmt.Errorf("tx no runing")
}
return sqlTx.Rollback()
}
type sqlFragment struct {
content string
paramValue interface{}
paramValues []interface{}
isParam bool
isIn bool
}
func setDataToParamName(paramName *sqlFragment, v reflect.Value) {
if paramName.isIn {
v = reflect.ValueOf(v.Interface())
kind := v.Kind()
if kind == reflect.Array || kind == reflect.Slice {
for j := 0; j < v.Len(); j++ {
vv := v.Index(j)
if vv.Type().String() == "time.Time" {
paramName.paramValues = append(paramName.paramValues, timeFormat(vv.Interface().(time.Time), formatDateTime))
} else {
paramName.paramValues = append(paramName.paramValues, vv.Interface())
}
}
} else {
if v.Type().String() == "time.Time" {
paramName.paramValues = append(paramName.paramValues, timeFormat(v.Interface().(time.Time), formatDateTime))
} else {
paramName.paramValues = append(paramName.paramValues, v.Interface())
}
}
} else {
if v.Type().String() == "time.Time" {
paramName.paramValue = timeFormat(v.Interface().(time.Time), formatDateTime)
} else {
paramName.paramValue = v.Interface()
}
}
}
func sqlIsIn(lastSQLText string) bool {
lastSQLText = strings.TrimSpace(lastSQLText)
lenLastSQLText := len(lastSQLText)
if lenLastSQLText > 3 {
return strings.EqualFold(lastSQLText[lenLastSQLText-3:], " IN")
}
return false
}