storj/storagenode/storagenodedb/piecespaceused.go

162 lines
4.0 KiB
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package storagenodedb
import (
"context"
"database/sql"
"github.com/zeebo/errs"
"storj.io/storj/pkg/storj"
"storj.io/storj/storagenode/pieces"
)
type pieceSpaceUsedDB struct {
*InfoDB
}
// PieceSpaceUsedDB returns database for storing piece expiration data from storagenode master db
func (db *DB) PieceSpaceUsedDB() pieces.PieceSpaceUsedDB { return db.info.PieceSpaceUsedDB() }
// PieceSpaceUsedDB returns database for storing piece expiration data from infoDB
func (db *InfoDB) PieceSpaceUsedDB() pieces.PieceSpaceUsedDB { return &db.pieceSpaceUsedDB }
// Init creates the one total record if it doesn't already exist
func (db *pieceSpaceUsedDB) Init(ctx context.Context) (err error) {
row := db.db.QueryRow(`
SELECT total
FROM piece_space_used
WHERE satellite_id IS NULL;
`)
var total int64
err = row.Scan(&total)
if err != nil {
if err == sql.ErrNoRows {
err = db.createInitTotal(ctx)
if err != nil {
return ErrInfo.Wrap(err)
}
}
}
return ErrInfo.Wrap(err)
}
func (db *pieceSpaceUsedDB) createInitTotal(ctx context.Context) (err error) {
_, err = db.db.Exec(`
INSERT INTO piece_space_used (total) VALUES (0)
`)
return ErrInfo.Wrap(err)
}
// GetTotal returns the total space used by all pieces stored on disk
func (db *pieceSpaceUsedDB) GetTotal(ctx context.Context) (_ int64, err error) {
defer mon.Task()(&ctx)(&err)
row := db.db.QueryRow(`
SELECT total
FROM piece_space_used
WHERE satellite_id IS NULL;
`)
var total int64
err = row.Scan(&total)
if err != nil {
if err == sql.ErrNoRows {
return total, nil
}
return total, ErrInfo.Wrap(err)
}
return total, nil
}
// GetTotalsForAllSatellites returns how much total space used by pieces stored on disk for each satelliteID
func (db *pieceSpaceUsedDB) GetTotalsForAllSatellites(ctx context.Context) (_ map[storj.NodeID]int64, err error) {
defer mon.Task()(&ctx)(&err)
rows, err := db.db.QueryContext(ctx, `
SELECT total, satellite_id
FROM piece_space_used
WHERE satellite_id IS NOT NULL
`)
if err != nil {
if err == sql.ErrNoRows {
return nil, nil
}
return nil, ErrInfo.Wrap(err)
}
defer func() { err = errs.Combine(err, rows.Close()) }()
totalBySatellite := map[storj.NodeID]int64{}
for rows.Next() {
var total int64
var satelliteID storj.NodeID
err = rows.Scan(&total, &satelliteID)
if err != nil {
return nil, ErrInfo.Wrap(err)
}
totalBySatellite[satelliteID] = total
}
return totalBySatellite, nil
}
// UpdateTotal updates the record for total spaced used with a new value
func (db *pieceSpaceUsedDB) UpdateTotal(ctx context.Context, newTotal int64) (err error) {
defer mon.Task()(&ctx)(&err)
_, err = db.db.ExecContext(ctx, db.Rebind(`
UPDATE piece_space_used
SET total = ?
WHERE satellite_id IS NULL
`), newTotal)
return ErrInfo.Wrap(err)
}
// UpdateTotalsForAllSatellites updates each record for total spaced used with a new value for each satelliteID
func (db *pieceSpaceUsedDB) UpdateTotalsForAllSatellites(ctx context.Context, newTotalsBySatellites map[storj.NodeID]int64) (err error) {
defer mon.Task()(&ctx)(&err)
for satelliteID, newTotal := range newTotalsBySatellites {
if newTotal == 0 {
if err := db.deleteTotalBySatellite(ctx, satelliteID); err != nil {
return ErrInfo.Wrap(err)
}
continue
}
_, err = db.db.ExecContext(ctx, db.Rebind(`
INSERT INTO piece_space_used (total, satellite_id)
VALUES (?, ?)
ON CONFLICT (satellite_id)
DO UPDATE SET total = ?
WHERE satellite_id = ?
`), newTotal, satelliteID, newTotal, satelliteID)
if err != nil {
if err == sql.ErrNoRows {
continue
}
return ErrInfo.Wrap(err)
}
}
return nil
}
func (db *pieceSpaceUsedDB) deleteTotalBySatellite(ctx context.Context, satelliteID storj.NodeID) (err error) {
defer mon.Task()(&ctx)(&err)
_, err = db.db.ExecContext(ctx, `
DELETE FROM piece_space_used
WHERE satellite_id = ?
`, satelliteID)
if err != nil {
return err
}
return nil
}