-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzap.go
146 lines (127 loc) · 3.14 KB
/
zap.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
package zapctx
import (
"context"
"go.uber.org/zap"
)
type loggerVal string
var loggerKey = loggerVal("key")
func With(ctx context.Context, fields ...zap.Field) context.Context {
if len(fields) == 0 {
return ctx
}
existingFieldsVal := ctx.Value(loggerKey)
if existingFieldsVal == nil {
return context.WithValue(ctx, loggerKey, fields)
}
existingFields := existingFieldsVal.([]zap.Field)
newFields := make([]zap.Field, 0, len(existingFields))
newFields = append(newFields, existingFields...)
newFields = append(newFields, fields...)
return context.WithValue(ctx, loggerKey, newFields)
}
func fields(ctx context.Context) []zap.Field {
existingFieldsVal := ctx.Value(loggerKey)
if existingFieldsVal == nil {
return nil
}
return existingFieldsVal.([]zap.Field)
}
func New(root *zap.Logger) *Logger {
return &Logger{
root: root,
}
}
type DynamicFields func(ctx context.Context) []zap.Field
type Logger struct {
root *zap.Logger
dynamicFields []DynamicFields
}
func (l *Logger) Unwrap(ctx context.Context) *zap.Logger {
allFields := fields(ctx)
for _, d := range l.dynamicFields {
allFields = append(allFields, d(ctx)...)
}
return l.root.With(allFields...).WithOptions(zap.AddCallerSkip(2))
}
func (l *Logger) Info(ctx context.Context, msg string, fields ...zap.Field) {
if l == nil {
return
}
l.root.WithOptions(zap.Hooks())
l.Unwrap(ctx).Info(msg, fields...)
}
func (l *Logger) Warn(ctx context.Context, msg string, fields ...zap.Field) {
if l == nil {
return
}
l.Unwrap(ctx).Warn(msg, fields...)
}
func (l *Logger) Error(ctx context.Context, msg string, fields ...zap.Field) {
if l == nil {
return
}
l.Unwrap(ctx).Error(msg, fields...)
}
func (l *Logger) Debug(ctx context.Context, msg string, fields ...zap.Field) {
if l == nil {
return
}
l.Unwrap(ctx).Debug(msg, fields...)
}
func (l *Logger) Panic(ctx context.Context, msg string, fields ...zap.Field) {
if l == nil {
return
}
l.Unwrap(ctx).Panic(msg, fields...)
}
func (l *Logger) IfErr(err error) *Logger {
if err == nil {
return nil
}
return l.With(zap.Error(err))
}
func (l *Logger) DynamicFields(dynamicFields ...DynamicFields) *Logger {
ret := &Logger{
root: l.root,
dynamicFields: make([]DynamicFields, 0, len(dynamicFields)+len(l.dynamicFields)),
}
ret.dynamicFields = append(ret.dynamicFields, l.dynamicFields...)
ret.dynamicFields = append(ret.dynamicFields, dynamicFields...)
return ret
}
func (l *Logger) With(fields ...zap.Field) *Logger {
if l == nil {
return nil
}
return &Logger{
root: l.root.With(fields...),
dynamicFields: l.dynamicFields,
}
}
type FieldLogger struct {
Logger *Logger
}
func (f *FieldLogger) Log(keyvals ...interface{}) {
if len(keyvals) == 0 {
return
}
var fields []zap.Field
msg := "log sent"
for i := 0; i < len(keyvals); i += 2 {
if i+1 >= len(keyvals) {
continue
}
kInt := keyvals[i]
v := keyvals[i+1]
if kAsString, ok := kInt.(string); ok {
if kAsString == "msg" {
if valAsString, ok := v.(string); ok {
msg = valAsString
}
} else {
fields = append(fields, zap.Any(kAsString, v))
}
}
}
f.Logger.Info(context.Background(), msg, fields...)
}