-
Notifications
You must be signed in to change notification settings - Fork 32
/
interfacev2.go
101 lines (77 loc) · 3.83 KB
/
interfacev2.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
// Copyright (c) 2022 MindStand Technologies, Inc
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package gogm
import (
"context"
dsl "github.com/mindstand/go-cypherdsl"
"github.com/neo4j/neo4j-go-driver/v5/neo4j"
)
//session version 2 is experimental to start trying breaking changes
type SessionV2 interface {
//transaction functions
TransactionV2
// Begin begins transaction
Begin(ctx context.Context) error
// ManagedTransaction runs tx work managed for retry
ManagedTransaction(ctx context.Context, work TransactionWork) error
// closes session
Close() error
}
// TransactionV2 specifies functions for Neo4j ACID transactions
type TransactionV2 interface {
// Rollback rolls back transaction
Rollback(ctx context.Context) error
// RollbackWithError wraps original error into rollback error if there is one
RollbackWithError(ctx context.Context, err error) error
// Commit commits transaction
Commit(ctx context.Context) error
// functions the tx can do
ogmFunctions
}
type ogmFunctions interface {
//load single object
Load(ctx context.Context, respObj, id interface{}) error
//load object with depth
LoadDepth(ctx context.Context, respObj, id interface{}, depth int) error
//load with depth and filter
LoadDepthFilter(ctx context.Context, respObj, id interface{}, depth int, filter dsl.ConditionOperator, params map[string]interface{}) error
//load with depth, filter and pagination
LoadDepthFilterPagination(ctx context.Context, respObj, id interface{}, depth int, filter dsl.ConditionOperator, params map[string]interface{}, pagination *Pagination) error
//load slice of something
LoadAll(ctx context.Context, respObj interface{}) error
//load all of depth
LoadAllDepth(ctx context.Context, respObj interface{}, depth int) error
//load all of type with depth and filter
LoadAllDepthFilter(ctx context.Context, respObj interface{}, depth int, filter dsl.ConditionOperator, params map[string]interface{}) error
//load all with depth, filter and pagination
LoadAllDepthFilterPagination(ctx context.Context, respObj interface{}, depth int, filter dsl.ConditionOperator, params map[string]interface{}, pagination *Pagination) error
//save object at default depth
Save(ctx context.Context, saveObj interface{}) error
//save object with depth
SaveDepth(ctx context.Context, saveObj interface{}, depth int) error
//delete
Delete(ctx context.Context, deleteObj interface{}) error
//delete uuid
DeleteUUID(ctx context.Context, uuid string) error
//specific query, responds to slice and single objects
Query(ctx context.Context, query string, properties map[string]interface{}, respObj interface{}) error
//similar to query, but returns raw rows/cols
QueryRaw(ctx context.Context, query string, properties map[string]interface{}) ([][]interface{}, neo4j.ResultSummary, error)
}
type TransactionWork func(tx TransactionV2) error