forked from TrueCloudLab/frostfs-node
Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
50 lines
880 B
Go
50 lines
880 B
Go
package v2
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/engine"
|
|
cid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
)
|
|
|
|
func WithObjectStorage(v ObjectStorage) Option {
|
|
return func(c *cfg) {
|
|
c.storage = v
|
|
}
|
|
}
|
|
|
|
func WithLocalObjectStorage(v *engine.StorageEngine) Option {
|
|
return func(c *cfg) {
|
|
c.storage = &localStorage{
|
|
ls: v,
|
|
}
|
|
}
|
|
}
|
|
|
|
func WithServiceRequest(v Request) Option {
|
|
return func(c *cfg) {
|
|
c.msg = requestXHeaderSource{
|
|
req: v,
|
|
}
|
|
}
|
|
}
|
|
|
|
func WithServiceResponse(resp Response, req Request) Option {
|
|
return func(c *cfg) {
|
|
c.msg = responseXHeaderSource{
|
|
resp: resp,
|
|
req: req,
|
|
}
|
|
}
|
|
}
|
|
|
|
func WithCID(v cid.ID) Option {
|
|
return func(c *cfg) {
|
|
c.cnr = v
|
|
}
|
|
}
|
|
|
|
func WithOID(v *oid.ID) Option {
|
|
return func(c *cfg) {
|
|
c.obj = v
|
|
}
|
|
}
|