Commit 808f5a08 authored by Steven Allen's avatar Steven Allen

feat: expose the full wantlist through GetWantlist

And expose a separate function for _just_ getting want-blocks. When the user
runs `ipfs bitswap wantlist`, they expect to see everything the node is
currently looking for.
Co-Authored-By: default avatardirkmc <dirkmdev@gmail.com>
parent bced0f31
...@@ -503,11 +503,17 @@ func (bs *Bitswap) Close() error { ...@@ -503,11 +503,17 @@ func (bs *Bitswap) Close() error {
return bs.process.Close() return bs.process.Close()
} }
// GetWantlist returns the current local wantlist. // GetWantlist returns the current local wantlist (both want-blocks and
// want-haves).
func (bs *Bitswap) GetWantlist() []cid.Cid { func (bs *Bitswap) GetWantlist() []cid.Cid {
return bs.pm.CurrentWants() return bs.pm.CurrentWants()
} }
// GetWantBlocks returns the current list of want-blocks.
func (bs *Bitswap) GetWantBlocks() []cid.Cid {
return bs.pm.CurrentWantBlocks()
}
// GetWanthaves returns the current list of want-haves. // GetWanthaves returns the current list of want-haves.
func (bs *Bitswap) GetWantHaves() []cid.Cid { func (bs *Bitswap) GetWantHaves() []cid.Cid {
return bs.pm.CurrentWantHaves() return bs.pm.CurrentWantHaves()
......
...@@ -170,11 +170,19 @@ func (pm *PeerManager) SendCancels(ctx context.Context, cancelKs []cid.Cid) { ...@@ -170,11 +170,19 @@ func (pm *PeerManager) SendCancels(ctx context.Context, cancelKs []cid.Cid) {
} }
} }
// CurrentWants returns the list of pending want-blocks // CurrentWants returns the list of pending wants (both want-haves and want-blocks).
func (pm *PeerManager) CurrentWants() []cid.Cid { func (pm *PeerManager) CurrentWants() []cid.Cid {
pm.pqLk.RLock() pm.pqLk.RLock()
defer pm.pqLk.RUnlock() defer pm.pqLk.RUnlock()
return pm.pwm.GetWants()
}
// CurrentWantBlocks returns the list of pending want-blocks
func (pm *PeerManager) CurrentWantBlocks() []cid.Cid {
pm.pqLk.RLock()
defer pm.pqLk.RUnlock()
return pm.pwm.GetWantBlocks() return pm.pwm.GetWantBlocks()
} }
......
...@@ -189,6 +189,28 @@ func (pwm *peerWantManager) GetWantHaves() []cid.Cid { ...@@ -189,6 +189,28 @@ func (pwm *peerWantManager) GetWantHaves() []cid.Cid {
return res.Keys() return res.Keys()
} }
// GetWants returns the set of all wants (both want-blocks and want-haves).
func (pwm *peerWantManager) GetWants() []cid.Cid {
res := cid.NewSet()
// Iterate over all known peers
for _, pws := range pwm.peerWants {
// Iterate over all want-blocks
for _, c := range pws.wantBlocks.Keys() {
// Add the CID to the results
res.Add(c)
}
// Iterate over all want-haves
for _, c := range pws.wantHaves.Keys() {
// Add the CID to the results
res.Add(c)
}
}
return res.Keys()
}
func (pwm *peerWantManager) String() string { func (pwm *peerWantManager) String() string {
var b bytes.Buffer var b bytes.Buffer
for p, ws := range pwm.peerWants { for p, ws := range pwm.peerWants {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment