2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-05 09:35:50 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package satellitedb
|
|
|
|
|
|
|
|
import (
|
2018-12-07 14:46:42 +00:00
|
|
|
"github.com/zeebo/errs"
|
2019-02-14 21:55:21 +00:00
|
|
|
"go.uber.org/zap"
|
2018-12-07 14:46:42 +00:00
|
|
|
|
2019-02-13 21:54:59 +00:00
|
|
|
"storj.io/storj/internal/dbutil"
|
2019-02-13 16:06:34 +00:00
|
|
|
"storj.io/storj/internal/dbutil/pgutil"
|
2018-12-14 14:27:21 +00:00
|
|
|
"storj.io/storj/pkg/accounting"
|
2018-12-07 09:59:31 +00:00
|
|
|
"storj.io/storj/pkg/bwagreement"
|
2019-02-07 19:22:49 +00:00
|
|
|
"storj.io/storj/pkg/certdb"
|
2018-12-10 19:08:45 +00:00
|
|
|
"storj.io/storj/pkg/datarepair/irreparable"
|
2018-12-21 15:11:19 +00:00
|
|
|
"storj.io/storj/pkg/datarepair/queue"
|
2019-01-15 16:08:45 +00:00
|
|
|
"storj.io/storj/pkg/overlay"
|
2018-12-27 09:56:25 +00:00
|
|
|
"storj.io/storj/satellite"
|
2019-01-16 20:23:28 +00:00
|
|
|
"storj.io/storj/satellite/console"
|
2019-03-27 10:24:35 +00:00
|
|
|
"storj.io/storj/satellite/orders"
|
2018-12-05 09:35:50 +00:00
|
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
|
|
)
|
|
|
|
|
2018-12-07 14:46:42 +00:00
|
|
|
var (
|
|
|
|
// Error is the default satellitedb errs class
|
|
|
|
Error = errs.Class("satellitedb")
|
|
|
|
)
|
|
|
|
|
2019-01-11 16:07:26 +00:00
|
|
|
//go:generate go run ../../scripts/lockedgen.go -o locked.go -p satellitedb -i storj.io/storj/satellite.DB
|
2019-01-02 17:53:27 +00:00
|
|
|
|
2018-12-05 09:35:50 +00:00
|
|
|
// DB contains access to different database tables
|
|
|
|
type DB struct {
|
2019-02-14 21:55:21 +00:00
|
|
|
log *zap.Logger
|
2019-01-31 13:01:13 +00:00
|
|
|
db *dbx.DB
|
|
|
|
driver string
|
2018-12-05 09:35:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-12 13:15:34 +00:00
|
|
|
// New creates instance of database (supports: postgres, sqlite3)
|
2019-02-14 21:55:21 +00:00
|
|
|
func New(log *zap.Logger, databaseURL string) (satellite.DB, error) {
|
2019-02-13 21:54:59 +00:00
|
|
|
driver, source, err := dbutil.SplitConnstr(databaseURL)
|
2018-12-05 09:35:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-03-12 13:29:13 +00:00
|
|
|
if driver == "postgres" {
|
|
|
|
source = pgutil.CheckApplicationName(source)
|
|
|
|
}
|
2018-12-12 13:15:34 +00:00
|
|
|
db, err := dbx.Open(driver, source)
|
2018-12-05 09:35:50 +00:00
|
|
|
if err != nil {
|
2018-12-07 14:46:42 +00:00
|
|
|
return nil, Error.New("failed opening database %q, %q: %v",
|
2018-12-12 13:15:34 +00:00
|
|
|
driver, source, err)
|
2018-12-05 09:35:50 +00:00
|
|
|
}
|
2018-12-27 09:56:25 +00:00
|
|
|
|
2019-02-14 21:55:21 +00:00
|
|
|
core := &DB{log: log, db: db, driver: driver}
|
2018-12-27 09:56:25 +00:00
|
|
|
if driver == "sqlite3" {
|
2019-01-02 17:53:27 +00:00
|
|
|
return newLocked(core), nil
|
2018-12-27 09:56:25 +00:00
|
|
|
}
|
|
|
|
return core, nil
|
2018-12-05 09:35:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-11 09:30:09 +00:00
|
|
|
// NewInMemory creates instance of Sqlite in memory satellite database
|
2019-02-14 21:55:21 +00:00
|
|
|
func NewInMemory(log *zap.Logger) (satellite.DB, error) {
|
|
|
|
return New(log, "sqlite3://file::memory:?mode=memory")
|
2018-12-11 09:30:09 +00:00
|
|
|
}
|
|
|
|
|
2019-02-13 16:06:34 +00:00
|
|
|
// Close is used to close db connection
|
|
|
|
func (db *DB) Close() error {
|
|
|
|
return db.db.Close()
|
|
|
|
}
|
|
|
|
|
2019-02-04 20:37:46 +00:00
|
|
|
// CreateSchema creates a schema if it doesn't exist.
|
|
|
|
func (db *DB) CreateSchema(schema string) error {
|
2019-01-31 19:17:12 +00:00
|
|
|
switch db.driver {
|
|
|
|
case "postgres":
|
2019-02-13 16:06:34 +00:00
|
|
|
return pgutil.CreateSchema(db.db, schema)
|
2019-01-31 13:01:13 +00:00
|
|
|
}
|
2019-01-31 19:17:12 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-01-31 13:01:13 +00:00
|
|
|
|
2019-02-14 21:55:21 +00:00
|
|
|
// TestDBAccess for raw database access,
|
|
|
|
// should not be used outside of migration tests.
|
|
|
|
func (db *DB) TestDBAccess() *dbx.DB { return db.db }
|
|
|
|
|
2019-01-31 19:17:12 +00:00
|
|
|
// DropSchema drops the named schema
|
|
|
|
func (db *DB) DropSchema(schema string) error {
|
2019-01-31 13:01:13 +00:00
|
|
|
switch db.driver {
|
|
|
|
case "postgres":
|
2019-02-13 16:06:34 +00:00
|
|
|
return pgutil.DropSchema(db.db, schema)
|
2019-01-31 13:01:13 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-07 09:59:31 +00:00
|
|
|
// BandwidthAgreement is a getter for bandwidth agreement repository
|
|
|
|
func (db *DB) BandwidthAgreement() bwagreement.DB {
|
|
|
|
return &bandwidthagreement{db: db.db}
|
|
|
|
}
|
|
|
|
|
2019-02-07 19:22:49 +00:00
|
|
|
// CertDB is a getter for uplink's specific info like public key, id, etc...
|
|
|
|
func (db *DB) CertDB() certdb.DB {
|
|
|
|
return &certDB{db: db.db}
|
|
|
|
}
|
|
|
|
|
2018-12-05 09:35:50 +00:00
|
|
|
// // PointerDB is a getter for PointerDB repository
|
|
|
|
// func (db *DB) PointerDB() pointerdb.DB {
|
|
|
|
// return &pointerDB{db: db.db}
|
|
|
|
// }
|
|
|
|
|
2018-12-17 20:14:16 +00:00
|
|
|
// OverlayCache is a getter for overlay cache repository
|
2019-01-15 16:08:45 +00:00
|
|
|
func (db *DB) OverlayCache() overlay.DB {
|
2018-12-27 09:56:25 +00:00
|
|
|
return &overlaycache{db: db.db}
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
2018-12-05 09:35:50 +00:00
|
|
|
|
2018-12-21 15:11:19 +00:00
|
|
|
// RepairQueue is a getter for RepairQueue repository
|
|
|
|
func (db *DB) RepairQueue() queue.RepairQueue {
|
2018-12-27 09:56:25 +00:00
|
|
|
return &repairQueue{db: db.db}
|
2018-12-21 15:11:19 +00:00
|
|
|
}
|
2018-12-05 09:35:50 +00:00
|
|
|
|
2019-05-10 20:05:42 +01:00
|
|
|
// StoragenodeAccounting returns database for tracking storagenode usage
|
|
|
|
func (db *DB) StoragenodeAccounting() accounting.StoragenodeAccounting {
|
|
|
|
return &StoragenodeAccounting{db: db.db}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ProjectAccounting returns database for tracking project data use
|
|
|
|
func (db *DB) ProjectAccounting() accounting.ProjectAccounting {
|
|
|
|
return &ProjectAccounting{db: db.db}
|
2018-12-14 14:27:21 +00:00
|
|
|
}
|
2018-12-05 09:35:50 +00:00
|
|
|
|
2018-12-10 19:08:45 +00:00
|
|
|
// Irreparable returns database for storing segments that failed repair
|
|
|
|
func (db *DB) Irreparable() irreparable.DB {
|
|
|
|
return &irreparableDB{db: db.db}
|
|
|
|
}
|
|
|
|
|
2019-01-16 20:23:28 +00:00
|
|
|
// Console returns database for storing users, projects and api keys
|
|
|
|
func (db *DB) Console() console.DB {
|
|
|
|
return &ConsoleDB{
|
|
|
|
db: db.db,
|
|
|
|
methods: db.db,
|
|
|
|
}
|
|
|
|
}
|
2019-03-27 10:24:35 +00:00
|
|
|
|
|
|
|
// Orders returns database for storing orders
|
|
|
|
func (db *DB) Orders() orders.DB {
|
|
|
|
return &ordersDB{db: db.db}
|
|
|
|
}
|