-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler.go
176 lines (134 loc) · 3.5 KB
/
handler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package slogx
import (
"context"
"errors"
"log/slog"
)
// Join returns a new handler that joins the provided handlers.
func Join(handlers ...slog.Handler) slog.Handler {
switch len(handlers) {
case 0:
return Discard()
case 1:
return handlers[0]
}
return &multiHandler{handlers}
}
// Discard returns a handler that discards all log records.
func Discard() slog.Handler {
return discardHandlerInstance
}
// TweakHandler returns a builder for a new handler based on existing handler.
func TweakHandler(handler slog.Handler) TweakHandlerBuilder {
return TweakHandlerBuilder{handler, handlerTweaks{}}
}
// ---
// TweakHandlerBuilder is a builder for a new handler based on existing handler.
type TweakHandlerBuilder struct {
handler slog.Handler
tweaks handlerTweaks
}
// WithDynamicAttr adds a dynamic attribute to the handler.
func (b TweakHandlerBuilder) WithDynamicAttr(attr func(context.Context) slog.Attr) TweakHandlerBuilder {
b.tweaks.dynamicAttrs = append(b.tweaks.dynamicAttrs, attr)
return b
}
// Result returns the new handler.
func (b TweakHandlerBuilder) Result() slog.Handler {
return &tweakedHandler{b.handler, b.tweaks}
}
// ---
type handlerTweaks struct {
dynamicAttrs []func(context.Context) slog.Attr
}
// ---
type tweakedHandler struct {
base slog.Handler
handlerTweaks
}
func (h *tweakedHandler) Enabled(ctx context.Context, level slog.Level) bool {
return h.base.Enabled(ctx, level)
}
func (h *tweakedHandler) Handle(ctx context.Context, record slog.Record) error {
if len(h.dynamicAttrs) != 0 {
record = record.Clone()
for _, attr := range h.dynamicAttrs {
if attr := attr(ctx); !attr.Equal(slog.Attr{}) {
record.AddAttrs(attr)
}
}
}
return h.base.Handle(ctx, record)
}
func (h *tweakedHandler) WithAttrs(attrs []slog.Attr) slog.Handler {
if len(attrs) == 0 {
return h
}
return &tweakedHandler{h.base.WithAttrs(attrs), h.handlerTweaks}
}
func (h *tweakedHandler) WithGroup(key string) slog.Handler {
if key == "" {
return h
}
return &tweakedHandler{h.base.WithGroup(key), h.handlerTweaks}
}
// ---
var discardHandlerInstance = &discardHandler{}
// ---
type discardHandler struct{}
func (h *discardHandler) Enabled(context.Context, slog.Level) bool {
return false
}
func (h *discardHandler) Handle(context.Context, slog.Record) error {
return nil
}
func (h *discardHandler) WithAttrs([]slog.Attr) slog.Handler {
return h
}
func (h *discardHandler) WithGroup(string) slog.Handler {
return h
}
// ---
type multiHandler struct {
handlers []slog.Handler
}
func (h *multiHandler) Enabled(ctx context.Context, level slog.Level) bool {
for _, handler := range h.handlers {
if handler.Enabled(ctx, level) {
return true
}
}
return false
}
func (h *multiHandler) Handle(ctx context.Context, record slog.Record) error {
var errs []error
for _, handler := range h.handlers {
if handler.Enabled(ctx, record.Level) {
err := handler.Handle(ctx, record)
if err != nil {
errs = append(errs, err)
}
}
}
return errors.Join(errs...)
}
func (h *multiHandler) WithAttrs(attrs []slog.Attr) slog.Handler {
if len(attrs) == 0 {
return h
}
handlers := make([]slog.Handler, len(h.handlers))
for i, handler := range h.handlers {
handlers[i] = handler.WithAttrs(attrs)
}
return &multiHandler{handlers}
}
func (h *multiHandler) WithGroup(key string) slog.Handler {
if key == "" {
return h
}
handlers := make([]slog.Handler, len(h.handlers))
for i, handler := range h.handlers {
handlers[i] = handler.WithGroup(key)
}
return &multiHandler{handlers}
}