-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiff-matrix.go
132 lines (111 loc) · 2.87 KB
/
diff-matrix.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
/* This file is part of diff-matrix.
*
* Copyright (C) 2018 Pablo M. Bermudo Garay
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"crypto/sha256"
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strconv"
"strings"
)
func main() {
var trees []string
args := os.Args[1:]
forest := make(map[string][]string)
for _, dir := range args {
file, err := os.Stat(dir)
if err != nil {
fmt.Println(err)
os.Exit(1)
} else if !file.Mode().IsDir() {
fmt.Printf("'%s' is not a directory\n", dir)
os.Exit(1)
}
trees = append(trees, dir)
}
for i, tree := range trees {
filepath.Walk(tree, func(path string, info os.FileInfo, err error) error {
filename := info.Name()
localpath := strings.Replace(path, tree, "", 1)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
if info.IsDir() && string(filename[0]) == "." {
return filepath.SkipDir
}
if !info.IsDir() && string(filename[0]) != "." {
_, exists := forest[localpath]
if !exists {
forest[localpath] = make([]string, len(args))
}
forest[localpath][i] = sha256sum(path)
}
return nil
})
}
fmt.Println(trees)
computeVersions(forest)
fmt.Println(genMatrix(forest))
}
func sha256sum(path string) string {
file, err := os.Open(path)
hash := sha256.New()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer file.Close()
if _, err := io.Copy(hash, file); err != nil {
fmt.Println(err)
os.Exit(1)
}
return fmt.Sprintf("%x", hash.Sum(nil))
}
func computeVersions(forest map[string][]string) {
for file, hashes := range forest {
// If the file doesn't exist in the tree
// its version is 0
versions := map[string]string{"": "0"}
output := make([]string, len(hashes))
for i, hash := range hashes {
_, exists := versions[hash]
if !exists {
versions[hash] = strconv.Itoa(len(versions))
}
output[i] = versions[hash]
}
forest[file] = output
}
}
func genMatrix(forest map[string][]string) [][]string {
// Convert forest into a 2d slice
matrix := make([][]string, 0, len(forest))
for name, versions := range forest {
row := append([]string{name}, versions...)
matrix = append(matrix, row)
}
// Sort rows by file path
sort.Slice(matrix, func(i, j int) bool {
return matrix[i][0] < matrix[j][0]
})
return matrix
}