forked from nats-io/nats-on-a-log
-
Notifications
You must be signed in to change notification settings - Fork 1
/
timeout_reader.go
71 lines (62 loc) · 1.23 KB
/
timeout_reader.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
// Copyright 2017 Apcera Inc. All rights reserved.
package natslog
import (
"bufio"
"errors"
"io"
"runtime"
"time"
)
const bufferSize = 4096
var ErrTimeout = errors.New("natslog: read timeout")
type timeoutReader struct {
b *bufio.Reader
t time.Time
ch <-chan error
closeFunc func() error
}
func newTimeoutReader(r io.ReadCloser) *timeoutReader {
return &timeoutReader{
b: bufio.NewReaderSize(r, bufferSize),
closeFunc: func() error { return r.Close() },
}
}
// SetDeadline sets the deadline for all future Read calls.
func (r *timeoutReader) SetDeadline(t time.Time) {
r.t = t
}
func (r *timeoutReader) Read(b []byte) (n int, err error) {
if r.ch == nil {
if r.t.IsZero() || r.b.Buffered() > 0 {
return r.b.Read(b)
}
ch := make(chan error, 1)
r.ch = ch
go func() {
_, err := r.b.Peek(1)
ch <- err
}()
runtime.Gosched()
}
if r.t.IsZero() {
err = <-r.ch // Block
} else {
select {
case err = <-r.ch: // Poll
default:
select {
case err = <-r.ch: // Timeout
case <-time.After(time.Until(r.t)):
return 0, ErrTimeout
}
}
}
r.ch = nil
if r.b.Buffered() > 0 {
n, _ = r.b.Read(b)
}
return
}
func (r *timeoutReader) Close() error {
return r.closeFunc()
}