-
Notifications
You must be signed in to change notification settings - Fork 672
/
requests.go
108 lines (91 loc) · 2.74 KB
/
requests.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
// Copyright (C) 2019-2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package common
import (
"fmt"
"strings"
"github.com/ava-labs/avalanchego/ids"
)
const (
minRequestsSize = 32
)
type req struct {
vdr ids.NodeID
id uint32
}
// Requests tracks pending container messages from a peer.
type Requests struct {
reqsToID map[ids.NodeID]map[uint32]ids.ID
idToReq map[ids.ID]req
}
// Add a request. Assumes that requestIDs are unique. Assumes that containerIDs
// are only in one request at a time.
func (r *Requests) Add(vdr ids.NodeID, requestID uint32, containerID ids.ID) {
if r.reqsToID == nil {
r.reqsToID = make(map[ids.NodeID]map[uint32]ids.ID, minRequestsSize)
}
vdrReqs, ok := r.reqsToID[vdr]
if !ok {
vdrReqs = make(map[uint32]ids.ID)
r.reqsToID[vdr] = vdrReqs
}
vdrReqs[requestID] = containerID
if r.idToReq == nil {
r.idToReq = make(map[ids.ID]req, minRequestsSize)
}
r.idToReq[containerID] = req{
vdr: vdr,
id: requestID,
}
}
// Get the containerID the request is expecting and if the request exists.
func (r *Requests) Get(vdr ids.NodeID, requestID uint32) (ids.ID, bool) {
containerID, ok := r.reqsToID[vdr][requestID]
return containerID, ok
}
// Remove attempts to abandon a requestID sent to a validator. If the request is
// currently outstanding, the requested ID will be returned along with true. If
// the request isn't currently outstanding, false will be returned.
func (r *Requests) Remove(vdr ids.NodeID, requestID uint32) (ids.ID, bool) {
vdrReqs := r.reqsToID[vdr]
containerID, ok := vdrReqs[requestID]
if !ok {
return ids.ID{}, false
}
if len(vdrReqs) == 1 {
delete(r.reqsToID, vdr)
} else {
delete(vdrReqs, requestID)
}
delete(r.idToReq, containerID)
return containerID, true
}
// RemoveAny outstanding requests for the container ID. True is returned if the
// container ID had an outstanding request.
func (r *Requests) RemoveAny(containerID ids.ID) bool {
req, ok := r.idToReq[containerID]
if !ok {
return false
}
r.Remove(req.vdr, req.id)
return true
}
// Len returns the total number of outstanding requests.
func (r *Requests) Len() int { return len(r.idToReq) }
// Contains returns true if there is an outstanding request for the container
// ID.
func (r *Requests) Contains(containerID ids.ID) bool {
_, ok := r.idToReq[containerID]
return ok
}
func (r Requests) String() string {
sb := strings.Builder{}
sb.WriteString(fmt.Sprintf("Requests: (Num Validators = %d)", len(r.reqsToID)))
for vdr, reqs := range r.reqsToID {
sb.WriteString(fmt.Sprintf("\n VDR[%s]: (Outstanding Requests %d)", vdr, len(reqs)))
for reqID, containerID := range reqs {
sb.WriteString(fmt.Sprintf("\n Request[%d]: %s", reqID, containerID))
}
}
return sb.String()
}