-
Notifications
You must be signed in to change notification settings - Fork 365
/
Copy pathdiff.go
60 lines (53 loc) · 1.15 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
package catalog
type DifferenceType int
const (
DifferenceTypeAdded DifferenceType = iota
DifferenceTypeRemoved
DifferenceTypeChanged
DifferenceTypePrefixChanged
DifferenceTypeConflict
DifferenceTypeNone
)
type Difference struct {
DBEntry // Partially filled. Path is always set.
Type DifferenceType `db:"diff_type"`
}
type DiffResultRecord struct {
TargetEntryNotInDirectBranch bool // the entry is reflected via lineage, NOT in the branch itself
Difference
}
func (d Difference) String() string {
var symbol string
switch d.Type {
case DifferenceTypeAdded:
symbol = "+"
case DifferenceTypeRemoved:
symbol = "-"
case DifferenceTypeChanged:
symbol = "~"
case DifferenceTypeConflict:
symbol = "x"
case DifferenceTypePrefixChanged:
symbol = "/~"
}
return symbol + " " + d.Path
}
type Differences []Difference
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
}