a14bb6292b
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
39 lines
924 B
Go
39 lines
924 B
Go
package policer
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/localstore"
|
|
)
|
|
|
|
type jobQueue struct {
|
|
localStorage *localstore.Storage
|
|
}
|
|
|
|
var jobFilter object.SearchFilters
|
|
|
|
func (q *jobQueue) Select(limit int) ([]*object.Address, error) {
|
|
// TODO: optimize the logic for selecting objects
|
|
// We can prioritize objects for migration, newly arrived objects, etc.
|
|
// It is recommended to make changes after updating the metabase
|
|
|
|
// FIXME: add the ability to limit Select result
|
|
res, err := q.localStorage.Select(getJobFilter())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(res) < limit {
|
|
return res, nil
|
|
}
|
|
|
|
return res[:limit], nil
|
|
}
|
|
|
|
// getJobFilter is a getter for a singleton instance.
|
|
func getJobFilter() object.SearchFilters {
|
|
if len(jobFilter) == 0 {
|
|
jobFilter.AddPhyFilter() // this initiates a list of filters
|
|
}
|
|
|
|
return jobFilter
|
|
}
|