-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
205 lines (192 loc) · 4 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
package main
import (
"bytes"
"crypto/md5"
"encoding/hex"
"encoding/json"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"path/filepath"
"time"
"github.com/psionikangel/uuid"
)
type config struct {
Paths []string
Properties []string
Server string
Port string
}
type metadata struct {
Path string
Filesize int64
LastModified time.Time
Filename string
Extension string
Checksum string
RunID string
}
type run struct {
ID string
Machinename string
Start time.Time
End time.Time
FilesCount int64
}
func main() {
// Initialize the unique id library
uuid.Init()
cfg := loadConfig()
runid := uuid.NewV4().String()
startRun(runid, *cfg)
var totalCount int64
for _, path := range cfg.Paths {
files, count, err := extractMetadata(path, cfg.Properties, runid)
totalCount = totalCount + count
if err != nil {
panic(err)
}
uploadMetadata(files, *cfg)
}
endRun(runid, totalCount, *cfg)
}
func startRun(runid string, cfg config) {
r := new(run)
r.ID = runid
r.Start = time.Now()
host, err := os.Hostname()
if err != nil {
panic(err)
}
r.Machinename = host
url := "http://" + cfg.Server + ":" + cfg.Port + "/run"
js, err := json.Marshal(r)
if err != nil {
panic(err)
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(js))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
}
func endRun(runid string, count int64, cfg config) {
r := new(run)
r.ID = runid
r.End = time.Now()
r.FilesCount = count
url := "http://" + cfg.Server + ":" + cfg.Port + "/run"
js, err := json.Marshal(r)
if err != nil {
panic(err)
}
req, err := http.NewRequest("PUT", url, bytes.NewBuffer(js))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
}
func uploadMetadata(meta []metadata, cfg config) {
url := "http://" + cfg.Server + ":" + cfg.Port + "/metadata"
js, err := json.Marshal(meta)
if err != nil {
panic(err)
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(js))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
}
func extractMetadata(path string, props []string, runid string) (meta []metadata, count int64, err error) {
var results []metadata
err = filepath.Walk(path, func(path string, info os.FileInfo, err error) error {
meta := new(metadata)
for _, prop := range props {
if prop == "path" {
meta.Path = path
}
if prop == "filesize" {
meta.Filesize = info.Size()
}
if prop == "lastmodified" {
meta.LastModified = info.ModTime()
}
if prop == "filename" {
if !info.IsDir() {
meta.Filename = info.Name()
}
}
if prop == "extension" {
if !info.IsDir() {
meta.Extension = filepath.Ext(path)
}
}
if prop == "checksum" {
if !info.IsDir() {
meta.Checksum = checksum(path)
}
}
meta.RunID = runid
}
results = append(results, *meta)
if !info.IsDir() { //count only files
count++
}
return nil
})
return results, count, nil
}
func loadConfig() *config {
file, err := ioutil.ReadFile("config.json")
if err != nil {
panic(err)
}
cfg := new(config)
err = json.Unmarshal(file, &cfg)
if err != nil {
panic(err)
}
if len(cfg.Paths) == 0 {
log.Fatal("Config Error: No paths are defined")
}
if len(cfg.Properties) == 0 {
log.Fatal("Config Error: No properties are defined")
}
for _, p := range cfg.Paths {
if !path.IsAbs(p) {
log.Fatalf("Config Error: %q is not an absolute path", p)
}
}
return cfg
}
func checksum(path string) string {
data, err := ioutil.ReadFile(path)
if err != nil {
panic(err)
}
h := md5.New()
h.Write(data)
cs := hex.EncodeToString(h.Sum(nil))
return cs
}