aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/uber/jaeger-client-go/thrift-gen/zipkincore/zipkincollector.go
blob: 417e883d0e31790a39d1735eb080ea376a11a90a (plain) (blame)
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// Autogenerated by Thrift Compiler (0.9.3)
// DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING

package zipkincore

import (
    "bytes"
    "fmt"
    "github.com/uber/jaeger-client-go/thrift"
)

// (needed to ensure safety because of naive import list construction.)
var _ = thrift.ZERO
var _ = fmt.Printf
var _ = bytes.Equal

type ZipkinCollector interface {
    // Parameters:
    //  - Spans
    SubmitZipkinBatch(spans []*Span) (r []*Response, err error)
}

type ZipkinCollectorClient struct {
    Transport       thrift.TTransport
    ProtocolFactory thrift.TProtocolFactory
    InputProtocol   thrift.TProtocol
    OutputProtocol  thrift.TProtocol
    SeqId           int32
}

func NewZipkinCollectorClientFactory(t thrift.TTransport, f thrift.TProtocolFactory) *ZipkinCollectorClient {
    return &ZipkinCollectorClient{Transport: t,
        ProtocolFactory: f,
        InputProtocol:   f.GetProtocol(t),
        OutputProtocol:  f.GetProtocol(t),
        SeqId:           0,
    }
}

func NewZipkinCollectorClientProtocol(t thrift.TTransport, iprot thrift.TProtocol, oprot thrift.TProtocol) *ZipkinCollectorClient {
    return &ZipkinCollectorClient{Transport: t,
        ProtocolFactory: nil,
        InputProtocol:   iprot,
        OutputProtocol:  oprot,
        SeqId:           0,
    }
}

// Parameters:
//  - Spans
func (p *ZipkinCollectorClient) SubmitZipkinBatch(spans []*Span) (r []*Response, err error) {
    if err = p.sendSubmitZipkinBatch(spans); err != nil {
        return
    }
    return p.recvSubmitZipkinBatch()
}

func (p *ZipkinCollectorClient) sendSubmitZipkinBatch(spans []*Span) (err error) {
    oprot := p.OutputProtocol
    if oprot == nil {
        oprot = p.ProtocolFactory.GetProtocol(p.Transport)
        p.OutputProtocol = oprot
    }
    p.SeqId++
    if err = oprot.WriteMessageBegin("submitZipkinBatch", thrift.CALL, p.SeqId); err != nil {
        return
    }
    args := ZipkinCollectorSubmitZipkinBatchArgs{
        Spans: spans,
    }
    if err = args.Write(oprot); err != nil {
        return
    }
    if err = oprot.WriteMessageEnd(); err != nil {
        return
    }
    return oprot.Flush()
}

func (p *ZipkinCollectorClient) recvSubmitZipkinBatch() (value []*Response, err error) {
    iprot := p.InputProtocol
    if iprot == nil {
        iprot = p.ProtocolFactory.GetProtocol(p.Transport)
        p.InputProtocol = iprot
    }
    method, mTypeId, seqId, err := iprot.ReadMessageBegin()
    if err != nil {
        return
    }
    if method != "submitZipkinBatch" {
        err = thrift.NewTApplicationException(thrift.WRONG_METHOD_NAME, "submitZipkinBatch failed: wrong method name")
        return
    }
    if p.SeqId != seqId {
        err = thrift.NewTApplicationException(thrift.BAD_SEQUENCE_ID, "submitZipkinBatch failed: out of sequence response")
        return
    }
    if mTypeId == thrift.EXCEPTION {
        error2 := thrift.NewTApplicationException(thrift.UNKNOWN_APPLICATION_EXCEPTION, "Unknown Exception")
        var error3 error
        error3, err = error2.Read(iprot)
        if err != nil {
            return
        }
        if err = iprot.ReadMessageEnd(); err != nil {
            return
        }
        err = error3
        return
    }
    if mTypeId != thrift.REPLY {
        err = thrift.NewTApplicationException(thrift.INVALID_MESSAGE_TYPE_EXCEPTION, "submitZipkinBatch failed: invalid message type")
        return
    }
    result := ZipkinCollectorSubmitZipkinBatchResult{}
    if err = result.Read(iprot); err != nil {
        return
    }
    if err = iprot.ReadMessageEnd(); err != nil {
        return
    }
    value = result.GetSuccess()
    return
}

type ZipkinCollectorProcessor struct {
    processorMap map[string]thrift.TProcessorFunction
    handler      ZipkinCollector
}

func (p *ZipkinCollectorProcessor) AddToProcessorMap(key string, processor thrift.TProcessorFunction) {
    p.processorMap[key] = processor
}

func (p *ZipkinCollectorProcessor) GetProcessorFunction(key string) (processor thrift.TProcessorFunction, ok bool) {
    processor, ok = p.processorMap[key]
    return processor, ok
}

func (p *ZipkinCollectorProcessor) ProcessorMap() map[string]thrift.TProcessorFunction {
    return p.processorMap
}

func NewZipkinCollectorProcessor(handler ZipkinCollector) *ZipkinCollectorProcessor {

    self4 := &ZipkinCollectorProcessor{handler: handler, processorMap: make(map[string]thrift.TProcessorFunction)}
    self4.processorMap["submitZipkinBatch"] = &zipkinCollectorProcessorSubmitZipkinBatch{handler: handler}
    return self4
}

func (p *ZipkinCollectorProcessor) Process(iprot, oprot thrift.TProtocol) (success bool, err thrift.TException) {
    name, _, seqId, err := iprot.ReadMessageBegin()
    if err != nil {
        return false, err
    }
    if processor, ok := p.GetProcessorFunction(name); ok {
        return processor.Process(seqId, iprot, oprot)
    }
    iprot.Skip(thrift.STRUCT)
    iprot.ReadMessageEnd()
    x5 := thrift.NewTApplicationException(thrift.UNKNOWN_METHOD, "Unknown function "+name)
    oprot.WriteMessageBegin(name, thrift.EXCEPTION, seqId)
    x5.Write(oprot)
    oprot.WriteMessageEnd()
    oprot.Flush()
    return false, x5

}

type zipkinCollectorProcessorSubmitZipkinBatch struct {
    handler ZipkinCollector
}

func (p *zipkinCollectorProcessorSubmitZipkinBatch) Process(seqId int32, iprot, oprot thrift.TProtocol) (success bool, err thrift.TException) {
    args := ZipkinCollectorSubmitZipkinBatchArgs{}
    if err = args.Read(iprot); err != nil {
        iprot.ReadMessageEnd()
        x := thrift.NewTApplicationException(thrift.PROTOCOL_ERROR, err.Error())
        oprot.WriteMessageBegin("submitZipkinBatch", thrift.EXCEPTION, seqId)
        x.Write(oprot)
        oprot.WriteMessageEnd()
        oprot.Flush()
        return false, err
    }

    iprot.ReadMessageEnd()
    result := ZipkinCollectorSubmitZipkinBatchResult{}
    var retval []*Response
    var err2 error
    if retval, err2 = p.handler.SubmitZipkinBatch(args.Spans); err2 != nil {
        x := thrift.NewTApplicationException(thrift.INTERNAL_ERROR, "Internal error processing submitZipkinBatch: "+err2.Error())
        oprot.WriteMessageBegin("submitZipkinBatch", thrift.EXCEPTION, seqId)
        x.Write(oprot)
        oprot.WriteMessageEnd()
        oprot.Flush()
        return true, err2
    } else {
        result.Success = retval
    }
    if err2 = oprot.WriteMessageBegin("submitZipkinBatch", thrift.REPLY, seqId); err2 != nil {
        err = err2
    }
    if err2 = result.Write(oprot); err == nil && err2 != nil {
        err = err2
    }
    if err2 = oprot.WriteMessageEnd(); err == nil && err2 != nil {
        err = err2
    }
    if err2 = oprot.Flush(); err == nil && err2 != nil {
        err = err2
    }
    if err != nil {
        return
    }
    return true, err
}

// HELPER FUNCTIONS AND STRUCTURES

// Attributes:
//  - Spans
type ZipkinCollectorSubmitZipkinBatchArgs struct {
    Spans []*Span `thrift:"spans,1" json:"spans"`
}

func NewZipkinCollectorSubmitZipkinBatchArgs() *ZipkinCollectorSubmitZipkinBatchArgs {
    return &ZipkinCollectorSubmitZipkinBatchArgs{}
}

func (p *ZipkinCollectorSubmitZipkinBatchArgs) GetSpans() []*Span {
    return p.Spans
}
func (p *ZipkinCollectorSubmitZipkinBatchArgs) Read(iprot thrift.TProtocol) error {
    if _, err := iprot.ReadStructBegin(); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T read error: ", p), err)
    }

    for {
        _, fieldTypeId, fieldId, err := iprot.ReadFieldBegin()
        if err != nil {
            return thrift.PrependError(fmt.Sprintf("%T field %d read error: ", p, fieldId), err)
        }
        if fieldTypeId == thrift.STOP {
            break
        }
        switch fieldId {
        case 1:
            if err := p.readField1(iprot); err != nil {
                return err
            }
        default:
            if err := iprot.Skip(fieldTypeId); err != nil {
                return err
            }
        }
        if err := iprot.ReadFieldEnd(); err != nil {
            return err
        }
    }
    if err := iprot.ReadStructEnd(); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T read struct end error: ", p), err)
    }
    return nil
}

func (p *ZipkinCollectorSubmitZipkinBatchArgs) readField1(iprot thrift.TProtocol) error {
    _, size, err := iprot.ReadListBegin()
    if err != nil {
        return thrift.PrependError("error reading list begin: ", err)
    }
    tSlice := make([]*Span, 0, size)
    p.Spans = tSlice
    for i := 0; i < size; i++ {
        _elem6 := &Span{}
        if err := _elem6.Read(iprot); err != nil {
            return thrift.PrependError(fmt.Sprintf("%T error reading struct: ", _elem6), err)
        }
        p.Spans = append(p.Spans, _elem6)
    }
    if err := iprot.ReadListEnd(); err != nil {
        return thrift.PrependError("error reading list end: ", err)
    }
    return nil
}

func (p *ZipkinCollectorSubmitZipkinBatchArgs) Write(oprot thrift.TProtocol) error {
    if err := oprot.WriteStructBegin("submitZipkinBatch_args"); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T write struct begin error: ", p), err)
    }
    if err := p.writeField1(oprot); err != nil {
        return err
    }
    if err := oprot.WriteFieldStop(); err != nil {
        return thrift.PrependError("write field stop error: ", err)
    }
    if err := oprot.WriteStructEnd(); err != nil {
        return thrift.PrependError("write struct stop error: ", err)
    }
    return nil
}

func (p *ZipkinCollectorSubmitZipkinBatchArgs) writeField1(oprot thrift.TProtocol) (err error) {
    if err := oprot.WriteFieldBegin("spans", thrift.LIST, 1); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T write field begin error 1:spans: ", p), err)
    }
    if err := oprot.WriteListBegin(thrift.STRUCT, len(p.Spans)); err != nil {
        return thrift.PrependError("error writing list begin: ", err)
    }
    for _, v := range p.Spans {
        if err := v.Write(oprot); err != nil {
            return thrift.PrependError(fmt.Sprintf("%T error writing struct: ", v), err)
        }
    }
    if err := oprot.WriteListEnd(); err != nil {
        return thrift.PrependError("error writing list end: ", err)
    }
    if err := oprot.WriteFieldEnd(); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T write field end error 1:spans: ", p), err)
    }
    return err
}

func (p *ZipkinCollectorSubmitZipkinBatchArgs) String() string {
    if p == nil {
        return "<nil>"
    }
    return fmt.Sprintf("ZipkinCollectorSubmitZipkinBatchArgs(%+v)", *p)
}

// Attributes:
//  - Success
type ZipkinCollectorSubmitZipkinBatchResult struct {
    Success []*Response `thrift:"success,0" json:"success,omitempty"`
}

func NewZipkinCollectorSubmitZipkinBatchResult() *ZipkinCollectorSubmitZipkinBatchResult {
    return &ZipkinCollectorSubmitZipkinBatchResult{}
}

var ZipkinCollectorSubmitZipkinBatchResult_Success_DEFAULT []*Response

func (p *ZipkinCollectorSubmitZipkinBatchResult) GetSuccess() []*Response {
    return p.Success
}
func (p *ZipkinCollectorSubmitZipkinBatchResult) IsSetSuccess() bool {
    return p.Success != nil
}

func (p *ZipkinCollectorSubmitZipkinBatchResult) Read(iprot thrift.TProtocol) error {
    if _, err := iprot.ReadStructBegin(); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T read error: ", p), err)
    }

    for {
        _, fieldTypeId, fieldId, err := iprot.ReadFieldBegin()
        if err != nil {
            return thrift.PrependError(fmt.Sprintf("%T field %d read error: ", p, fieldId), err)
        }
        if fieldTypeId == thrift.STOP {
            break
        }
        switch fieldId {
        case 0:
            if err := p.readField0(iprot); err != nil {
                return err
            }
        default:
            if err := iprot.Skip(fieldTypeId); err != nil {
                return err
            }
        }
        if err := iprot.ReadFieldEnd(); err != nil {
            return err
        }
    }
    if err := iprot.ReadStructEnd(); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T read struct end error: ", p), err)
    }
    return nil
}

func (p *ZipkinCollectorSubmitZipkinBatchResult) readField0(iprot thrift.TProtocol) error {
    _, size, err := iprot.ReadListBegin()
    if err != nil {
        return thrift.PrependError("error reading list begin: ", err)
    }
    tSlice := make([]*Response, 0, size)
    p.Success = tSlice
    for i := 0; i < size; i++ {
        _elem7 := &Response{}
        if err := _elem7.Read(iprot); err != nil {
            return thrift.PrependError(fmt.Sprintf("%T error reading struct: ", _elem7), err)
        }
        p.Success = append(p.Success, _elem7)
    }
    if err := iprot.ReadListEnd(); err != nil {
        return thrift.PrependError("error reading list end: ", err)
    }
    return nil
}

func (p *ZipkinCollectorSubmitZipkinBatchResult) Write(oprot thrift.TProtocol) error {
    if err := oprot.WriteStructBegin("submitZipkinBatch_result"); err != nil {
        return thrift.PrependError(fmt.Sprintf("%T write struct begin error: ", p), err)
    }
    if err := p.writeField0(oprot); err != nil {
        return err
    }
    if err := oprot.WriteFieldStop(); err != nil {
        return thrift.PrependError("write field stop error: ", err)
    }
    if err := oprot.WriteStructEnd(); err != nil {
        return thrift.PrependError("write struct stop error: ", err)
    }
    return nil
}

func (p *ZipkinCollectorSubmitZipkinBatchResult) writeField0(oprot thrift.TProtocol) (err error) {
    if p.IsSetSuccess() {
        if err := oprot.WriteFieldBegin("success", thrift.LIST, 0); err != nil {
            return thrift.PrependError(fmt.Sprintf("%T write field begin error 0:success: ", p), err)
        }
        if err := oprot.WriteListBegin(thrift.STRUCT, len(p.Success)); err != nil {
            return thrift.PrependError("error writing list begin: ", err)
        }
        for _, v := range p.Success {
            if err := v.Write(oprot); err != nil {
                return thrift.PrependError(fmt.Sprintf("%T error writing struct: ", v), err)
            }
        }
        if err := oprot.WriteListEnd(); err != nil {
            return thrift.PrependError("error writing list end: ", err)
        }
        if err := oprot.WriteFieldEnd(); err != nil {
            return thrift.PrependError(fmt.Sprintf("%T write field end error 0:success: ", p), err)
        }
    }
    return err
}

func (p *ZipkinCollectorSubmitZipkinBatchResult) String() string {
    if p == nil {
        return "<nil>"
    }
    return fmt.Sprintf("ZipkinCollectorSubmitZipkinBatchResult(%+v)", *p)
}