Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
107 lines
2.6 KiB
Go
107 lines
2.6 KiB
Go
package audittask
|
|
|
|
import (
|
|
"time"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/audit"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/audit/auditor"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Manager represents an entity performing data audit tasks.
|
|
type Manager struct {
|
|
*cfg
|
|
|
|
ch chan *audit.Task
|
|
}
|
|
|
|
// Option is a Manager's constructor option.
|
|
type Option func(*cfg)
|
|
|
|
type cfg struct {
|
|
queueCap uint32
|
|
|
|
log *logger.Logger
|
|
|
|
ctxPrm auditor.ContextPrm
|
|
|
|
workerPool util.WorkerPool
|
|
|
|
pdpPoolGenerator, porPoolGenerator func() (util.WorkerPool, error)
|
|
}
|
|
|
|
func defaultCfg() *cfg {
|
|
return &cfg{
|
|
log: &logger.Logger{Logger: zap.L()},
|
|
}
|
|
}
|
|
|
|
// New creates, initializes and returns new Manager instance.
|
|
func New(opts ...Option) *Manager {
|
|
c := defaultCfg()
|
|
|
|
for i := range opts {
|
|
opts[i](c)
|
|
}
|
|
|
|
return &Manager{
|
|
cfg: c,
|
|
}
|
|
}
|
|
|
|
// WithLogger returns option to specify Manager's logger.
|
|
func WithLogger(l *logger.Logger) Option {
|
|
return func(c *cfg) {
|
|
c.log = &logger.Logger{Logger: l.With(zap.String("component", "Audit task manager"))}
|
|
c.ctxPrm.SetLogger(l)
|
|
}
|
|
}
|
|
|
|
// WithWorkerPool returns option to set worker pool
|
|
// for task execution.
|
|
func WithWorkerPool(p util.WorkerPool) Option {
|
|
return func(c *cfg) {
|
|
c.workerPool = p
|
|
}
|
|
}
|
|
|
|
// WithQueueCapacity returns option to set task queue capacity.
|
|
func WithQueueCapacity(capacity uint32) Option {
|
|
return func(c *cfg) {
|
|
c.queueCap = capacity
|
|
}
|
|
}
|
|
|
|
// WithContainerCommunicator returns option to set component of communication
|
|
// with container nodes.
|
|
func WithContainerCommunicator(cnrCom auditor.ContainerCommunicator) Option {
|
|
return func(c *cfg) {
|
|
c.ctxPrm.SetContainerCommunicator(cnrCom)
|
|
}
|
|
}
|
|
|
|
// WithMaxPDPSleepInterval returns option to set maximum sleep interval
|
|
// between range hash requests as part of PDP check.
|
|
func WithMaxPDPSleepInterval(dur time.Duration) Option {
|
|
return func(c *cfg) {
|
|
c.ctxPrm.SetMaxPDPSleep(dur)
|
|
}
|
|
}
|
|
|
|
// WithPDPWorkerPoolGenerator returns option to set worker pool for PDP pairs processing.
|
|
// Callback caller owns returned pool and must release it appropriately.
|
|
func WithPDPWorkerPoolGenerator(f func() (util.WorkerPool, error)) Option {
|
|
return func(c *cfg) {
|
|
c.pdpPoolGenerator = f
|
|
}
|
|
}
|
|
|
|
// WithPoRWorkerPoolGenerator returns option to set worker pool for PoR SG processing.
|
|
// Callback caller owns returned pool and must release it appropriately.
|
|
func WithPoRWorkerPoolGenerator(f func() (util.WorkerPool, error)) Option {
|
|
return func(c *cfg) {
|
|
c.porPoolGenerator = f
|
|
}
|
|
}
|