-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
91 lines (79 loc) · 2 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
package main
import (
"bytes"
"encoding/csv"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"
"strconv"
"strings"
)
func main() {
path := flag.String("path", "./data.csv", "Percorso del file")
flag.Parse()
fileBytes, fileNPath := ReadCSV(path)
SaveFile(fileBytes, fileNPath)
fmt.Println(strings.Repeat("=", 10), "Done", strings.Repeat("=", 10))
}
// ReadCSV to read the content of CSV File
func ReadCSV(path *string) ([]byte, string) {
csvFile, err := os.Open(*path)
if err != nil {
log.Fatal("File non trovato")
}
defer csvFile.Close()
reader := csv.NewReader(csvFile)
content, _ := reader.ReadAll()
if len(content) < 1 {
log.Fatal("Qualcosa non va, il file potrebbe essere vuoto o inconsistente")
}
headersArr := make([]string, 0)
for _, headE := range content[0] {
headersArr = append(headersArr, headE)
}
//Remove the header row
content = content[1:]
var buffer bytes.Buffer
buffer.WriteString("[")
for i, d := range content {
buffer.WriteString("{")
for j, y := range d {
buffer.WriteString(`"` + headersArr[j] + `":`)
_, fErr := strconv.ParseFloat(y, 32)
_, bErr := strconv.ParseBool(y)
if fErr == nil {
buffer.WriteString(y)
} else if bErr == nil {
buffer.WriteString(strings.ToLower(y))
} else {
buffer.WriteString((`"` + y + `"`))
}
//end of property
if j < len(d)-1 {
buffer.WriteString(",")
}
}
//end of object of the array
buffer.WriteString("}")
if i < len(content)-1 {
buffer.WriteString(",")
}
}
buffer.WriteString(`]`)
rawMessage := json.RawMessage(buffer.String())
x, _ := json.MarshalIndent(rawMessage, "", " ")
newFileName := filepath.Base(*path)
newFileName = newFileName[0:len(newFileName)-len(filepath.Ext(newFileName))] + ".json"
r := filepath.Dir(*path)
return x, filepath.Join(r, newFileName)
}
// SaveFile Will Save the file, magic right?
func SaveFile(myFile []byte, path string) {
if err := ioutil.WriteFile(path, myFile, os.FileMode(0644)); err != nil {
panic(err)
}
}