-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
dwg.go
378 lines (320 loc) · 7.71 KB
/
dwg.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
package sdata
import (
"errors"
"fmt"
"strings"
"github.com/dosco/graphjin/core/internal/util"
)
var (
ErrFromEdgeNotFound = errors.New("from edge not found")
ErrToEdgeNotFound = errors.New("to edge not found")
ErrPathNotFound = errors.New("path not found")
ErrThoughNodeNotFound = errors.New("though node not found")
)
type TEdge struct {
From, To, Weight int32
Type RelType
LT, RT DBTable
L, R DBColumn
}
func (s *DBSchema) addNode(t DBTable) int32 {
s.tables = append(s.tables, t)
n := s.rg.AddNode()
s.tindex[(t.Schema + ":" + t.Name)] = nodeInfo{n}
return n
}
func (s *DBSchema) addAliases(t DBTable, nodeID int32, aliases []string) {
for _, al := range aliases {
s.tindex[(t.Schema + ":" + al)] = nodeInfo{nodeID}
s.ai[al] = nodeInfo{nodeID}
}
}
func (s *DBSchema) GetAliases() map[string]DBTable {
ts := make(map[string]DBTable)
for name, n := range s.ai {
ts[name] = s.tables[int(n.nodeID)]
}
return ts
}
func (s *DBSchema) IsAlias(name string) bool {
_, ok := s.ai[name]
return ok
}
// Building the graph
// 1. AddNode is used to add tables nodes to the graph
// 2. addEdge creates relationships between schema:table -> fk_schema:fk_table
// 3. addEdge creates relationships between fk_schema:fk_table:column_name -> schema:table
// 4. addEdge creates relationships between :fk_table:column_name -> schema:table
// 5. addEdge creates relationships between :column_name -> schema:table
//
// Note 1: `_id` or `id_` is stripped from the column name to use as a graph key
// in the case where that then matches a real table name will result in conflict.
func (s *DBSchema) addToGraph(
lti DBTable, lcol DBColumn,
rti DBTable, rcol DBColumn,
rt RelType) error {
var rt2 RelType
k1 := (lti.Schema + ":" + lti.Name)
k2 := (rti.Schema + ":" + rti.Name)
fn, ok := s.tindex[k1]
if !ok {
return fmt.Errorf("addEdge: unknown node: %s", k1)
}
tn, ok := s.tindex[k2]
if !ok {
return fmt.Errorf("addEdge: unknown node: %s", k2)
}
ln := fn.nodeID
rn := tn.nodeID
var weight int32 = 2
relT := getRelName(lcol.Name)
switch rt {
case RelOneToOne:
rt2 = RelOneToMany
case RelOneToMany:
rt2 = RelOneToOne
case RelPolymorphic:
rt2 = rt
relT = rti.Name
case RelEmbedded:
rt2 = rt
relT = rti.Name
weight = 1
case RelRecursive:
weight = 1
case RelRemote:
weight = 4
relT = rti.Name
default:
return nil
}
// Add edge from table -> foreign key table
e1 := TEdge{
From: ln,
To: rn,
Weight: weight,
Type: rt,
LT: lti, RT: rti,
L: lcol, R: rcol,
}
if err := s.addEdge(lti.Name, e1); err != nil {
return err
}
// Add reverse edge from parent table -> column_name
e2 := TEdge{
From: rn,
To: ln,
Weight: weight,
Type: rt2,
LT: rti, RT: lti,
L: rcol, R: lcol,
}
if err := s.addEdge(rti.Name, e2); err != nil {
return err
}
if err := s.addEdge(relT, e2); err != nil {
return err
}
// fmt.Printf("1. (%s, %d) %s.%s (%d) -> %s.%s (%d) == %s\n", lti.Name, e1.ID(), lti.Name, lcol.Name, ln.ID(), rti.Name, rcol.Name, rn.ID(), rt.String())
// fmt.Printf("2. (%s, %d) %s.%s (%d) -> %s.%s (%d) == %s\n", rti.Name, e2.ID(), rti.Name, rcol.Name, rn.ID(), lti.Name, lcol.Name, ln.ID(), rt2.String())
// fmt.Printf("3. (%s, %d) %s.%s (%d) -> %s.%s (%d) == %s\n", relT, e2.ID(), rti.Name, rcol.Name, rn.ID(), lti.Name, lcol.Name, ln.ID(), rt2.String())
// fmt.Println("-----")
return nil
}
func (s *DBSchema) addEdge(name string, edge TEdge) error {
edgeID, err := s.rg.AddEdge(edge.From, edge.To, edge.Weight)
if err != nil {
return err
}
ei1 := edgeInfo{nodeID: edge.From, edgeIDs: []int32{edgeID}}
ei2 := edgeInfo{nodeID: edge.To, edgeIDs: []int32{edgeID}}
k1 := strings.ToLower(name)
k2 := strings.ToLower(edge.RT.Name)
s.addEdgeInfo(k1, ei1)
s.addEdgeInfo(k2, ei2)
s.ae[edgeID] = edge
return nil
}
func (s *DBSchema) addEdgeInfo(k string, ei edgeInfo) {
if _, ok := s.ei[k]; ok {
for i, v := range s.ei[k] {
if v.nodeID != ei.nodeID {
continue
}
for _, eid := range v.edgeIDs {
if eid == ei.edgeIDs[0] {
return
}
}
s.ei[k][i].edgeIDs = append(s.ei[k][i].edgeIDs, ei.edgeIDs[0])
return
}
}
s.ei[k] = append(s.ei[k], ei)
}
func (s *DBSchema) Find(schema, name string) (DBTable, error) {
var t DBTable
if schema == "" {
schema = s.DBSchema()
}
v, ok := s.tindex[(schema + ":" + name)]
if !ok {
return t, fmt.Errorf("table not found: %s.%s", schema, name)
}
return s.tables[v.nodeID], nil
}
type TPath struct {
Rel RelType
LT DBTable
LC DBColumn
RT DBTable
RC DBColumn
}
func (s *DBSchema) FindPath(from, to, through string) ([]TPath, error) {
fl, ok := s.ei[from]
if !ok {
return nil, ErrFromEdgeNotFound
}
tl, ok := s.ei[to]
if !ok {
return nil, ErrToEdgeNotFound
}
res, err := s.between(fl, tl, through)
if err != nil {
return nil, err
}
if res == nil {
return nil, ErrPathNotFound
}
// fmt.Printf("> %s (%d) -> %s (%d)\n",
// from, res.from.nodeID,
// to, res.to.nodeID)
path := []TPath{}
for _, eid := range res.edges {
edge := s.ae[eid]
path = append(path, TPath{
Rel: edge.Type,
LT: edge.LT,
LC: edge.L,
RT: edge.RT,
RC: edge.R,
})
}
return path, nil
}
type graphResult struct {
from, to edgeInfo
edges []int32
}
func (s *DBSchema) between(from, to []edgeInfo, through string) (*graphResult, error) {
for _, f := range from {
for _, t := range to {
if res, err := s.pickPath(f, t, through); err != nil {
return nil, err
} else if res != nil {
return res, nil
}
}
}
return nil, nil
}
func (s *DBSchema) pickPath(f, t edgeInfo, through string) (*graphResult, error) {
var err error
fn := f.nodeID
tn := t.nodeID
paths := s.rg.AllPaths(fn, tn)
if through != "" {
if paths, err = s.pickThroughPath(paths, through); err != nil {
return nil, err
}
}
for _, nodes := range paths {
var ff, lf bool
res := &graphResult{from: f, to: t}
ln := len(nodes)
if ln == 2 {
lines := s.rg.GetEdges(nodes[0], nodes[1])
if v := pickLine(lines, f); v != nil {
res.edges = append(res.edges, v.ID)
return res, nil
}
}
for i := 1; i < ln; i++ {
fn := nodes[i-1]
tn := nodes[i]
lines := s.rg.GetEdges(fn, tn)
// s.printLines(lines)
switch i {
case 1:
if v := pickLine(lines, f); v != nil {
res.edges = append(res.edges, v.ID)
ff = true
}
case (ln - 1):
if v := pickLine(lines, t); v != nil {
res.edges = append(res.edges, v.ID)
lf = true
}
default:
v := minWeightedLine(lines)
res.edges = append(res.edges, v.ID)
}
if ff && lf {
return res, nil
}
}
}
return nil, nil
}
func (s *DBSchema) pickThroughPath(paths [][]int32, through string) ([][]int32, error) {
var npaths [][]int32
v, ok := s.tindex[(s.DBSchema() + ":" + through)]
if !ok {
return nil, ErrThoughNodeNotFound
}
for i := range paths {
for j := range paths[i] {
if paths[i][j] == v.nodeID {
npaths = append(npaths, paths[i])
}
}
}
return npaths, nil
}
func pickLine(lines []util.Edge, ei edgeInfo) *util.Edge {
for _, v := range lines {
for _, eid := range ei.edgeIDs {
if v.ID == eid {
return &v
}
}
}
return nil
}
func PathToRel(p TPath) DBRel {
return DBRel{
Type: p.Rel,
Left: DBRelLeft{Ti: p.LT, Col: p.LC},
Right: DBRelRight{Ti: p.RT, Col: p.RC},
}
}
func minWeightedLine(lines []util.Edge) *util.Edge {
var min int32 = 100
var line *util.Edge
for _, v := range lines {
if v.Weight < min {
min = v.Weight
line = &v
}
}
return line
}
// func (s *DBSchema) printLines(lines []util.Edge) {
// for _, v := range lines {
// e := s.ae[v.ID]
// f := s.tables[e.From]
// t := s.tables[e.To]
// fmt.Printf("- (%d) %s %d -> %s %d\n", v.ID, f.Name, e.From, t.Name, e.To)
// }
// fmt.Println("---")
// }