-
Notifications
You must be signed in to change notification settings - Fork 202
/
shardCoordinator.go
74 lines (60 loc) · 1.78 KB
/
shardCoordinator.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
package testscommon
import (
"fmt"
)
// ShardsCoordinatorMock -
type ShardsCoordinatorMock struct {
NoShards uint32
CurrentShard uint32
ComputeIdCalled func(address []byte) uint32
SelfIDCalled func() uint32
}
// NewMultiShardsCoordinatorMock -
func NewMultiShardsCoordinatorMock(nrShard uint32) *ShardsCoordinatorMock {
return &ShardsCoordinatorMock{NoShards: nrShard}
}
// NumberOfShards -
func (scm *ShardsCoordinatorMock) NumberOfShards() uint32 {
return scm.NoShards
}
// ComputeId -
func (scm *ShardsCoordinatorMock) ComputeId(address []byte) uint32 {
if scm.ComputeIdCalled == nil {
return scm.SelfId()
}
return scm.ComputeIdCalled(address)
}
// SelfId -
func (scm *ShardsCoordinatorMock) SelfId() uint32 {
if scm.SelfIDCalled != nil {
return scm.SelfIDCalled()
}
return scm.CurrentShard
}
// SetSelfId -
func (scm *ShardsCoordinatorMock) SetSelfId(_ uint32) error {
return nil
}
// SameShard -
func (scm *ShardsCoordinatorMock) SameShard(_, _ []byte) bool {
return true
}
// SetNoShards -
func (scm *ShardsCoordinatorMock) SetNoShards(noShards uint32) {
scm.NoShards = noShards
}
// CommunicationIdentifier returns the identifier between current shard ID and destination shard ID
// identifier is generated such as the first shard from identifier is always smaller than the last
func (scm *ShardsCoordinatorMock) CommunicationIdentifier(destShardID uint32) string {
if destShardID == scm.CurrentShard {
return fmt.Sprintf("_%d", scm.CurrentShard)
}
if destShardID < scm.CurrentShard {
return fmt.Sprintf("_%d_%d", destShardID, scm.CurrentShard)
}
return fmt.Sprintf("_%d_%d", scm.CurrentShard, destShardID)
}
// IsInterfaceNil returns true if there is no value under the interface
func (scm *ShardsCoordinatorMock) IsInterfaceNil() bool {
return scm == nil
}