gorm/prepare_stmt.go

170 lines
4.1 KiB
Go
Raw Normal View History

2020-06-05 05:08:22 +03:00
package gorm
import (
"context"
"database/sql"
"sync"
)
type Stmt struct {
*sql.Stmt
Transaction bool
}
2020-06-05 05:08:22 +03:00
type PreparedStmtDB struct {
Stmts map[string]Stmt
2020-07-28 09:26:09 +03:00
PreparedSQL []string
Mux *sync.RWMutex
2020-06-05 05:08:22 +03:00
ConnPool
}
func (db *PreparedStmtDB) GetDBConn() (*sql.DB, error) {
2021-03-19 10:54:32 +03:00
if dbConnector, ok := db.ConnPool.(GetDBConnector); ok && dbConnector != nil {
return dbConnector.GetDBConn()
}
if sqldb, ok := db.ConnPool.(*sql.DB); ok {
return sqldb, nil
}
2021-04-19 16:03:39 +03:00
return nil, ErrInvalidDB
2021-03-19 10:54:32 +03:00
}
func (db *PreparedStmtDB) Close() {
2020-08-03 16:48:36 +03:00
db.Mux.Lock()
2020-07-28 09:26:09 +03:00
for _, query := range db.PreparedSQL {
if stmt, ok := db.Stmts[query]; ok {
delete(db.Stmts, query)
stmt.Close()
}
}
2020-08-03 16:48:36 +03:00
db.Mux.Unlock()
}
func (db *PreparedStmtDB) prepare(ctx context.Context, conn ConnPool, isTransaction bool, query string) (Stmt, error) {
2020-08-03 16:48:36 +03:00
db.Mux.RLock()
if stmt, ok := db.Stmts[query]; ok && (!stmt.Transaction || isTransaction) {
2020-08-03 16:48:36 +03:00
db.Mux.RUnlock()
2020-06-05 05:08:22 +03:00
return stmt, nil
}
2020-08-03 16:48:36 +03:00
db.Mux.RUnlock()
2020-06-05 05:08:22 +03:00
2020-08-03 16:48:36 +03:00
db.Mux.Lock()
// double check
if stmt, ok := db.Stmts[query]; ok && (!stmt.Transaction || isTransaction) {
2020-08-03 16:48:36 +03:00
db.Mux.Unlock()
return stmt, nil
} else if ok {
stmt.Close()
}
stmt, err := conn.PrepareContext(ctx, query)
2020-06-05 05:08:22 +03:00
if err == nil {
db.Stmts[query] = Stmt{Stmt: stmt, Transaction: isTransaction}
2020-07-28 09:26:09 +03:00
db.PreparedSQL = append(db.PreparedSQL, query)
2020-06-05 05:08:22 +03:00
}
defer db.Mux.Unlock()
2020-06-05 05:08:22 +03:00
return db.Stmts[query], err
2020-06-05 05:08:22 +03:00
}
func (db *PreparedStmtDB) BeginTx(ctx context.Context, opt *sql.TxOptions) (ConnPool, error) {
if beginner, ok := db.ConnPool.(TxBeginner); ok {
tx, err := beginner.BeginTx(ctx, opt)
return &PreparedStmtTX{PreparedStmtDB: db, Tx: tx}, err
}
return nil, ErrInvalidTransaction
}
func (db *PreparedStmtDB) ExecContext(ctx context.Context, query string, args ...interface{}) (result sql.Result, err error) {
stmt, err := db.prepare(ctx, db.ConnPool, false, query)
2020-06-05 05:08:22 +03:00
if err == nil {
result, err = stmt.ExecContext(ctx, args...)
if err != nil {
2020-08-03 16:48:36 +03:00
db.Mux.Lock()
stmt.Close()
delete(db.Stmts, query)
2020-08-03 16:48:36 +03:00
db.Mux.Unlock()
}
2020-06-05 05:08:22 +03:00
}
return result, err
2020-06-05 05:08:22 +03:00
}
func (db *PreparedStmtDB) QueryContext(ctx context.Context, query string, args ...interface{}) (rows *sql.Rows, err error) {
stmt, err := db.prepare(ctx, db.ConnPool, false, query)
2020-06-05 05:08:22 +03:00
if err == nil {
rows, err = stmt.QueryContext(ctx, args...)
if err != nil {
2020-08-03 16:48:36 +03:00
db.Mux.Lock()
stmt.Close()
delete(db.Stmts, query)
2020-08-03 16:48:36 +03:00
db.Mux.Unlock()
}
2020-06-05 05:08:22 +03:00
}
return rows, err
2020-06-05 05:08:22 +03:00
}
func (db *PreparedStmtDB) QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row {
stmt, err := db.prepare(ctx, db.ConnPool, false, query)
2020-06-05 05:08:22 +03:00
if err == nil {
return stmt.QueryRowContext(ctx, args...)
}
return &sql.Row{}
}
type PreparedStmtTX struct {
*sql.Tx
PreparedStmtDB *PreparedStmtDB
}
func (tx *PreparedStmtTX) Commit() error {
if tx.Tx != nil {
return tx.Tx.Commit()
}
return ErrInvalidTransaction
}
func (tx *PreparedStmtTX) Rollback() error {
if tx.Tx != nil {
return tx.Tx.Rollback()
}
return ErrInvalidTransaction
}
func (tx *PreparedStmtTX) ExecContext(ctx context.Context, query string, args ...interface{}) (result sql.Result, err error) {
stmt, err := tx.PreparedStmtDB.prepare(ctx, tx.Tx, true, query)
2020-06-05 05:08:22 +03:00
if err == nil {
result, err = tx.Tx.StmtContext(ctx, stmt.Stmt).ExecContext(ctx, args...)
if err != nil {
2020-08-03 16:48:36 +03:00
tx.PreparedStmtDB.Mux.Lock()
stmt.Close()
delete(tx.PreparedStmtDB.Stmts, query)
2020-08-03 16:48:36 +03:00
tx.PreparedStmtDB.Mux.Unlock()
}
2020-06-05 05:08:22 +03:00
}
return result, err
2020-06-05 05:08:22 +03:00
}
func (tx *PreparedStmtTX) QueryContext(ctx context.Context, query string, args ...interface{}) (rows *sql.Rows, err error) {
stmt, err := tx.PreparedStmtDB.prepare(ctx, tx.Tx, true, query)
2020-06-05 05:08:22 +03:00
if err == nil {
rows, err = tx.Tx.Stmt(stmt.Stmt).QueryContext(ctx, args...)
if err != nil {
2020-08-03 16:48:36 +03:00
tx.PreparedStmtDB.Mux.Lock()
stmt.Close()
delete(tx.PreparedStmtDB.Stmts, query)
2020-08-03 16:48:36 +03:00
tx.PreparedStmtDB.Mux.Unlock()
}
2020-06-05 05:08:22 +03:00
}
return rows, err
2020-06-05 05:08:22 +03:00
}
func (tx *PreparedStmtTX) QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row {
stmt, err := tx.PreparedStmtDB.prepare(ctx, tx.Tx, true, query)
2020-06-05 05:08:22 +03:00
if err == nil {
return tx.Tx.StmtContext(ctx, stmt.Stmt).QueryRowContext(ctx, args...)
2020-06-05 05:08:22 +03:00
}
return &sql.Row{}
}