Files
EdgeAPI/internal/db/models/sys_locker_dao.go

113 lines
2.0 KiB
Go
Raw Normal View History

2020-09-26 08:06:40 +08:00
package models
import (
_ "github.com/go-sql-driver/mysql"
"github.com/iwind/TeaGo/Tea"
"github.com/iwind/TeaGo/dbs"
"github.com/iwind/TeaGo/types"
"time"
)
type SysLockerDAO dbs.DAO
func NewSysLockerDAO() *SysLockerDAO {
return dbs.NewDAO(&SysLockerDAO{
DAOObject: dbs.DAOObject{
DB: Tea.Env,
Table: "edgeSysLockers",
Model: new(SysLocker),
PkName: "id",
},
}).(*SysLockerDAO)
}
2020-10-13 20:05:13 +08:00
var SharedSysLockerDAO *SysLockerDAO
func init() {
dbs.OnReady(func() {
SharedSysLockerDAO = NewSysLockerDAO()
})
}
2020-09-26 08:06:40 +08:00
// 开锁
func (this *SysLockerDAO) Lock(key string, timeout int64) (bool, error) {
maxErrors := 5
for {
one, err := this.Query().
Attr("key", key).
Find()
if err != nil {
maxErrors--
if maxErrors < 0 {
return false, err
}
continue
}
// 如果没有锁,则创建
if one == nil {
op := NewSysLockerOperator()
op.Key = key
op.TimeoutAt = time.Now().Unix() + timeout
op.Version = 1
_, err := this.Save(op)
if err != nil {
maxErrors--
if maxErrors < 0 {
return false, err
}
continue
}
return true, nil
}
// 如果已经有锁
locker := one.(*SysLocker)
if time.Now().Unix() <= int64(locker.TimeoutAt) {
return false, nil
}
// 修改
op := NewSysLockerOperator()
op.Id = locker.Id
op.Version = locker.Version + 1
op.TimeoutAt = time.Now().Unix() + timeout
_, err = this.Save(op)
if err != nil {
maxErrors--
if maxErrors < 0 {
return false, err
}
continue
}
// 再次查询版本
version, err := this.Query().
Attr("key", key).
Result("version").
FindCol("0")
if err != nil {
maxErrors--
if maxErrors < 0 {
return false, err
}
continue
}
if types.Int64(version) != int64(locker.Version)+1 {
return false, nil
}
return true, nil
}
}
// 解锁
func (this *SysLockerDAO) Unlock(key string) error {
_, err := this.Query().
Attr("key", key).
Set("timeoutAt", time.Now().Unix()-86400*365).
Update()
return err
}