-
Notifications
You must be signed in to change notification settings - Fork 79
/
graph_edge_collections_impl.go
239 lines (223 loc) · 7.38 KB
/
graph_edge_collections_impl.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
//
// DISCLAIMER
//
// Copyright 2017 ArangoDB GmbH, Cologne, Germany
//
// 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.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
// Author Ewout Prangsma
//
package driver
import (
"context"
"path"
)
type graphDefinition struct {
Name string `json:"name"`
IsSmart bool `json:"isSmart"`
IsSatellite bool `json:"isSatellite"`
IsDisjoint bool `json:"isDisjoint,omitempty"`
EdgeDefinitions []EdgeDefinition `json:"edgeDefinitions,omitempty"`
NumberOfShards int `json:"numberOfShards,omitempty"`
OrphanCollections []string `json:"orphanCollections,omitempty"`
// Deprecated: use 'WriteConcern' instead.
MinReplicationFactor int `json:"minReplicationFactor,omitempty"`
WriteConcern int `json:"writeConcern,omitempty"`
// ReplicationFactor is the number of replication factor that is used for every collection within this graph.
// Cannot be modified later.
ReplicationFactor graphReplicationFactor `json:"replicationFactor,omitempty"`
// This field must be set to the attribute that will be used for sharding or smart graphs.
// All vertices are required to have this attribute set. Edges derive the attribute from their connected vertices.
// This requires ArangoDB Enterprise Edition.
SmartGraphAttribute string `json:"smartGraphAttribute,omitempty"`
Initial *string `json:"initial,omitempty"`
InitialCid int `json:"initialCid,omitempty"`
ID string `json:"_id"`
Key DocumentID `json:"_key"`
Rev string `json:"_rev"`
}
type getGraphResponse struct {
Graph graphDefinition `json:"graph"`
ArangoError
}
// EdgeCollection opens a connection to an existing edge-collection within the graph.
// If no edge-collection with given name exists, an NotFoundError is returned.
func (g *graph) EdgeCollection(ctx context.Context, name string) (Collection, VertexConstraints, error) {
req, err := g.conn.NewRequest("GET", g.relPath())
if err != nil {
return nil, VertexConstraints{}, WithStack(err)
}
resp, err := g.conn.Do(ctx, req)
if err != nil {
return nil, VertexConstraints{}, WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return nil, VertexConstraints{}, WithStack(err)
}
var data getGraphResponse
if err := resp.ParseBody("", &data); err != nil {
return nil, VertexConstraints{}, WithStack(err)
}
for _, n := range data.Graph.EdgeDefinitions {
if n.Collection == name {
ec, err := newEdgeCollection(name, g)
if err != nil {
return nil, VertexConstraints{}, WithStack(err)
}
constraints := VertexConstraints{
From: n.From,
To: n.To,
}
return ec, constraints, nil
}
}
return nil, VertexConstraints{}, WithStack(newArangoError(404, 0, "not found"))
}
// EdgeCollectionExists returns true if an edge-collection with given name exists within the graph.
func (g *graph) EdgeCollectionExists(ctx context.Context, name string) (bool, error) {
req, err := g.conn.NewRequest("GET", g.relPath())
if err != nil {
return false, WithStack(err)
}
resp, err := g.conn.Do(ctx, req)
if err != nil {
return false, WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return false, WithStack(err)
}
var data getGraphResponse
if err := resp.ParseBody("", &data); err != nil {
return false, WithStack(err)
}
for _, n := range data.Graph.EdgeDefinitions {
if n.Collection == name {
return true, nil
}
}
return false, nil
}
// EdgeCollections returns all edge collections of this graph
func (g *graph) EdgeCollections(ctx context.Context) ([]Collection, []VertexConstraints, error) {
req, err := g.conn.NewRequest("GET", g.relPath())
if err != nil {
return nil, nil, WithStack(err)
}
resp, err := g.conn.Do(ctx, req)
if err != nil {
return nil, nil, WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return nil, nil, WithStack(err)
}
var data getGraphResponse
if err := resp.ParseBody("", &data); err != nil {
return nil, nil, WithStack(err)
}
result := make([]Collection, 0, len(data.Graph.EdgeDefinitions))
constraints := make([]VertexConstraints, 0, len(data.Graph.EdgeDefinitions))
for _, n := range data.Graph.EdgeDefinitions {
ec, err := newEdgeCollection(n.Collection, g)
if err != nil {
return nil, nil, WithStack(err)
}
result = append(result, ec)
constraints = append(constraints, VertexConstraints{
From: n.From,
To: n.To,
})
}
return result, constraints, nil
}
// collection: The name of the edge collection to be used.
// from: contains the names of one or more vertex collections that can contain source vertices.
// to: contains the names of one or more edge collections that can contain target vertices.
func (g *graph) CreateEdgeCollection(ctx context.Context, collection string, constraints VertexConstraints) (Collection, error) {
req, err := g.conn.NewRequest("POST", path.Join(g.relPath(), "edge"))
if err != nil {
return nil, WithStack(err)
}
input := EdgeDefinition{
Collection: collection,
From: constraints.From,
To: constraints.To,
}
if _, err := req.SetBody(input); err != nil {
return nil, WithStack(err)
}
resp, err := g.conn.Do(ctx, req)
if err != nil {
return nil, WithStack(err)
}
if err := resp.CheckStatus(201, 202); err != nil {
return nil, WithStack(err)
}
ec, err := newEdgeCollection(collection, g)
if err != nil {
return nil, WithStack(err)
}
return ec, nil
}
// CreateEdgeCollectionWithOptions creates an edge collection in the graph with additional options
func (g *graph) CreateEdgeCollectionWithOptions(ctx context.Context, collection string, constraints VertexConstraints, options CreateEdgeCollectionOptions) (Collection, error) {
req, err := g.conn.NewRequest("POST", path.Join(g.relPath(), "edge"))
if err != nil {
return nil, WithStack(err)
}
input := EdgeDefinition{
Collection: collection,
From: constraints.From,
To: constraints.To,
Options: options,
}
if _, err := req.SetBody(input); err != nil {
return nil, WithStack(err)
}
resp, err := g.conn.Do(ctx, req)
if err != nil {
return nil, WithStack(err)
}
if err := resp.CheckStatus(201, 202); err != nil {
return nil, WithStack(err)
}
ec, err := newEdgeCollection(collection, g)
if err != nil {
return nil, WithStack(err)
}
return ec, nil
}
// SetVertexConstraints modifies the vertex constraints of an existing edge collection in the graph.
func (g *graph) SetVertexConstraints(ctx context.Context, collection string, constraints VertexConstraints) error {
req, err := g.conn.NewRequest("PUT", path.Join(g.relPath(), "edge", collection))
if err != nil {
return WithStack(err)
}
input := EdgeDefinition{
Collection: collection,
From: constraints.From,
To: constraints.To,
}
if _, err := req.SetBody(input); err != nil {
return WithStack(err)
}
resp, err := g.conn.Do(ctx, req)
if err != nil {
return WithStack(err)
}
if err := resp.CheckStatus(201, 202); err != nil {
return WithStack(err)
}
return nil
}