-
Notifications
You must be signed in to change notification settings - Fork 23
/
semaphore.go
50 lines (42 loc) · 892 Bytes
/
semaphore.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package semaphore
import (
"errors"
"time"
)
//error info
var (
ErrNoTickets = errors.New("could not acquire semaphore")
ErrIllegalRelease = errors.New("can't release the semaphore without acquiring it first")
)
// ISemaphore contains the behavior of a semaphore that can be acquired and/or released.
type ISemaphore interface {
Acquire() error
Release() error
}
type semp struct {
sem chan struct{}
timeout time.Duration
}
func (s *semp) Acquire() error {
select {
case s.sem <- struct{}{}:
return nil
case <-time.After(s.timeout):
return ErrNoTickets
}
}
func (s *semp) Release() error {
select {
case <-s.sem:
return nil
case <-time.After(s.timeout):
return ErrIllegalRelease
}
}
//New return a new Semaphore
func New(tickets int, timeout time.Duration) ISemaphore {
return &semp{
sem: make(chan struct{}, tickets),
timeout: timeout,
}
}