-
Notifications
You must be signed in to change notification settings - Fork 31
/
graph.go
558 lines (488 loc) · 11.8 KB
/
graph.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
package aranGO
import (
"errors"
)
// Graph structure
type Graph struct {
Id string `json:"_id,omitempty"`
Key string `json:"_key"`
Name string `json:"name"`
EdgesDef []EdgeDefinition `json:"edgeDefinitions"`
Orphan []string `json:"orphanCollections"`
db *Database
}
type graphObj struct {
V map[string]interface{} `json:"vertex"`
E map[string]interface{} `json:"edge"`
}
// Tranvers graph
func (g *Graph) Traverse(t *Traversal, r interface{}) error {
if g.Key == "" {
return errors.New("Invalid graph to travers")
}
res, err := g.db.send("traversal", "", "POST", t, r, r)
if err != nil {
return err
}
switch res.Status() {
case 404:
return errors.New("Invalid collections or graph")
case 400:
return errors.New("Traversal specification is either missing or malformed")
case 500:
return errors.New("Error inside traversal or traversal performed more than maxIterations iterations.")
default:
return nil
}
}
// RemoveE removes Vertex
func (g *Graph) RemoveE(col string, key string) error {
if col == "" || key == "" {
return errors.New("Invalid key or collection")
}
res, err := g.db.get("gharial", g.Name+"/edge/"+col+"/"+key, "DELETE", nil, nil, nil)
if err != nil {
return err
}
switch res.Status() {
case 200, 202:
return nil
// need to add conditional update
case 404, 412:
return errors.New("Invalid collection ,graph or document id")
default:
return nil
}
}
//ReplaceE replaces edge
func (g *Graph) ReplaceE(col string, key string, doc interface{}, patch interface{}) error {
if col == "" || key == "" {
return errors.New("Invalid key or collection")
}
var gr graphObj
res, err := g.db.send("gharial", g.Name+"/edge/"+col+"/"+key, "PUT", patch, &gr, &gr)
subParse(gr.V, doc)
if err != nil {
return err
}
switch res.Status() {
case 200, 202:
return nil
// need to add conditional update
case 404, 412:
return errors.New("Invalid collection ,graph or edge id")
default:
return nil
}
}
//Patch Edge
func (g *Graph) PatchE(col string, key string, doc interface{}, patch interface{}) error {
if col == "" || key == "" {
return errors.New("Invalid key or collection")
}
var gr graphObj
res, err := g.db.send("gharial", g.Name+"/edge/"+col+"/"+key, "PATCH", patch, &gr, &gr)
subParse(gr.E, doc)
if err != nil {
return err
}
switch res.Status() {
case 200, 202:
return nil
// need to add conditional update
case 404, 412:
return errors.New("Invalid collection ,graph or document id")
default:
return nil
}
}
// GetE gets Edge
func (g *Graph) GetE(col string, key string, edge interface{}) error {
if col == "" || key == "" {
return errors.New("Invalid collection or key value")
}
var gr graphObj
res, err := g.db.get("gharial", g.Name+"/edge/"+col+"/"+key, "GET", nil, &gr, &gr)
subParse(gr.E, edge)
if err != nil {
return err
}
switch res.Status() {
case 201, 202:
return nil
case 404:
return errors.New("Invalid collection or graph to save edge")
default:
return nil
}
}
//Creates a Egde
func (g *Graph) E(col string, edge interface{}) error {
if col == "" {
return errors.New("Invalid collection name")
}
var gr graphObj
res, err := g.db.send("gharial", g.Name+"/edge/"+col, "POST", edge, &gr, &gr)
subParse(gr.E, edge)
if err != nil {
return err
}
switch res.Status() {
case 201, 202:
return nil
case 404:
return errors.New("Invalid collection or graph to save edge")
default:
return nil
}
}
// RemoveV removes Vertex
func (g *Graph) RemoveV(col string, key string) error {
if col == "" || key == "" {
return errors.New("Invalid key or collection")
}
res, err := g.db.get("gharial", g.Name+"/vertex/"+col+"/"+key, "DELETE", nil, nil, nil)
if err != nil {
return err
}
switch res.Status() {
case 200, 202:
return nil
// need to add conditional update
case 404, 412:
return errors.New("Invalid collection ,graph or document id")
default:
return nil
}
}
//ReplaceV replaces vertex
func (g *Graph) ReplaceV(col string, key string, doc interface{}, patch interface{}) error {
if col == "" || key == "" {
return errors.New("Invalid key or collection")
}
var gr graphObj
res, err := g.db.send("gharial", g.Name+"/vertex/"+col+"/"+key, "PUT", patch, &gr, &gr)
subParse(gr.V, doc)
if err != nil {
return err
}
switch res.Status() {
case 200, 202:
return nil
// need to add conditional update
case 404, 412:
return errors.New("Invalid collection ,graph or document id")
default:
return nil
}
}
//Patch vertex
func (g *Graph) PatchV(col string, key string, doc interface{}, patch interface{}) error {
if col == "" || key == "" {
return errors.New("Invalid key or collection")
}
var gr graphObj
res, err := g.db.send("gharial", g.Name+"/vertex/"+col+"/"+key, "PATCH", patch, &gr, &gr)
subParse(gr.V, doc)
if err != nil {
return err
}
switch res.Status() {
case 200, 202:
return nil
// need to add conditional update
case 404, 412:
return errors.New("Invalid collection ,graph or document id")
default:
return nil
}
}
//Creates a vertex in collection
func (g *Graph) V(col string, doc interface{}) error {
if col == "" {
return errors.New("Invalid collection name")
}
var gr graphObj
res, err := g.db.send("gharial", g.Name+"/vertex/"+col, "POST", doc, &gr, &gr)
subParse(gr.V, doc)
if err != nil {
return err
}
switch res.Status() {
case 201, 202:
return nil
case 404:
return errors.New("Invalid collection or graph to save vertex")
default:
return nil
}
}
//GetV gets Vertex from collection
func (g *Graph) GetV(col string, key string, doc interface{}) error {
if key == "" || col == "" {
return errors.New("Invalid key or collection to get")
}
// workaround nested vertex
var gr graphObj
res, err := g.db.get("gharial", g.Name+"/vertex/"+col+"/"+key, "GET", nil, &gr, &gr)
subParse(gr.V, doc)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 404:
return errors.New("Invalid collection or graph")
case 412:
return errors.New("Updated")
default:
return nil
}
}
// RemoveVertexCol removes vertex collections
func (g *Graph) RemoveVertexCol(col string) error {
if g.db == nil {
return errors.New("Invalid db")
}
if col == "" {
return errors.New("Invalid collection")
}
res, err := g.db.get("gharial", g.Name+"/vertex/"+col, "DELETE", nil, nil, nil)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 400:
return errors.New("Cannot remove collection")
default:
return errors.New("Invalid graph")
}
}
// RemoveEdgeDef removes edge
func (g *Graph) RemoveEdgeDef(col string) error {
if g.db == nil {
return errors.New("Invalid db")
}
if col == "" {
return errors.New("Invalid edge")
}
res, err := g.db.get("gharial", g.Name+"/edge/"+col, "DELETE", nil, nil, nil)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 400:
return errors.New("Cannot remove edge")
default:
return errors.New("Invalid graph")
}
}
// AddVertexCol adds vertex collections
func (g *Graph) AddVertexCol(col string) error {
if g.db == nil {
return errors.New("Invalid db")
}
pay := map[string]string{"collection": col}
res, err := g.db.send("gharial", g.Name+"/edge", "POST", pay, g, g)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 400:
return errors.New("Unable to add vertex collection")
default:
return errors.New("Invalid graph")
}
}
func (g *Graph) AddEdgeDef(ed *EdgeDefinition) error {
if g.db == nil {
return errors.New("Invalid db")
}
res, err := g.db.send("gharial", g.Name+"/edge", "POST", ed, g, g)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 400:
return errors.New("Unable to add edge definition")
default:
return errors.New("Invalid graph")
}
}
func (g *Graph) ReplaceEdgeDef(name string, ed *EdgeDefinition) error {
if g.db == nil {
return errors.New("Invalid db")
}
res, err := g.db.send("gharial", g.Name+"/edge/"+name, "POST", ed, g, g)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 400:
return errors.New("Unable to replace edge definition")
default:
return errors.New("Invalid graph")
}
}
func (g *Graph) ListEdgesDef() ([]string, error) {
if g.db == nil {
return []string{}, errors.New("Invalid db")
}
var gr graphResponse
res, err := g.db.get("gharial", g.Name+"/edge", "GET", nil, &gr, &gr)
if err != nil {
return []string{}, err
}
switch res.Status() {
case 200:
return gr.Col, nil
default:
return []string{}, errors.New("Invalid graph")
}
}
func (g *Graph) ListVertexCol() ([]string, error) {
if g.db == nil {
return []string{}, errors.New("Invalid db")
}
var gr graphResponse
res, err := g.db.get("gharial", g.Name+"/vertex", "GET", nil, &gr, &gr)
if err != nil {
return []string{}, err
}
switch res.Status() {
case 200:
return gr.Col, nil
default:
return []string{}, errors.New("Invalid graph")
}
}
func (g *Graph) AddEdgeDefinition(ed EdgeDefinition) error {
if ed.Collection == "" {
return errors.New("Invalid collection")
}
g.EdgesDef = append(g.EdgesDef, ed)
return nil
}
type graphResponse struct {
Error bool `json:"error"`
Code int `json:"code"`
Graph Graph `json:"graph"`
Graphs []Graph `json:"graphs"`
Col []string `json:"collections"`
}
type EdgeDefinition struct {
Collection string `json:"collection"`
From []string `json:"from"`
To []string `json:"to"`
}
func NewEdgeDefinition(col string, from []string, to []string) *EdgeDefinition {
var e EdgeDefinition
if col == "" {
return nil
}
e.Collection = col
e.From = from
e.To = to
return &e
}
// Creates graphs
func (db *Database) CreateGraph(name string, eds []EdgeDefinition) (*Graph, error) {
var g Graph
var gr graphResponse
if name != "" {
g.Name = name
g.EdgesDef = eds
} else {
return nil, errors.New("Invalid graph name")
}
if eds == nil {
return nil, errors.New("Invalid edges")
}
res, err := db.send("gharial", "", "POST", g, &gr, &gr)
if err != nil {
return nil, err
}
switch res.Status() {
case 201:
return &g, nil
case 409:
return nil, errors.New("Conflic creating graph")
default:
return nil, errors.New("Conflic creating graph")
}
}
func (db *Database) DropGraph(name string) error {
if name == "" {
return errors.New("Invalid graph name")
}
res, err := db.get("gharial", name, "DELETE", nil, nil, nil)
if err != nil {
return err
}
switch res.Status() {
case 200:
return nil
case 404:
return errors.New("Graph not found")
default:
return nil
}
}
func (db *Database) Graph(name string) *Graph {
var g graphResponse
if name == "" {
return nil
}
res, err := db.get("gharial", name, "GET", nil, &g, &g)
if err != nil || res.Status() != 200 {
return nil
}
// set DB
g.Graph.db = db
return &g.Graph
}
func (db *Database) ListGraphs() ([]Graph, error) {
var gr graphResponse
res, err := db.get("gharial", "", "GET", nil, &gr, &gr)
if err != nil {
return nil, err
}
switch res.Status() {
case 200:
return gr.Graphs, nil
default:
return nil, errors.New("Unable to list graphs")
}
}
type Traversal struct {
graphName string `json:"graphName"`
StartVertex string `json:"startVertex"`
Filter string `json:"filter"`
MinDepth int `json:"minDepth"`
MaxDepth int `json:"maxDepth"`
Visitor string `json:"visitor"`
Direction string `json:"direction"`
Init string `json:"init"`
Expander string `json:"expander"`
Sort string `json:"sort"`
Strategy string `json:"strategy"`
Order string `json:"order"`
ItemOrder string `json:"itemOrder"`
Unique Uniqueness `json:"uniqueness"`
MaxIter int `json:"maxIterations"`
}
type Uniqueness struct {
Edges string `json:"edges"`
Vertices string `json:"vertices"`
}