-
Notifications
You must be signed in to change notification settings - Fork 837
/
Copy pathinvocation.go
168 lines (143 loc) · 3.88 KB
/
invocation.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
* Copyright 2021 CloudWeGo Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package rpcinfo
import (
"sync"
"sync/atomic"
"github.com/cloudwego/kitex/pkg/kerrors"
)
var (
_ Invocation = (*invocation)(nil)
_ InvocationSetter = (*invocation)(nil)
invocationPool sync.Pool
globalSeqID int32 = 0
)
func init() {
invocationPool.New = newInvocation
}
// InvocationSetter is used to set information about an RPC.
type InvocationSetter interface {
SetPackageName(name string)
SetServiceName(name string)
SetMethodName(name string)
SetSeqID(seqID int32)
SetBizStatusErr(err kerrors.BizStatusErrorIface)
SetExtra(key string, value interface{})
Reset()
}
type invocation struct {
packageName string
serviceName string
methodName string
seqID int32
bizErr kerrors.BizStatusErrorIface
extra map[string]interface{}
}
// NewInvocation creates a new Invocation with the given service, method and optional package.
func NewInvocation(service, method string, pkgOpt ...string) *invocation {
ivk := invocationPool.Get().(*invocation)
ivk.seqID = genSeqID()
ivk.serviceName = service
ivk.methodName = method
if len(pkgOpt) > 0 {
ivk.packageName = pkgOpt[0]
}
return ivk
}
// NewServerInvocation to get Invocation for new request in server side
func NewServerInvocation() Invocation {
ivk := invocationPool.Get().(*invocation)
return ivk
}
func genSeqID() int32 {
id := atomic.AddInt32(&globalSeqID, 1)
if id == 0 {
// seqID is non-0 to avoid potential default value judgments leading to error handling
id = atomic.AddInt32(&globalSeqID, 1)
}
return id
}
func newInvocation() interface{} {
return &invocation{}
}
// SeqID implements the Invocation interface.
func (i *invocation) SeqID() int32 {
return i.seqID
}
// SetSeqID implements the InvocationSetter interface.
func (i *invocation) SetSeqID(seqID int32) {
i.seqID = seqID
}
func (i *invocation) PackageName() string {
return i.packageName
}
func (i *invocation) SetPackageName(name string) {
i.packageName = name
}
func (i *invocation) ServiceName() string {
return i.serviceName
}
// SetServiceName implements the InvocationSetter interface.
func (i *invocation) SetServiceName(name string) {
i.serviceName = name
}
// MethodName implements the Invocation interface.
func (i *invocation) MethodName() string {
return i.methodName
}
// SetMethodName implements the InvocationSetter interface.
func (i *invocation) SetMethodName(name string) {
i.methodName = name
}
// BizStatusErr implements the Invocation interface.
func (i *invocation) BizStatusErr() kerrors.BizStatusErrorIface {
return i.bizErr
}
// SetBizStatusErr implements the InvocationSetter interface.
func (i *invocation) SetBizStatusErr(err kerrors.BizStatusErrorIface) {
i.bizErr = err
}
func (i *invocation) SetExtra(key string, value interface{}) {
if i.extra == nil {
i.extra = map[string]interface{}{}
}
i.extra[key] = value
}
func (i *invocation) Extra(key string) interface{} {
if i.extra == nil {
return nil
}
return i.extra[key]
}
// Reset implements the InvocationSetter interface.
func (i *invocation) Reset() {
i.zero()
}
// Recycle reuses the invocation.
func (i *invocation) Recycle() {
i.zero()
invocationPool.Put(i)
}
func (i *invocation) zero() {
i.seqID = 0
i.packageName = ""
i.serviceName = ""
i.methodName = ""
i.bizErr = nil
for key := range i.extra {
delete(i.extra, key)
}
}