-
Notifications
You must be signed in to change notification settings - Fork 0
/
implements.go
438 lines (394 loc) · 12 KB
/
implements.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package SimpleCsv
import (
"encoding/csv"
"errors"
"fmt"
"os"
"reflect"
"strconv"
"time"
)
const NO_RESULT = "NO RESULT"
// roadmap
//
// - skip first line or not
// - in memory mode and put what is maximal time data in memory
// - get result data directly not using variable reference
// - Grouping
// - Join to another csv file
// - support uda and udf
// - Convert To XLSX
// - migrating to new schema
// - will using stream mode using channel to write and read
//
// One Function :
// if data get one it's stop scan
// WhereValue just accept Where struct and two logic operators 'and' and 'or'
// example :
// (where, 'and', where1)
// (where, 'or', where1)
// WhereValue checking all where value
// WhereValue checking for where data and return data
func (w *whereOperation) WhereValue(where ...interface{}) (result *finalOperation) {
var operatorLogic []string
var whereList []Where
supportdLogicOptr := []string{"and", "or"}
supportdCompOptr := []string{"<=", "<", ">", ">=", "<>", "=", "!="}
for i, whereItem := range where {
// struct
if i%2 == 0 && reflect.TypeOf(whereItem).Kind() != reflect.Struct {
msg := fmt.Sprintf("Parameter number %d should be using a struct", i+1)
panic(msg)
} else if i%2 == 0 {
if reflect.TypeOf(Where{}).String() != reflect.TypeOf(whereItem).String() {
msg := fmt.Sprintf("Parameter number %d should be using Where struct", i+1)
panic(msg)
}
//check if field that exist in struct
whereItemConverted := whereItem.(Where)
notExist := FieldsNotInStruct([]string{whereItemConverted.Field}, w.baseData.Struct)
notExistFieldsTotal := len(notExist)
var fieldsNotExist string
// looping all field that not exit and create message
for j := 0; j < notExistFieldsTotal; j++ {
if j+1 != notExistFieldsTotal {
fieldsNotExist += fmt.Sprintf("%s, ", notExist[j])
} else {
fieldsNotExist += fmt.Sprintf("%s", notExist[j])
}
}
// occur when the field is the one of we not expected to exist
if notExist != nil {
msg := fmt.Sprintf("Column '%v' is not in '%s' struct base data", fieldsNotExist, reflect.TypeOf(w.baseData.Struct))
panic(msg)
}
var compOptrSupported bool
for _, operator := range supportdCompOptr {
if operator == whereItem.(Where).Operator {
compOptrSupported = true
break
}
}
if !compOptrSupported {
msg := fmt.Sprintf("'%s' is not supported as logic operator", whereItem.(Where).Operator)
panic(msg)
}
whereList = append(whereList, whereItem.(Where))
}
// operator
if i%2 == 1 && reflect.TypeOf(whereItem).Kind() != reflect.String {
msg := fmt.Sprintf("Parameter number %d should be using string", i+1)
panic(msg)
} else if i%2 == 1 {
var logicOptrSupported bool
for _, operator := range supportdLogicOptr {
if operator == whereItem {
logicOptrSupported = true
break
}
}
if !logicOptrSupported {
msg := fmt.Sprintf("at the moment, only support for two logic operator which is 'and' and 'or', so you cant use '%s'", whereItem)
panic(msg)
}
operatorLogic = append(operatorLogic, whereItem.(string))
}
//break // at the moment not support for multiple where clause
}
w.whereData.List = whereList
w.whereData.OperatorLogic = operatorLogic
return &finalOperation{
finalOperationState: w,
}
}
func (w *whereOperation) WhereLineNumber(index int) (result *finalOperation) {
return
}
//All will scan all line and
func (w *finalOperation) All(dist interface{}) error {
fmt.Println("total field", len(w.finalOperationState.baseData.headers))
//var lineFilter [][]string
destObject := isCorrectObjectPointer(w.finalOperationState.baseData.Struct, dist)
switch destObject.Now.Kind() {
case reflect.Slice:
goto checkSlice
default:
panic(fmt.Sprintf("in 'All' operation you should be use slice not %s", destObject.Now.Kind()))
}
checkSlice:
data := selectSearch(w, &dist)
fmt.Println(data)
return nil
}
func (w *finalOperation) One(dist interface{}) error {
destObject := isCorrectObjectPointer(w.finalOperationState.baseData.Struct, dist)
switch destObject.Now.Kind() {
case reflect.Struct:
goto checkStruct
default:
panic(fmt.Sprintf("in 'One' operation you should be use struct not %s", destObject.Now.Kind()))
}
checkStruct:
err := selectSearch(w, &dist)
if err != nil {
return err
}
return nil
}
// Insert append new line
func (c *BaseData) Insert(data interface{}) (err error) {
//var header []string
dataValue := reflect.ValueOf(data)
object := isCorrectObject(c.Struct, data)
fieldNumber := object.Ori.NumField()
// open file
file, err := os.OpenFile(c.Location, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0664)
if err != nil {
panic(err)
}
// set file to csv object
writer := *csv.NewWriter(file)
reader := *csv.NewReader(file)
// close
defer func(file *os.File) {
err = file.Close()
if err != nil {
fmt.Println(err)
}
}(file)
defer writer.Flush()
// write header if not exist
err = writeHeader(c.headers, &reader, &writer)
if err != nil {
panic(err)
}
switch object.Now.Kind() {
// operation on slice or array
case reflect.Slice, reflect.Array:
// looping object on array or slice
for i := 0; i < dataValue.Len(); i++ {
// insert all data into string slice
var rowForWrite []string
for j := 0; j < fieldNumber; j++ {
//fieldName := object.Ori.Field(j).Name
//fmt.Print(fieldName, "(", dataValue.Index(i).Field(j).Type().String(), ") ")
switch dataValue.Index(i).Field(j).Kind() {
case reflect.Int:
intValue := strconv.Itoa(int(dataValue.Index(i).Field(j).Int()))
rowForWrite = append(rowForWrite, intValue)
case reflect.Bool:
if dataValue.Index(i).Field(j).Bool() {
rowForWrite = append(rowForWrite, "true")
} else {
rowForWrite = append(rowForWrite, "false")
}
case reflect.String:
rowForWrite = append(rowForWrite, dataValue.Index(i).Field(j).String())
case reflect.Struct:
if dataValue.Index(i).Field(j).Type().String() == "time.Time" {
//date value in time.RFC3339
timeValue := dataValue.Index(i).Field(j).Interface().(time.Time).Format(time.RFC3339)
rowForWrite = append(rowForWrite, timeValue)
}
}
//fmt.Print(dataValue.Index(i).Field(j).String())
}
//fmt.Println()
// write csv from string slice
err = writer.Write(rowForWrite)
if err != nil {
msg := fmt.Sprintf("%v", err)
return errors.New(msg)
}
}
// operation on struct
default:
// insert all data into string slice
var rowForWrite []string
for i := 0; i < fieldNumber; i++ {
//fieldName := object.Ori.Field(i).Name
//fmt.Print(fieldName, "(", dataValue.Field(i).Type().String(), ") ")
switch dataValue.Field(i).Kind() {
case reflect.Int:
intValue := strconv.Itoa(int(dataValue.Field(i).Int()))
rowForWrite = append(rowForWrite, intValue)
case reflect.Bool:
if dataValue.Field(i).Bool() {
rowForWrite = append(rowForWrite, "true")
} else {
rowForWrite = append(rowForWrite, "false")
}
case reflect.String:
rowForWrite = append(rowForWrite, dataValue.Field(i).String())
case reflect.Struct:
if dataValue.Field(i).Type().String() == "time.Time" {
//date value in time.RFC3339
timeValue := dataValue.Field(i).Interface().(time.Time).Format(time.RFC3339)
rowForWrite = append(rowForWrite, timeValue)
}
}
//fmt.Print(dataValue.Index(i).Field(j).String())
}
// write csv from string slice
err = writer.Write(rowForWrite)
if err != nil {
msg := fmt.Sprintf("%v", err)
return errors.New(msg)
}
}
if !c.initialized {
panic("You must declare this first")
}
return
}
// Replace for replace all content
func (c *BaseData) Replace(data interface{}) (err error) {
dataValue := reflect.ValueOf(data)
object := isCorrectObject(c.Struct, data)
fieldNumber := object.Ori.NumField()
// replace file
file, err := os.OpenFile(c.Location, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0664)
if err != nil {
panic(err)
}
// set file to csv object
writer := *csv.NewWriter(file)
reader := *csv.NewReader(file)
// close
defer func(file *os.File) {
err = file.Close()
if err != nil {
fmt.Println(err)
}
}(file)
defer writer.Flush()
// write header if not exist
err = writeHeader(c.headers, &reader, &writer)
if err != nil {
panic(err)
}
switch object.Now.Kind() {
// operation on slice or array
case reflect.Slice, reflect.Array:
// looping object on array or slice
for i := 0; i < dataValue.Len(); i++ {
// insert all data into string slice
var rowForWrite []string
for j := 0; j < fieldNumber; j++ {
//fieldName := object.Ori.Field(j).Name
//fmt.Print(fieldName, "(", dataValue.Index(i).Field(j).Type().String(), ") ")
switch dataValue.Index(i).Field(j).Kind() {
case reflect.Int:
intValue := strconv.Itoa(int(dataValue.Index(i).Field(j).Int()))
rowForWrite = append(rowForWrite, intValue)
case reflect.Bool:
if dataValue.Index(i).Field(j).Bool() {
rowForWrite = append(rowForWrite, "true")
} else {
rowForWrite = append(rowForWrite, "false")
}
case reflect.String:
rowForWrite = append(rowForWrite, dataValue.Index(i).Field(j).String())
case reflect.Struct:
if dataValue.Index(i).Field(j).Type().String() == "time.Time" {
//date value in time.RFC3339
timeValue := dataValue.Index(i).Field(j).Interface().(time.Time).Format(time.RFC3339)
rowForWrite = append(rowForWrite, timeValue)
}
}
//fmt.Print(dataValue.Index(i).Field(j).String())
}
//fmt.Println()
// write csv from string slice
err = writer.Write(rowForWrite)
if err != nil {
msg := fmt.Sprintf("%v", err)
return errors.New(msg)
}
}
// operation on struct
default:
// insert all data into string slice
var rowForWrite []string
for i := 0; i < fieldNumber; i++ {
//fieldName := object.Ori.Field(i).Name
//fmt.Print(fieldName, "(", dataValue.Field(i).Type().String(), ") ")
switch dataValue.Field(i).Kind() {
case reflect.Int:
intValue := strconv.Itoa(int(dataValue.Field(i).Int()))
rowForWrite = append(rowForWrite, intValue)
case reflect.Bool:
if dataValue.Field(i).Bool() {
rowForWrite = append(rowForWrite, "true")
} else {
rowForWrite = append(rowForWrite, "false")
}
case reflect.String:
rowForWrite = append(rowForWrite, dataValue.Field(i).String())
case reflect.Struct:
if dataValue.Field(i).Type().String() == "time.Time" {
//date value in time.RFC3339
timeValue := dataValue.Field(i).Interface().(time.Time).Format(time.RFC3339)
rowForWrite = append(rowForWrite, timeValue)
}
}
//fmt.Print(dataValue.Index(i).Field(j).String())
}
// write csv from string slice
err = writer.Write(rowForWrite)
if err != nil {
msg := fmt.Sprintf("%v", err)
return errors.New(msg)
}
}
if !c.initialized {
panic("You must declare this first")
}
return
}
// Select is checking list of columns it's match
func (c *BaseData) Select(columns ...string) *whereOperation {
// *, udf, and uda will support in future
if columns[0] == "*" && len(columns) > 1 {
panic("if you using `*` you cant put others column")
}
if columns[0] == "*" {
return &whereOperation{
selectColumns: c.headers,
baseData: *c,
whereInitialized: true,
}
}
if !c.initialized {
panic("You must declare this first")
}
var fields string
notExistFields := FieldsNotInStruct(columns, c.Struct)
notExistFieldsTotal := len(notExistFields)
for i := 0; i < notExistFieldsTotal; i++ {
if i+1 != notExistFieldsTotal {
fields += fmt.Sprintf("%s, ", notExistFields[i])
} else {
fields += fmt.Sprintf("%s", notExistFields[i])
}
}
if notExistFields != nil {
msg := fmt.Sprintf("Column '%v' is not in '%s' struct base data", fields, reflect.TypeOf(c.Struct))
panic(msg)
}
return &whereOperation{
selectColumns: columns,
baseData: *c,
whereInitialized: true,
}
}
//func (c *BaseData) Update(data interface{}) *whereOperation {
// if !c.initialized {
// panic("You must declare this first")
// }
// return &whereOperation{
// baseData: *c,
// data: data,
// whereInitialized: true,
// }
//}