2020-10-22 11:06:25 +00:00
|
|
|
package accounting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
"github.com/TrueCloudLab/frostfs-api-go/v2/accounting"
|
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/services/util"
|
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/services/util/response"
|
2020-10-22 11:06:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type responseService struct {
|
|
|
|
respSvc *response.Service
|
|
|
|
|
2021-03-15 10:53:08 +00:00
|
|
|
svc Server
|
2020-10-22 11:06:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewResponseService returns accounting service instance that passes internal service
|
|
|
|
// call to response service.
|
2021-03-15 10:53:08 +00:00
|
|
|
func NewResponseService(accSvc Server, respSvc *response.Service) Server {
|
2020-10-22 11:06:25 +00:00
|
|
|
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 interface{}) (util.ResponseMessage, error) {
|
|
|
|
return s.svc.Balance(ctx, req.(*accounting.BalanceRequest))
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp.(*accounting.BalanceResponse), nil
|
|
|
|
}
|