forked from whyrusleeping/ipfs-counter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmodel.go
130 lines (118 loc) · 3.54 KB
/
model.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package main
import (
"net"
"time"
"cloud.google.com/go/bigquery"
"github.com/libp2p/go-libp2p-core/peer"
"github.com/multiformats/go-multiaddr"
)
// Node is a top-level record of the state of a remote peer
type Node struct {
Observed time.Time
ID peer.ID `bigquery:"peer_id"`
Addrs []multiaddr.Multiaddr `bigquery:"-"`
// string interpretation of Addrs used when saving to bigquery.
Addresses []string `json:"-"`
UserAgent, ProtocolVersion string
Protocols []string
RTPeers map[peer.ID]struct{} `bigquery:"-"`
// list of peers for bigquery
RT []peer.ID `bigquery:"rt" json:"-"`
Err string
}
// Save formats node instance for bigquery
func (n *Node) Save() (map[string]bigquery.Value, string, error) {
pl := make([]peer.ID, 0, len(n.RTPeers))
for p := range n.RTPeers {
pl = append(pl, p)
}
n.RT = pl
textAddrs := make([]string, 0, len(n.Addrs))
for _, a := range n.Addrs {
textAddrs = append(textAddrs, a.String())
}
n.Addresses = textAddrs
return map[string]bigquery.Value{
"Observed": n.Observed,
"peer_id": n.ID,
"Addresses": textAddrs,
"UserAgent": n.UserAgent,
"Protocols": n.Protocols,
"ProtocolVersion": n.ProtocolVersion,
"rt": pl,
"Err": n.Err,
}, "", nil
}
// Trial defines a row of input / connection attempts to a node.
type Trial struct {
Observed time.Time
peer.ID
multiaddr.Multiaddr
Address net.IP
Retries uint // TODO: This can be obtained from length of results array?
Results []Result
Blocked bool
FailSanity bool
RTT time.Duration
}
// TrialSchema is a bigquery schema for saving Trials
type TrialSchema struct {
Observed time.Time `bigquery:"observed"`
peer.ID `bigquery:"peer_id"`
MultiAddress bigquery.NullString `bigquery:"multi_address"`
Address string `bigquery:"address"`
Retries uint32 `bigquery:"retries"`
Results []Result `bigquery:"results"`
Blocked bool `bigquery:"blocked"`
FailSanity bool `bigquery:"fail_sanity"`
RTT bigquery.NullInt64 `bigquery:"rtt"`
}
// MAString provides a full multiaddr (address and peer identity key) to re-dial this trial
func (ts *TrialSchema) MAString() (string, error) {
parsed, err := multiaddr.NewMultiaddr(ts.MultiAddress.String())
if err != nil {
return "", err
}
rawid, err := peer.Decode(string(ts.ID))
if err != nil {
return "", err
}
pai := peer.AddrInfo{ID: peer.ID(rawid), Addrs: []multiaddr.Multiaddr{parsed}}
infos, err := peer.AddrInfoToP2pAddrs(&pai)
if err != nil {
return "", err
}
return infos[0].String(), nil
}
// Save formats a trial for bigquery insertion
func (t *Trial) Save() (map[string]bigquery.Value, string, error) {
ma := bigquery.NullString{}
if t.Multiaddr != nil {
ma.StringVal = t.Multiaddr.String()
ma.Valid = true
}
rt := bigquery.NullInt64{}
if t.RTT != 0 {
rt.Int64 = int64(t.RTT)
rt.Valid = true
}
return map[string]bigquery.Value{
"observed": t.Observed,
"peer_id": t.ID,
"multi_address": ma,
"address": t.Address.String(),
"retries": t.Retries,
"results": t.Results,
"blocked": t.Blocked,
"fail_sanity": t.FailSanity,
"rtt": rt,
}, "", nil
}
// Result is a single connection to a node.
// There are many of these in a given Trial
type Result struct {
Success bool // Reply matches template
Error bigquery.NullString
StartTime time.Time
EndTime bigquery.NullDateTime
}