forked from treeverse/lakeFS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiff.go
64 lines (57 loc) · 1.12 KB
/
diff.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
package catalog
type DifferenceType int
const (
DifferenceTypeAdded DifferenceType = iota
DifferenceTypeRemoved
DifferenceTypeChanged
DifferenceTypeConflict
)
type Difference struct {
Type DifferenceType `db:"diff_type"`
Path string `db:"path"`
}
func (d Difference) String() string {
var symbol string
switch d.Type {
case DifferenceTypeAdded:
symbol = "+"
case DifferenceTypeRemoved:
symbol = "-"
case DifferenceTypeChanged:
symbol = "~"
case DifferenceTypeConflict:
symbol = "x"
}
return symbol + " " + d.Path
}
type Differences []Difference
func (d Differences) CountByType() map[DifferenceType]int {
result := make(map[DifferenceType]int)
for i := range d {
typ := d[i].Type
if count, ok := result[typ]; !ok {
result[typ] = 1
} else {
result[typ] = count + 1
}
}
return result
}
func (d Differences) Equal(other Differences) bool {
if len(d) != len(other) {
return false
}
for _, item := range d {
m := false
for _, otherItem := range other {
if otherItem.Path == item.Path {
m = otherItem.Type == item.Type
break
}
}
if !m {
return false
}
}
return true
}