File size: 10,310 Bytes
530729e |
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 |
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package db
import (
"database/sql"
"fmt"
"regexp"
"strconv"
"strings"
"github.com/GoAdminGroup/go-admin/modules/config"
)
// Mssql is a Connection of mssql.
type Mssql struct {
Base
}
// GetMssqlDB return the global mssql connection.
func GetMssqlDB() *Mssql {
return &Mssql{
Base: Base{
DbList: make(map[string]*sql.DB),
},
}
}
// GetDelimiter implements the method Connection.GetDelimiter.
func (db *Mssql) GetDelimiter() string {
return "["
}
// GetDelimiter2 implements the method Connection.GetDelimiter2.
func (db *Mssql) GetDelimiter2() string {
return "]"
}
// GetDelimiters implements the method Connection.GetDelimiters.
func (db *Mssql) GetDelimiters() []string {
return []string{"[", "]"}
}
// Name implements the method Connection.Name.
func (db *Mssql) Name() string {
return "mssql"
}
// TODO: 整理优化
func replaceStringFunc(pattern, src string, rpl func(s string) string) (string, error) {
r, err := regexp.Compile(pattern)
if err != nil {
return "", err
}
bytes := r.ReplaceAllFunc([]byte(src), func(bytes []byte) []byte {
return []byte(rpl(string(bytes)))
})
return string(bytes), nil
}
func replace(pattern string, replace, src []byte) ([]byte, error) {
r, err := regexp.Compile(pattern)
if err != nil {
return nil, err
}
return r.ReplaceAll(src, replace), nil
}
func replaceString(pattern, rep, src string) (string, error) {
r, e := replace(pattern, []byte(rep), []byte(src))
return string(r), e
}
func matchAllString(pattern string, src string) ([][]string, error) {
r, err := regexp.Compile(pattern)
if err != nil {
return nil, err
}
return r.FindAllStringSubmatch(src, -1), nil
}
func isMatch(pattern string, src []byte) bool {
r, err := regexp.Compile(pattern)
if err != nil {
return false
}
return r.Match(src)
}
func isMatchString(pattern string, src string) bool {
return isMatch(pattern, []byte(src))
}
func matchString(pattern string, src string) ([]string, error) {
r, err := regexp.Compile(pattern)
if err != nil {
return nil, err
}
return r.FindStringSubmatch(src), nil
}
// 从Gf框架复制
// 在执行sql之前对sql进行进一步处理
func (db *Mssql) handleSqlBeforeExec(query string) string {
index := 0
str, _ := replaceStringFunc("\\?", query, func(s string) string {
index++
return fmt.Sprintf("@p%d", index)
})
str, _ = replaceString("\"", "", str)
return db.parseSql(str)
}
//将MYSQL的SQL语法转换为MSSQL的语法
//1.由于mssql不支持limit写法所以需要对mysql中的limit用法做转换
func (db *Mssql) parseSql(sql string) string {
//下面的正则表达式匹配出SELECT和INSERT的关键字后分别做不同的处理,如有LIMIT则将LIMIT的关键字也匹配出
patten := `^\s*(?i)(SELECT)|(LIMIT\s*(\d+)\s*,\s*(\d+))`
if !isMatchString(patten, sql) {
//fmt.Println("not matched..")
return sql
}
res, err := matchAllString(patten, sql)
if err != nil {
//fmt.Println("MatchString error.", err)
return ""
}
index := 0
keyword := strings.TrimSpace(res[index][0])
keyword = strings.ToUpper(keyword)
index++
switch keyword {
case "SELECT":
//不含LIMIT关键字则不处理
if len(res) < 2 || (!strings.HasPrefix(res[index][0], "LIMIT") && !strings.HasPrefix(res[index][0], "limit")) {
break
}
//不含LIMIT则不处理
if !isMatchString("((?i)SELECT)(.+)((?i)LIMIT)", sql) {
break
}
//判断SQL中是否含有order by
selectStr := ""
orderbyStr := ""
haveOrderby := isMatchString("((?i)SELECT)(.+)((?i)ORDER BY)", sql)
if haveOrderby {
//取order by 前面的字符串
queryExpr, _ := matchString("((?i)SELECT)(.+)((?i)ORDER BY)", sql)
if len(queryExpr) != 4 || !strings.EqualFold(queryExpr[1], "SELECT") || !strings.EqualFold(queryExpr[3], "ORDER BY") {
break
}
selectStr = queryExpr[2]
//取order by表达式的值
orderbyExpr, _ := matchString("((?i)ORDER BY)(.+)((?i)LIMIT)", sql)
if len(orderbyExpr) != 4 || !strings.EqualFold(orderbyExpr[1], "ORDER BY") || !strings.EqualFold(orderbyExpr[3], "LIMIT") {
break
}
orderbyStr = orderbyExpr[2]
} else {
queryExpr, _ := matchString("((?i)SELECT)(.+)((?i)LIMIT)", sql)
if len(queryExpr) != 4 || !strings.EqualFold(queryExpr[1], "SELECT") || !strings.EqualFold(queryExpr[3], "LIMIT") {
break
}
selectStr = queryExpr[2]
}
//取limit后面的取值范围
first, limit := 0, 0
for i := 1; i < len(res[index]); i++ {
if strings.TrimSpace(res[index][i]) == "" {
continue
}
if strings.HasPrefix(res[index][i], "LIMIT") || strings.HasPrefix(res[index][i], "limit") {
first, _ = strconv.Atoi(res[index][i+1])
limit, _ = strconv.Atoi(res[index][i+2])
break
}
}
if haveOrderby {
sql = fmt.Sprintf("SELECT * FROM (SELECT ROW_NUMBER() OVER (ORDER BY %s) as ROWNUMBER_, %s ) as TMP_ WHERE TMP_.ROWNUMBER_ > %d AND TMP_.ROWNUMBER_ <= %d", orderbyStr, selectStr, first, limit)
} else {
if first == 0 {
first = limit
} else {
first = limit - first
}
sql = fmt.Sprintf("SELECT * FROM (SELECT TOP %d * FROM (SELECT TOP %d %s) as TMP1_ ) as TMP2_ ", first, limit, selectStr)
}
default:
}
return sql
}
// QueryWithConnection implements the method Connection.QueryWithConnection.
func (db *Mssql) QueryWithConnection(con string, query string, args ...interface{}) ([]map[string]interface{}, error) {
query = db.handleSqlBeforeExec(query)
return CommonQuery(db.DbList[con], query, args...)
}
// ExecWithConnection implements the method Connection.ExecWithConnection.
func (db *Mssql) ExecWithConnection(con string, query string, args ...interface{}) (sql.Result, error) {
query = db.handleSqlBeforeExec(query)
return CommonExec(db.DbList[con], query, args...)
}
// Query implements the method Connection.Query.
func (db *Mssql) Query(query string, args ...interface{}) ([]map[string]interface{}, error) {
query = db.handleSqlBeforeExec(query)
return CommonQuery(db.DbList["default"], query, args...)
}
// Exec implements the method Connection.Exec.
func (db *Mssql) Exec(query string, args ...interface{}) (sql.Result, error) {
query = db.handleSqlBeforeExec(query)
return CommonExec(db.DbList["default"], query, args...)
}
func (db *Mssql) QueryWith(tx *sql.Tx, conn, query string, args ...interface{}) ([]map[string]interface{}, error) {
if tx != nil {
return db.QueryWithTx(tx, query, args...)
}
return db.QueryWithConnection(conn, query, args...)
}
func (db *Mssql) ExecWith(tx *sql.Tx, conn, query string, args ...interface{}) (sql.Result, error) {
if tx != nil {
return db.ExecWithTx(tx, query, args...)
}
return db.ExecWithConnection(conn, query, args...)
}
// InitDB implements the method Connection.InitDB.
func (db *Mssql) InitDB(cfgs map[string]config.Database) Connection {
db.Configs = cfgs
db.Once.Do(func() {
for conn, cfg := range cfgs {
sqlDB, err := sql.Open("sqlserver", cfg.GetDSN())
if sqlDB == nil {
panic("invalid connection")
}
if err != nil {
_ = sqlDB.Close()
panic(err.Error())
}
sqlDB.SetMaxIdleConns(cfg.MaxIdleConns)
sqlDB.SetMaxOpenConns(cfg.MaxOpenConns)
sqlDB.SetConnMaxLifetime(cfg.ConnMaxLifetime)
sqlDB.SetConnMaxIdleTime(cfg.ConnMaxIdleTime)
db.DbList[conn] = sqlDB
if err := sqlDB.Ping(); err != nil {
panic(err)
}
}
})
return db
}
// BeginTxWithReadUncommitted starts a transaction with level LevelReadUncommitted.
func (db *Mssql) BeginTxWithReadUncommitted() *sql.Tx {
return CommonBeginTxWithLevel(db.DbList["default"], sql.LevelReadUncommitted)
}
// BeginTxWithReadCommitted starts a transaction with level LevelReadCommitted.
func (db *Mssql) BeginTxWithReadCommitted() *sql.Tx {
return CommonBeginTxWithLevel(db.DbList["default"], sql.LevelReadCommitted)
}
// BeginTxWithRepeatableRead starts a transaction with level LevelRepeatableRead.
func (db *Mssql) BeginTxWithRepeatableRead() *sql.Tx {
return CommonBeginTxWithLevel(db.DbList["default"], sql.LevelRepeatableRead)
}
// BeginTx starts a transaction with level LevelDefault.
func (db *Mssql) BeginTx() *sql.Tx {
return CommonBeginTxWithLevel(db.DbList["default"], sql.LevelDefault)
}
// BeginTxWithLevel starts a transaction with given transaction isolation level.
func (db *Mssql) BeginTxWithLevel(level sql.IsolationLevel) *sql.Tx {
return CommonBeginTxWithLevel(db.DbList["default"], level)
}
// BeginTxWithReadUncommittedAndConnection starts a transaction with level LevelReadUncommitted and connection.
func (db *Mssql) BeginTxWithReadUncommittedAndConnection(conn string) *sql.Tx {
return CommonBeginTxWithLevel(db.DbList[conn], sql.LevelReadUncommitted)
}
// BeginTxWithReadCommittedAndConnection starts a transaction with level LevelReadCommitted and connection.
func (db *Mssql) BeginTxWithReadCommittedAndConnection(conn string) *sql.Tx {
return CommonBeginTxWithLevel(db.DbList[conn], sql.LevelReadCommitted)
}
// BeginTxWithRepeatableReadAndConnection starts a transaction with level LevelRepeatableRead and connection.
func (db *Mssql) BeginTxWithRepeatableReadAndConnection(conn string) *sql.Tx {
return CommonBeginTxWithLevel(db.DbList[conn], sql.LevelRepeatableRead)
}
// BeginTxAndConnection starts a transaction with level LevelDefault and connection.
func (db *Mssql) BeginTxAndConnection(conn string) *sql.Tx {
return CommonBeginTxWithLevel(db.DbList[conn], sql.LevelDefault)
}
// BeginTxWithLevelAndConnection starts a transaction with given transaction isolation level and connection.
func (db *Mssql) BeginTxWithLevelAndConnection(conn string, level sql.IsolationLevel) *sql.Tx {
return CommonBeginTxWithLevel(db.DbList[conn], level)
}
// QueryWithTx is query method within the transaction.
func (db *Mssql) QueryWithTx(tx *sql.Tx, query string, args ...interface{}) ([]map[string]interface{}, error) {
query = db.handleSqlBeforeExec(query)
return CommonQueryWithTx(tx, query, args...)
}
// ExecWithTx is exec method within the transaction.
func (db *Mssql) ExecWithTx(tx *sql.Tx, query string, args ...interface{}) (sql.Result, error) {
query = db.handleSqlBeforeExec(query)
return CommonExecWithTx(tx, query, args...)
}
|