-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync.go
58 lines (51 loc) · 1.07 KB
/
sync.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
package request_locker
import "sync"
// SyncChannel struct with inner generic channel
// that provides actions as a normal channel like read, write.
// Avoid panic due to read, write to a close channel.
type SyncChannel[T any] struct {
ch chan T
isClosed bool
mu sync.Locker
}
func NewSyncChannel[T any](innerChan chan T) *SyncChannel[T] {
syncChannel := &SyncChannel[T]{
isClosed: false,
mu: &sync.Mutex{},
ch: innerChan,
}
if _, ok := <-innerChan; !ok {
syncChannel.isClosed = true
}
return syncChannel
}
func (c *SyncChannel[T]) IsClosed() bool {
return c.isClosed
}
func (c *SyncChannel[T]) Close() error {
c.mu.Lock()
defer c.mu.Unlock()
if c.isClosed {
return ErrorCloseClosedChannel
}
close(c.ch)
return nil
}
func (c *SyncChannel[T]) Write(value T) error {
c.mu.Lock()
defer c.mu.Unlock()
if c.isClosed {
return ErrorWriteClosedChannel
}
c.ch <- value
return nil
}
func (c *SyncChannel[T]) Read() (T, error) {
var t T
if c.isClosed {
return t, ErrorReadClosedChannel
}
t, ok := <-c.ch
c.isClosed = !ok
return t, nil
}