-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
239 lines (201 loc) · 6.49 KB
/
main.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
package main
import (
"fmt"
"gopkg.in/cheggaaa/pb.v1"
"strconv"
"math/rand"
"os"
"strings"
"time"
)
const DEBUG = true
var ARGS_REQUESTED_TABLES = []string{}
func main() {
InitConfiguration()
db := ConnectDatabase()
defer db.Close()
//
db.Init()
SystemConfig.InitDbConfig(db.Mysql.Tables)
//
args := []string{}
if len(os.Args) > 1 {
args = os.Args[1:]
for _, arg := range args {
if strings.HasPrefix(arg, "tables=") {
data := strings.Replace(arg, "tables=", "", 1)
for _, value := range strings.Split(data, ",") {
ARGS_REQUESTED_TABLES = append(ARGS_REQUESTED_TABLES, value)
}
}
}
} else {
args = []string{"Initial", "Listener"}
}
if stringInSlice("Initial", args) {
if stringInSlice("Listener", args) {
go R2G(db)
} else {
R2G(db)
}
}
if stringInSlice("Listener", args) {
RunCommand(db)
}
time.Sleep(10000000000000)
}
func R2G(db *DbMap) {
fmt.Println("****************************************************************************")
fmt.Println("Start to create Indexes")
bar := pb.StartNew(len(db.Mysql.Tables))
bar.ShowBar = true
bar.SetWidth(80)
for _, table := range db.Mysql.Tables {
bar.Increment()
if stringInSlice(table.name, SystemConfig.SkipTables) || SystemConfig.GetTableConfig(table).IsManyToMany {
continue
}
createIndex(db, table)
}
bar.FinishPrint("End of create tables index ")
if len(ARGS_REQUESTED_TABLES) == 0 {
for _, table := range db.Mysql.Tables {
if stringInSlice(table.name, SystemConfig.SkipTables) {
continue
}
insertData(db, table)
}
} else {
for _, table := range db.Mysql.Tables {
if stringInSlice(table.name, SystemConfig.SkipTables) {
continue
}
if stringInSlice(table.name, ARGS_REQUESTED_TABLES) {
insertData(db, table)
}
}
}
}
func createIndex(dbmap *DbMap, table *Table) {
queries := []string{}
for _, column := range table.GetUniqueProperties() {
queries = append(queries, "CREATE INDEX ON :" + table.GetTag() + "(" + column + ")")
//queries = append(queries, "CREATE INDEX ON :" + table.GetTag() + "(" + column + ")")
}
_, err := dbmap.Graph.Conn.ExecPipeline(queries, make([]map[string]interface{}, len(queries))...)
if err != nil {
fmt.Println(queries[0])
panic(err)
}
}
func insertData(dbmap *DbMap, table *Table) {
paginated := table.getPaginated(SystemConfig.Limit)
fmt.Println("****************************************************************************")
fmt.Println("Start to insert Table " + table.name + " | number of rows:" + strconv.Itoa(paginated.TotalItems))
bar := pb.StartNew(paginated.TotalPages)
bar.ShowBar = true
bar.SetWidth(80)
for paginated.Next() {
rows := table.GetRows(paginated.getLimitOffset())
saveToGraph(dbmap, table, rows, true)
bar.Increment()
}
bar.FinishPrint("End of insert Table " + table.name)
}
func saveToGraph(dbmap *DbMap, table *Table, rows []map[string]string, frist_try bool) {
tableConfig := SystemConfig.GetTableConfig(table)
if tableConfig.IsManyToMany {
queries := []string{}
for index, row := range rows {
label := "nod" + strconv.Itoa(index)
queries = append(queries, RelationQuery(label, table, row))
}
_, err := dbmap.Graph.Conn.ExecPipeline(queries, make([]map[string]interface{}, len(queries))...)
if err != nil {
fmt.Println("Samaple query :" + queries[0])
fmt.Println("Error Wile Insert Retry ")
if frist_try {
fmt.Println(err)
fmt.Println("Start to retry !")
saveToGraph(dbmap, table, rows, false)
return
}
panic(err)
}
} else {
queries := []string{}
for index, row := range rows {
label := "nod" + strconv.Itoa(index)
queries = append(queries, MergeQuery(label, table, row, true))
}
_, err := dbmap.Graph.Conn.ExecPipeline(queries, make([]map[string]interface{}, len(queries))...)
if err != nil {
fmt.Println("Samaple query :" + queries[0])
fmt.Println("Error Wile Insert Retry ")
if frist_try {
fmt.Println(err)
fmt.Println("Start to retry !")
saveToGraph(dbmap, table, rows, false)
return
}
panic(err)
}
}
}
func RelationQuery(label string, table *Table, properties map[string]string) string {
if len(table.foreignKeys) != 2 {
panic("ManyToMany tabels must has been only 2 foreign key !")
}
sets, property := table.GetSetAndProperty(label, properties)
table_from := table.foreignKeys[0]
label_from := "nod" + RandStringRunes(5)
rows_from := table_from.ReferenceTable.GetFilteredRows(table_from.ReferenceColumnName + "='" + properties[table_from.ColumnName] + "'", -1, -1)
node_from := MergeQuery(label_from, table_from.ReferenceTable, rows_from[0], false)
table_to := table.foreignKeys[1]
label_to := "nod" + RandStringRunes(5)
rows_to := table_to.ReferenceTable.GetFilteredRows(table_to.ReferenceColumnName + "='" + properties[table_to.ColumnName] + "'", -1, -1)
node_to := MergeQuery(label_to, table_to.ReferenceTable, rows_to[0], false)
query := node_from
query += "\n" + node_to + "\n"
query += "MERGE (" + label_from + ")-[" + label + ":" + table.GetTag()
query += "{ " + property + "} ]-(" + label_to + ")"
if sets != "" {
query += " SET " + sets
}
return query
}
func MergeQuery(label string, table *Table, properties map[string]string, insert_relation bool) string {
sets, property := table.GetSetAndProperty(label, properties)
data := "MERGE (" + label + ":" + table.GetTag() + " {" + property + "})"
if sets != "" {
data += " SET" + sets
}
if insert_relation && len(table.GetForeignKeys()) > 0 {
HandleRelation(label, &data, table, properties)
}
return data
}
func HandleRelation(parent_label string, data *string, table *Table, properties map[string]string) {
for _, relation := range table.GetForeignKeys() {
rows := relation.ReferenceTable.GetFilteredRows(relation.ReferenceColumnName + "='" + properties[relation.ColumnName] + "'", -1, -1)
for index, value := range rows {
label := "for" + RandStringRunes(5) + strconv.Itoa(index)
relLabel := "for" + RandStringRunes(5) + strconv.Itoa(index)
set, property := relation.GetRelationSetAndProperty(relLabel, properties, value)
*data += "\n" + MergeQuery(label, relation.ReferenceTable, value, false)
*data += "\n" + "MERGE (" + parent_label + ")<-[ " + relLabel + ":" +
relation.GetTag() + " " + property + " ]-(" + label + ") "
if set != "" {
*data += " SET " + set + " "
}
}
}
}
var letterRunes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
func RandStringRunes(n int) string {
b := make([]rune, n)
for i := range b {
b[i] = letterRunes[rand.Intn(len(letterRunes))]
}
return string(b)
}