frostfs-node/pkg/services/replicator/replicator.go
Airat Arifullin 90cf89b26c
All checks were successful
DCO action / DCO (pull_request) Successful in 5m1s
Tests and linters / Run gofumpt (pull_request) Successful in 5m31s
Pre-commit hooks / Pre-commit (pull_request) Successful in 5m54s
Vulncheck / Vulncheck (pull_request) Successful in 5m39s
Build / Build Components (1.22) (pull_request) Successful in 6m6s
Build / Build Components (1.23) (pull_request) Successful in 6m7s
Tests and linters / Tests (1.22) (pull_request) Successful in 6m0s
Tests and linters / Tests (1.23) (pull_request) Successful in 6m9s
Tests and linters / Staticcheck (pull_request) Successful in 6m9s
Tests and linters / Lint (pull_request) Successful in 6m19s
Tests and linters / Tests with -race (pull_request) Successful in 6m33s
Tests and linters / gopls check (pull_request) Successful in 6m46s
[#1310] object: Move target initialization to separate package
* Split the logic of write target initialization to different packages;
* Refactor patch and put services: since both service initialize the target
  themselves.

Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
2024-09-04 10:21:10 +03:00

93 lines
1.9 KiB
Go

package replicator
import (
"time"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/engine"
objectwriter "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/object/common/writer"
getsvc "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/object/get"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
"go.uber.org/zap"
)
// Replicator represents the utility that replicates
// local objects to remote nodes.
type Replicator struct {
*cfg
}
// Option is an option for Policer constructor.
type Option func(*cfg)
type cfg struct {
putTimeout time.Duration
log *logger.Logger
remoteSender *objectwriter.RemoteSender
remoteGetter *getsvc.RemoteGetter
localStorage *engine.StorageEngine
metrics MetricsRegister
}
func defaultCfg() *cfg {
return &cfg{}
}
// New creates, initializes and returns Replicator instance.
func New(opts ...Option) *Replicator {
c := defaultCfg()
for i := range opts {
opts[i](c)
}
c.log = &logger.Logger{Logger: c.log.With(zap.String("component", "Object Replicator"))}
return &Replicator{
cfg: c,
}
}
// WithPutTimeout returns option to set Put timeout of Replicator.
func WithPutTimeout(v time.Duration) Option {
return func(c *cfg) {
c.putTimeout = v
}
}
// WithLogger returns option to set Logger of Replicator.
func WithLogger(v *logger.Logger) Option {
return func(c *cfg) {
c.log = v
}
}
// WithRemoteSender returns option to set remote object sender of Replicator.
func WithRemoteSender(v *objectwriter.RemoteSender) Option {
return func(c *cfg) {
c.remoteSender = v
}
}
func WithRemoteGetter(v *getsvc.RemoteGetter) Option {
return func(c *cfg) {
c.remoteGetter = v
}
}
// WithLocalStorage returns option to set local object storage of Replicator.
func WithLocalStorage(v *engine.StorageEngine) Option {
return func(c *cfg) {
c.localStorage = v
}
}
func WithMetrics(v MetricsRegister) Option {
return func(c *cfg) {
c.metrics = v
}
}