forked from TrueCloudLab/frostfs-node
3805b0f638
There is a need to generalize single-address client to group-address client. To do this, we can re-implement `Client` interface from NeoFS API Go library and still use it in the application code. There is a problem with method `Raw` which must return single-address raw client. So as not to make changes to API library we need to overload Client interface in order to support `Raw` method in group-address client implementation. Define `Client` interface in new `pkg/core/client` package. Completely inherit API `Client` interface. Add `RawForAddress` method to build raw client for the single node address. Adopt the application code that used Raw method to work with new `Client`. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package putsvc
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/client"
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
|
"github.com/nspcc-dev/neofs-node/pkg/network"
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/object/util"
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/object_manager/placement"
|
|
)
|
|
|
|
type PutInitPrm struct {
|
|
common *util.CommonPrm
|
|
|
|
hdr *object.RawObject
|
|
|
|
traverseOpts []placement.Option
|
|
|
|
relay func(network.Address, client.Client) error
|
|
}
|
|
|
|
type PutChunkPrm struct {
|
|
chunk []byte
|
|
}
|
|
|
|
func (p *PutInitPrm) WithCommonPrm(v *util.CommonPrm) *PutInitPrm {
|
|
if p != nil {
|
|
p.common = v
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
func (p *PutInitPrm) WithTraverseOption(opt placement.Option) *PutInitPrm {
|
|
if p != nil {
|
|
p.traverseOpts = append(p.traverseOpts, opt)
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
func (p *PutInitPrm) WithObject(v *object.RawObject) *PutInitPrm {
|
|
if p != nil {
|
|
p.hdr = v
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
func (p *PutInitPrm) WithRelay(f func(network.Address, client.Client) error) *PutInitPrm {
|
|
if p != nil {
|
|
p.relay = f
|
|
}
|
|
|
|
return p
|
|
}
|
|
|
|
func (p *PutChunkPrm) WithChunk(v []byte) *PutChunkPrm {
|
|
if p != nil {
|
|
p.chunk = v
|
|
}
|
|
|
|
return p
|
|
}
|