storj/storagenode/piecestore/serials.go

30 lines
914 B
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package piecestore
import (
"context"
"time"
"storj.io/storj/pkg/storj"
)
// SerialNumberFn is callback from IterateAll
2019-03-18 13:08:24 +00:00
type SerialNumberFn func(satelliteID storj.NodeID, serialNumber storj.SerialNumber, expiration time.Time)
// UsedSerials is a persistent store for serial numbers.
// TODO: maybe this should be in orders.UsedSerials
2019-09-10 14:24:16 +01:00
//
// architecture: Database
type UsedSerials interface {
// Add adds a serial to the database.
2019-03-18 13:08:24 +00:00
Add(ctx context.Context, satelliteID storj.NodeID, serialNumber storj.SerialNumber, expiration time.Time) error
// DeleteExpired deletes expired serial numbers
DeleteExpired(ctx context.Context, now time.Time) error
// IterateAll iterates all serials.
// Note, this will lock the database and should only be used during startup.
IterateAll(ctx context.Context, fn SerialNumberFn) error
}