mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-22 15:10:13 +00:00
* currency: Add method to derive pair * currency: Add method to lower entire charset but used the slice copy and returned that. This will change the original, just gotta see if this is an issue, but the slice usually goes out of scope anyway. * currency/pairs: add filter method * currency: add function to derive select currencies from currency pairs * currency/engine: slight adjustments * currency: fix linter issue also shift burden of proof to caller instead of repair, more performant. * currency: more linter * pairs: optimize; reduce allocs/op and B/op * currency: Add in function 'NewPairsFromString' for testing purposes * currency: don't suppress error * currency: stop panic on empty currency code * currency: Add helper method to match currencies between exchanges * currency: fixed my bad spelling * currency: Implement stable coin checks, refactored base code methods, optimized upper and lower case strings for currency code/pairs * currency: add pairs method to derive stable coins from internal list. * Currency: Cleanup, fix tests. * engine/exchanges/currency: fix whoops * Currency: force govet no copy on Item datatype * Currency: fix naughty linter issues * exchange: revert change * currency/config: fix config upgrade mistake * currency: re-implement currency sub-systems * *RetrieveConfigCurrencyPairs removed *CheckCurrencyConfigValues to only provide warnings, add additional support when, disable when support is lost or not available and set default values. *Drop Cryptocurrencies from configuration as this is not needed. *Drop REST Poll delay field as this was unused. *Update default values for currencyFileUpdateDuration & foreignExchangeUpdateDuration. *Allow Role to be marshalled for file type. *Refactor RunUpdater to verify and check config values and set default running foreign exchange provider. * currency: cleanup * currency: change match -> equal for comparison which is more of a standard and little easier to find * currency: address nits * currency: fix whoops * currency: Add some more pairs methods * currency: linter issues * currency: RM unused field * currency: rm verbose * currency: fix word * currency: gocritic * currency: fix another whoopsie * example_config: default to show log system name * Currency: Force all support packages to use Equal method for comparison as there is a small comparison bug when checking upper and lower casing, this has a more of a pronounced impact between exchanges and client instances of currency generation * currency: fix log name * ordermanager: fix potential panic * currency: small optim. * engine: display correct bool and force shutdown * currency: add function and fix regression * Change ConvertCurrency -> ConvertFiat to be more precise * ADD GetForeignExchangeRate to get specific exchange rate for fiat pair * Fix currency display and formatting regression and tied in with config.Currency fields * engine: fix tests * currency: return the amount when no conversion needs to take place * currency: reduce method name * currency: Address nits glorious nits * currency: fix linter * currency: addr nits * currency: check underlying role in test * gct: change to EMPTYCODE and EMPTYPAIR across codebase * currency: fix nits * currency: this fixes test race but this issue has not been resolved. Please see: https://trello.com/c/54eizOIo/143-currency-package-upgrades * currency: Add temp dir for testing * Update engine/engine.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * documentation: update and regen * currency: Address niterinos * currency: Add test case for config upgrade when falling over to exchange rate host as default from exchangeRates provider * currency: addr nits * currency: fix whoops Co-authored-by: Ryan O'Hara-Reid <ryan.oharareid@thrasher.io> Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>
186 lines
4.7 KiB
Go
186 lines
4.7 KiB
Go
package log
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/common/convert"
|
|
)
|
|
|
|
var (
|
|
errSubloggerConfigIsNil = errors.New("sublogger config is nil")
|
|
errUnhandledOutputWriter = errors.New("unhandled output writer")
|
|
)
|
|
|
|
func getWriters(s *SubLoggerConfig) (io.Writer, error) {
|
|
if s == nil {
|
|
return nil, errSubloggerConfigIsNil
|
|
}
|
|
var writers []io.Writer
|
|
outputWriters := strings.Split(s.Output, "|")
|
|
for x := range outputWriters {
|
|
var writer io.Writer
|
|
switch strings.ToLower(outputWriters[x]) {
|
|
case "stdout", "console":
|
|
writer = os.Stdout
|
|
case "stderr":
|
|
writer = os.Stderr
|
|
case "file":
|
|
if FileLoggingConfiguredCorrectly {
|
|
writer = GlobalLogFile
|
|
}
|
|
default:
|
|
// Note: Do not want to add a ioutil.discard here as this adds
|
|
// additional routines for every write for no reason.
|
|
return nil, fmt.Errorf("%w: %s", errUnhandledOutputWriter, outputWriters[x])
|
|
}
|
|
writers = append(writers, writer)
|
|
}
|
|
return MultiWriter(writers...)
|
|
}
|
|
|
|
// GenDefaultSettings return struct with known sane/working logger settings
|
|
func GenDefaultSettings() *Config {
|
|
return &Config{
|
|
Enabled: convert.BoolPtr(true),
|
|
SubLoggerConfig: SubLoggerConfig{
|
|
Level: "INFO|DEBUG|WARN|ERROR",
|
|
Output: "console",
|
|
},
|
|
LoggerFileConfig: &loggerFileConfig{
|
|
FileName: "log.txt",
|
|
Rotate: convert.BoolPtr(false),
|
|
MaxSize: 0,
|
|
},
|
|
AdvancedSettings: advancedSettings{
|
|
ShowLogSystemName: convert.BoolPtr(false),
|
|
Spacer: spacer,
|
|
TimeStampFormat: timestampFormat,
|
|
Headers: headers{
|
|
Info: "[INFO]",
|
|
Warn: "[WARN]",
|
|
Debug: "[DEBUG]",
|
|
Error: "[ERROR]",
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func configureSubLogger(subLogger, levels string, output io.Writer) error {
|
|
RWM.Lock()
|
|
defer RWM.Unlock()
|
|
logPtr, found := SubLoggers[subLogger]
|
|
if !found {
|
|
return fmt.Errorf("sub logger %v not found", subLogger)
|
|
}
|
|
|
|
logPtr.SetOutput(output)
|
|
logPtr.SetLevels(splitLevel(levels))
|
|
SubLoggers[subLogger] = logPtr
|
|
return nil
|
|
}
|
|
|
|
// SetupSubLoggers configure all sub loggers with provided configuration values
|
|
func SetupSubLoggers(s []SubLoggerConfig) error {
|
|
for x := range s {
|
|
output, err := getWriters(&s[x])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = configureSubLogger(strings.ToUpper(s[x].Name), s[x].Level, output)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SetupGlobalLogger setup the global loggers with the default global config values
|
|
func SetupGlobalLogger() error {
|
|
RWM.Lock()
|
|
defer RWM.Unlock()
|
|
|
|
if FileLoggingConfiguredCorrectly {
|
|
GlobalLogFile = &Rotate{
|
|
FileName: GlobalLogConfig.LoggerFileConfig.FileName,
|
|
MaxSize: GlobalLogConfig.LoggerFileConfig.MaxSize,
|
|
Rotate: GlobalLogConfig.LoggerFileConfig.Rotate,
|
|
}
|
|
}
|
|
|
|
for x := range SubLoggers {
|
|
SubLoggers[x].SetLevels(splitLevel(GlobalLogConfig.Level))
|
|
writers, err := getWriters(&GlobalLogConfig.SubLoggerConfig)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
SubLoggers[x].SetOutput(writers)
|
|
}
|
|
logger = newLogger(GlobalLogConfig)
|
|
return nil
|
|
}
|
|
|
|
func splitLevel(level string) (l Levels) {
|
|
enabledLevels := strings.Split(level, "|")
|
|
for x := range enabledLevels {
|
|
switch level := enabledLevels[x]; level {
|
|
case "DEBUG":
|
|
l.Debug = true
|
|
case "INFO":
|
|
l.Info = true
|
|
case "WARN":
|
|
l.Warn = true
|
|
case "ERROR":
|
|
l.Error = true
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func registerNewSubLogger(subLogger string) *SubLogger {
|
|
temp := &SubLogger{
|
|
name: strings.ToUpper(subLogger),
|
|
output: os.Stdout,
|
|
levels: splitLevel("INFO|WARN|DEBUG|ERROR"),
|
|
}
|
|
RWM.Lock()
|
|
SubLoggers[subLogger] = temp
|
|
RWM.Unlock()
|
|
return temp
|
|
}
|
|
|
|
// register all loggers at package init()
|
|
func init() {
|
|
Global = registerNewSubLogger("LOG")
|
|
|
|
ConnectionMgr = registerNewSubLogger("CONNECTION")
|
|
BackTester = registerNewSubLogger("BACKTESTER")
|
|
CommunicationMgr = registerNewSubLogger("COMMS")
|
|
APIServerMgr = registerNewSubLogger("API")
|
|
ConfigMgr = registerNewSubLogger("CONFIG")
|
|
DatabaseMgr = registerNewSubLogger("DATABASE")
|
|
DataHistory = registerNewSubLogger("DATAHISTORY")
|
|
OrderMgr = registerNewSubLogger("ORDER")
|
|
PortfolioMgr = registerNewSubLogger("PORTFOLIO")
|
|
SyncMgr = registerNewSubLogger("SYNC")
|
|
TimeMgr = registerNewSubLogger("TIMEKEEPER")
|
|
GCTScriptMgr = registerNewSubLogger("GCTSCRIPT")
|
|
WebsocketMgr = registerNewSubLogger("WEBSOCKET")
|
|
EventMgr = registerNewSubLogger("EVENT")
|
|
DispatchMgr = registerNewSubLogger("DISPATCH")
|
|
|
|
RequestSys = registerNewSubLogger("REQUESTER")
|
|
ExchangeSys = registerNewSubLogger("EXCHANGE")
|
|
GRPCSys = registerNewSubLogger("GRPC")
|
|
RESTSys = registerNewSubLogger("REST")
|
|
|
|
Ticker = registerNewSubLogger("TICKER")
|
|
OrderBook = registerNewSubLogger("ORDERBOOK")
|
|
Trade = registerNewSubLogger("TRADE")
|
|
Fill = registerNewSubLogger("FILL")
|
|
Currency = registerNewSubLogger("CURRENCY")
|
|
}
|