forked from TrueCloudLab/frostfs-node
[#255] services/audit: Implement Task structure
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
076f201807
commit
babfbc18f2
1 changed files with 108 additions and 0 deletions
108
pkg/services/audit/task.go
Normal file
108
pkg/services/audit/task.go
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
package audit
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/nspcc-dev/neofs-api-go/pkg/container"
|
||||||
|
"github.com/nspcc-dev/neofs-api-go/pkg/netmap"
|
||||||
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Task groups groups the container audit parameters.
|
||||||
|
type Task struct {
|
||||||
|
reporter Reporter
|
||||||
|
|
||||||
|
auditContext context.Context
|
||||||
|
|
||||||
|
cid *container.ID
|
||||||
|
|
||||||
|
cnr *container.Container
|
||||||
|
|
||||||
|
cnrNodes netmap.ContainerNodes
|
||||||
|
|
||||||
|
sgList []*object.ID
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithReporter sets audit report writer.
|
||||||
|
func (t *Task) WithReporter(r Reporter) *Task {
|
||||||
|
if t != nil {
|
||||||
|
t.reporter = r
|
||||||
|
}
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reporter returns audit report writer.
|
||||||
|
func (t *Task) Reporter() Reporter {
|
||||||
|
return t.reporter
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithAuditContext sets context of the audit of the current epoch.
|
||||||
|
func (t *Task) WithAuditContext(ctx context.Context) *Task {
|
||||||
|
if t != nil {
|
||||||
|
t.auditContext = ctx
|
||||||
|
}
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// AuditContext returns context of the audit of the current epoch.
|
||||||
|
func (t *Task) AuditContext() context.Context {
|
||||||
|
return t.auditContext
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithContainerID sets identifier of the container under audit.
|
||||||
|
func (t *Task) WithContainerID(cid *container.ID) *Task {
|
||||||
|
if t != nil {
|
||||||
|
t.cid = cid
|
||||||
|
}
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// ContainerID returns identifier of the container under audit.
|
||||||
|
func (t *Task) ContainerID() *container.ID {
|
||||||
|
return t.cid
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithContainerStructure sets structure of the container under audit.
|
||||||
|
func (t *Task) WithContainerStructure(cnr *container.Container) *Task {
|
||||||
|
if t != nil {
|
||||||
|
t.cnr = cnr
|
||||||
|
}
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// ContainerStructure returns structure of the container under audit.
|
||||||
|
func (t *Task) ContainerStructure() *container.Container {
|
||||||
|
return t.cnr
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithContainerNodes sets nodes in the container under audit.
|
||||||
|
func (t *Task) WithContainerNodes(cnrNodes netmap.ContainerNodes) *Task {
|
||||||
|
if t != nil {
|
||||||
|
t.cnrNodes = cnrNodes
|
||||||
|
}
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// ContainerNodes returns nodes in the container under audit.
|
||||||
|
func (t *Task) ContainerNodes() netmap.ContainerNodes {
|
||||||
|
return t.cnrNodes
|
||||||
|
}
|
||||||
|
|
||||||
|
// WithStorageGroupList sets list of storage groups from container under audit.
|
||||||
|
func (t *Task) WithStorageGroupList(sgList []*object.ID) *Task {
|
||||||
|
if t != nil {
|
||||||
|
t.sgList = sgList
|
||||||
|
}
|
||||||
|
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
// StorageGroupList returns list of storage groups from container under audit.
|
||||||
|
func (t *Task) StorageGroupList() []*object.ID {
|
||||||
|
return t.sgList
|
||||||
|
}
|
Loading…
Reference in a new issue