Files
gocryptotrader/database/repository/exchange/exchange.go
Adrian Gallagher 9a4eb9de84 CI: Fix golangci-lint linter issues, add prealloc linter and bump version depends for Go 1.18 (#915)
* Bump CI versions

* Specifically set go version as 1.17.x bumps it to 1.18

* Another

* Adjust AppVeyor

* Part 1 of linter issues

* Part 2

* Fix various linters and improvements

* Part 3

* Finishing touches

* Tests and EqualFold

* Fix nitterinos plus bonus requester jobs bump for exchanges with large number of tests

* Fix nitterinos and bump golangci-lint timeout for AppVeyor

* Address nits, ensure all books are returned on err due to syncer regression

* Fix the wiggins

* Fix duplication

* Fix nitterinos
2022-04-20 13:45:15 +10:00

234 lines
4.8 KiB
Go

package exchange
import (
"context"
"database/sql"
"encoding/csv"
"errors"
"io"
"os"
"strings"
"github.com/gofrs/uuid"
"github.com/thrasher-corp/gocryptotrader/common/cache"
"github.com/thrasher-corp/gocryptotrader/database"
modelPSQL "github.com/thrasher-corp/gocryptotrader/database/models/postgres"
modelSQLite "github.com/thrasher-corp/gocryptotrader/database/models/sqlite3"
"github.com/thrasher-corp/gocryptotrader/database/repository"
"github.com/thrasher-corp/gocryptotrader/log"
"github.com/thrasher-corp/sqlboiler/boil"
"github.com/thrasher-corp/sqlboiler/queries/qm"
)
// One returns one exchange by Name
func One(in string) (Details, error) {
return one(in, "name")
}
// OneByUUID returns one exchange by UUID
func OneByUUID(in uuid.UUID) (Details, error) {
return one(in.String(), "id")
}
// one returns one exchange by clause
func one(in, clause string) (out Details, err error) {
if database.DB.SQL == nil {
return out, database.ErrDatabaseSupportDisabled
}
whereQM := qm.Where(clause+"= ?", in)
if repository.GetSQLDialect() == database.DBSQLite3 {
ret, errS := modelSQLite.Exchanges(whereQM).One(context.TODO(), database.DB.SQL)
if errS != nil {
return out, errS
}
out.Name = ret.Name
out.UUID, errS = uuid.FromString(ret.ID)
if errS != nil {
return out, errS
}
} else {
ret, errS := modelPSQL.Exchanges(whereQM).One(context.TODO(), database.DB.SQL)
if errS != nil {
return out, errS
}
out.Name = ret.Name
out.UUID, errS = uuid.FromString(ret.ID)
if errS != nil {
return out, errS
}
}
return out, err
}
// Insert writes a single entry into database
func Insert(in Details) error {
if database.DB.SQL == nil {
return database.ErrDatabaseSupportDisabled
}
ctx := context.TODO()
tx, err := database.DB.SQL.BeginTx(ctx, nil)
if err != nil {
return err
}
if repository.GetSQLDialect() == database.DBSQLite3 {
err = insertSQLite(ctx, tx, []Details{in})
} else {
err = insertPostgresql(ctx, tx, []Details{in})
}
if err != nil {
errRB := tx.Rollback()
if errRB != nil {
log.Errorln(log.DatabaseMgr, errRB)
}
return err
}
err = tx.Commit()
if err != nil {
return err
}
return nil
}
// InsertMany writes multiple entries into database
func InsertMany(in []Details) error {
if database.DB.SQL == nil {
return database.ErrDatabaseSupportDisabled
}
ctx := context.TODO()
tx, err := database.DB.SQL.BeginTx(ctx, nil)
if err != nil {
return err
}
if repository.GetSQLDialect() == database.DBSQLite3 {
err = insertSQLite(ctx, tx, in)
} else {
err = insertPostgresql(ctx, tx, in)
}
if err != nil {
errRB := tx.Rollback()
if errRB != nil {
log.Errorln(log.DatabaseMgr, errRB)
}
return err
}
err = tx.Commit()
if err != nil {
errRB := tx.Rollback()
if errRB != nil {
log.Errorln(log.DatabaseMgr, errRB)
}
return err
}
return nil
}
func insertSQLite(ctx context.Context, tx *sql.Tx, in []Details) (err error) {
for x := range in {
tempUUID, errUUID := uuid.NewV4()
if errUUID != nil {
return errUUID
}
var tempInsert = modelSQLite.Exchange{
Name: strings.ToLower(in[x].Name),
ID: tempUUID.String(),
}
err = tempInsert.Insert(ctx, tx, boil.Infer())
if err != nil {
errRB := tx.Rollback()
if errRB != nil {
log.Errorln(log.DatabaseMgr, errRB)
}
return err
}
}
return nil
}
func insertPostgresql(ctx context.Context, tx *sql.Tx, in []Details) (err error) {
for x := range in {
var tempInsert = modelPSQL.Exchange{
Name: strings.ToLower(in[x].Name),
}
err = tempInsert.Upsert(ctx, tx, true, []string{"name"}, boil.Infer(), boil.Infer())
if err != nil {
errRB := tx.Rollback()
if errRB != nil {
log.Errorln(log.DatabaseMgr, errRB)
}
return
}
}
return nil
}
// UUIDByName returns UUID of exchange
func UUIDByName(exchange string) (uuid.UUID, error) {
exchange = strings.ToLower(exchange)
v := exchangeCache.Get(exchange)
if v != nil {
u, ok := v.(uuid.UUID)
if !ok {
return uuid.UUID{}, errors.New("unable to type assert uuid")
}
return u, nil
}
ret, err := One(exchange)
if err != nil {
if err != sql.ErrNoRows {
return uuid.UUID{}, err
}
return uuid.UUID{}, ErrNoExchangeFound
}
exchangeCache.Add(exchange, ret.UUID)
return ret.UUID, nil
}
// ResetExchangeCache reinitialise cache to blank state used to clear cache for testing
func ResetExchangeCache() {
exchangeCache = cache.New(10)
}
// LoadCSV loads & parses a CSV list of exchanges
func LoadCSV(file string) (out []Details, err error) {
csvFile, err := os.Open(file)
if err != nil {
return out, err
}
defer func() {
err = csvFile.Close()
if err != nil {
log.Errorln(log.Global, err)
}
}()
csvData := csv.NewReader(csvFile)
for {
row, errCSV := csvData.Read()
if errCSV != nil {
if errCSV == io.EOF {
return out, err
}
return out, errCSV
}
out = append(out, Details{
Name: row[0],
})
}
}