[#263] v2: Support new rpc library
Implement `message.Message` interface on all structures and use new methods for conversion instead of functions. make `Unmarshal` and JSON methods to use encoding functions from `message` library. Remove all per-service clients and implement `rpc` library of the functions which execute NeoFS API RPC through new RPC client. Remove no longer used gRPC per-service clients. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
30c6ca0714
commit
1031f3122e
102 changed files with 7554 additions and 12298 deletions
46
v2/rpc/netmap.go
Normal file
46
v2/rpc/netmap.go
Normal file
|
@ -0,0 +1,46 @@
|
|||
package rpc
|
||||
|
||||
import (
|
||||
"github.com/nspcc-dev/neofs-api-go/rpc/client"
|
||||
"github.com/nspcc-dev/neofs-api-go/rpc/common"
|
||||
"github.com/nspcc-dev/neofs-api-go/v2/netmap"
|
||||
)
|
||||
|
||||
const serviceNetmap = serviceNamePrefix + "netmap.NetmapService"
|
||||
|
||||
const (
|
||||
rpcNetmapNodeInfo = "LocalNodeInfo"
|
||||
rpcNetmapNetInfo = "NetworkInfo"
|
||||
)
|
||||
|
||||
// LocalNodeInfo executes NetmapService.LocalNodeInfo RPC.
|
||||
func LocalNodeInfo(
|
||||
cli *client.Client,
|
||||
req *netmap.LocalNodeInfoRequest,
|
||||
opts ...client.CallOption,
|
||||
) (*netmap.LocalNodeInfoResponse, error) {
|
||||
resp := new(netmap.LocalNodeInfoResponse)
|
||||
|
||||
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceNetmap, rpcNetmapNodeInfo), req, resp, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
// NetworkInfo executes NetmapService.NetworkInfo RPC.
|
||||
func NetworkInfo(
|
||||
cli *client.Client,
|
||||
req *netmap.NetworkInfoRequest,
|
||||
opts ...client.CallOption,
|
||||
) (*netmap.NetworkInfoResponse, error) {
|
||||
resp := new(netmap.NetworkInfoResponse)
|
||||
|
||||
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceNetmap, rpcNetmapNetInfo), req, resp, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return resp, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue