2020-07-24 13:54:03 +00:00
|
|
|
package wrapper
|
|
|
|
|
2020-09-22 08:38:23 +00:00
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/netmap"
|
|
|
|
client "github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
// GetNetMap receives information list about storage nodes
|
|
|
|
// through the Netmap contract call, composes network map
|
2020-09-22 08:38:23 +00:00
|
|
|
// from them and returns it. With diff == 0 returns current
|
|
|
|
// network map, else return snapshot of previous network map.
|
|
|
|
func (w Wrapper) GetNetMap(diff uint64) (*netmap.Netmap, error) {
|
|
|
|
args := client.GetSnapshotArgs{}
|
|
|
|
args.SetDiff(diff)
|
|
|
|
|
|
|
|
peers, err := w.client.Snapshot(args)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rawPeers := peers.Peers() // slice of serialized node infos
|
2020-11-05 15:51:43 +00:00
|
|
|
infos := make([]netmap.NodeInfo, 0, len(rawPeers))
|
2020-09-22 08:38:23 +00:00
|
|
|
|
|
|
|
for _, peer := range rawPeers {
|
2020-11-16 10:26:35 +00:00
|
|
|
nodeInfo := netmap.NewNodeInfo()
|
|
|
|
if err := nodeInfo.Unmarshal(peer); err != nil {
|
2020-09-22 08:38:23 +00:00
|
|
|
return nil, errors.Wrap(err, "can't unmarshal peer info")
|
|
|
|
}
|
|
|
|
|
2020-11-16 10:26:35 +00:00
|
|
|
infos = append(infos, *nodeInfo)
|
2020-09-22 08:38:23 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 15:51:43 +00:00
|
|
|
nodes := netmap.NodesFromInfo(infos)
|
2020-09-22 08:38:23 +00:00
|
|
|
|
|
|
|
return netmap.NewNetmap(nodes)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|