@@ -35,13 +35,13 @@ func newSessionWants(broadcastLimit int) sessionWants {
35
35
}
36
36
37
37
func (sw * sessionWants ) String () string {
38
- return fmt .Sprintf ("%d pending / %d live" , sw .toFetch .Len (), len (sw .liveWants ))
38
+ return fmt .Sprintf ("%d pending / %d live" , sw .toFetch .len (), len (sw .liveWants ))
39
39
}
40
40
41
41
// BlocksRequested is called when the client makes a request for blocks
42
42
func (sw * sessionWants ) BlocksRequested (newWants []cid.Cid ) {
43
43
for _ , k := range newWants {
44
- sw .toFetch .Push (k )
44
+ sw .toFetch .push (k )
45
45
}
46
46
}
47
47
@@ -56,14 +56,14 @@ func (sw *sessionWants) GetNextWants() []cid.Cid {
56
56
// limit)
57
57
currentLiveCount := len (sw .liveWants )
58
58
toAdd := sw .broadcastLimit - currentLiveCount
59
- liveSize := min (toAdd , sw .toFetch .Len ())
59
+ liveSize := min (toAdd , sw .toFetch .len ())
60
60
if liveSize <= 0 {
61
61
return nil
62
62
}
63
63
64
64
live := make ([]cid.Cid , 0 , liveSize )
65
- for ; toAdd > 0 && sw .toFetch .Len () > 0 ; toAdd -- {
66
- c := sw .toFetch .Pop ()
65
+ for ; toAdd > 0 && sw .toFetch .len () > 0 ; toAdd -- {
66
+ c := sw .toFetch .pop ()
67
67
live = append (live , c )
68
68
sw .liveWantsOrder = append (sw .liveWantsOrder , c )
69
69
sw .liveWants [c ] = now
@@ -76,12 +76,13 @@ func (sw *sessionWants) GetNextWants() []cid.Cid {
76
76
func (sw * sessionWants ) WantsSent (ks []cid.Cid ) {
77
77
now := time .Now ()
78
78
for _ , c := range ks {
79
- if _ , ok := sw .liveWants [c ]; ! ok && sw .toFetch .Has (c ) {
80
- sw .toFetch .Remove (c )
79
+ if _ , ok := sw .liveWants [c ]; ! ok && sw .toFetch .has (c ) {
80
+ sw .toFetch .remove (c )
81
81
sw .liveWantsOrder = append (sw .liveWantsOrder , c )
82
82
sw .liveWants [c ] = now
83
83
}
84
84
}
85
+ sw .toFetch .gc ()
85
86
}
86
87
87
88
// BlocksReceived removes received block CIDs from the live wants list and
@@ -108,9 +109,10 @@ func (sw *sessionWants) BlocksReceived(ks []cid.Cid) ([]cid.Cid, time.Duration)
108
109
109
110
// Remove the CID from the live wants / toFetch queue
110
111
delete (sw .liveWants , c )
111
- sw .toFetch .Remove (c )
112
+ sw .toFetch .remove (c )
112
113
}
113
114
}
115
+ sw .toFetch .gc ()
114
116
115
117
// If the live wants ordering array is a long way out of sync with the
116
118
// live wants map, clean up the ordering array
@@ -152,9 +154,10 @@ func (sw *sessionWants) PrepareBroadcast() []cid.Cid {
152
154
// CancelPending removes the given CIDs from the fetch queue.
153
155
func (sw * sessionWants ) CancelPending (keys []cid.Cid ) {
154
156
for _ , k := range keys {
155
- sw .toFetch .Remove (k )
157
+ sw .toFetch .remove (k )
156
158
delete (sw .liveWants , k )
157
159
}
160
+ sw .toFetch .gc ()
158
161
}
159
162
160
163
// LiveWants returns a list of live wants
@@ -193,7 +196,7 @@ func (sw *sessionWants) HasLiveWants() bool {
193
196
func (sw * sessionWants ) isWanted (c cid.Cid ) bool {
194
197
_ , ok := sw .liveWants [c ]
195
198
if ! ok {
196
- ok = sw .toFetch .Has (c )
199
+ ok = sw .toFetch .has (c )
197
200
}
198
201
return ok
199
202
}
0 commit comments