270 lines
6.6 KiB
Go
270 lines
6.6 KiB
Go
// FILE: lixenwraith/log/format.go
|
|
package log
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"strconv"
|
|
"time"
|
|
"unicode/utf8"
|
|
|
|
"github.com/lixenwraith/log/sanitizer"
|
|
)
|
|
|
|
// Formatter manages the buffered writing and formatting of log entries
|
|
type Formatter struct {
|
|
format string
|
|
buf []byte
|
|
timestampFormat string
|
|
sanitizationMode sanitizer.Mode
|
|
sanitizer *sanitizer.Sanitizer
|
|
}
|
|
|
|
// NewFormatter creates a formatter instance
|
|
func NewFormatter(format string, bufferSize int64, timestampFormat string, sanitizationMode sanitizer.Mode) *Formatter {
|
|
if timestampFormat == "" {
|
|
timestampFormat = time.RFC3339Nano
|
|
}
|
|
if format == "" {
|
|
format = "txt"
|
|
}
|
|
return &Formatter{
|
|
format: format,
|
|
buf: make([]byte, 0, bufferSize),
|
|
timestampFormat: timestampFormat,
|
|
sanitizationMode: sanitizationMode,
|
|
sanitizer: sanitizer.New(sanitizationMode),
|
|
}
|
|
}
|
|
|
|
// Reset clears the formatter buffer for reuse
|
|
func (f *Formatter) Reset() {
|
|
f.buf = f.buf[:0]
|
|
}
|
|
|
|
// Format converts log entries to the configured format
|
|
func (f *Formatter) Format(format string, flags int64, timestamp time.Time, level int64, trace string, args []any) []byte {
|
|
f.Reset()
|
|
|
|
// The FlagRaw acts as an override to the configured format
|
|
effectiveFormat := format
|
|
if flags&FlagRaw != 0 {
|
|
effectiveFormat = "raw"
|
|
}
|
|
|
|
// Create the handler based on the effective format
|
|
handler := sanitizer.NewUnifiedHandler(effectiveFormat, f.sanitizer)
|
|
|
|
switch effectiveFormat {
|
|
case "raw":
|
|
// This dedicated path handles both format="raw" and FlagRaw
|
|
// It only serializes the arguments and adds NO metadata or newlines
|
|
for i, arg := range args {
|
|
f.convertValue(&f.buf, arg, handler, i > 0)
|
|
}
|
|
return f.buf
|
|
|
|
case "json":
|
|
// The existing JSON serialization logic remains unchanged
|
|
return f.formatJSON(flags, timestamp, level, trace, args, handler)
|
|
|
|
case "txt":
|
|
// The existing Txt serialization logic is now correctly isolated
|
|
return f.formatTxt(flags, timestamp, level, trace, args, handler)
|
|
}
|
|
|
|
return nil // forcing panic on unrecognized format
|
|
}
|
|
|
|
// FormatValue formats a single value according to the formatter's configuration
|
|
func (f *Formatter) FormatValue(v any) []byte {
|
|
f.Reset()
|
|
handler := sanitizer.NewUnifiedHandler(f.format, f.sanitizer)
|
|
f.convertValue(&f.buf, v, handler, false)
|
|
return f.buf
|
|
}
|
|
|
|
// FormatArgs formats multiple arguments as space-separated values
|
|
func (f *Formatter) FormatArgs(args ...any) []byte {
|
|
f.Reset()
|
|
handler := sanitizer.NewUnifiedHandler(f.format, f.sanitizer)
|
|
for i, arg := range args {
|
|
f.convertValue(&f.buf, arg, handler, i > 0)
|
|
}
|
|
return f.buf
|
|
}
|
|
|
|
// convertValue provides unified type conversion
|
|
func (f *Formatter) convertValue(buf *[]byte, v any, handler *sanitizer.UnifiedHandler, needsSpace bool) {
|
|
if needsSpace && len(*buf) > 0 {
|
|
*buf = append(*buf, ' ')
|
|
}
|
|
|
|
switch val := v.(type) {
|
|
case string:
|
|
handler.WriteString(buf, val)
|
|
|
|
case []byte:
|
|
handler.WriteString(buf, string(val))
|
|
|
|
case rune:
|
|
var runeStr [utf8.UTFMax]byte
|
|
n := utf8.EncodeRune(runeStr[:], val)
|
|
handler.WriteString(buf, string(runeStr[:n]))
|
|
|
|
case int:
|
|
num := strconv.AppendInt(nil, int64(val), 10)
|
|
handler.WriteNumber(buf, string(num))
|
|
|
|
case int64:
|
|
num := strconv.AppendInt(nil, val, 10)
|
|
handler.WriteNumber(buf, string(num))
|
|
|
|
case uint:
|
|
num := strconv.AppendUint(nil, uint64(val), 10)
|
|
handler.WriteNumber(buf, string(num))
|
|
|
|
case uint64:
|
|
num := strconv.AppendUint(nil, val, 10)
|
|
handler.WriteNumber(buf, string(num))
|
|
|
|
case float32:
|
|
num := strconv.AppendFloat(nil, float64(val), 'f', -1, 32)
|
|
handler.WriteNumber(buf, string(num))
|
|
|
|
case float64:
|
|
num := strconv.AppendFloat(nil, val, 'f', -1, 64)
|
|
handler.WriteNumber(buf, string(num))
|
|
|
|
case bool:
|
|
handler.WriteBool(buf, val)
|
|
|
|
case nil:
|
|
handler.WriteNil(buf)
|
|
|
|
case time.Time:
|
|
timeStr := val.Format(f.timestampFormat)
|
|
handler.WriteString(buf, timeStr)
|
|
|
|
case error:
|
|
handler.WriteString(buf, val.Error())
|
|
|
|
case fmt.Stringer:
|
|
handler.WriteString(buf, val.String())
|
|
|
|
default:
|
|
handler.WriteComplex(buf, val)
|
|
}
|
|
}
|
|
|
|
// formatJSON unifies JSON output
|
|
func (f *Formatter) formatJSON(flags int64, timestamp time.Time, level int64, trace string, args []any, handler *sanitizer.UnifiedHandler) []byte {
|
|
f.buf = append(f.buf, '{')
|
|
needsComma := false
|
|
|
|
if flags&FlagShowTimestamp != 0 {
|
|
f.buf = append(f.buf, `"time":"`...)
|
|
f.buf = timestamp.AppendFormat(f.buf, f.timestampFormat)
|
|
f.buf = append(f.buf, '"')
|
|
needsComma = true
|
|
}
|
|
|
|
if flags&FlagShowLevel != 0 {
|
|
if needsComma {
|
|
f.buf = append(f.buf, ',')
|
|
}
|
|
f.buf = append(f.buf, `"level":"`...)
|
|
f.buf = append(f.buf, levelToString(level)...)
|
|
f.buf = append(f.buf, '"')
|
|
needsComma = true
|
|
}
|
|
|
|
if trace != "" {
|
|
if needsComma {
|
|
f.buf = append(f.buf, ',')
|
|
}
|
|
f.buf = append(f.buf, `"trace":`...)
|
|
handler.WriteString(&f.buf, trace)
|
|
needsComma = true
|
|
}
|
|
|
|
// Handle structured JSON if flag is set and args match pattern
|
|
if flags&FlagStructuredJSON != 0 && len(args) >= 2 {
|
|
if message, ok := args[0].(string); ok {
|
|
if fields, ok := args[1].(map[string]any); ok {
|
|
if needsComma {
|
|
f.buf = append(f.buf, ',')
|
|
}
|
|
f.buf = append(f.buf, `"message":`...)
|
|
handler.WriteString(&f.buf, message)
|
|
|
|
f.buf = append(f.buf, ',')
|
|
f.buf = append(f.buf, `"fields":`...)
|
|
|
|
marshaledFields, err := json.Marshal(fields)
|
|
if err != nil {
|
|
f.buf = append(f.buf, `{"_marshal_error":"`...)
|
|
handler.WriteString(&f.buf, err.Error())
|
|
f.buf = append(f.buf, `"}`...)
|
|
} else {
|
|
f.buf = append(f.buf, marshaledFields...)
|
|
}
|
|
|
|
f.buf = append(f.buf, '}', '\n')
|
|
return f.buf
|
|
}
|
|
}
|
|
}
|
|
|
|
// Regular JSON with fields array
|
|
if len(args) > 0 {
|
|
if needsComma {
|
|
f.buf = append(f.buf, ',')
|
|
}
|
|
f.buf = append(f.buf, `"fields":[`...)
|
|
for i, arg := range args {
|
|
if i > 0 {
|
|
f.buf = append(f.buf, ',')
|
|
}
|
|
f.convertValue(&f.buf, arg, handler, false)
|
|
}
|
|
f.buf = append(f.buf, ']')
|
|
}
|
|
|
|
f.buf = append(f.buf, '}', '\n')
|
|
return f.buf
|
|
}
|
|
|
|
// formatTxt handles txt format output
|
|
func (f *Formatter) formatTxt(flags int64, timestamp time.Time, level int64, trace string, args []any, handler *sanitizer.UnifiedHandler) []byte {
|
|
needsSpace := false
|
|
|
|
if flags&FlagShowTimestamp != 0 {
|
|
f.buf = timestamp.AppendFormat(f.buf, f.timestampFormat)
|
|
needsSpace = true
|
|
}
|
|
|
|
if flags&FlagShowLevel != 0 {
|
|
if needsSpace {
|
|
f.buf = append(f.buf, ' ')
|
|
}
|
|
f.buf = append(f.buf, levelToString(level)...)
|
|
needsSpace = true
|
|
}
|
|
|
|
if trace != "" {
|
|
if needsSpace {
|
|
f.buf = append(f.buf, ' ')
|
|
}
|
|
f.buf = append(f.buf, trace...)
|
|
needsSpace = true
|
|
}
|
|
|
|
for _, arg := range args {
|
|
f.convertValue(&f.buf, arg, handler, needsSpace)
|
|
needsSpace = true
|
|
}
|
|
|
|
f.buf = append(f.buf, '\n')
|
|
return f.buf
|
|
} |