gf/database/gdb/gdb_transaction.go

283 lines
9.6 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
2018-03-09 17:55:42 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2018-03-09 17:55:42 +08:00
package gdb
import (
2019-06-19 09:06:52 +08:00
"database/sql"
"fmt"
"reflect"
2019-07-29 21:01:19 +08:00
"github.com/gogf/gf/text/gregex"
2018-03-09 17:55:42 +08:00
)
// TX is the struct for transaction management.
2018-12-14 18:35:51 +08:00
type TX struct {
2019-06-19 09:06:52 +08:00
db DB
tx *sql.Tx
master *sql.DB
2018-03-12 11:46:12 +08:00
}
// Commit commits the transaction.
2018-12-14 18:35:51 +08:00
func (tx *TX) Commit() error {
2019-06-19 09:06:52 +08:00
return tx.tx.Commit()
2018-03-12 11:46:12 +08:00
}
2018-03-09 17:55:42 +08:00
// Rollback aborts the transaction.
2018-12-14 18:35:51 +08:00
func (tx *TX) Rollback() error {
2019-06-19 09:06:52 +08:00
return tx.tx.Rollback()
2018-03-09 17:55:42 +08:00
}
// Query does query operation on transaction.
2020-03-08 00:17:42 +08:00
// See Core.Query.
2020-03-22 23:26:15 +08:00
func (tx *TX) Query(sql string, args ...interface{}) (rows *sql.Rows, err error) {
return tx.db.DoQuery(tx.tx, sql, args...)
2018-03-09 17:55:42 +08:00
}
// Exec does none query operation on transaction.
2020-03-08 00:17:42 +08:00
// See Core.Exec.
2020-03-22 23:26:15 +08:00
func (tx *TX) Exec(sql string, args ...interface{}) (sql.Result, error) {
return tx.db.DoExec(tx.tx, sql, args...)
}
// Prepare creates a prepared statement for later queries or executions.
// Multiple queries or executions may be run concurrently from the
// returned statement.
// The caller must call the statement's Close method
// when the statement is no longer needed.
2021-01-25 21:17:32 +08:00
func (tx *TX) Prepare(sql string) (*Stmt, error) {
2020-03-22 23:26:15 +08:00
return tx.db.DoPrepare(tx.tx, sql)
2018-03-09 17:55:42 +08:00
}
// GetAll queries and returns data records from database.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetAll(sql string, args ...interface{}) (Result, error) {
rows, err := tx.Query(sql, args...)
2019-06-19 09:06:52 +08:00
if err != nil || rows == nil {
return nil, err
}
defer rows.Close()
2020-11-29 23:47:57 +08:00
return tx.db.convertRowsToResult(rows)
2018-03-09 17:55:42 +08:00
}
// GetOne queries and returns one record from database.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetOne(sql string, args ...interface{}) (Record, error) {
list, err := tx.GetAll(sql, args...)
2019-06-19 09:06:52 +08:00
if err != nil {
return nil, err
}
if len(list) > 0 {
return list[0], nil
}
return nil, nil
}
// GetStruct queries one record from database and converts it to given struct.
2021-02-08 17:57:21 +08:00
// The parameter `pointer` should be a pointer to struct.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetStruct(obj interface{}, sql string, args ...interface{}) error {
one, err := tx.GetOne(sql, args...)
2019-06-19 09:06:52 +08:00
if err != nil {
return err
}
return one.Struct(obj)
2018-03-09 17:55:42 +08:00
}
// GetStructs queries records from database and converts them to given struct.
2021-02-08 17:57:21 +08:00
// The parameter `pointer` should be type of struct slice: []struct/[]*struct.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetStructs(objPointerSlice interface{}, sql string, args ...interface{}) error {
all, err := tx.GetAll(sql, args...)
2019-06-19 09:06:52 +08:00
if err != nil {
return err
}
return all.Structs(objPointerSlice)
}
// GetScan queries one or more records from database and converts them to given struct or
// struct array.
//
2021-02-08 17:57:21 +08:00
// If parameter `pointer` is type of struct pointer, it calls GetStruct internally for
// the conversion. If parameter `pointer` is type of slice, it calls GetStructs internally
// for conversion.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetScan(objPointer interface{}, sql string, args ...interface{}) error {
2019-06-19 09:06:52 +08:00
t := reflect.TypeOf(objPointer)
k := t.Kind()
if k != reflect.Ptr {
return fmt.Errorf("params should be type of pointer, but got: %v", k)
}
k = t.Elem().Kind()
switch k {
case reflect.Array, reflect.Slice:
2020-03-22 23:26:15 +08:00
return tx.db.GetStructs(objPointer, sql, args...)
2019-06-19 09:06:52 +08:00
case reflect.Struct:
2020-03-22 23:26:15 +08:00
return tx.db.GetStruct(objPointer, sql, args...)
2019-06-19 09:06:52 +08:00
default:
return fmt.Errorf("element type should be type of struct/slice, unsupported: %v", k)
}
}
// GetValue queries and returns the field value from database.
// The sql should queries only one field from database, or else it returns only one
// field of the result.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetValue(sql string, args ...interface{}) (Value, error) {
one, err := tx.GetOne(sql, args...)
2019-06-19 09:06:52 +08:00
if err != nil {
return nil, err
}
for _, v := range one {
return v, nil
}
return nil, nil
2018-03-09 17:55:42 +08:00
}
// GetCount queries and returns the count from database.
2020-03-22 23:26:15 +08:00
func (tx *TX) GetCount(sql string, args ...interface{}) (int, error) {
if !gregex.IsMatchString(`(?i)SELECT\s+COUNT\(.+\)\s+FROM`, sql) {
sql, _ = gregex.ReplaceString(`(?i)(SELECT)\s+(.+)\s+(FROM)`, `$1 COUNT($2) $3`, sql)
2019-06-19 09:06:52 +08:00
}
2020-03-22 23:26:15 +08:00
value, err := tx.GetValue(sql, args...)
2019-06-19 09:06:52 +08:00
if err != nil {
return 0, err
}
return value.Int(), nil
2018-03-09 17:55:42 +08:00
}
// Insert does "INSERT INTO ..." statement for the table.
// If there's already one unique record of the data in the table, it returns error.
//
2021-02-08 17:57:21 +08:00
// The parameter `data` can be type of map/gmap/struct/*struct/[]map/[]struct, etc.
// Eg:
// Data(g.Map{"uid": 10000, "name":"john"})
// Data(g.Slice{g.Map{"uid": 10000, "name":"john"}, g.Map{"uid": 20000, "name":"smith"})
//
2021-02-08 17:57:21 +08:00
// The parameter `batch` specifies the batch operation count when given data is slice.
2019-06-19 09:06:52 +08:00
func (tx *TX) Insert(table string, data interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(data).Batch(batch[0]).Insert()
}
return tx.Model(table).Data(data).Insert()
2018-03-09 17:55:42 +08:00
}
// InsertIgnore does "INSERT IGNORE INTO ..." statement for the table.
// If there's already one unique record of the data in the table, it ignores the inserting.
//
2021-02-08 17:57:21 +08:00
// The parameter `data` can be type of map/gmap/struct/*struct/[]map/[]struct, etc.
// Eg:
// Data(g.Map{"uid": 10000, "name":"john"})
// Data(g.Slice{g.Map{"uid": 10000, "name":"john"}, g.Map{"uid": 20000, "name":"smith"})
//
2021-02-08 17:57:21 +08:00
// The parameter `batch` specifies the batch operation count when given data is slice.
func (tx *TX) InsertIgnore(table string, data interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(data).Batch(batch[0]).InsertIgnore()
}
return tx.Model(table).Data(data).InsertIgnore()
}
// Replace does "REPLACE INTO ..." statement for the table.
// If there's already one unique record of the data in the table, it deletes the record
// and inserts a new one.
//
2021-02-08 17:57:21 +08:00
// The parameter `data` can be type of map/gmap/struct/*struct/[]map/[]struct, etc.
// Eg:
// Data(g.Map{"uid": 10000, "name":"john"})
// Data(g.Slice{g.Map{"uid": 10000, "name":"john"}, g.Map{"uid": 20000, "name":"smith"})
//
2021-02-08 17:57:21 +08:00
// The parameter `data` can be type of map/gmap/struct/*struct/[]map/[]struct, etc.
// If given data is type of slice, it then does batch replacing, and the optional parameter
2021-02-08 17:57:21 +08:00
// `batch` specifies the batch operation count.
2019-06-19 09:06:52 +08:00
func (tx *TX) Replace(table string, data interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(data).Batch(batch[0]).Replace()
}
return tx.Model(table).Data(data).Replace()
2018-03-09 17:55:42 +08:00
}
// Save does "INSERT INTO ... ON DUPLICATE KEY UPDATE..." statement for the table.
// It updates the record if there's primary or unique index in the saving data,
// or else it inserts a new record into the table.
//
2021-02-08 17:57:21 +08:00
// The parameter `data` can be type of map/gmap/struct/*struct/[]map/[]struct, etc.
// Eg:
// Data(g.Map{"uid": 10000, "name":"john"})
// Data(g.Slice{g.Map{"uid": 10000, "name":"john"}, g.Map{"uid": 20000, "name":"smith"})
//
// If given data is type of slice, it then does batch saving, and the optional parameter
2021-02-08 17:57:21 +08:00
// `batch` specifies the batch operation count.
2019-06-19 09:06:52 +08:00
func (tx *TX) Save(table string, data interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(data).Batch(batch[0]).Save()
}
return tx.Model(table).Data(data).Save()
2018-03-09 17:55:42 +08:00
}
// BatchInsert batch inserts data.
2021-02-08 17:57:21 +08:00
// The parameter `list` must be type of slice of map or struct.
2019-06-19 09:06:52 +08:00
func (tx *TX) BatchInsert(table string, list interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(list).Batch(batch[0]).Insert()
}
return tx.Model(table).Data(list).Insert()
2018-03-09 17:55:42 +08:00
}
// BatchInsert batch inserts data with ignore option.
2021-02-08 17:57:21 +08:00
// The parameter `list` must be type of slice of map or struct.
func (tx *TX) BatchInsertIgnore(table string, list interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(list).Batch(batch[0]).InsertIgnore()
}
return tx.Model(table).Data(list).InsertIgnore()
}
// BatchReplace batch replaces data.
2021-02-08 17:57:21 +08:00
// The parameter `list` must be type of slice of map or struct.
2019-06-19 09:06:52 +08:00
func (tx *TX) BatchReplace(table string, list interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(list).Batch(batch[0]).Replace()
}
return tx.Model(table).Data(list).Replace()
2018-03-09 17:55:42 +08:00
}
// BatchSave batch replaces data.
2021-02-08 17:57:21 +08:00
// The parameter `list` must be type of slice of map or struct.
2019-06-19 09:06:52 +08:00
func (tx *TX) BatchSave(table string, list interface{}, batch ...int) (sql.Result, error) {
if len(batch) > 0 {
return tx.Model(table).Data(list).Batch(batch[0]).Save()
}
return tx.Model(table).Data(list).Save()
2018-03-09 17:55:42 +08:00
}
// Update does "UPDATE ... " statement for the table.
//
2021-02-08 17:57:21 +08:00
// The parameter `data` can be type of string/map/gmap/struct/*struct, etc.
// Eg: "uid=10000", "uid", 10000, g.Map{"uid": 10000, "name":"john"}
//
2021-02-08 17:57:21 +08:00
// The parameter `condition` can be type of string/map/gmap/slice/struct/*struct, etc.
// It is commonly used with parameter `args`.
// Eg:
// "uid=10000",
// "uid", 10000
// "money>? AND name like ?", 99999, "vip_%"
// "status IN (?)", g.Slice{1,2,3}
// "age IN(?,?)", 18, 50
// User{ Id : 1, UserName : "john"}
2018-12-14 18:35:51 +08:00
func (tx *TX) Update(table string, data interface{}, condition interface{}, args ...interface{}) (sql.Result, error) {
return tx.Model(table).Data(data).Where(condition, args...).Update()
2019-03-17 22:26:41 +08:00
}
// Delete does "DELETE FROM ... " statement for the table.
//
2021-02-08 17:57:21 +08:00
// The parameter `condition` can be type of string/map/gmap/slice/struct/*struct, etc.
// It is commonly used with parameter `args`.
// Eg:
// "uid=10000",
// "uid", 10000
// "money>? AND name like ?", 99999, "vip_%"
// "status IN (?)", g.Slice{1,2,3}
// "age IN(?,?)", 18, 50
// User{ Id : 1, UserName : "john"}
2018-12-14 18:35:51 +08:00
func (tx *TX) Delete(table string, condition interface{}, args ...interface{}) (sql.Result, error) {
return tx.Model(table).Where(condition, args...).Delete()
2018-03-09 17:55:42 +08:00
}