5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 14:52:30 +00:00
matterbridge/vendor/github.com/sirupsen/logrus/text_formatter.go

340 lines
9.0 KiB
Go
Raw Normal View History

2016-04-10 21:39:38 +00:00
package logrus
import (
"bytes"
"fmt"
"os"
"runtime"
2016-04-10 21:39:38 +00:00
"sort"
2020-05-23 22:06:21 +00:00
"strconv"
2016-04-10 21:39:38 +00:00
"strings"
2017-03-25 19:45:10 +00:00
"sync"
2016-04-10 21:39:38 +00:00
"time"
2020-05-23 22:06:21 +00:00
"unicode/utf8"
2016-04-10 21:39:38 +00:00
)
const (
2019-06-16 21:33:25 +00:00
red = 31
yellow = 33
blue = 36
gray = 37
2016-04-10 21:39:38 +00:00
)
2019-06-16 21:33:25 +00:00
var baseTimestamp time.Time
2016-04-10 21:39:38 +00:00
func init() {
baseTimestamp = time.Now()
}
2018-02-20 22:41:09 +00:00
// TextFormatter formats logs into text
2016-04-10 21:39:38 +00:00
type TextFormatter struct {
// Set to true to bypass checking for a TTY before outputting colors.
ForceColors bool
// Force disabling colors.
DisableColors bool
2020-05-23 22:06:21 +00:00
// Force quoting of all values
ForceQuote bool
// DisableQuote disables quoting for all values.
// DisableQuote will have a lower priority than ForceQuote.
// If both of them are set to true, quote will be forced on all values.
DisableQuote bool
// Override coloring based on CLICOLOR and CLICOLOR_FORCE. - https://bixense.com/clicolors/
EnvironmentOverrideColors bool
2016-04-10 21:39:38 +00:00
// Disable timestamp logging. useful when output is redirected to logging
// system that already adds timestamps.
DisableTimestamp bool
// Enable logging the full timestamp when a TTY is attached instead of just
// the time passed since beginning of execution.
FullTimestamp bool
// TimestampFormat to use for display when a full timestamp is printed.
// The format to use is the same than for time.Format or time.Parse from the standard
// library.
// The standard Library already provides a set of predefined format.
2016-04-10 21:39:38 +00:00
TimestampFormat string
// The fields are sorted by default for a consistent output. For applications
// that log extremely frequently and don't use the JSON formatter this may not
// be desired.
DisableSorting bool
2017-03-25 19:45:10 +00:00
// The keys sorting function, when uninitialized it uses sort.Strings.
SortingFunc func([]string)
// Disables the truncation of the level text to 4 characters.
DisableLevelTruncation bool
2020-05-23 22:06:21 +00:00
// PadLevelText Adds padding the level text so that all the levels output at the same length
// PadLevelText is a superset of the DisableLevelTruncation option
PadLevelText bool
2017-03-25 19:45:10 +00:00
// QuoteEmptyFields will wrap empty fields in quotes if true
QuoteEmptyFields bool
// Whether the logger's out is to a terminal
isTerminal bool
// FieldMap allows users to customize the names of keys for default fields.
// As an example:
// formatter := &TextFormatter{
// FieldMap: FieldMap{
// FieldKeyTime: "@timestamp",
// FieldKeyLevel: "@level",
// FieldKeyMsg: "@message"}}
FieldMap FieldMap
2019-06-16 21:33:25 +00:00
// CallerPrettyfier can be set by the user to modify the content
// of the function and file keys in the data when ReportCaller is
// activated. If any of the returned value is the empty string the
// corresponding key will be removed from fields.
CallerPrettyfier func(*runtime.Frame) (function string, file string)
terminalInitOnce sync.Once
2020-05-23 22:06:21 +00:00
// The max length of the level text, generated dynamically on init
levelTextMaxLength int
2017-03-25 19:45:10 +00:00
}
func (f *TextFormatter) init(entry *Entry) {
if entry.Logger != nil {
2018-02-20 22:41:09 +00:00
f.isTerminal = checkIfTerminal(entry.Logger.Out)
}
2020-05-23 22:06:21 +00:00
// Get the max length of the level text
for _, level := range AllLevels {
levelTextLength := utf8.RuneCount([]byte(level.String()))
if levelTextLength > f.levelTextMaxLength {
f.levelTextMaxLength = levelTextLength
}
}
}
func (f *TextFormatter) isColored() bool {
isColored := f.ForceColors || (f.isTerminal && (runtime.GOOS != "windows"))
if f.EnvironmentOverrideColors {
2020-05-23 22:06:21 +00:00
switch force, ok := os.LookupEnv("CLICOLOR_FORCE"); {
case ok && force != "0":
isColored = true
2020-05-23 22:06:21 +00:00
case ok && force == "0", os.Getenv("CLICOLOR") == "0":
isColored = false
}
2017-03-25 19:45:10 +00:00
}
return isColored && !f.DisableColors
2016-04-10 21:39:38 +00:00
}
2018-02-20 22:41:09 +00:00
// Format renders a single log entry
2016-04-10 21:39:38 +00:00
func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
data := make(Fields)
for k, v := range entry.Data {
data[k] = v
}
prefixFieldClashes(data, f.FieldMap, entry.HasCaller())
keys := make([]string, 0, len(data))
for k := range data {
2016-04-10 21:39:38 +00:00
keys = append(keys, k)
}
2019-06-16 21:33:25 +00:00
var funcVal, fileVal string
fixedKeys := make([]string, 0, 4+len(data))
if !f.DisableTimestamp {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyTime))
}
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyLevel))
if entry.Message != "" {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyMsg))
}
if entry.err != "" {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyLogrusError))
}
if entry.HasCaller() {
2019-06-16 21:33:25 +00:00
if f.CallerPrettyfier != nil {
funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
} else {
funcVal = entry.Caller.Function
fileVal = fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
}
if funcVal != "" {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyFunc))
}
if fileVal != "" {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyFile))
}
}
2016-04-10 21:39:38 +00:00
if !f.DisableSorting {
if f.SortingFunc == nil {
sort.Strings(keys)
fixedKeys = append(fixedKeys, keys...)
} else {
if !f.isColored() {
fixedKeys = append(fixedKeys, keys...)
f.SortingFunc(fixedKeys)
} else {
f.SortingFunc(keys)
}
}
} else {
fixedKeys = append(fixedKeys, keys...)
2016-04-10 21:39:38 +00:00
}
var b *bytes.Buffer
2017-03-25 19:45:10 +00:00
if entry.Buffer != nil {
b = entry.Buffer
} else {
b = &bytes.Buffer{}
}
2016-04-10 21:39:38 +00:00
f.terminalInitOnce.Do(func() { f.init(entry) })
2016-04-10 21:39:38 +00:00
timestampFormat := f.TimestampFormat
if timestampFormat == "" {
2018-02-20 22:41:09 +00:00
timestampFormat = defaultTimestampFormat
2016-04-10 21:39:38 +00:00
}
if f.isColored() {
f.printColored(b, entry, keys, data, timestampFormat)
2016-04-10 21:39:38 +00:00
} else {
2019-06-16 21:33:25 +00:00
for _, key := range fixedKeys {
var value interface{}
switch {
case key == f.FieldMap.resolve(FieldKeyTime):
value = entry.Time.Format(timestampFormat)
case key == f.FieldMap.resolve(FieldKeyLevel):
value = entry.Level.String()
case key == f.FieldMap.resolve(FieldKeyMsg):
value = entry.Message
case key == f.FieldMap.resolve(FieldKeyLogrusError):
value = entry.err
case key == f.FieldMap.resolve(FieldKeyFunc) && entry.HasCaller():
2019-06-16 21:33:25 +00:00
value = funcVal
case key == f.FieldMap.resolve(FieldKeyFile) && entry.HasCaller():
2019-06-16 21:33:25 +00:00
value = fileVal
default:
value = data[key]
}
f.appendKeyValue(b, key, value)
2016-04-10 21:39:38 +00:00
}
}
b.WriteByte('\n')
return b.Bytes(), nil
}
func (f *TextFormatter) printColored(b *bytes.Buffer, entry *Entry, keys []string, data Fields, timestampFormat string) {
2016-04-10 21:39:38 +00:00
var levelColor int
switch entry.Level {
case DebugLevel, TraceLevel:
2016-04-10 21:39:38 +00:00
levelColor = gray
case WarnLevel:
levelColor = yellow
case ErrorLevel, FatalLevel, PanicLevel:
levelColor = red
2021-03-20 21:40:23 +00:00
case InfoLevel:
levelColor = blue
2016-04-10 21:39:38 +00:00
default:
levelColor = blue
}
levelText := strings.ToUpper(entry.Level.String())
2020-05-23 22:06:21 +00:00
if !f.DisableLevelTruncation && !f.PadLevelText {
levelText = levelText[0:4]
}
2020-05-23 22:06:21 +00:00
if f.PadLevelText {
// Generates the format string used in the next line, for example "%-6s" or "%-7s".
// Based on the max level text length.
formatString := "%-" + strconv.Itoa(f.levelTextMaxLength) + "s"
// Formats the level text by appending spaces up to the max length, for example:
// - "INFO "
// - "WARNING"
levelText = fmt.Sprintf(formatString, levelText)
}
// Remove a single newline if it already exists in the message to keep
// the behavior of logrus text_formatter the same as the stdlib log package
entry.Message = strings.TrimSuffix(entry.Message, "\n")
caller := ""
if entry.HasCaller() {
2019-06-16 21:33:25 +00:00
funcVal := fmt.Sprintf("%s()", entry.Caller.Function)
fileVal := fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
if f.CallerPrettyfier != nil {
funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
}
if fileVal == "" {
caller = funcVal
} else if funcVal == "" {
caller = fileVal
} else {
caller = fileVal + " " + funcVal
}
}
2016-04-10 21:39:38 +00:00
2020-05-23 22:06:21 +00:00
switch {
case f.DisableTimestamp:
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m%s %-44s ", levelColor, levelText, caller, entry.Message)
2020-05-23 22:06:21 +00:00
case !f.FullTimestamp:
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%04d]%s %-44s ", levelColor, levelText, int(entry.Time.Sub(baseTimestamp)/time.Second), caller, entry.Message)
2020-05-23 22:06:21 +00:00
default:
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s]%s %-44s ", levelColor, levelText, entry.Time.Format(timestampFormat), caller, entry.Message)
2016-04-10 21:39:38 +00:00
}
for _, k := range keys {
v := data[k]
2017-03-25 19:45:10 +00:00
fmt.Fprintf(b, " \x1b[%dm%s\x1b[0m=", levelColor, k)
f.appendValue(b, v)
2016-04-10 21:39:38 +00:00
}
}
2017-03-25 19:45:10 +00:00
func (f *TextFormatter) needsQuoting(text string) bool {
2020-05-23 22:06:21 +00:00
if f.ForceQuote {
return true
}
2017-03-25 19:45:10 +00:00
if f.QuoteEmptyFields && len(text) == 0 {
return true
}
2020-05-23 22:06:21 +00:00
if f.DisableQuote {
return false
}
2016-04-10 21:39:38 +00:00
for _, ch := range text {
if !((ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') ||
(ch >= '0' && ch <= '9') ||
2018-02-20 22:41:09 +00:00
ch == '-' || ch == '.' || ch == '_' || ch == '/' || ch == '@' || ch == '^' || ch == '+') {
2017-03-25 19:45:10 +00:00
return true
2016-04-10 21:39:38 +00:00
}
}
2017-03-25 19:45:10 +00:00
return false
2016-04-10 21:39:38 +00:00
}
func (f *TextFormatter) appendKeyValue(b *bytes.Buffer, key string, value interface{}) {
2018-02-20 22:41:09 +00:00
if b.Len() > 0 {
b.WriteByte(' ')
}
2016-04-10 21:39:38 +00:00
b.WriteString(key)
b.WriteByte('=')
2017-03-25 19:45:10 +00:00
f.appendValue(b, value)
}
2016-04-10 21:39:38 +00:00
2017-03-25 19:45:10 +00:00
func (f *TextFormatter) appendValue(b *bytes.Buffer, value interface{}) {
2018-02-20 22:41:09 +00:00
stringVal, ok := value.(string)
if !ok {
stringVal = fmt.Sprint(value)
}
if !f.needsQuoting(stringVal) {
b.WriteString(stringVal)
} else {
b.WriteString(fmt.Sprintf("%q", stringVal))
2016-04-10 21:39:38 +00:00
}
}