mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-20 06:31:32 +03:00
3180334c0c
* refactor: partially moved over driver.Tuning params to options * All knobs moved to options * sq config edit: now has comments for options * Major work complete on config/options overhaul * Major work complete on config/options overhaul * Updated help text for 'sq version'
143 lines
2.9 KiB
Go
143 lines
2.9 KiB
Go
// Package lg contains utility functions for working with slog.
|
|
// It implements the slog.NewContext and slog.FromContext funcs
|
|
// that have recently been zapped from the slog proposal. I think you
|
|
// had it right the first time, Go team. Hopefully this package is short-lived
|
|
// and those funcs are put back.
|
|
package lg
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/neilotoole/sq/libsq/core/lg/lgm"
|
|
|
|
"github.com/neilotoole/sq/libsq/core/lg/lga"
|
|
|
|
"golang.org/x/exp/slog"
|
|
)
|
|
|
|
type contextKey struct{}
|
|
|
|
// NewContext returns a context that contains the given Logger.
|
|
// Use FromContext to retrieve the Logger.
|
|
func NewContext(ctx context.Context, l *slog.Logger) context.Context {
|
|
return context.WithValue(ctx, contextKey{}, l)
|
|
}
|
|
|
|
// FromContext returns the Logger stored in ctx by NewContext,
|
|
// or the Discard logger if there is none.
|
|
func FromContext(ctx context.Context) *slog.Logger {
|
|
v := ctx.Value(contextKey{})
|
|
if v == nil {
|
|
return Discard()
|
|
}
|
|
|
|
if l, ok := v.(*slog.Logger); ok {
|
|
return l
|
|
}
|
|
return Discard()
|
|
}
|
|
|
|
// Discard returns a new *slog.Logger that discards output.
|
|
func Discard() *slog.Logger {
|
|
h := discardHandler{}
|
|
return slog.New(h)
|
|
}
|
|
|
|
var _ slog.Handler = (*discardHandler)(nil)
|
|
|
|
type discardHandler struct{}
|
|
|
|
// Enabled implements slog.Handler.
|
|
func (d discardHandler) Enabled(_ context.Context, _ slog.Level) bool {
|
|
return false
|
|
}
|
|
|
|
// Handle implements slog.Handler.
|
|
func (d discardHandler) Handle(_ context.Context, _ slog.Record) error {
|
|
return nil
|
|
}
|
|
|
|
// WithAttrs implements slog.Handler.
|
|
func (d discardHandler) WithAttrs(_ []slog.Attr) slog.Handler {
|
|
return d
|
|
}
|
|
|
|
// WithGroup implements slog.Handler.
|
|
func (d discardHandler) WithGroup(_ string) slog.Handler {
|
|
return d
|
|
}
|
|
|
|
// WarnIfError logs a warning if err is non-nil.
|
|
func WarnIfError(log *slog.Logger, msg string, err error) {
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
if msg == "" {
|
|
msg = "Error"
|
|
}
|
|
|
|
log.Warn(msg, lga.Err, err)
|
|
}
|
|
|
|
// WarnIfFuncError executes fn (if non-nil), and logs a warning
|
|
// if fn returns an error.
|
|
func WarnIfFuncError(log *slog.Logger, msg string, fn func() error) {
|
|
if fn == nil {
|
|
return
|
|
}
|
|
|
|
err := fn()
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
if msg == "" {
|
|
msg = "Func error"
|
|
}
|
|
|
|
log.Warn(msg, lga.Err, err)
|
|
}
|
|
|
|
// WarnIfCloseError executes c.Close if is non-nil, and logs a warning
|
|
// if c.Close returns an error.
|
|
func WarnIfCloseError(log *slog.Logger, msg string, c io.Closer) {
|
|
if c == nil {
|
|
return
|
|
}
|
|
|
|
err := c.Close()
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
if msg == "" {
|
|
msg = "Close error"
|
|
}
|
|
|
|
log.Warn(msg, lga.Err, err)
|
|
}
|
|
|
|
// Error logs an error if err is non-nil.
|
|
func Error(log *slog.Logger, msg string, err error, args ...any) {
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
a := []any{lga.Err, err}
|
|
a = append(a, args...)
|
|
|
|
log.Error(msg, a...)
|
|
}
|
|
|
|
// Unexpected is a convenience function for logging unexpected errors
|
|
// for which there may not be any useful context message.
|
|
func Unexpected(log *slog.Logger, err error) {
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
log.Error(lgm.Unexpected, lga.Err, err)
|
|
}
|