-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclient.go
150 lines (125 loc) · 3.98 KB
/
client.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
/*
* Copyright 2018- The Pixie 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.
*
* SPDX-License-Identifier: Apache-2.0
*/
package pxapi
import (
"context"
"crypto/tls"
"fmt"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/metadata"
"px.dev/pxapi/types"
"px.dev/pxapi/utils"
"px.dev/pxapi/proto/cloudpb"
"px.dev/pxapi/proto/vizierpb"
)
const (
defaultCloudAddr = "work.withpixie.ai:443"
)
// TableRecordHandler is an interface that processes a table record-wise.
type TableRecordHandler interface {
// HandleInit is called to initialize the table handler interface.
HandleInit(ctx context.Context, metadata types.TableMetadata) error
// HandleRecord is called whenever a new row of the data is available.
HandleRecord(ctx context.Context, record *types.Record) error
// HandleDone is called when the table streaming has been completed.
HandleDone(ctx context.Context) error
}
// TableMuxer is an interface to route tables to the correct handler.
type TableMuxer interface {
// AcceptTable is passed the table information, if nil is returned then the table stream is ignored.
AcceptTable(ctx context.Context, metadata types.TableMetadata) (TableRecordHandler, error)
}
// Client is the base client to use either pixie cloud + vizier or standalone pem + vizier.
type Client struct {
apiKey string
bearerAuth string
vzAddr string
useEncryption bool
disableTLSVerification bool
insecureDirect bool
grpcConn *grpc.ClientConn
cmClient cloudpb.VizierClusterInfoClient
vizier vizierpb.VizierServiceClient
}
// NewClient creates a new Pixie API Client.
func NewClient(ctx context.Context, opts ...ClientOption) (*Client, error) {
c := &Client{
vzAddr: defaultCloudAddr,
useEncryption: true,
insecureDirect: false,
disableTLSVerification: false,
}
for _, opt := range opts {
opt(c)
}
if err := c.init(ctx); err != nil {
return nil, err
}
return c, nil
}
func (c *Client) init(ctx context.Context) error {
tlsConfig := &tls.Config{InsecureSkipVerify: c.disableTLSVerification}
creds := credentials.NewTLS(tlsConfig)
if c.insecureDirect {
creds = insecure.NewCredentials()
}
conn, err := grpc.Dial(c.vzAddr, grpc.WithTransportCredentials(creds))
if err != nil {
return err
}
c.grpcConn = conn
c.cmClient = cloudpb.NewVizierClusterInfoClient(conn)
c.vizier = vizierpb.NewVizierServiceClient(conn)
return nil
}
func (c *Client) cloudCtxWithMD(ctx context.Context) context.Context {
ctx = metadata.AppendToOutgoingContext(ctx,
"pixie-api-client", "go")
if len(c.apiKey) > 0 {
ctx = metadata.AppendToOutgoingContext(ctx,
"pixie-api-key", c.apiKey)
}
if len(c.bearerAuth) > 0 {
ctx = metadata.AppendToOutgoingContext(ctx,
"authorization", fmt.Sprintf("bearer %s", c.bearerAuth))
}
return ctx
}
// NewVizierClient creates a new vizier client, for the passed in vizierID.
func (c *Client) NewVizierClient(ctx context.Context, vizierID string) (*VizierClient, error) {
var err error
vzConn := c.grpcConn
var encOpts, decOpts *vizierpb.ExecuteScriptRequest_EncryptionOptions
if c.useEncryption {
encOpts, decOpts, err = utils.CreateEncryptionOptions()
if err != nil {
return nil, err
}
}
// Now create the actual client.
vzClient := &VizierClient{
cloud: c,
encOpts: encOpts,
decOpts: decOpts,
vizierID: vizierID,
vzClient: vizierpb.NewVizierServiceClient(vzConn),
}
return vzClient, nil
}