-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_parser.go
65 lines (39 loc) · 841 Bytes
/
file_parser.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
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"sync"
)
func main() {
var wg sync.WaitGroup
var files []string
files = append(files, "c:\\users\\alessio\\data.txt")
files = append(files, "c:\\users\\alessio\\data1.txt")
var results []string
for _, file := range files {
wg.Add(1)
go func(file string) {
result, err := parse(file, &wg)
if err != nil {
log.Println(err)
}
results = append(results, result)
}(file)
}
wg.Wait()
for _, result := range results {
fmt.Println(result)
}
}
func parse(filename string, wg *sync.WaitGroup) (string, error) {
defer wg.Done()
file, err := os.Open(filename)
if err != nil {
return fmt.Sprintf("Cannot open file %s \n", filename), err
}
data, err := ioutil.ReadAll(file)
result := fmt.Sprintf(string(data))
return result, nil
}