This repository was archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patherrors.go
114 lines (96 loc) · 3.61 KB
/
errors.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
110
111
112
113
114
package spdy
import (
"errors"
"fmt"
)
type sessionError interface {
resetCode() int
}
type streamError interface {
StreamId() int
resetCode() int
}
var (
errGoAway = errors.New("spdy: go away")
errSessionFlowControl = errors.New("spdy: flow control error")
errSessionProtocol = errors.New("sydy: protocol error")
errWriteAfterClose = errors.New("spdy: write to closed stream")
errReadAfterClose = errors.New("spdy: read to closed stream")
)
type errStreamProtocol int
type errInvalidStream int
type errRefusedStream int
type errCancel int
type errStreamFlowControl int
type errStreamInUse int
type errStreamAlreadyClosed int
type errSessionVersion int
type errParse []byte
type errUnsupportedProxy string
type errStreamVersion struct {
streamId int
version int
}
type errInvalidAssociatedStream struct {
streamId int
associatedStreamId int
}
func (s errParse) Error() string {
data := []byte(s)
if len(data) > 20 {
return fmt.Sprintf("spdy: error parsing %X...", data[:20])
}
return fmt.Sprintf("spdy: error parsing %X", data)
}
func (s errUnsupportedProxy) Error() string {
return fmt.Sprintf("spdy: unsupported proxy %s", string(s))
}
func (s errSessionVersion) resetCode() int { return rstUnsupportedVersion }
func (s errSessionVersion) Error() string {
return fmt.Sprintf("spdy: unsupported version %d", int(s))
}
func (s errStreamVersion) StreamId() int { return s.streamId }
func (s errStreamVersion) resetCode() int { return rstUnsupportedVersion }
func (s errStreamVersion) Error() string {
return fmt.Sprintf("spdy: unsupported version %d in stream %d", s.version, s.streamId)
}
func (s errStreamProtocol) StreamId() int { return int(s) }
func (s errStreamProtocol) resetCode() int { return rstProtocolError }
func (s errStreamProtocol) Error() string {
return fmt.Sprintf("sydy: protocol error with stream %d", int(s))
}
func (s errInvalidStream) StreamId() int { return int(s) }
func (s errInvalidStream) resetCode() int { return rstInvalidStream }
func (s errInvalidStream) Error() string {
return fmt.Sprintf("spdy: stream %d does not exist", int(s))
}
func (s errInvalidAssociatedStream) StreamId() int { return s.streamId }
func (s errInvalidAssociatedStream) resetCode() int { return rstInvalidStream }
func (s errInvalidAssociatedStream) Error() string {
return fmt.Sprintf("spdy: associated stream %d does not exist whilst creating stream %d", s.associatedStreamId, s.streamId)
}
func (s errRefusedStream) StreamId() int { return int(s) }
func (s errRefusedStream) resetCode() int { return rstRefusedStream }
func (s errRefusedStream) Error() string {
return fmt.Sprintf("spdy: stream %d refused", int(s))
}
func (s errCancel) StreamId() int { return int(s) }
func (s errCancel) resetCode() int { return rstCancel }
func (s errCancel) Error() string {
return fmt.Sprintf("spdy: stream %d has been cancelled", int(s))
}
func (s errStreamFlowControl) StreamId() int { return int(s) }
func (s errStreamFlowControl) resetCode() int { return rstFlowControlError }
func (s errStreamFlowControl) Error() string {
return fmt.Sprintf("spdy: flow control error with stream %d", int(s))
}
func (s errStreamInUse) StreamId() int { return int(s) }
func (s errStreamInUse) resetCode() int { return rstStreamInUse }
func (s errStreamInUse) Error() string {
return fmt.Sprintf("spdy: stream id %d was already being used", int(s))
}
func (s errStreamAlreadyClosed) StreamId() int { return int(s) }
func (s errStreamAlreadyClosed) resetCode() int { return rstStreamAlreadyClosed }
func (s errStreamAlreadyClosed) Error() string {
return fmt.Sprintf("spdy: stream %d has already been closed", int(s))
}