Aleksey Savchuk
c11f50efec
All checks were successful
DCO action / DCO (pull_request) Successful in 45s
Tests and linters / Tests (1.22) (pull_request) Successful in 1m5s
Tests and linters / Tests (1.23) (pull_request) Successful in 1m6s
Tests and linters / Lint (pull_request) Successful in 1m12s
Tests and linters / Tests with -race (pull_request) Successful in 1m20s
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
package rpc
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/container"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/client"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/common"
|
|
)
|
|
|
|
const serviceContainer = serviceNamePrefix + "container.ContainerService"
|
|
|
|
const (
|
|
rpcContainerPut = "Put"
|
|
rpcContainerGet = "Get"
|
|
rpcContainerDel = "Delete"
|
|
rpcContainerList = "List"
|
|
rpcContainerGetEACL = "GetExtendedACL"
|
|
rpcContainerUsedSpace = "AnnounceUsedSpace"
|
|
)
|
|
|
|
// PutContainer executes ContainerService.Put RPC.
|
|
func PutContainer(
|
|
cli *client.Client,
|
|
req *container.PutRequest,
|
|
opts ...client.CallOption,
|
|
) (*container.PutResponse, error) {
|
|
resp := new(container.PutResponse)
|
|
|
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceContainer, rpcContainerPut), req, resp, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// GetContainer executes ContainerService.Get RPC.
|
|
func GetContainer(
|
|
cli *client.Client,
|
|
req *container.GetRequest,
|
|
opts ...client.CallOption,
|
|
) (*container.GetResponse, error) {
|
|
resp := new(container.GetResponse)
|
|
|
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceContainer, rpcContainerGet), req, resp, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// DeleteContainer executes ContainerService.Delete RPC.
|
|
func DeleteContainer(
|
|
cli *client.Client,
|
|
req *container.DeleteRequest,
|
|
opts ...client.CallOption,
|
|
) (*container.PutResponse, error) {
|
|
resp := new(container.PutResponse)
|
|
|
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceContainer, rpcContainerDel), req, resp, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// ListContainers executes ContainerService.List RPC.
|
|
func ListContainers(
|
|
cli *client.Client,
|
|
req *container.ListRequest,
|
|
opts ...client.CallOption,
|
|
) (*container.ListResponse, error) {
|
|
resp := new(container.ListResponse)
|
|
|
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceContainer, rpcContainerList), req, resp, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|