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
|
package loggers
import (
"bufio"
"context"
"fmt"
"os"
"runtime"
"sync"
"time"
"github.com/mimecast/dtail/internal/config"
)
type fileMessageBuf struct {
now time.Time
message string
nl bool
}
type file struct {
bufferCh chan *fileMessageBuf
pauseCh chan struct{}
resumeCh chan struct{}
rotateCh chan struct{}
flushCh chan struct{}
fd *os.File
writer *bufio.Writer
mutex sync.Mutex
started bool
lastFileName string
strategy Strategy
}
func newFile(strategy Strategy) *file {
return &file{
bufferCh: make(chan *fileMessageBuf, runtime.NumCPU()*100),
pauseCh: make(chan struct{}),
resumeCh: make(chan struct{}),
rotateCh: make(chan struct{}),
flushCh: make(chan struct{}),
strategy: strategy,
}
}
func (f *file) Start(ctx context.Context, wg *sync.WaitGroup) {
f.mutex.Lock()
defer func() {
f.started = true
f.mutex.Unlock()
}()
if f.started {
// Logger already started from another Goroutine.
wg.Done()
return
}
pause := func(ctx context.Context) {
select {
case <-f.resumeCh:
return
case <-ctx.Done():
return
}
}
go func() {
defer wg.Done()
for {
select {
case m := <-f.bufferCh:
f.write(m)
case <-f.pauseCh:
pause(ctx)
case <-f.flushCh:
f.flush()
case <-ctx.Done():
f.flush()
f.fd.Close()
return
}
}
}()
}
func (f *file) Log(now time.Time, message string) {
f.bufferCh <- &fileMessageBuf{now, message, true}
}
func (f *file) LogWithColors(now time.Time, message, coloredMessage string) {
f.RawWithColors(now, message, coloredMessage)
}
func (f *file) Raw(now time.Time, message string) {
f.bufferCh <- &fileMessageBuf{now, message, false}
}
func (f *file) RawWithColors(now time.Time, message, coloredMessage string) {
panic("Colors not supported in file logger")
}
func (f *file) Pause() { f.pauseCh <- struct{}{} }
func (f *file) Resume() { f.resumeCh <- struct{}{} }
func (f *file) Flush() { f.flushCh <- struct{}{} }
func (f *file) Rotate() { f.rotateCh <- struct{}{} }
func (*file) SupportsColors() bool { return false }
func (f *file) write(m *fileMessageBuf) {
select {
case <-f.rotateCh:
// Force re-opening the outfile next time in getWriter.
f.lastFileName = ""
default:
}
var writer *bufio.Writer
if f.strategy.Rotation == DailyRotation {
writer = f.getWriter(m.now.Format("20060102"))
} else {
writer = f.getWriter(f.strategy.FileBase)
}
// Don't report any error, we won't be able to log it anyway!
_, _ = writer.WriteString(m.message)
if m.nl {
_ = writer.WriteByte('\n')
}
}
func (f *file) getWriter(name string) *bufio.Writer {
if f.lastFileName == name {
return f.writer
}
if _, err := os.Stat(config.Common.LogDir); os.IsNotExist(err) {
if err = os.MkdirAll(config.Common.LogDir, 0755); err != nil {
panic(err)
}
}
logFile := fmt.Sprintf("%s/%s.log", config.Common.LogDir, name)
newFd, err := os.OpenFile(logFile, os.O_CREATE|os.O_RDWR|os.O_APPEND, 0666)
if err != nil {
panic(err)
}
// Close old writer.
if f.fd != nil {
f.writer.Flush()
f.fd.Close()
}
// Set new writer.
f.fd = newFd
f.writer = bufio.NewWriterSize(f.fd, 1)
f.lastFileName = name
return f.writer
}
func (f *file) flush() {
defer func() {
if f.writer != nil {
f.writer.Flush()
}
}()
for {
select {
case m := <-f.bufferCh:
f.write(m)
default:
return
}
}
}
|