This repository was archived by the owner on Aug 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 266
/
Copy pathcandidate.go
104 lines (85 loc) · 2.94 KB
/
candidate.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
// Copyright 2016 Attic Labs, Inc. All rights reserved.
// Licensed under the Apache License, version 2.0:
// http://www.apache.org/licenses/LICENSE-2.0
package merge
import (
"fmt"
"github.com/attic-labs/noms/go/d"
"github.com/attic-labs/noms/go/types"
)
// candidate represents a collection that is a candidate to be merged. This
// interface exists to wrap Maps, Sets and Structs with a common API so that
// threeWayOrderedSequenceMerge() can remain agnostic to which kind of
// collections it's actually working with.
type candidate interface {
diff(parent candidate, change chan<- types.ValueChanged, stop <-chan struct{})
get(k types.Value) types.Value
pathConcat(change types.ValueChanged, path types.Path) (out types.Path)
getValue() types.Value
}
type mapCandidate struct {
m types.Map
}
func (mc mapCandidate) diff(p candidate, change chan<- types.ValueChanged, stop <-chan struct{}) {
mc.m.Diff(p.(mapCandidate).m, change, stop)
}
func (mc mapCandidate) get(k types.Value) types.Value {
return mc.m.Get(k)
}
func (mc mapCandidate) pathConcat(change types.ValueChanged, path types.Path) (out types.Path) {
out = append(out, path...)
if kind := change.Key.Kind(); kind == types.BoolKind || kind == types.StringKind || kind == types.NumberKind {
out = append(out, types.NewIndexPath(change.Key))
} else {
out = append(out, types.NewHashIndexPath(change.Key.Hash()))
}
return
}
func (mc mapCandidate) getValue() types.Value {
return mc.m
}
type setCandidate struct {
s types.Set
}
func (sc setCandidate) diff(p candidate, change chan<- types.ValueChanged, stop <-chan struct{}) {
sc.s.Diff(p.(setCandidate).s, change, stop)
}
func (sc setCandidate) get(k types.Value) types.Value {
return k
}
func (sc setCandidate) pathConcat(change types.ValueChanged, path types.Path) (out types.Path) {
out = append(out, path...)
if kind := change.Key.Kind(); kind == types.BoolKind || kind == types.StringKind || kind == types.NumberKind {
out = append(out, types.NewIndexPath(change.Key))
} else {
out = append(out, types.NewHashIndexPath(change.Key.Hash()))
}
return
}
func (sc setCandidate) getValue() types.Value {
return sc.s
}
type structCandidate struct {
s types.Struct
}
func (sc structCandidate) diff(p candidate, change chan<- types.ValueChanged, stop <-chan struct{}) {
sc.s.Diff(p.(structCandidate).s, change, stop)
}
func (sc structCandidate) get(key types.Value) types.Value {
if field, ok := key.(types.String); ok {
val, _ := sc.s.MaybeGet(string(field))
return val
}
panic(fmt.Errorf("Bad key type in diff: %s", types.TypeOf(key).Describe()))
}
func (sc structCandidate) pathConcat(change types.ValueChanged, path types.Path) (out types.Path) {
out = append(out, path...)
str, ok := change.Key.(types.String)
if !ok {
d.Panic("Field names must be strings, not %s", types.TypeOf(change.Key).Describe())
}
return append(out, types.NewFieldPath(string(str)))
}
func (sc structCandidate) getValue() types.Value {
return sc.s
}