forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cyclicWriter.go
207 lines (190 loc) · 6.28 KB
/
cyclicWriter.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
// Copyright (C) 2019-2023 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand 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.
//
// go-algorand 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 go-algorand. If not, see <https://www.gnu.org/licenses/>.
package logging
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"text/template"
"time"
"github.com/algorand/go-deadlock"
)
// CyclicFileWriter implements the io.Writer interface and wraps an underlying file.
// It ensures that the file never grows over a limit.
type CyclicFileWriter struct {
mu deadlock.Mutex
writer *os.File
liveLog string
nextWrite uint64
limit uint64
logStart time.Time
maxLogAge time.Duration
archiveFilename *template.Template
}
// MakeCyclicFileWriter returns a writer that wraps a file to ensure it never grows too large
func MakeCyclicFileWriter(liveLogFilePath string, archiveFilePath string, sizeLimitBytes uint64, maxLogAge time.Duration) *CyclicFileWriter {
var err error
cyclic := CyclicFileWriter{writer: nil, liveLog: liveLogFilePath, nextWrite: 0, limit: sizeLimitBytes, maxLogAge: maxLogAge}
cyclic.archiveFilename = template.New("archiveFilename")
cyclic.archiveFilename, err = cyclic.archiveFilename.Parse(archiveFilePath)
if err != nil {
panic(fmt.Sprintf("bad LogArchiveName: %s", err))
}
cyclic.logStart = time.Now()
fs, err := os.Stat(liveLogFilePath)
if err == nil {
cyclic.nextWrite = uint64(fs.Size())
}
writer, err := os.OpenFile(liveLogFilePath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
panic(fmt.Sprintf("CyclicFileWriter: cannot open log file %v", err))
}
cyclic.writer = writer
return &cyclic
}
type archiveFilenameTemplateData struct {
Year string
Month string
Day string
Hour string
Minute string
Second string
EndYear string
EndMonth string
EndDay string
EndHour string
EndMinute string
EndSecond string
}
func (cyclic *CyclicFileWriter) getArchiveFilename(now time.Time) string {
buf := strings.Builder{}
cyclic.archiveFilename.Execute(&buf, archiveFilenameTemplateData{
fmt.Sprintf("%04d", cyclic.logStart.Year()),
fmt.Sprintf("%02d", cyclic.logStart.Month()),
fmt.Sprintf("%02d", cyclic.logStart.Day()),
fmt.Sprintf("%02d", cyclic.logStart.Hour()),
fmt.Sprintf("%02d", cyclic.logStart.Minute()),
fmt.Sprintf("%02d", cyclic.logStart.Second()),
fmt.Sprintf("%04d", now.Year()),
fmt.Sprintf("%02d", now.Month()),
fmt.Sprintf("%02d", now.Day()),
fmt.Sprintf("%02d", now.Hour()),
fmt.Sprintf("%02d", now.Minute()),
fmt.Sprintf("%02d", now.Second()),
})
return buf.String()
}
func (cyclic *CyclicFileWriter) getArchiveGlob() string {
buf := strings.Builder{}
cyclic.archiveFilename.Execute(&buf, archiveFilenameTemplateData{
"*", "*", "*", "*", "*", "*",
"*", "*", "*", "*", "*", "*",
})
return buf.String()
}
func procWait(cmd *exec.Cmd, cause string) {
err := cmd.Wait()
if err != nil {
fmt.Fprintf(os.Stderr, "%s: %s\n", cause, err)
}
}
// Write ensures the the underlying file can store an additional len(p) bytes. If there is not enough room left it seeks
// to the beginning of the file.
func (cyclic *CyclicFileWriter) Write(p []byte) (n int, err error) {
cyclic.mu.Lock()
defer cyclic.mu.Unlock()
if uint64(len(p)) > cyclic.limit {
// there's no hope for writing this entry to the log
// for the large lines this is a clear indication something does wrong, dump data into stderr
const minDebugLogLineSize = 10 * 1024 * 1024
if len(p) >= minDebugLogLineSize {
buf := make([]byte, 16*1024)
stlen := runtime.Stack(buf, false)
fmt.Fprintf(os.Stderr, "Attempt to write a large log line:\n%s\n", string(buf[:stlen]))
fmt.Fprintf(os.Stderr, "The offending line:\n%s\n", string(p[:4096]))
}
return 0, fmt.Errorf("CyclicFileWriter: input too long to write. Len = %v", len(p))
}
if cyclic.nextWrite+uint64(len(p)) > cyclic.limit {
now := time.Now()
// we don't have enough space to write the entry, so archive data
cyclic.writer.Close()
var err error
globPath := cyclic.getArchiveGlob()
oldarchives, err := filepath.Glob(globPath)
if err != nil && !os.IsNotExist(err) {
fmt.Fprintf(os.Stderr, "%s: glob err: %s\n", globPath, err)
} else if cyclic.maxLogAge != 0 {
tooOld := now.Add(-cyclic.maxLogAge)
for _, path := range oldarchives {
finfo, err := os.Stat(path)
if err != nil {
fmt.Fprintf(os.Stderr, "%s: stat: %s\n", path, err)
continue
}
if finfo.ModTime().Before(tooOld) {
err = os.Remove(path)
if err != nil {
fmt.Fprintf(os.Stderr, "%s: rm: %s\n", path, err)
}
}
}
}
archivePath := cyclic.getArchiveFilename(now)
shouldGz := false
shouldBz2 := false
if strings.HasSuffix(archivePath, ".gz") {
shouldGz = true
archivePath = archivePath[:len(archivePath)-3]
} else if strings.HasSuffix(archivePath, ".bz2") {
shouldBz2 = true
archivePath = archivePath[:len(archivePath)-4]
}
if err = os.Rename(cyclic.liveLog, archivePath); err != nil {
panic(fmt.Sprintf("CyclicFileWriter: cannot archive full log %v", err))
}
if shouldGz {
cmd := exec.Command("gzip", archivePath)
err = cmd.Start()
if err != nil {
fmt.Fprintf(os.Stderr, "%s: could not gzip: %s", archivePath, err)
} else {
go procWait(cmd, archivePath)
}
} else if shouldBz2 {
cmd := exec.Command("bzip2", archivePath)
err = cmd.Start()
if err != nil {
fmt.Fprintf(os.Stderr, "%s: could not bzip2: %s", archivePath, err)
} else {
go procWait(cmd, archivePath)
}
}
cyclic.logStart = now
cyclic.writer, err = os.OpenFile(cyclic.liveLog, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0666)
if err != nil {
panic(fmt.Sprintf("CyclicFileWriter: cannot open log file %v", err))
}
cyclic.nextWrite = 0
}
// write the data
n, err = cyclic.writer.Write(p)
cyclic.nextWrite += uint64(n)
return
}