-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
322 lines (290 loc) · 8.79 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
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
package citygraph
import (
"context"
"encoding/json"
"io"
"math"
emptypb "github.com/golang/protobuf/ptypes/empty"
"google.golang.org/grpc"
"google.golang.org/protobuf/types/known/timestamppb"
"github.com/geomodulus/citygraph/pb"
)
type GraphClient interface {
CreateVertex(context.Context, *pb.Uuid, *pb.Identifier) error
CreateVertexFromType(context.Context, *pb.Identifier) (*pb.Uuid, error)
DeleteVertices(context.Context, *pb.VertexQuery) error
GetVertexProperties(context.Context, *pb.VertexQuery, string) ([]*pb.VertexProperty, error)
SetVertexProperties(context.Context, *pb.VertexQuery, string, interface{}) error
GetVertices(context.Context, *pb.VertexQuery) ([]*pb.Vertex, error)
GetAllVertexProperties(context.Context, *pb.VertexQuery) ([]*pb.VertexProperties, error)
DeleteEdges(context.Context, *pb.EdgeQuery) error
CreateEdge(context.Context, *pb.Uuid, *pb.Identifier, *pb.Uuid) error
GetEdges(context.Context, *pb.EdgeQuery) ([]*pb.Edge, error)
GetEdgeProperties(context.Context, *pb.EdgeQuery, string) ([]*pb.EdgeProperty, error)
SetEdgeProperties(context.Context, *pb.EdgeQuery, string, interface{}) error
GetAllEdgeProperties(context.Context, *pb.EdgeQuery) ([]*pb.EdgeProperties, error)
NewBulkSender(ctx context.Context) (BulkSender, error)
}
// NewSpecificVertexQuery returns a new query for the provided UUIDs.
func NewSpecificVertexQuery(ids ...*pb.Uuid) *pb.VertexQuery {
return &pb.VertexQuery{
Query: &pb.VertexQuery_Specific{
Specific: &pb.SpecificVertexQuery{Ids: ids},
},
}
}
// NewSpecificEdgeQuery returns a new query for the provided edge keys.
func NewSpecificEdgeQuery(keys ...*pb.EdgeKey) *pb.EdgeQuery {
return &pb.EdgeQuery{
Query: &pb.EdgeQuery_Specific{
Specific: &pb.SpecificEdgeQuery{Keys: keys},
},
}
}
// NewVertexPropertyQuery generates a vertex property query.
func NewVertexPropertyQuery(inner *pb.VertexQuery, name string) *pb.VertexPropertyQuery {
return &pb.VertexPropertyQuery{
Inner: inner,
Name: &pb.Identifier{Value: name},
}
}
// NewEdgePropertyQuery generates an edge property query.
func NewEdgePropertyQuery(inner *pb.EdgeQuery, name string) *pb.EdgePropertyQuery {
return &pb.EdgePropertyQuery{
Inner: inner,
Name: &pb.Identifier{Value: name},
}
}
// NewPipeEdgeQuery returns a new query for the provided edge keys.
func NewPipeEdgeQuery(inner *pb.VertexQuery, dir pb.EdgeDirection, t *pb.Identifier) *pb.EdgeQuery {
return &pb.EdgeQuery{
Query: &pb.EdgeQuery_Pipe{
Pipe: &pb.PipeEdgeQuery{
Inner: inner,
Direction: dir,
T: t,
Limit: math.MaxInt32,
},
},
}
}
// NewPipeEdgeQueryLimit returns a new query for the provided edge keys.
func NewPipeEdgeQueryLimit(inner *pb.VertexQuery, dir pb.EdgeDirection, t *pb.Identifier, limit int) *pb.EdgeQuery {
return &pb.EdgeQuery{
Query: &pb.EdgeQuery_Pipe{
Pipe: &pb.PipeEdgeQuery{
Inner: inner,
Direction: dir,
T: t,
Limit: uint32(limit),
},
},
}
}
// NewPipeEdgeQueryLimitOffset returns a new query for the provided edge keys.
func NewPipeEdgeQueryLimitOffset(inner *pb.VertexQuery, dir pb.EdgeDirection, t *pb.Identifier, limit int, low *timestamppb.Timestamp) *pb.EdgeQuery {
return &pb.EdgeQuery{
Query: &pb.EdgeQuery_Pipe{
Pipe: &pb.PipeEdgeQuery{
Inner: inner,
Direction: dir,
T: t,
Low: low,
Limit: uint32(limit),
},
},
}
}
// NewPipeVertexQuery returns a new query for the provided edge keys.
func NewPipeVertexQuery(inner *pb.EdgeQuery, dir pb.EdgeDirection, t *pb.Identifier) *pb.VertexQuery {
return &pb.VertexQuery{
Query: &pb.VertexQuery_Pipe{
Pipe: &pb.PipeVertexQuery{
Inner: inner,
Direction: dir,
T: t,
},
},
}
}
// SetVertexPropertiesRequest encodes the supplied value as JSON and returns a
// request to set that value for the supplied VertexQuery and property name.
func SetVertexPropertiesRequest(inner *pb.VertexQuery, name string, jsonValue interface{}) (*pb.SetVertexPropertiesRequest, error) {
jsonStr, err := json.Marshal(jsonValue)
if err != nil {
return nil, err
}
return &pb.SetVertexPropertiesRequest{
Q: &pb.VertexPropertyQuery{Inner: inner, Name: &pb.Identifier{Value: name}},
Value: &pb.Json{Value: string(jsonStr)},
}, nil
}
// SetEdgePropertiesRequest encodes the supplied value as JSON and returns a
// request to set that value for the supplied EdgeQuery and property name.
func SetEdgePropertiesRequest(inner *pb.EdgeQuery, name string, jsonValue interface{}) (*pb.SetEdgePropertiesRequest, error) {
jsonStr, err := json.Marshal(jsonValue)
if err != nil {
return nil, err
}
return &pb.SetEdgePropertiesRequest{
Q: &pb.EdgePropertyQuery{Inner: inner, Name: &pb.Identifier{Value: name}},
Value: &pb.Json{Value: string(jsonStr)},
}, nil
}
type Client struct {
graph pb.IndraDBClient
counter uint32
}
func NewClient(conn grpc.ClientConnInterface) *Client {
return &Client{pb.NewIndraDBClient(conn), 0}
}
type BulkSender interface {
Send(*pb.BulkInsertItem) error
CloseAndRecv() (*emptypb.Empty, error)
}
func (c *Client) NewBulkSender(ctx context.Context) (BulkSender, error) {
return c.graph.BulkInsert(ctx)
}
func (c *Client) GetVertices(ctx context.Context, query *pb.VertexQuery) ([]*pb.Vertex, error) {
stream, err := c.graph.GetVertices(ctx, query)
if err != nil {
return nil, err
}
var res []*pb.Vertex
for {
vtx, err := stream.Recv()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
res = append(res, vtx)
}
return res, nil
}
func (c *Client) CreateVertex(ctx context.Context, id *pb.Uuid, t *pb.Identifier) error {
_, err := c.graph.CreateVertex(ctx, &pb.Vertex{Id: id, T: t})
return err
}
func (c *Client) CreateVertexFromType(ctx context.Context, t *pb.Identifier) (*pb.Uuid, error) {
return c.graph.CreateVertexFromType(ctx, t)
}
func (c *Client) DeleteVertices(ctx context.Context, query *pb.VertexQuery) error {
_, err := c.graph.DeleteVertices(ctx, query)
return err
}
func (c *Client) GetVertexProperties(ctx context.Context, query *pb.VertexQuery, name string) ([]*pb.VertexProperty, error) {
stream, err := c.graph.GetVertexProperties(ctx, NewVertexPropertyQuery(query, name))
if err != nil {
return nil, err
}
var res []*pb.VertexProperty
for {
item, err := stream.Recv()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
res = append(res, item)
}
return res, nil
}
func (c *Client) SetVertexProperties(ctx context.Context, query *pb.VertexQuery, name string, jsonValue interface{}) error {
req, err := SetVertexPropertiesRequest(query, name, jsonValue)
if err != nil {
return err
}
_, err = c.graph.SetVertexProperties(ctx, req)
return err
}
func (c *Client) GetAllVertexProperties(ctx context.Context, query *pb.VertexQuery) ([]*pb.VertexProperties, error) {
stream, err := c.graph.GetAllVertexProperties(ctx, query)
if err != nil {
return nil, err
}
var res []*pb.VertexProperties
for {
item, err := stream.Recv()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
res = append(res, item)
}
return res, nil
}
func (c *Client) GetEdges(ctx context.Context, query *pb.EdgeQuery) ([]*pb.Edge, error) {
stream, err := c.graph.GetEdges(ctx, query)
if err != nil {
return nil, err
}
var res []*pb.Edge
for {
item, err := stream.Recv()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
res = append(res, item)
}
return res, nil
}
func (c *Client) CreateEdge(ctx context.Context, outbound *pb.Uuid, t *pb.Identifier, inbound *pb.Uuid) error {
_, err := c.graph.CreateEdge(ctx, &pb.EdgeKey{OutboundId: outbound, T: t, InboundId: inbound})
return err
}
func (c *Client) DeleteEdges(ctx context.Context, query *pb.EdgeQuery) error {
_, err := c.graph.DeleteEdges(ctx, query)
return err
}
func (c *Client) GetEdgeProperties(ctx context.Context, query *pb.EdgeQuery, name string) ([]*pb.EdgeProperty, error) {
stream, err := c.graph.GetEdgeProperties(ctx, NewEdgePropertyQuery(query, name))
if err != nil {
return nil, err
}
var res []*pb.EdgeProperty
for {
item, err := stream.Recv()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
res = append(res, item)
}
return res, nil
}
func (c *Client) SetEdgeProperties(ctx context.Context, query *pb.EdgeQuery, name string, jsonValue interface{}) error {
req, err := SetEdgePropertiesRequest(query, name, jsonValue)
if err != nil {
return err
}
_, err = c.graph.SetEdgeProperties(ctx, req)
return err
}
func (c *Client) GetAllEdgeProperties(ctx context.Context, query *pb.EdgeQuery) ([]*pb.EdgeProperties, error) {
stream, err := c.graph.GetAllEdgeProperties(ctx, query)
if err != nil {
return nil, err
}
var res []*pb.EdgeProperties
for {
item, err := stream.Recv()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
res = append(res, item)
}
return res, nil
}