-
Notifications
You must be signed in to change notification settings - Fork 1
/
store.go
271 lines (223 loc) · 6.04 KB
/
store.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
package graphsql
import (
"database/sql"
"encoding/json"
"errors"
"fmt"
"github.com/dominikbraun/graph"
sq "github.com/Masterminds/squirrel"
)
// Store is a graph.Store implementation that uses an SQL database to store and retrieve graphs.
type Store[K comparable, T any] struct {
db *sql.DB
config Config
}
// New creates a new SQL store that can be passed to graph.NewWithStore. It expects a database
// connection directly to the actual database schema in the form of a sql.DB instance.
func New[K comparable, T any](db *sql.DB, config Config) *Store[K, T] {
return &Store[K, T]{
db: db,
config: config,
}
}
// SetupTables creates all required tables inside the configured database. The schema is documented
// in this library's README file.
func (s *Store[K, T]) SetupTables() error {
_, err := s.db.Exec(createVerticesTableSQL(s.config))
if err != nil {
return fmt.Errorf("failed to set up %s table: %w", s.config.VerticesTable, err)
}
_, err = s.db.Exec(createEdgesTableSQL(s.config))
if err != nil {
return fmt.Errorf("failed to set up %s table: %w", s.config.EdgesTable, err)
}
return nil
}
// DestroyTables drops all tables and thus removes all data from the database.
func (s *Store[K, T]) DestroyTables() error {
_, err := s.db.Exec(dropEdgesTableSQL(s.config))
if err != nil {
return fmt.Errorf("failed to set up %s table: %w", s.config.EdgesTable, err)
}
_, err = s.db.Exec(dropVerticesTableSQL(s.config))
if err != nil {
return fmt.Errorf("failed to set up %s table: %w", s.config.VerticesTable, err)
}
return nil
}
// AddVertex implements graph.Store.AddVertex.
func (s *Store[K, T]) AddVertex(hash K, value T, properties graph.VertexProperties) error {
valueBytes, err := json.Marshal(value)
if err != nil {
return err
}
attributeBytes, err := json.Marshal(properties.Attributes)
if err != nil {
return err
}
_, err = sq.
Insert(s.config.VerticesTable).
Columns("hash", "value", "weight", "attributes").
Values(hash, valueBytes, properties.Weight, attributeBytes).
RunWith(s.db).
Exec()
return err
}
// Vertex implements graph.Store.Vertex.
func (s *Store[K, T]) Vertex(hash K) (T, graph.VertexProperties, error) {
var (
valueBytes []byte
attributesBytes []byte
value T
properties graph.VertexProperties
)
err := sq.
Select("value", "weight", "attributes").
From(s.config.VerticesTable).
Where(sq.Eq{"hash": hash}).
RunWith(s.db).
QueryRow().
Scan(&valueBytes, &properties.Weight, &attributesBytes)
if err != nil {
return value, properties, fmt.Errorf("failed to query vertex: %w", err)
}
if err = json.Unmarshal(valueBytes, &value); err != nil {
return value, properties, fmt.Errorf("failed to unmarshal value: %w", err)
}
if err = json.Unmarshal(attributesBytes, &properties.Attributes); err != nil {
return value, properties, fmt.Errorf("failed to unmarshal attributes: %w", err)
}
return value, properties, nil
}
// ListVertices implements graph.Store.ListVertices.
func (s *Store[K, T]) ListVertices() ([]K, error) {
rows, err := sq.
Select("hash").
From(s.config.VerticesTable).
RunWith(s.db).
Query()
if err != nil {
return nil, fmt.Errorf("failed to query vertices: %w", err)
}
var hashes []K
for rows.Next() {
var hash K
if err := rows.Scan(&hash); err != nil {
return nil, fmt.Errorf("failed to scan row: %w", err)
}
hashes = append(hashes, hash)
}
return hashes, nil
}
// VertexCount implements graph.Store.VertexCount.
func (s *Store[K, T]) VertexCount() (int, error) {
var count int
err := sq.
Select("count(hash)").
From(s.config.VerticesTable).
RunWith(s.db).
QueryRow().
Scan(&count)
return count, err
}
// AddEdge implements graph.Store.AddEdge.
func (s *Store[K, T]) AddEdge(sourceHash, targetHash K, edge graph.Edge[K]) error {
attributesBytes, err := json.Marshal(edge.Properties.Attributes)
if err != nil {
return err
}
_, err = sq.
Insert(s.config.EdgesTable).
Columns(
"source_hash",
"target_hash",
"weight",
"attributes",
"data",
).
Values(
sourceHash,
targetHash,
edge.Properties.Weight,
attributesBytes,
edge.Properties.Data,
).
RunWith(s.db).
Exec()
return err
}
// RemoveEdge implements graph.Store.RemoveEdge.
func (s *Store[K, T]) RemoveEdge(sourceHash, targetHash K) error {
_, err := sq.
Delete(s.config.EdgesTable).
Where(sq.Eq{
"source_hash": sourceHash,
"target_hash": targetHash,
}).
RunWith(s.db).
Exec()
return err
}
// Edge implements graph.Store.Edge.
func (s *Store[K, T]) Edge(sourceHash, targetHash K) (graph.Edge[K], error) {
edge := graph.Edge[K]{
Source: sourceHash,
Target: targetHash,
}
var attributesBytes []byte
err := sq.
Select("weight", "attributes", "data").
From(s.config.EdgesTable).
Where(sq.Eq{
"source_hash": sourceHash,
"target_hash": targetHash,
}).
RunWith(s.db).
QueryRow().
Scan(&edge.Properties.Weight, &attributesBytes, &edge.Properties.Data)
if errors.Is(err, sql.ErrNoRows) {
return edge, graph.ErrEdgeNotFound
}
if err = json.Unmarshal(attributesBytes, &edge.Properties.Attributes); err != nil {
return edge, fmt.Errorf("failed to unmarshal attributes: %w", err)
}
return edge, err
}
// ListEdges implements graph.Store.ListEdges.
func (s *Store[K, T]) ListEdges() ([]graph.Edge[K], error) {
rows, err := sq.
Select(
"source_hash",
"target_hash",
"weight",
"attributes",
"data",
).
From(s.config.EdgesTable).
RunWith(s.db).
Query()
if err != nil {
return nil, fmt.Errorf("failed to query edges: %w", err)
}
var edges []graph.Edge[K]
for rows.Next() {
var (
edge graph.Edge[K]
attributesBytes []byte
)
if err := rows.Scan(
&edge.Source,
&edge.Target,
&edge.Properties.Weight,
&attributesBytes,
&edge.Properties.Data,
); err != nil {
return nil, fmt.Errorf("failed to scan row: %w", err)
}
if err := json.Unmarshal(attributesBytes, &edge.Properties.Attributes); err != nil {
return nil, fmt.Errorf("failed to unmarshal attributes: %w", err)
}
edges = append(edges, edge)
}
return edges, nil
}