-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlogde.go
412 lines (347 loc) · 9.57 KB
/
logde.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
package logger
import (
"context"
"encoding/json"
"fmt"
"github.com/BurntSushi/toml"
"github.com/gin-gonic/gin"
rotatelogs "github.com/lestrrat-go/file-rotatelogs"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"gopkg.in/natefinch/lumberjack.v2"
"gopkg.in/yaml.v2"
"io"
"io/ioutil"
"os"
"time"
)
const (
TimeDivision = "time"
SizeDivision = "size"
_defaultEncoding = "console"
_defaultDivision = "size"
_defaultUnit = Hour
)
var (
Logger *Log
_encoderNameToConstructor = map[string]func(zapcore.EncoderConfig) zapcore.Encoder{
"console": func(encoderConfig zapcore.EncoderConfig) zapcore.Encoder {
return zapcore.NewConsoleEncoder(encoderConfig)
},
"json": func(encoderConfig zapcore.EncoderConfig) zapcore.Encoder {
return zapcore.NewJSONEncoder(encoderConfig)
},
}
)
type Log struct {
L *zap.Logger
}
type LogOptions struct {
// Encoding sets the logger's encoding. Valid values are "json" and
// "console", as well as any third-party encodings registered via
// RegisterEncoder.
Encoding string `json:"encoding" yaml:"encoding" toml:"encoding"`
InfoFilename string `json:"info_filename" yaml:"info_filename" toml:"info_filename"`
ErrorFilename string `json:"error_filename" yaml:"error_filename" toml:"error_filename"`
MaxSize int `json:"max_size" yaml:"max_size" toml:"max_size"`
MaxBackups int `json:"max_backups" yaml:"max_backups" toml:"max_backups"`
MaxAge int `json:"max_age" yaml:"max_age" toml:"max_age"`
Compress bool `json:"compress" yaml:"compress" toml:"compress"`
Division string `json:"division" yaml:"division" toml:"division"`
LevelSeparate bool `json:"level_separate" yaml:"level_separate" toml:"level_separate"`
TimeUnit TimeUnit `json:"time_unit" yaml:"time_unit" toml:"time_unit"`
Stacktrace bool `json:"stacktrace" yaml:"stacktrace" toml:"stacktrace"`
EncodeTime string `json:"encode_time" yaml:"encode_time" toml:"encode_time"`
closeDisplay int
caller bool
}
func infoLevel() zap.LevelEnablerFunc {
return zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl < zapcore.WarnLevel
})
}
func warnLevel() zap.LevelEnablerFunc {
return zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl >= zapcore.WarnLevel
})
}
func New() *LogOptions {
return &LogOptions{
Division: _defaultDivision,
LevelSeparate: false,
TimeUnit: _defaultUnit,
Encoding: _defaultEncoding,
caller: false,
}
}
func NewFromToml(confPath string) *LogOptions {
var c *LogOptions
if _, err := toml.DecodeFile(confPath, &c); err != nil {
panic(err)
}
return c
}
func NewFromYaml(confPath string) *LogOptions {
var c *LogOptions
file, err := ioutil.ReadFile(confPath)
if err != nil {
fmt.Printf("yamlFile.Get err #%v ", err)
}
err = yaml.Unmarshal(file, &c)
if err != nil {
fmt.Printf("error: %v", err)
}
return c
}
func NewFromJson(confPath string) *LogOptions {
var c *LogOptions
file, err := ioutil.ReadFile(confPath)
if err != nil {
fmt.Printf("yamlFile.Get err #%v ", err)
}
err = json.Unmarshal(file, &c)
if err != nil {
fmt.Printf("error: %v", err)
}
return c
}
func (c *LogOptions) SetDivision(division string) {
c.Division = division
}
func (c *LogOptions) SetEncodeTime(format string) {
c.EncodeTime = format
}
func (c *LogOptions) CloseConsoleDisplay() {
c.closeDisplay = 1
}
func (c *LogOptions) SetCaller(b bool) {
c.caller = b
}
func (c *LogOptions) SetTimeUnit(t TimeUnit) {
c.TimeUnit = t
}
func (c *LogOptions) SetErrorFile(path string) {
c.LevelSeparate = true
c.ErrorFilename = path
}
func (c *LogOptions) SetInfoFile(path string) {
c.InfoFilename = path
}
func (c *LogOptions) SetEncoding(encoding string) {
c.Encoding = encoding
}
// isOutput whether set output file
func (c *LogOptions) isOutput() bool {
return c.InfoFilename != ""
}
func (c *LogOptions) InitLogger() *Log {
var (
logger *zap.Logger
infoHook, warnHook io.Writer
wsInfo []zapcore.WriteSyncer
wsWarn []zapcore.WriteSyncer
)
if c.Encoding == "" {
c.Encoding = _defaultEncoding
}
if c.EncodeTime == "" {
c.EncodeTime = RFC3339
}
encoder := _encoderNameToConstructor[c.Encoding]
encoderConfig := zapcore.EncoderConfig{
TimeKey: "time",
LevelKey: "level",
NameKey: "logger",
CallerKey: "file",
MessageKey: "msg",
StacktraceKey: "stacktrace",
LineEnding: zapcore.DefaultLineEnding,
EncodeLevel: zapcore.LowercaseLevelEncoder,
EncodeTime: zapcore.TimeEncoderOfLayout(c.EncodeTime),
EncodeDuration: zapcore.SecondsDurationEncoder,
EncodeCaller: zapcore.FullCallerEncoder,
}
if c.closeDisplay == 0 {
wsInfo = append(wsInfo, zapcore.AddSync(os.Stdout))
wsWarn = append(wsWarn, zapcore.AddSync(os.Stdout))
}
// zapcore WriteSyncer setting
if c.isOutput() {
switch c.Division {
case TimeDivision:
infoHook = c.timeDivisionWriter(c.InfoFilename)
if c.LevelSeparate {
warnHook = c.timeDivisionWriter(c.ErrorFilename)
}
case SizeDivision:
infoHook = c.sizeDivisionWriter(c.InfoFilename)
if c.LevelSeparate {
warnHook = c.sizeDivisionWriter(c.ErrorFilename)
}
}
wsInfo = append(wsInfo, zapcore.AddSync(infoHook))
}
if c.ErrorFilename != "" {
wsWarn = append(wsWarn, zapcore.AddSync(warnHook))
}
opts := make([]zap.Option, 0)
cos := make([]zapcore.Core, 0)
if c.LevelSeparate {
cos = append(
cos,
zapcore.NewCore(encoder(encoderConfig), zapcore.NewMultiWriteSyncer(wsInfo...), infoLevel()),
zapcore.NewCore(encoder(encoderConfig), zapcore.NewMultiWriteSyncer(wsWarn...), warnLevel()),
)
} else {
cos = append(
cos,
zapcore.NewCore(encoder(encoderConfig), zapcore.NewMultiWriteSyncer(wsInfo...), zap.InfoLevel),
)
}
opts = append(opts, zap.Development())
if c.Stacktrace {
opts = append(opts, zap.AddStacktrace(zapcore.WarnLevel))
}
if c.caller {
opts = append(opts, zap.AddCaller())
}
logger = zap.New(zapcore.NewTee(cos...), opts...)
Logger = &Log{logger}
return Logger
}
func (c *LogOptions) sizeDivisionWriter(filename string) io.Writer {
hook := &lumberjack.Logger{
Filename: filename,
MaxSize: c.MaxSize,
MaxBackups: c.MaxBackups,
MaxAge: c.MaxSize,
Compress: c.Compress,
}
return hook
}
func (c *LogOptions) timeDivisionWriter(filename string) io.Writer {
hook, err := rotatelogs.New(
filename+c.TimeUnit.Format(),
rotatelogs.WithMaxAge(time.Duration(int64(24*time.Hour)*int64(c.MaxAge))),
rotatelogs.WithRotationTime(c.TimeUnit.RotationGap()),
)
if err != nil {
panic(err)
}
return hook
}
func Info(msg string, args ...zap.Field) {
Logger.L.Info(msg, args...)
}
func Error(msg string, args ...zap.Field) {
Logger.L.Error(msg, args...)
}
func Warn(msg string, args ...zap.Field) {
Logger.L.Warn(msg, args...)
}
func Debug(msg string, args ...zap.Field) {
Logger.L.Debug(msg, args...)
}
func Fatal(msg string, args ...zap.Field) {
Logger.L.Fatal(msg, args...)
}
func Infof(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
Logger.L.Info(logMsg)
}
func Errorf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
Logger.L.Error(logMsg)
}
func Warnf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
Logger.L.Warn(logMsg)
}
func Debugf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
Logger.L.Debug(logMsg)
}
func Fatalf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
Logger.L.Fatal(logMsg)
}
func With(k string, v interface{}) zap.Field {
return zap.Any(k, v)
}
func WithError(err error) zap.Field {
return zap.NamedError("error", err)
}
func AddContext(ctx context.Context, fields ...zap.Field) context.Context {
l := ctx.Value("_logger_ctx_val")
logArgs, ok := l.([]zap.Field)
if ok || logArgs == nil {
logArgs = append(logArgs, fields...)
ctx = context.WithValue(ctx, "_logger_ctx_val", logArgs)
}
return ctx
}
func GAddContext(ctx *gin.Context, fields ...zap.Field) {
l, _ := ctx.Get("_logger_ctx_val")
logArgs, ok := l.([]zap.Field)
if ok || logArgs == nil {
logArgs = append(logArgs, fields...)
ctx.Set("_logger_ctx_val", logArgs)
}
}
func withContext(ctx context.Context) *Log {
if ctx == nil {
return nil
}
l := ctx.Value("_logger_ctx_val")
logArgs, _ := l.([]zap.Field)
ctxLogger := &Log{
L: Logger.L,
}
if len(logArgs) > 0 {
ctxLogger.L = ctxLogger.L.With(logArgs...)
}
return ctxLogger
}
// WithContext old used
func WithContext(ctx context.Context) *Log {
return withContext(ctx)
}
// Ctx new func
func Ctx(ctx context.Context) *Log {
return withContext(ctx)
}
func (l *Log) Info(msg string, args ...zap.Field) {
l.L.Info(msg, args...)
}
func (l *Log) Error(msg string, args ...zap.Field) {
l.L.Error(msg, args...)
}
func (l *Log) Warn(msg string, args ...zap.Field) {
l.L.Warn(msg, args...)
}
func (l *Log) Debug(msg string, args ...zap.Field) {
l.L.Debug(msg, args...)
}
func (l *Log) Fatal(msg string, args ...zap.Field) {
l.L.Fatal(msg, args...)
}
func (l *Log) Infof(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
l.L.Info(logMsg)
}
func (l *Log) Errorf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
l.L.Error(logMsg)
}
func (l *Log) Warnf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
l.L.Warn(logMsg)
}
func (l *Log) Debugf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
l.L.Debug(logMsg)
}
func (l *Log) Fatalf(format string, args ...interface{}) {
logMsg := fmt.Sprintf(format, args...)
l.L.Fatal(logMsg)
}