vendor dependencies with dep
This commit is contained in:
parent
93d8310491
commit
1384296a47
2712 changed files with 965742 additions and 0 deletions
329
vendor/github.com/go-pg/pg/tx.go
generated
vendored
Normal file
329
vendor/github.com/go-pg/pg/tx.go
generated
vendored
Normal file
|
|
@ -0,0 +1,329 @@
|
|||
package pg
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
"time"
|
||||
|
||||
"github.com/go-pg/pg/internal"
|
||||
"github.com/go-pg/pg/internal/pool"
|
||||
"github.com/go-pg/pg/orm"
|
||||
)
|
||||
|
||||
var errTxDone = errors.New("pg: transaction has already been committed or rolled back")
|
||||
|
||||
// Tx is an in-progress database transaction.
|
||||
//
|
||||
// A transaction must end with a call to Commit or Rollback.
|
||||
//
|
||||
// After a call to Commit or Rollback, all operations on the transaction fail
|
||||
// with ErrTxDone.
|
||||
//
|
||||
// The statements prepared for a transaction by calling the transaction's
|
||||
// Prepare or Stmt methods are closed by the call to Commit or Rollback.
|
||||
type Tx struct {
|
||||
db *DB
|
||||
cn *pool.Conn
|
||||
|
||||
stmts []*Stmt
|
||||
}
|
||||
|
||||
var _ orm.DB = (*Tx)(nil)
|
||||
|
||||
// Begin starts a transaction. Most callers should use RunInTransaction instead.
|
||||
func (db *DB) Begin() (*Tx, error) {
|
||||
tx := &Tx{
|
||||
db: db,
|
||||
}
|
||||
|
||||
if !db.opt.DisableTransaction {
|
||||
cn, err := db.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
tx.cn = cn
|
||||
}
|
||||
|
||||
if err := tx.begin(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return tx, nil
|
||||
}
|
||||
|
||||
// RunInTransaction runs a function in a transaction. If function
|
||||
// returns an error transaction is rollbacked, otherwise transaction
|
||||
// is committed.
|
||||
func (db *DB) RunInTransaction(fn func(*Tx) error) error {
|
||||
tx, err := db.Begin()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return tx.RunInTransaction(fn)
|
||||
}
|
||||
|
||||
// Begin returns the transaction.
|
||||
func (tx *Tx) Begin() (*Tx, error) {
|
||||
return tx, nil
|
||||
}
|
||||
|
||||
// RunInTransaction runs a function in the transaction. If function
|
||||
// returns an error transaction is rollbacked, otherwise transaction
|
||||
// is committed.
|
||||
func (tx *Tx) RunInTransaction(fn func(*Tx) error) error {
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
tx.Rollback()
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
if err := fn(tx); err != nil {
|
||||
tx.Rollback()
|
||||
return err
|
||||
}
|
||||
return tx.Commit()
|
||||
}
|
||||
|
||||
func (tx *Tx) conn() (*pool.Conn, error) {
|
||||
var cn *pool.Conn
|
||||
if tx.db.opt.DisableTransaction {
|
||||
var err error
|
||||
cn, err = tx.db.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
} else {
|
||||
cn = tx.cn
|
||||
if cn == nil {
|
||||
return nil, errTxDone
|
||||
}
|
||||
}
|
||||
|
||||
cn.SetTimeout(tx.db.opt.ReadTimeout, tx.db.opt.WriteTimeout)
|
||||
return cn, nil
|
||||
}
|
||||
|
||||
func (tx *Tx) freeConn(cn *pool.Conn, err error) {
|
||||
if tx.db.opt.DisableTransaction {
|
||||
_ = tx.db.freeConn(cn, err)
|
||||
}
|
||||
}
|
||||
|
||||
// Stmt returns a transaction-specific prepared statement from an existing statement.
|
||||
func (tx *Tx) Stmt(stmt *Stmt) *Stmt {
|
||||
stmt, err := tx.Prepare(stmt.q)
|
||||
if err != nil {
|
||||
return &Stmt{stickyErr: err}
|
||||
}
|
||||
return stmt
|
||||
}
|
||||
|
||||
// Prepare creates a prepared statement for use within a transaction.
|
||||
//
|
||||
// The returned statement operates within the transaction and can no longer
|
||||
// be used once the transaction has been committed or rolled back.
|
||||
//
|
||||
// To use an existing prepared statement on this transaction, see Tx.Stmt.
|
||||
func (tx *Tx) Prepare(q string) (*Stmt, error) {
|
||||
cn, err := tx.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
stmt, err := prepare(tx.db, cn, q)
|
||||
tx.freeConn(cn, err)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
stmt.inTx = true
|
||||
tx.stmts = append(tx.stmts, stmt)
|
||||
|
||||
return stmt, nil
|
||||
}
|
||||
|
||||
// Exec is an alias for DB.Exec.
|
||||
func (tx *Tx) Exec(query interface{}, params ...interface{}) (orm.Result, error) {
|
||||
cn, err := tx.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
start := time.Now()
|
||||
res, err := tx.db.simpleQuery(cn, query, params...)
|
||||
tx.freeConn(cn, err)
|
||||
tx.db.queryProcessed(tx, start, query, params, res, err)
|
||||
|
||||
return res, err
|
||||
}
|
||||
|
||||
// ExecOne is an alias for DB.ExecOne.
|
||||
func (tx *Tx) ExecOne(query interface{}, params ...interface{}) (orm.Result, error) {
|
||||
res, err := tx.Exec(query, params...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if err := internal.AssertOneRow(res.RowsAffected()); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
// Query is an alias for DB.Query.
|
||||
func (tx *Tx) Query(model interface{}, query interface{}, params ...interface{}) (orm.Result, error) {
|
||||
cn, err := tx.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
start := time.Now()
|
||||
res, err := tx.db.simpleQueryData(cn, model, query, params...)
|
||||
tx.freeConn(cn, err)
|
||||
tx.db.queryProcessed(tx, start, query, params, res, err)
|
||||
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if mod := res.Model(); mod != nil && res.RowsReturned() > 0 {
|
||||
if err = mod.AfterQuery(tx); err != nil {
|
||||
return res, err
|
||||
}
|
||||
}
|
||||
|
||||
return res, err
|
||||
}
|
||||
|
||||
// QueryOne is an alias for DB.QueryOne.
|
||||
func (tx *Tx) QueryOne(model interface{}, query interface{}, params ...interface{}) (orm.Result, error) {
|
||||
mod, err := orm.NewModel(model)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
res, err := tx.Query(mod, query, params...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if err := internal.AssertOneRow(res.RowsAffected()); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
// Model is an alias for DB.Model.
|
||||
func (tx *Tx) Model(model ...interface{}) *orm.Query {
|
||||
return orm.NewQuery(tx, model...)
|
||||
}
|
||||
|
||||
// Select is an alias for DB.Select.
|
||||
func (tx *Tx) Select(model interface{}) error {
|
||||
return orm.Select(tx, model)
|
||||
}
|
||||
|
||||
// Insert is an alias for DB.Insert.
|
||||
func (tx *Tx) Insert(model ...interface{}) error {
|
||||
return orm.Insert(tx, model...)
|
||||
}
|
||||
|
||||
// Update is an alias for DB.Update.
|
||||
func (tx *Tx) Update(model ...interface{}) error {
|
||||
return orm.Update(tx, model...)
|
||||
}
|
||||
|
||||
// Delete is an alias for DB.Delete.
|
||||
func (tx *Tx) Delete(model interface{}) error {
|
||||
return orm.Delete(tx, model)
|
||||
}
|
||||
|
||||
// CreateTable is an alias for DB.CreateTable.
|
||||
func (tx *Tx) CreateTable(model interface{}, opt *orm.CreateTableOptions) error {
|
||||
_, err := orm.CreateTable(tx, model, opt)
|
||||
return err
|
||||
}
|
||||
|
||||
// DropTable is an alias for DB.DropTable.
|
||||
func (tx *Tx) DropTable(model interface{}, opt *orm.DropTableOptions) error {
|
||||
_, err := orm.DropTable(tx, model, opt)
|
||||
return err
|
||||
}
|
||||
|
||||
// CopyFrom is an alias for DB.CopyFrom.
|
||||
func (tx *Tx) CopyFrom(r io.Reader, query interface{}, params ...interface{}) (orm.Result, error) {
|
||||
cn, err := tx.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
res, err := tx.db.copyFrom(cn, r, query, params...)
|
||||
tx.freeConn(cn, err)
|
||||
return res, err
|
||||
}
|
||||
|
||||
// CopyTo is an alias for DB.CopyTo.
|
||||
func (tx *Tx) CopyTo(w io.Writer, query interface{}, params ...interface{}) (orm.Result, error) {
|
||||
cn, err := tx.conn()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
res, err := tx.db.copyTo(cn, w, query, params...)
|
||||
tx.freeConn(cn, err)
|
||||
return res, err
|
||||
}
|
||||
|
||||
func (tx *Tx) FormatQuery(dst []byte, query string, params ...interface{}) []byte {
|
||||
return tx.db.FormatQuery(dst, query, params...)
|
||||
}
|
||||
|
||||
func (tx *Tx) begin() error {
|
||||
if tx.db.opt.DisableTransaction {
|
||||
return nil
|
||||
}
|
||||
|
||||
_, err := tx.Exec("BEGIN")
|
||||
if err != nil {
|
||||
tx.close(err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// Commit commits the transaction.
|
||||
func (tx *Tx) Commit() error {
|
||||
if tx.db.opt.DisableTransaction {
|
||||
return nil
|
||||
}
|
||||
|
||||
_, err := tx.Exec("COMMIT")
|
||||
tx.close(err)
|
||||
return err
|
||||
}
|
||||
|
||||
// Rollback aborts the transaction.
|
||||
func (tx *Tx) Rollback() error {
|
||||
if tx.db.opt.DisableTransaction {
|
||||
return nil
|
||||
}
|
||||
|
||||
_, err := tx.Exec("ROLLBACK")
|
||||
tx.close(err)
|
||||
return err
|
||||
}
|
||||
|
||||
func (tx *Tx) close(lastErr error) error {
|
||||
if tx.cn == nil {
|
||||
return errTxDone
|
||||
}
|
||||
|
||||
for _, stmt := range tx.stmts {
|
||||
_ = stmt.Close()
|
||||
}
|
||||
tx.stmts = nil
|
||||
|
||||
err := tx.db.freeConn(tx.cn, lastErr)
|
||||
tx.cn = nil
|
||||
|
||||
return err
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue