2f7465c294
this will allow us to inspect the type of `db.Driver()` on *sql.DB connections to correctly differentiate between pg and crdb conns. as a bonus, this moves all concerns about when to replace "cockroach://" with "postgres://" out of view, letting the thin shim "driver" take care of that. Change-Id: Ib24103ab7c508231e681f89a7321b623e4e125e9
148 lines
4.2 KiB
Go
148 lines
4.2 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package satellitedb
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
"go.uber.org/zap"
|
|
|
|
"storj.io/storj/private/dbutil"
|
|
"storj.io/storj/private/dbutil/cockroachutil"
|
|
"storj.io/storj/private/dbutil/pgutil"
|
|
"storj.io/storj/satellite"
|
|
"storj.io/storj/satellite/accounting"
|
|
"storj.io/storj/satellite/attribution"
|
|
"storj.io/storj/satellite/audit"
|
|
"storj.io/storj/satellite/console"
|
|
"storj.io/storj/satellite/gracefulexit"
|
|
"storj.io/storj/satellite/orders"
|
|
"storj.io/storj/satellite/overlay"
|
|
"storj.io/storj/satellite/payments/stripecoinpayments"
|
|
"storj.io/storj/satellite/repair/irreparable"
|
|
"storj.io/storj/satellite/repair/queue"
|
|
"storj.io/storj/satellite/rewards"
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
)
|
|
|
|
var (
|
|
// Error is the default satellitedb errs class
|
|
Error = errs.Class("satellitedb")
|
|
)
|
|
|
|
// satelliteDB combines access to different database tables with a record
|
|
// of the db driver, db implementation, and db source URL.
|
|
type satelliteDB struct {
|
|
*dbx.DB
|
|
log *zap.Logger
|
|
driver string
|
|
implementation dbutil.Implementation
|
|
source string
|
|
}
|
|
|
|
var _ dbx.DBMethods = &satelliteDB{}
|
|
|
|
// New creates instance of database supports postgres
|
|
func New(log *zap.Logger, databaseURL string) (satellite.DB, error) {
|
|
driver, source, implementation, err := dbutil.SplitConnStr(databaseURL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if implementation != dbutil.Postgres && implementation != dbutil.Cockroach {
|
|
return nil, Error.New("unsupported driver %q", driver)
|
|
}
|
|
|
|
source = pgutil.CheckApplicationName(source)
|
|
source = cockroachutil.TranslateName(source)
|
|
|
|
dbxDB, err := dbx.Open("postgres", source)
|
|
if err != nil {
|
|
return nil, Error.New("failed opening database via DBX at %q: %v",
|
|
source, err)
|
|
}
|
|
log.Debug("Connected to:", zap.String("db source", source))
|
|
|
|
dbutil.Configure(dbxDB.DB, mon)
|
|
|
|
core := &satelliteDB{
|
|
DB: dbxDB,
|
|
log: log,
|
|
driver: driver,
|
|
source: source,
|
|
implementation: implementation,
|
|
}
|
|
return core, nil
|
|
}
|
|
|
|
// TestDBAccess for raw database access,
|
|
// should not be used outside of migration tests.
|
|
func (db *satelliteDB) TestDBAccess() *dbx.DB { return db.DB }
|
|
|
|
// PeerIdentities returns a storage for peer identities
|
|
func (db *satelliteDB) PeerIdentities() overlay.PeerIdentities {
|
|
return &peerIdentities{db: db}
|
|
}
|
|
|
|
// Attribution is a getter for value attribution repository
|
|
func (db *satelliteDB) Attribution() attribution.DB {
|
|
return &attributionDB{db: db}
|
|
}
|
|
|
|
// OverlayCache is a getter for overlay cache repository
|
|
func (db *satelliteDB) OverlayCache() overlay.DB {
|
|
return &overlaycache{db: db}
|
|
}
|
|
|
|
// RepairQueue is a getter for RepairQueue repository
|
|
func (db *satelliteDB) RepairQueue() queue.RepairQueue {
|
|
return &repairQueue{db: db}
|
|
}
|
|
|
|
// StoragenodeAccounting returns database for tracking storagenode usage
|
|
func (db *satelliteDB) StoragenodeAccounting() accounting.StoragenodeAccounting {
|
|
return &StoragenodeAccounting{db: db}
|
|
}
|
|
|
|
// ProjectAccounting returns database for tracking project data use
|
|
func (db *satelliteDB) ProjectAccounting() accounting.ProjectAccounting {
|
|
return &ProjectAccounting{db: db}
|
|
}
|
|
|
|
// Irreparable returns database for storing segments that failed repair
|
|
func (db *satelliteDB) Irreparable() irreparable.DB {
|
|
return &irreparableDB{db: db}
|
|
}
|
|
|
|
// Console returns database for storing users, projects and api keys
|
|
func (db *satelliteDB) Console() console.DB {
|
|
return &ConsoleDB{
|
|
db: db,
|
|
methods: db,
|
|
}
|
|
}
|
|
|
|
// Rewards returns database for storing offers
|
|
func (db *satelliteDB) Rewards() rewards.DB {
|
|
return &offersDB{db: db}
|
|
}
|
|
|
|
// Orders returns database for storing orders
|
|
func (db *satelliteDB) Orders() orders.DB {
|
|
return &ordersDB{db: db}
|
|
}
|
|
|
|
// Containment returns database for storing pending audit info
|
|
func (db *satelliteDB) Containment() audit.Containment {
|
|
return &containment{db: db}
|
|
}
|
|
|
|
// GracefulExit returns database for graceful exit
|
|
func (db *satelliteDB) GracefulExit() gracefulexit.DB {
|
|
return &gracefulexitDB{db: db}
|
|
}
|
|
|
|
// StripeCoinPayments returns database for stripecoinpayments.
|
|
func (db *satelliteDB) StripeCoinPayments() stripecoinpayments.DB {
|
|
return &stripeCoinPaymentsDB{db: db}
|
|
}
|