forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.go
107 lines (96 loc) · 2.67 KB
/
node.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
// Copyright 2015 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License. See the AUTHORS file
// for names of contributors.
//
// Author: Bram Gruneir (bram+code@cockroachlabs.com)
package main
import (
"bytes"
"fmt"
"sync"
"github.com/cockroachdb/cockroach/proto"
)
// Node is a simulated cockroach node.
type Node struct {
sync.RWMutex
desc proto.NodeDescriptor
stores map[proto.StoreID]*Store
}
// newNode creates a new node with no stores.
func newNode(nodeID proto.NodeID) *Node {
node := &Node{
desc: proto.NodeDescriptor{
NodeID: nodeID,
},
stores: make(map[proto.StoreID]*Store),
}
return node
}
// getDesc returns the node descriptor for the node.
func (n *Node) getDesc() proto.NodeDescriptor {
n.RLock()
defer n.RUnlock()
return n.desc
}
// getStore returns the store found on the node.
// TODO(bram): do we need this?
func (n *Node) getStore(storeID proto.StoreID) *Store {
n.RLock()
defer n.RUnlock()
return n.stores[storeID]
}
// getStoreIDs returns the list of storeIDs from the stores contained on the
// node.
func (n *Node) getStoreIDs() []proto.StoreID {
n.RLock()
defer n.RUnlock()
var storeIDs []proto.StoreID
for storeID := range n.stores {
storeIDs = append(storeIDs, storeID)
}
return storeIDs
}
// getNextStoreIDLocked gets the store ID that should be used when adding a new
// store to the node.
// Lock is assumed held by caller.
func (n *Node) getNextStoreIDLocked() proto.StoreID {
return proto.StoreID((int(n.desc.NodeID) * 1000) + len(n.stores))
}
// addNewStore creates a new store and adds it to the node.
func (n *Node) addNewStore() *Store {
n.Lock()
defer n.Unlock()
newStoreID := n.getNextStoreIDLocked()
newStore := newStore(newStoreID, n.desc)
n.stores[newStoreID] = newStore
return newStore
}
// String returns the current status of the node for human readable printing.
func (n *Node) String() string {
n.RLock()
defer n.RUnlock()
var buf bytes.Buffer
fmt.Fprintf(&buf, "Node %d - Stores:[", n.desc.NodeID)
first := true
for storeID := range n.stores {
if first {
first = false
} else {
buf.WriteString(",")
}
buf.WriteString(storeID.String())
}
buf.WriteString("]")
return buf.String()
}