2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-09 20:32:23 +00:00
restic/internal/backend/semaphore.go

29 lines
585 B
Go
Raw Normal View History

package backend
2017-07-23 12:21:03 +00:00
import "github.com/restic/restic/internal/errors"
2017-06-05 22:17:21 +00:00
// Semaphore limits access to a restricted resource.
type Semaphore struct {
ch chan struct{}
}
// NewSemaphore returns a new semaphore with capacity n.
2017-06-05 22:17:21 +00:00
func NewSemaphore(n uint) (*Semaphore, error) {
if n <= 0 {
return nil, errors.New("must be a positive number")
}
return &Semaphore{
ch: make(chan struct{}, n),
2017-06-05 22:17:21 +00:00
}, nil
}
// GetToken blocks until a Token is available.
func (s *Semaphore) GetToken() {
s.ch <- struct{}{}
}
// ReleaseToken returns a token.
func (s *Semaphore) ReleaseToken() {
<-s.ch
}