Some checks failed
ci/woodpecker/pr/pre-commit Pipeline was successful
Build / Build Components (1.19) (pull_request) Successful in 2m45s
Build / Build Components (1.20) (pull_request) Successful in 8m1s
Tests and linters / Tests (1.19) (pull_request) Failing after 3m0s
Tests and linters / Tests (1.20) (pull_request) Failing after 3m20s
Tests and linters / Lint (pull_request) Failing after 9m45s
Tests and linters / Tests with -race (pull_request) Failing after 4m38s
Tests and linters / Staticcheck (pull_request) Failing after 9m4s
Signed-off-by: Airat Arifullin a.arifullin@yadro.com
43 lines
1.4 KiB
Go
43 lines
1.4 KiB
Go
package netmap
|
|
|
|
import (
|
|
netmapGRPC "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
)
|
|
|
|
// Node is a named type of netmap.NodeInfo which provides interface needed
|
|
// in the current repository. Node is expected to be used everywhere instead
|
|
// of direct usage of netmap.NodeInfo, so it represents a type mediator.
|
|
type Node netmapGRPC.NodeInfo
|
|
|
|
// PublicKey returns public key bound to the storage node.
|
|
//
|
|
// Return value MUST NOT be mutated, make a copy first.
|
|
func (x Node) PublicKey() []byte {
|
|
return (netmapGRPC.NodeInfo)(x).PublicKey()
|
|
}
|
|
|
|
// IterateAddresses iterates over all announced network addresses
|
|
// and passes them into f. Handler MUST NOT be nil.
|
|
func (x Node) IterateAddresses(f func(string) bool) {
|
|
(netmapGRPC.NodeInfo)(x).IterateNetworkEndpoints(f)
|
|
for _, addr := range (netmapGRPC.NodeInfo)(x).ExternalAddresses() {
|
|
if f(addr) {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// NumberOfAddresses returns number of announced network addresses.
|
|
func (x Node) NumberOfAddresses() int {
|
|
return (netmapGRPC.NodeInfo)(x).NumberOfNetworkEndpoints()
|
|
}
|
|
|
|
// ExternalAddresses returns external addresses of a node.
|
|
func (x Node) ExternalAddresses() []string {
|
|
return (netmapGRPC.NodeInfo)(x).ExternalAddresses()
|
|
}
|
|
|
|
// Nodes is a named type of []netmap.NodeInfo which provides interface needed
|
|
// in the current repository. Nodes is expected to be used everywhere instead
|
|
// of direct usage of []netmap.NodeInfo, so it represents a type mediator.
|
|
type Nodes []netmapGRPC.NodeInfo
|