-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinbox.go
109 lines (91 loc) · 1.83 KB
/
inbox.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package inbox
import (
"context"
"errors"
"sync"
"sync/atomic"
"time"
)
var (
ErrorInboxIsFull = errors.New("Inbox is full")
)
type message struct {
createdAt time.Time
from string
message []byte
}
type inbox struct {
sync.Mutex
lastAccessedAt time.Time
password string
messages chan *message
blocking int32
cancelContext context.CancelFunc
}
func newInbox(password string, size int) *inbox {
return &inbox{
lastAccessedAt: time.Now(),
password: password,
messages: make(chan *message, size),
}
}
func (i *inbox) Put(from string, msg []byte) error {
select {
case i.messages <- &message{
createdAt: time.Now(),
from: from,
message: msg,
}:
return nil
default:
return ErrorInboxIsFull
}
}
func (i *inbox) Get(ctx *context.Context) (from string, msg []byte) {
i.Lock()
i.lastAccessedAt = time.Now()
i.Unlock()
if ctx != nil {
return i.getWithContext(ctx)
} else {
return i.getWithoutContext()
}
}
func (i *inbox) getWithContext(ctx *context.Context) (from string, msg []byte) {
atomic.AddInt32(&i.blocking, 1)
wrapperCtx, cancel := context.WithCancel(*ctx)
i.Lock()
if i.cancelContext != nil {
i.cancelContext()
}
i.cancelContext = cancel
i.Unlock()
select {
case message := <-i.messages:
from = message.from
msg = message.message
case <-wrapperCtx.Done():
}
atomic.AddInt32(&i.blocking, -1)
i.Lock()
i.lastAccessedAt = time.Now()
i.Unlock()
return
}
func (i *inbox) getWithoutContext() (from string, msg []byte) {
select {
case message := <-i.messages:
return message.from, message.message
default:
return
}
}
func (i *inbox) IsEmpty() bool {
return len(i.messages) == 0
}
func (i *inbox) CheckPassword(password string) bool {
return i.password == password
}
func (i *inbox) Locked() bool {
return atomic.LoadInt32(&i.blocking) > 0
}