-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.go
263 lines (197 loc) · 6.53 KB
/
data.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
package data
// APPLY: Apply data in files to database
// 1. Verify that the data folder exists
// 2. Find the data files (named by tables)
// 3. Validate those files
// 4. Connect to the database
// 5. Verify that those tables exist in the database. If not, skip them.
// 6. TRUNCATE all data from those tables
// 7. Build SQL INSERT statements based on the data file
// 8. Run the SQL
// IMPORT: Import data to files from database
// 1. Verify that the data folder exists
// 2. Find the data files (named by tables)
// 3. Validate those files
// 4. Connect to the database
// 5. Confirm whether or not those tables exist in the database. If not, skip them.
// 6. Query all data from the table and convert to data file contents
// 7. Write content to data file
// NewData creates a new Data instance
// func NewData(config *lib.Config, options lib.Options, database *schema.Schema, connector connectors.IConnector) (data *Data, e error) {
// data = &Data{
// config: config,
// options: options,
// database: database,
// connector: connector,
// }
// return
// }
// type Data struct {
// config *lib.Config
// options lib.Options
// connector connectors.IConnector
// database *schema.Schema
// }
// // func (d *Data) Apply() {
// // x := lib.NewExecutor(d.config, d.connector)
// // x.RunSQL(sql)
// // }
// // Import imports table data from database to data files
// func (d *Data) Import(args []string) {
// files := []string{}
// if len(args) > 0 {
// files = []string{fmt.Sprintf("%s.json", args[0])}
// } else {
// files = d.getFiles()
// }
// if len(files) == 0 {
// fmt.Println("No files listed. Try importing a single table via `dvc import [table name]`")
// return
// }
// server := lib.NewExecutor(d.config, d.connector).Connect()
// for k := range files {
// // Remove .json file extension
// tableName := files[k][0 : len(files[k])-5]
// fmt.Printf("Looking for %s\n", tableName)
// if _, ok := d.database.Tables[tableName]; !ok {
// fmt.Printf("Cannot import data from table %s -- does not exist in database.\n", tableName)
// continue
// }
// fileData := []map[string]interface{}{}
// table := d.database.Tables[tableName]
// enums := d.connector.FetchEnum(server, tableName)
// for k := range enums {
// row := map[string]interface{}{}
// for j, l := range enums[k] {
// // fmt.Printf("%s %v\n", j, l)
// switch table.Columns[j].DataType {
// case "int":
// row[j] = *(l.(*uint32))
// // fmt.Println(j, *(l.(*uint32)))
// case "bigint":
// row[j] = *(l.(*uint64))
// // fmt.Println(j, *(l.(*uint64)))
// case "tinyint":
// if table.Columns[j].IsUnsigned {
// row[j] = *(l.(*uint8))
// // fmt.Println(j, *(l.(*uint8)))
// } else {
// row[j] = *(l.(*int8))
// // fmt.Println(j, *(l.(*int8)))
// }
// // case "int":
// // fmt.Println(j, l.(int8))
// // case "float64":
// // fmt.Println(j, l.(float64))
// case "varchar", "char", "text":
// row[j] = *(l.(*string))
// // fmt.Println(j, *(l.(*string)))
// default:
// fmt.Println(j, "???")
// }
// // val := reflect.ValueOf(l)
// // fmt.Println(j, val)
// }
// fileData = append(fileData, row)
// }
// filePath := fmt.Sprintf("meta/data/%s", files[k])
// // if !lib.FileExists(filePath) {
// // fmt.Printf("%s does not exist!\n", filePath)
// // } else {
// // fmt.Printf("%s DOES exist\n", filePath)
// // }
// jsonContent, _ := json.MarshalIndent(fileData, "", " ")
// ioutil.WriteFile(filePath, []byte(jsonContent), 0644)
// }
// }
// func (d *Data) getFiles() []string {
// fmt.Println("Getting files?")
// dataPath := "meta/data"
// lib.EnsureDir(dataPath)
// files, e := lib.FetchNonDirFileNames(dataPath)
// if e != nil {
// panic(e)
// }
// return files
// }
// // Apply applies the data files to the database
// func (d *Data) Apply(args []string) {
// files := []string{}
// if len(args) > 0 {
// files = []string{fmt.Sprintf("%s.json", args[0])}
// } else {
// files = d.getFiles()
// }
// fmt.Println("Files: ", len(files))
// x := lib.NewExecutor(d.config, d.connector)
// queries := []string{}
// for k := range files {
// queries = append(queries, d.genInsertQueriesForTable(files[k])...)
// }
// allQueryString := strings.Join(queries, "\n")
// fmt.Println(allQueryString)
// x.RunSQL(allQueryString)
// // for k := range queries {
// // fmt.Println(queries[k])
// // }
// }
// func (d *Data) genInsertQueriesForTable(file string) []string {
// filePath := fmt.Sprintf("meta/data/%s", file)
// tableName := file[0 : len(file)-5]
// if _, ok := d.database.Tables[tableName]; !ok {
// fmt.Printf("Cannot apply data to table %s -- does not exist in database.\n", tableName)
// return []string{}
// }
// table := d.database.Tables[tableName]
// if !lib.FileExists(filePath) {
// fmt.Printf("Cannot apply data to table %s -- no data file exists. Run `dvc data import %s` to store data for this table.\n", tableName, tableName)
// return []string{}
// }
// tableData := []map[string]interface{}{}
// content, _ := ioutil.ReadFile(filePath)
// json.Unmarshal(content, &tableData)
// cols := []string{}
// for l := range tableData[0] {
// cols = append(cols, l)
// }
// sort.Strings(cols)
// queries := []string{fmt.Sprintf("DELETE FROM `%s`;", tableName)}
// for j := range tableData {
// fields := []string{}
// values := []string{}
// n := 0
// for i := range cols {
// l := cols[i]
// m := tableData[j][l]
// fields = append(fields, fmt.Sprintf("`%s`", l))
// // t := table.Columns[l].FmtType
// val := ""
// switch table.Columns[l].DataType {
// case "int", "bigint", "tinyint":
// val = fmt.Sprintf("%d", int64(m.(float64)))
// case "char", "varchar", "text":
// val = fmt.Sprintf("'%s'", m)
// case "decimal":
// val = fmt.Sprintf("%f", m)
// }
// values = append(values, val)
// n++
// }
// query := fmt.Sprintf("REPLACE INTO `%s` ( %s ) VALUES ( %s );", tableName, strings.Join(fields, ","), strings.Join(values, ","))
// queries = append(queries, query)
// }
// return queries
// }
// // Remove removes the file data locally
// func (d *Data) Remove(args []string) {
// if len(args) == 0 {
// fmt.Println("Usage: dvc data rm [table name]")
// return
// }
// tableName := args[0]
// filePath := fmt.Sprintf("meta/data/%s.json", tableName)
// if !lib.FileExists(filePath) {
// fmt.Printf("Data file `%s` does not exist.\n", filePath)
// }
// os.Remove(filePath)
// }