6 Star 11 Fork 1

distill/distill-infra

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dbx_tx.go 1009 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyndon Hu 提交于 2020-04-29 10:51 . infra init
package db
import (
"context"
"database/sql"
"github.com/tietang/dbx"
"log"
)
const TX = "tx"
//提供一个基本Dao基础功能的支持
type BaseDao struct {
TX *sql.Tx
}
func (d *BaseDao) SetTx(tx *sql.Tx) {
d.TX = tx
}
type txFunc func(*dbx.TxRunner) error
//事务执行帮助函数,简化代码
func Tx(fn func(*dbx.TxRunner) error) error {
return TxContext(context.Background(), fn)
}
//事务执行帮助函数,简化代码,需要传入上下文
func TxContext(ctx context.Context, fn func(runner *dbx.TxRunner) error) error {
return DbxDatabase().Tx(fn)
}
//将runner绑定到上下文,并创建一个新的WithValueContext
func WithValueContext(parent context.Context, runner *dbx.TxRunner) context.Context {
return context.WithValue(parent, TX, runner)
}
func ExecuteContext(ctx context.Context, fn func(*dbx.TxRunner) error) error {
tx, ok := ctx.Value(TX).(*dbx.TxRunner)
if !ok || tx == nil {
log.Panic("是否在事务函数块中使用?")
}
return fn(tx)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/banyanhouse/distill-infra.git
git@gitee.com:banyanhouse/distill-infra.git
banyanhouse
distill-infra
distill-infra
v0.0.11-grpc-test

搜索帮助