Welcome to mirror list, hosted at ThFree Co, Russian Federation.

collector_client.go « lightstep-tracer-go « lightstep « github.com « vendor - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b81e70f666f34ac1a74a655c720ce97886142fc5 (plain)
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
package lightstep

import (
	"context"
	"io"
	"net/http"

	cpb "github.com/lightstep/lightstep-tracer-go/collectorpb"
	"github.com/lightstep/lightstep-tracer-go/lightstep_thrift"
)

// Connection describes a closable connection. Exposed for testing.
type Connection interface {
	io.Closer
}

// ConnectorFactory is for testing purposes.
type ConnectorFactory func() (interface{}, Connection, error)

// collectorResponse encapsulates internal thrift/grpc responses.
type collectorResponse interface {
	GetErrors() []string
	Disable() bool
}

type reportRequest struct {
	thriftRequest *lightstep_thrift.ReportRequest
	protoRequest  *cpb.ReportRequest
	httpRequest   *http.Request
}

// collectorClient encapsulates internal thrift/grpc transports.
type collectorClient interface {
	Report(context.Context, reportRequest) (collectorResponse, error)
	Translate(context.Context, *reportBuffer) (reportRequest, error)
	ConnectClient() (Connection, error)
	ShouldReconnect() bool
}

func newCollectorClient(opts Options, reporterID uint64, attributes map[string]string) (collectorClient, error) {
	if opts.UseThrift {
		return newThriftCollectorClient(opts, reporterID, attributes), nil
	}

	if opts.UseHttp {
		return newHTTPCollectorClient(opts, reporterID, attributes)
	}

	if opts.UseGRPC {
		return newGrpcCollectorClient(opts, reporterID, attributes), nil
	}

	// No transport specified, defaulting to GRPC
	return newGrpcCollectorClient(opts, reporterID, attributes), nil
}