-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnodes.go
112 lines (97 loc) · 2.67 KB
/
nodes.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
108
109
110
111
112
package main
import (
"encoding/json"
"net/http"
"github.com/grrrben/glog"
)
type Nodes struct {
List []Node
}
func initNodes() *Nodes {
nodes := &Nodes{}
return nodes
}
// addNode Add a new Node to the list.
// A Node can only be added a single time, the list is unique.
// return bool true on success.
func (nodes *Nodes) addNode(newNode *Node) bool {
newNode.createWallet()
for _, n := range nodes.List {
if n.getAddress() == newNode.getAddress() {
glog.Warningf("Node already known: %s", n.getAddress())
return false
}
}
nodes.List = append(nodes.List, *newNode)
glog.Infof("Node added (%s). Nodes: %d", newNode.getAddress(), nodes.num())
return true
}
// syncNodes contacts other Nodes to fetch a full list of Nodes
// todo; how do I know which nodes are currently in the network
func (nodes *Nodes) syncNodes() bool {
// if I am the only node, ignore this
if me.Port == 8000 {
return true
}
// for now, just use the main parent node as an oracle.
url := "http://localhost:8000/node"
var externalNodes Nodes
resp, err := http.Get(url)
if err != nil {
glog.Warningf("Could not get list of Nodes on url: %s", url)
return false
}
defer resp.Body.Close()
decodingErr := json.NewDecoder(resp.Body).Decode(&externalNodes)
if decodingErr != nil {
glog.Warningf("Could not decode JSON of list of Nodes\n")
return false
}
glog.Infof("external nodes:\n%v", externalNodes)
// just try to add all nodes
i := 0
for _, n := range externalNodes.List {
success := nodes.addNode(&n)
if success == true {
i++
}
}
glog.Infof("%d external Node(s) added\n", i)
return true
}
// greetNodes contacts other Nodes to add this node to their list of known Nodes
func (nodes *Nodes) greetNodes() bool {
for _, node := range nodes.List {
if node == me {
// no need to register myself
continue
}
go greet(node)
}
return true
}
// announceMinedBlocks tells all nodes in the network about the newly mined block.
// it gives the new block to the nodes who can add it to their chain.
func (nodes *Nodes) announceMinedBlocks(bl Block) {
for _, node := range nodes.List {
if node == me {
continue // no need to brag
}
go announceMinedBlock(node, bl)
}
}
// distributeTransaction tells all nodes in the network about the new Transaction.
func (nodes *Nodes) distributeTransaction(tr Transaction) {
glog.Infof("Announcing transaction to %d nodes", len(nodes.List))
for _, node := range nodes.List {
if node == me {
continue // no need to brag
}
glog.Info("Announcing transaction")
go announceTransaction(node, tr)
}
}
// num returns an int which represents the number of connected nodes.
func (nodes *Nodes) num() int {
return len(nodes.List)
}