forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiversions.go
59 lines (51 loc) · 1.11 KB
/
apiversions.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
package kafka
import (
"context"
"net"
"github.com/segmentio/kafka-go/protocol"
"github.com/segmentio/kafka-go/protocol/apiversions"
)
type ApiVersionsRequest struct {
// Address of the kafka broker to send the request to.
Addr net.Addr
}
type ApiVersionsResponse struct {
ErrorCode int
ApiKeys []ApiVersionsResponseApiKey
}
type ApiVersionsResponseApiKey struct {
ApiKey int
ApiName string
MinVersion int
MaxVersion int
}
func (c *Client) ApiVersions(
ctx context.Context,
req ApiVersionsRequest,
) (*ApiVersionsResponse, error) {
apiReq := &apiversions.Request{}
protoResp, err := c.roundTrip(
ctx,
req.Addr,
apiReq,
)
if err != nil {
return nil, err
}
apiResp := protoResp.(*apiversions.Response)
resp := &ApiVersionsResponse{
ErrorCode: int(apiResp.ErrorCode),
}
for _, apiKey := range apiResp.ApiKeys {
resp.ApiKeys = append(
resp.ApiKeys,
ApiVersionsResponseApiKey{
ApiKey: int(apiKey.ApiKey),
ApiName: protocol.ApiKey(apiKey.ApiKey).String(),
MinVersion: int(apiKey.MinVersion),
MaxVersion: int(apiKey.MaxVersion),
},
)
}
return resp, err
}