mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-03 00:38:40 +08:00
43 lines
694 B
Go
43 lines
694 B
Go
|
package syncx
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
|
||
|
"zero/core/lang"
|
||
|
)
|
||
|
|
||
|
var ErrReturn = errors.New("discarding limited token, resource pool is full, someone returned multiple times")
|
||
|
|
||
|
type Limit struct {
|
||
|
pool chan lang.PlaceholderType
|
||
|
}
|
||
|
|
||
|
func NewLimit(n int) Limit {
|
||
|
return Limit{
|
||
|
pool: make(chan lang.PlaceholderType, n),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (l Limit) Borrow() {
|
||
|
l.pool <- lang.Placeholder
|
||
|
}
|
||
|
|
||
|
// Return returns the borrowed resource, returns error only if returned more than borrowed.
|
||
|
func (l Limit) Return() error {
|
||
|
select {
|
||
|
case <-l.pool:
|
||
|
return nil
|
||
|
default:
|
||
|
return ErrReturn
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (l Limit) TryBorrow() bool {
|
||
|
select {
|
||
|
case l.pool <- lang.Placeholder:
|
||
|
return true
|
||
|
default:
|
||
|
return false
|
||
|
}
|
||
|
}
|