forked from TrueCloudLab/frostfs-node
Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
37 lines
986 B
Go
37 lines
986 B
Go
package accounting
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/accounting"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/util"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/util/response"
|
|
)
|
|
|
|
type responseService struct {
|
|
respSvc *response.Service
|
|
|
|
svc Server
|
|
}
|
|
|
|
// NewResponseService returns accounting service instance that passes internal service
|
|
// call to response service.
|
|
func NewResponseService(accSvc Server, respSvc *response.Service) Server {
|
|
return &responseService{
|
|
respSvc: respSvc,
|
|
svc: accSvc,
|
|
}
|
|
}
|
|
|
|
func (s *responseService) Balance(ctx context.Context, req *accounting.BalanceRequest) (*accounting.BalanceResponse, error) {
|
|
resp, err := s.respSvc.HandleUnaryRequest(ctx, req,
|
|
func(ctx context.Context, req any) (util.ResponseMessage, error) {
|
|
return s.svc.Balance(ctx, req.(*accounting.BalanceRequest))
|
|
},
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp.(*accounting.BalanceResponse), nil
|
|
}
|