mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
* Migrated to goose & sqlboiler * create tests with sqlboiler * code clean up * Added gct -> sqlboiler config gen * dropped pgx support * dropped pgx support because who needs connection pools * reenable sqlite audit tests * first pass of migration changes * stuff is broken :D * sqlboiler :D * end of date commit * Added comments code clean up * revert go module files back to upstream * bug fix * pushed go.mod update to use correc goose version * renamed sqlite to sqlite3 for consistency across codebase and PR feedback changes * makefile updates * things are broken end of day commit * added postgresql test * use correct database name * travis fixes for env vars * travis fixes for env vars * test fixes * run migration on test setup * test adding postgres support to appveyor * Skip tests on appveyor due to issues with missing binaries * oh yeah i have to support windows don't i * bumped goose version up * add postgres to osx * fix travis config as osx does not support services move spin up to before_script * added PGDATA path fix * pass PG_DATA to pg_ctl * added initdb to before install * fixes to wording and bumps up goose version * who needs ssl anyway * moved ssl to correct section :D * bumped goose version up * unbreak travis * unbreak travis * fix if database is disabled in config * move strings to consts * converted more strings to const * improvements to sqlboiler mmodel gen * Added contrib\sqlboiler file * sqlboiler windows contrib fixes * bumped goose version up * :D whoops * further fixes to sql models * further fixes to sql models * database type fix for config gen * README update * go.mod clean up * added config details for appveyor * appveyor ordering fix * force psql9.6 * appveyor config changes * all the environmen vars * model changes for psql * model changes for psql * sqlite model fixes * attempt at osx fix * added error check for migration * typos and check against goose error instead of string :D * updated sqlboiler commit id * bump sqlboiler version again * set decimal package to @0bb1631 * readme and makefile updates * bump goose version update readme and add override flag to config gen * README typo fix and lowered inserts in test down to 20 as we are only testing that inserts work running 200 was unnecessary * added gctcli command for audit event * Added debug output toggle to config added both postgres & sqlite support to gctcli command * Wording changes on errors * set sqlite to 1 connection to stop locke database issues * Usage update for order * README updates with config examples * go.mod/sum tidy * removed lines in import second * removed lines in imports * convert local time to utc for database and display output * go mod clean up and error checking to time * renamed all packages to sqlite3 * added windows command output for sql model gen * time conversion fix * time conversion on gctcli
125 lines
2.9 KiB
Go
125 lines
2.9 KiB
Go
package engine
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/database"
|
|
dbpsql "github.com/thrasher-corp/gocryptotrader/database/drivers/postgres"
|
|
dbsqlite3 "github.com/thrasher-corp/gocryptotrader/database/drivers/sqlite3"
|
|
log "github.com/thrasher-corp/gocryptotrader/logger"
|
|
"github.com/thrasher-corp/sqlboiler/boil"
|
|
)
|
|
|
|
var (
|
|
dbConn *database.Db
|
|
)
|
|
|
|
type databaseManager struct {
|
|
running atomic.Value
|
|
shutdown chan struct{}
|
|
}
|
|
|
|
func (a *databaseManager) Started() bool {
|
|
return a.running.Load() == true
|
|
}
|
|
|
|
func (a *databaseManager) Start() (err error) {
|
|
if a.Started() {
|
|
return errors.New("database manager already started")
|
|
}
|
|
|
|
log.Debugln(log.DatabaseMgr, "Database manager starting...")
|
|
|
|
a.shutdown = make(chan struct{})
|
|
|
|
if Bot.Config.Database.Enabled {
|
|
if Bot.Config.Database.Driver == database.DBPostgreSQL {
|
|
log.Debugf(log.DatabaseMgr, "Attempting to establish database connection to host %s/%s utilising %s driver\n",
|
|
Bot.Config.Database.Host, Bot.Config.Database.Database, Bot.Config.Database.Driver)
|
|
dbConn, err = dbpsql.Connect()
|
|
} else if Bot.Config.Database.Driver == database.DBSQLite || Bot.Config.Database.Driver == database.DBSQLite3 {
|
|
log.Debugf(log.DatabaseMgr, "Attempting to establish database connection to %s utilising %s driver\n",
|
|
Bot.Config.Database.Database, Bot.Config.Database.Driver)
|
|
dbConn, err = dbsqlite3.Connect()
|
|
}
|
|
if err != nil {
|
|
return fmt.Errorf("database failed to connect: %v Some features that utilise a database will be unavailable", err)
|
|
}
|
|
dbConn.Connected = true
|
|
|
|
DBLogger := database.Logger{}
|
|
if Bot.Config.Database.Verbose {
|
|
boil.DebugMode = true
|
|
boil.DebugWriter = DBLogger
|
|
}
|
|
|
|
go a.run()
|
|
return nil
|
|
}
|
|
|
|
return errors.New("database support disabled")
|
|
}
|
|
|
|
func (a *databaseManager) Stop() error {
|
|
if !a.Started() {
|
|
return errors.New("database manager already stopped")
|
|
}
|
|
|
|
log.Debugln(log.DatabaseMgr, "Database manager shutting down...")
|
|
|
|
err := dbConn.SQL.Close()
|
|
if err != nil {
|
|
log.Errorf(log.DatabaseMgr, "Failed to close database: %v", err)
|
|
}
|
|
|
|
close(a.shutdown)
|
|
return nil
|
|
}
|
|
|
|
func (a *databaseManager) run() {
|
|
log.Debugln(log.DatabaseMgr, "Database manager started.")
|
|
Bot.ServicesWG.Add(1)
|
|
|
|
t := time.NewTicker(time.Second * 2)
|
|
|
|
a.running.Store(true)
|
|
|
|
defer func() {
|
|
t.Stop()
|
|
a.running.Store(false)
|
|
|
|
Bot.ServicesWG.Done()
|
|
|
|
log.Debugln(log.DatabaseMgr, "Database manager shutdown.")
|
|
}()
|
|
|
|
for {
|
|
select {
|
|
case <-a.shutdown:
|
|
return
|
|
case <-t.C:
|
|
a.checkConnection()
|
|
}
|
|
}
|
|
}
|
|
|
|
func (a *databaseManager) checkConnection() {
|
|
dbConn.Mu.Lock()
|
|
defer dbConn.Mu.Unlock()
|
|
|
|
err := dbConn.SQL.Ping()
|
|
if err != nil {
|
|
log.Errorf(log.DatabaseMgr, "Database connection error: %v\n", err)
|
|
dbConn.Connected = false
|
|
return
|
|
}
|
|
|
|
if !dbConn.Connected {
|
|
log.Info(log.DatabaseMgr, "Database connection reestablished")
|
|
dbConn.Connected = true
|
|
}
|
|
}
|