-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathfile.go
160 lines (134 loc) · 3.83 KB
/
file.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
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2020 Load Impact
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Package log implements various logrus hooks.
package log
import (
"bufio"
"context"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"github.com/sirupsen/logrus"
)
// fileHookBufferSize is a default size for the fileHook's loglines channel.
const fileHookBufferSize = 100
// fileHook is a hook to handle writing to local files.
type fileHook struct {
fallbackLogger logrus.FieldLogger
loglines chan []byte
path string
w io.WriteCloser
bw *bufio.Writer
levels []logrus.Level
}
// FileHookFromConfigLine returns new fileHook hook.
func FileHookFromConfigLine(
ctx context.Context, fallbackLogger logrus.FieldLogger, line string,
) (logrus.Hook, error) {
hook := &fileHook{
fallbackLogger: fallbackLogger,
levels: logrus.AllLevels,
}
parts := strings.SplitN(line, "=", 2)
if parts[0] != "file" {
return nil, fmt.Errorf("logfile configuration should be in the form `file=path-to-local-file` but is `%s`", line)
}
if err := hook.parseArgs(line); err != nil {
return nil, err
}
if err := hook.openFile(); err != nil {
return nil, err
}
hook.loglines = hook.loop(ctx)
return hook, nil
}
func (h *fileHook) parseArgs(line string) error {
tokens, err := tokenize(line)
if err != nil {
return fmt.Errorf("error while parsing logfile configuration %w", err)
}
for _, token := range tokens {
switch token.key {
case "file":
if token.value == "" {
return fmt.Errorf("filepath must not be empty")
}
h.path = token.value
case "level":
h.levels, err = parseLevels(token.value)
if err != nil {
return err
}
default:
return fmt.Errorf("unknown logfile config key %s", token.key)
}
}
return nil
}
// openFile opens logfile and initializes writers.
func (h *fileHook) openFile() error {
if _, err := os.Stat(filepath.Dir(h.path)); os.IsNotExist(err) {
return fmt.Errorf("provided directory '%s' does not exist", filepath.Dir(h.path))
}
file, err := os.OpenFile(h.path, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0o600)
if err != nil {
return fmt.Errorf("failed to open logfile %s: %w", h.path, err)
}
h.w = file
h.bw = bufio.NewWriter(file)
return nil
}
func (h *fileHook) loop(ctx context.Context) chan []byte {
loglines := make(chan []byte, fileHookBufferSize)
go func() {
for {
select {
case entry := <-loglines:
if _, err := h.bw.Write(entry); err != nil {
h.fallbackLogger.Errorf("failed to write a log message to a logfile: %w", err)
}
case <-ctx.Done():
if err := h.bw.Flush(); err != nil {
h.fallbackLogger.Errorf("failed to flush buffer: %w", err)
}
if err := h.w.Close(); err != nil {
h.fallbackLogger.Errorf("failed to close logfile: %w", err)
}
return
}
}
}()
return loglines
}
// Fire writes the log file to defined path.
func (h *fileHook) Fire(entry *logrus.Entry) error {
message, err := entry.Bytes()
if err != nil {
return fmt.Errorf("failed to get a log entry bytes: %w", err)
}
h.loglines <- message
return nil
}
// Levels returns configured log levels.
func (h *fileHook) Levels() []logrus.Level {
return h.levels
}