This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
/
segment.go
271 lines (241 loc) · 6.26 KB
/
segment.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
//
// Copyright 2022 SkyAPM org
//
// 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 go2sky
import (
"sync/atomic"
"github.com/SkyAPM/go2sky/internal/idgen"
"github.com/SkyAPM/go2sky/internal/tool"
"github.com/SkyAPM/go2sky/propagation"
commonv3 "skywalking.apache.org/repo/goapi/collect/common/v3"
agentv3 "skywalking.apache.org/repo/goapi/collect/language/agent/v3"
)
func newSegmentSpan(defaultSpan *defaultSpan, parentSpan segmentSpan) (s segmentSpan, err error) {
ssi := &segmentSpanImpl{
defaultSpan: *defaultSpan,
}
err = ssi.createSegmentContext(parentSpan)
if err != nil {
return nil, err
}
if parentSpan == nil || !parentSpan.segmentRegister() {
rs := newSegmentRoot(ssi)
err = rs.createRootSegmentContext(parentSpan)
if err != nil {
return nil, err
}
s = rs
} else {
s = ssi
}
return
}
// SegmentContext is the context in a segment
type SegmentContext struct {
TraceID string
SegmentID string
SpanID int32
ParentSpanID int32
ParentSegmentID string
collect chan<- ReportedSpan
refNum *int32
spanIDGenerator *int32
FirstSpan Span `json:"-"`
CorrelationContext map[string]string
}
// ReportedSpan is accessed by Reporter to load reported data
type ReportedSpan interface {
Context() *SegmentContext
Refs() []*propagation.SpanContext
StartTime() int64
EndTime() int64
OperationName() string
Peer() string
SpanType() agentv3.SpanType
SpanLayer() agentv3.SpanLayer
IsError() bool
Tags() []*commonv3.KeyStringValuePair
Logs() []*agentv3.Log
ComponentID() int32
}
type segmentSpan interface {
Span
context() SegmentContext
tracer() *Tracer
segmentRegister() bool
}
type segmentSpanImpl struct {
defaultSpan
SegmentContext
}
// For Span
func (s *segmentSpanImpl) End() {
if !s.IsValid() {
return
}
s.defaultSpan.End()
go func() {
s.Context().collect <- s
}()
}
// For Reported Span
func (s *segmentSpanImpl) Context() *SegmentContext {
return &s.SegmentContext
}
func (s *segmentSpanImpl) Refs() []*propagation.SpanContext {
return s.defaultSpan.Refs
}
func (s *segmentSpanImpl) StartTime() int64 {
return tool.Millisecond(s.defaultSpan.StartTime)
}
func (s *segmentSpanImpl) EndTime() int64 {
return tool.Millisecond(s.defaultSpan.EndTime)
}
func (s *segmentSpanImpl) OperationName() string {
return s.defaultSpan.OperationName
}
func (s *segmentSpanImpl) Peer() string {
return s.defaultSpan.Peer
}
func (s *segmentSpanImpl) SpanType() agentv3.SpanType {
return agentv3.SpanType(s.defaultSpan.SpanType)
}
func (s *segmentSpanImpl) SpanLayer() agentv3.SpanLayer {
return s.defaultSpan.Layer
}
func (s *segmentSpanImpl) IsError() bool {
return s.defaultSpan.IsError
}
func (s *segmentSpanImpl) Tags() []*commonv3.KeyStringValuePair {
return s.defaultSpan.Tags
}
func (s *segmentSpanImpl) Logs() []*agentv3.Log {
return s.defaultSpan.Logs
}
func (s *segmentSpanImpl) ComponentID() int32 {
return s.defaultSpan.ComponentID
}
func (s *segmentSpanImpl) context() SegmentContext {
return s.SegmentContext
}
func (s *segmentSpanImpl) tracer() *Tracer {
return s.defaultSpan.tracer
}
func (s *segmentSpanImpl) segmentRegister() bool {
for {
o := atomic.LoadInt32(s.Context().refNum)
if o < 0 {
return false
}
if atomic.CompareAndSwapInt32(s.Context().refNum, o, o+1) {
return true
}
}
}
func (s *segmentSpanImpl) createSegmentContext(parent segmentSpan) (err error) {
if parent == nil {
s.SegmentContext = SegmentContext{}
if len(s.defaultSpan.Refs) > 0 {
s.TraceID = s.defaultSpan.Refs[0].TraceID
s.CorrelationContext = s.defaultSpan.Refs[0].CorrelationContext
} else {
s.TraceID, err = idgen.GenerateGlobalID()
if err != nil {
return err
}
s.CorrelationContext = make(map[string]string)
}
} else {
s.SegmentContext = parent.context()
s.ParentSegmentID = s.SegmentID
s.ParentSpanID = s.SpanID
s.SpanID = atomic.AddInt32(s.Context().spanIDGenerator, 1)
s.CorrelationContext = parent.context().CorrelationContext
}
if s.SegmentContext.FirstSpan == nil {
s.SegmentContext.FirstSpan = s
}
if s.CorrelationContext == nil {
s.CorrelationContext = make(map[string]string)
}
return
}
type rootSegmentSpan struct {
*segmentSpanImpl
notify <-chan ReportedSpan
segment []ReportedSpan
doneCh chan int32
}
func (rs *rootSegmentSpan) End() {
if !rs.IsValid() {
return
}
rs.defaultSpan.End()
go func() {
rs.doneCh <- atomic.SwapInt32(rs.Context().refNum, -1)
}()
}
func (rs *rootSegmentSpan) createRootSegmentContext(parent segmentSpan) (err error) {
rs.SegmentID, err = idgen.GenerateGlobalID()
if err != nil {
return err
}
i := int32(0)
rs.spanIDGenerator = &i
rs.SpanID = i
rs.ParentSpanID = -1
if parent != nil {
spanContext := &propagation.SpanContext{}
firstSpan := parent.context().FirstSpan
spanContext.TraceID = parent.context().TraceID
spanContext.ParentSegmentID = parent.context().SegmentID
spanContext.ParentSpanID = parent.context().SpanID
spanContext.ParentService = parent.tracer().service
spanContext.ParentServiceInstance = parent.tracer().instance
spanContext.ParentEndpoint = firstSpan.GetOperationName()
rs.defaultSpan.Refs = append(rs.defaultSpan.Refs, spanContext)
}
return
}
func newSegmentRoot(segmentSpan *segmentSpanImpl) *rootSegmentSpan {
s := &rootSegmentSpan{
segmentSpanImpl: segmentSpan,
}
var init int32
s.refNum = &init
ch := make(chan ReportedSpan)
s.collect = ch
s.notify = ch
s.segment = make([]ReportedSpan, 0, 10)
s.doneCh = make(chan int32)
go func() {
total := -1
defer close(ch)
defer close(s.doneCh)
for {
select {
case span := <-s.notify:
s.segment = append(s.segment, span)
case n := <-s.doneCh:
total = int(n)
}
if total == len(s.segment) {
break
}
}
s.tracer().reporter.Send(append(s.segment, s))
}()
return s
}