2024-01-06 11:33:46 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.lumeweb.com/LumeWeb/libs5-go/encoding"
|
2024-01-07 08:58:22 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/libs5-go/interfaces"
|
2024-01-06 11:33:46 +00:00
|
|
|
"git.lumeweb.com/LumeWeb/libs5-go/net"
|
2024-01-06 15:54:38 +00:00
|
|
|
"github.com/emirpasic/gods/sets/hashset"
|
2024-01-06 11:33:46 +00:00
|
|
|
"github.com/vmihailenco/msgpack/v5"
|
2024-01-06 15:54:38 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
"log"
|
2024-01-06 11:33:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ IncomingMessageTyped = (*HashQuery)(nil)
|
|
|
|
|
|
|
|
type HashQuery struct {
|
|
|
|
hash *encoding.Multihash
|
|
|
|
kinds []int
|
|
|
|
|
|
|
|
IncomingMessageTypedImpl
|
|
|
|
IncomingMessageHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h HashQuery) Hash() *encoding.Multihash {
|
|
|
|
return h.hash
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h HashQuery) Kinds() []int {
|
|
|
|
return h.kinds
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HashQuery) DecodeMessage(dec *msgpack.Decoder) error {
|
|
|
|
hash, err := dec.DecodeBytes()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
h.hash = encoding.NewMultihash(hash)
|
|
|
|
|
|
|
|
var kinds []int
|
|
|
|
err = dec.Decode(&kinds)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
h.kinds = kinds
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2024-01-07 08:58:22 +00:00
|
|
|
func (h *HashQuery) HandleMessage(node interfaces.Node, peer *net.Peer, verifyId bool) error {
|
2024-01-06 15:54:38 +00:00
|
|
|
mapLocations, err := node.GetCachedStorageLocations(h.hash, h.kinds)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error getting cached storage locations: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(mapLocations) > 0 {
|
|
|
|
availableNodes := make([]*encoding.NodeId, 0, len(mapLocations))
|
|
|
|
for key := range mapLocations {
|
|
|
|
nodeId, err := encoding.DecodeNodeId(key)
|
|
|
|
if err != nil {
|
|
|
|
node.Logger().Error("Error decoding node id", zap.Error(err))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
availableNodes = append(availableNodes, nodeId)
|
|
|
|
}
|
|
|
|
|
|
|
|
score, err := node.Services().P2P().SortNodesByScore(availableNodes)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-07 08:58:22 +00:00
|
|
|
sortedNodeId, err := (*score[0]).ToString()
|
2024-01-06 15:54:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
entry, exists := mapLocations[sortedNodeId]
|
|
|
|
if exists {
|
2024-01-07 08:58:22 +00:00
|
|
|
err := (*peer).SendMessage(entry.ProviderMessage())
|
2024-01-06 15:54:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var peers *hashset.Set
|
|
|
|
peersVal, ok := node.HashQueryRoutingTable().Get(h.hash.HashCode()) // Implement HashQueryRoutingTable method
|
|
|
|
if !ok {
|
|
|
|
peers = hashset.New()
|
|
|
|
}
|
|
|
|
|
|
|
|
peers = peersVal.(*hashset.Set)
|
|
|
|
|
|
|
|
if exists := peers.Contains((*peer).GetId()); !exists {
|
|
|
|
peers.Add((*peer).GetId())
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, val := range node.Services().P2P().Peers().Values() {
|
|
|
|
peerVal := val.(net.Peer)
|
|
|
|
if !peerVal.GetId().Equals((*peer).GetId()) {
|
|
|
|
err := peerVal.SendMessage(h.IncomingMessageImpl.Original())
|
|
|
|
if err != nil {
|
|
|
|
node.Logger().Error("Failed to send message", zap.Error(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-06 11:33:46 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|