-
Notifications
You must be signed in to change notification settings - Fork 61
/
qrpc.go
84 lines (69 loc) · 2.16 KB
/
qrpc.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
package qrpc
// Cmd is for multiplexer
type Cmd uint32
// FrameFlag defines type for qrpc frame
type FrameFlag uint8
const (
// StreamFlag means packet is streamed
StreamFlag FrameFlag = 1 << iota
// StreamEndFlag denotes the end of a stream
StreamEndFlag
// StreamRstFlag is sent to request cancellation of a stream or to indicate that an error condition has occurred
StreamRstFlag
// NBFlag means it should be handled nonblockingly, it's implied for streamed frames
NBFlag
// PushFlag mean the frame is pushed from server
PushFlag
// CodecFlag for codec
CodecFlag
)
// ToNonStream convert flg to nonstreamed flag
func (flg FrameFlag) ToNonStream() FrameFlag {
return flg & ^(StreamFlag & StreamEndFlag)
}
// ToStream convert flg to streamed flag
func (flg FrameFlag) ToStream() FrameFlag {
return flg | StreamFlag
}
// ToEndStream set StreamEndFlag on
func (flg FrameFlag) ToEndStream() FrameFlag {
return flg | StreamEndFlag
}
// IsNonBlock means whether the frame should be processed nonblockingly
func (flg FrameFlag) IsNonBlock() bool {
return flg.IsStream() || flg&NBFlag != 0
}
// IsRst returns whether flg is rst
func (flg FrameFlag) IsRst() bool {
return flg&StreamRstFlag != 0
}
// IsStream means whether the frame is streamed
func (flg FrameFlag) IsStream() bool {
return flg&StreamFlag != 0 || flg&StreamEndFlag != 0
}
// IsDone returns whether more continuation frame is expected or not
// true if:
// 1. not streamed
// 2. stream end flag set
// 3. stream rst flag set
func (flg FrameFlag) IsDone() bool {
return !flg.IsStream() || flg&StreamEndFlag != 0 || flg&StreamRstFlag != 0
}
// IsPush checks whether frame is pushed
func (flg FrameFlag) IsPush() bool {
return flg&PushFlag != 0
}
// IsCodec checks whether frame needs codec
func (flg FrameFlag) IsCodec() bool {
return flg&CodecFlag != 0
}
// ToNonCodec convert flg to noncodec flag
func (flg FrameFlag) ToNonCodec() FrameFlag {
return flg & ^CodecFlag
}
// contextKey is a value for use with context.WithValue. It's used as
// a pointer so it fits in an interface{} without allocation.
type contextKey struct {
name string
}
func (k *contextKey) String() string { return "qrpc context value " + k.name }