mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 03:05:07 +03:00 
			
		
		
		
	make searches more parallel
This commit is contained in:
		
							parent
							
								
									5bd9391c61
								
							
						
					
					
						commit
						9fac5355eb
					
				
					 1 changed files with 7 additions and 25 deletions
				
			
		| 
						 | 
				
			
			@ -16,7 +16,6 @@ package yggdrasil
 | 
			
		|||
 | 
			
		||||
import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"sort"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
 | 
			
		||||
| 
						 | 
				
			
			@ -104,24 +103,6 @@ func (sinfo *searchInfo) addToSearch(res *dhtRes) {
 | 
			
		|||
			sinfo.toVisit = append(sinfo.toVisit, info)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	// Deduplicate
 | 
			
		||||
	vMap := make(map[crypto.NodeID]*dhtInfo)
 | 
			
		||||
	for _, info := range sinfo.toVisit {
 | 
			
		||||
		vMap[*info.getNodeID()] = info
 | 
			
		||||
	}
 | 
			
		||||
	sinfo.toVisit = sinfo.toVisit[:0]
 | 
			
		||||
	for _, info := range vMap {
 | 
			
		||||
		sinfo.toVisit = append(sinfo.toVisit, info)
 | 
			
		||||
	}
 | 
			
		||||
	// Sort
 | 
			
		||||
	sort.SliceStable(sinfo.toVisit, func(i, j int) bool {
 | 
			
		||||
		// Should return true if i is closer to the destination than j
 | 
			
		||||
		return dht_ordered(&res.Dest, sinfo.toVisit[i].getNodeID(), sinfo.toVisit[j].getNodeID())
 | 
			
		||||
	})
 | 
			
		||||
	// Truncate to some maximum size
 | 
			
		||||
	if len(sinfo.toVisit) > search_MAX_SEARCH_SIZE {
 | 
			
		||||
		sinfo.toVisit = sinfo.toVisit[:search_MAX_SEARCH_SIZE]
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// If there are no nodes left toVisit, then this cleans up the search.
 | 
			
		||||
| 
						 | 
				
			
			@ -136,13 +117,14 @@ func (sinfo *searchInfo) doSearchStep() {
 | 
			
		|||
		return
 | 
			
		||||
	}
 | 
			
		||||
	// Send to the next search target
 | 
			
		||||
	var next *dhtInfo
 | 
			
		||||
	next, sinfo.toVisit = sinfo.toVisit[0], sinfo.toVisit[1:]
 | 
			
		||||
	for _, next := range sinfo.toVisit {
 | 
			
		||||
		rq := dhtReqKey{next.key, sinfo.dest}
 | 
			
		||||
		sinfo.searches.router.dht.addCallback(&rq, sinfo.handleDHTRes)
 | 
			
		||||
		sinfo.searches.router.dht.ping(next, &sinfo.dest)
 | 
			
		||||
		sinfo.time = time.Now()
 | 
			
		||||
	}
 | 
			
		||||
	sinfo.toVisit = sinfo.toVisit[:0]
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// If we've recently sent a ping for this search, do nothing.
 | 
			
		||||
// Otherwise, doSearchStep and schedule another continueSearch to happen after search_RETRY_TIME.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue