main.go
4.81 KB
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
package gologger
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"net/http/httputil"
"os"
"path/filepath"
"runtime"
"strings"
"sync"
"time"
)
const dateTimeFormat = "2006-01-02 15:04:05"
// Block ...
const (
MaxLogSize5MB int64 = 5 * 1024 * 1024
MaxLogSize1MB int64 = 1 * 1024 * 1024
MaxLogSize500KB int64 = 500 * 1024
MaxLogSize100KB int64 = 100 * 1024
MaxLogSize512B int64 = 512
logDirName = "log"
)
// Logger ...
type Logger struct {
mu *sync.Mutex
outputFile *os.File
outputFileName string
fullName string
maxFileSize int64
splitCount int
}
// New ...
func New(name string, maxFileSize int64) (logger *Logger, err error) {
logger = &Logger{}
logger.outputFileName = name
logger.mu = &sync.Mutex{}
logger.maxFileSize = maxFileSize
err = os.Mkdir(logDirName, os.ModePerm)
if err != nil {
if !os.IsExist(err) {
fmt.Fprintf(os.Stderr, "gologger: couldn't create event log directory: %s\n", err.Error())
return nil, err
}
}
date := strings.Replace(time.Now().Format(dateTimeFormat), ":", ".", -1)
logger.outputFileName += " " + date
logger.fullName = logger.outputFileName + ".txt"
path := filepath.Join(logDirName, logger.fullName)
logger.outputFile, err = os.Create(path)
if err != nil {
fmt.Fprintf(os.Stderr, "gologger: couldn't create event log file: %s\n", err.Error())
return nil, err
}
return logger, nil
}
// Log ...
func (l *Logger) Log(format string, v ...interface{}) {
if l.outputFile == nil {
return
}
l.mu.Lock()
defer l.mu.Unlock()
msg := fmt.Sprintf(format, v...)
s := time.Now().Format(dateTimeFormat) + ": " + msg + "\n"
if l.shouldSplit(len(s)) {
l.split()
}
l.outputFile.WriteString(s)
}
// Print ...
func (l *Logger) Print(format string, v ...interface{}) {
msg := fmt.Sprintf(format, v...)
fmt.Printf("%s: %s\n", time.Now().Format(dateTimeFormat), msg)
}
// PrintTrace ...
func (l *Logger) PrintTrace(format string, v ...interface{}) {
_, file, line, _ := runtime.Caller(1)
msg := fmt.Sprintf(format, v...)
fmt.Printf("%s: %s %d: %s\n", time.Now().Format(dateTimeFormat), file, line, msg)
}
// Trace ...
func (l *Logger) Trace(format string, v ...interface{}) {
if l.outputFile == nil {
return
}
l.mu.Lock()
defer l.mu.Unlock()
_, file, line, _ := runtime.Caller(1)
msg := fmt.Sprintf(format, v...)
s := fmt.Sprintf("%s: %s %d: %s\n", time.Now().Format(dateTimeFormat), file, line, msg)
if l.shouldSplit(len(s)) {
l.split()
}
l.outputFile.WriteString(s)
}
// PrintAndTrace ...
func (l *Logger) PrintAndTrace(format string, v ...interface{}) {
l.Print(format, v)
l.Trace(format, v)
}
// LogHTTPRequest ...
func (l *Logger) LogHTTPRequest(req *http.Request, userID string) string {
if userID == "" {
userID = "-"
}
var b strings.Builder
b.WriteString("Request:\n")
// CLF-like header
fmt.Fprintf(&b, "%s %s %s\n", req.RemoteAddr, userID, time.Now().Format(dateTimeFormat))
body, err := httputil.DumpRequest(req, true)
if err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
}
const sepStr = "\r\n\r\n"
sepIndex := bytes.Index(body, []byte(sepStr))
if sepIndex == -1 {
b.WriteString(string(body) + "\n\n")
} else {
sepIndex += len(sepStr)
payload, _ := printJSON(body[sepIndex:])
b.WriteString(string(body[:sepIndex]) + string(payload) + "\n\n")
}
return b.String()
}
const splitLine = "=============================================================="
// LogHTTPResponse ...
func (l *Logger) LogHTTPResponse(status int, duration time.Duration, size int) string {
return fmt.Sprintf("Response:\n%d %v %dB\n%s\n", status, duration, size, splitLine)
}
// CombineHTTPLogs ...
func (l *Logger) CombineHTTPLogs(in string, out string) {
if l.outputFile == nil {
return
}
l.mu.Lock()
defer l.mu.Unlock()
msg := in + out
if l.shouldSplit(len(msg)) {
l.split()
}
l.outputFile.WriteString(msg)
}
// Close ...
func (l *Logger) Close() {
if l.outputFile == nil {
return
}
err := l.outputFile.Close()
if err != nil {
fmt.Fprintf(os.Stderr, "gologger: couldn't close event log file: %s\n", err.Error())
}
}
func (l *Logger) split() {
if l.outputFile == nil {
return
}
// close old file
err := l.outputFile.Close()
if err != nil {
fmt.Fprintf(os.Stderr, "gologger: split: couldn't close event file\n")
return
}
l.splitCount++
// open new file
var errnew error
path := filepath.Join(logDirName, l.outputFileName+fmt.Sprintf("(%d)", l.splitCount)+".txt")
l.outputFile, errnew = os.Create(path)
if errnew != nil {
fmt.Fprintf(os.Stderr, "gologger: couldn't create new event log file: %s\n", err.Error())
}
}
func (l *Logger) shouldSplit(nextEntrySize int) bool {
stats, _ := l.outputFile.Stat()
return int64(nextEntrySize) >= (l.maxFileSize - stats.Size())
}
func printJSON(in []byte) (out []byte, err error) {
var buf bytes.Buffer
err = json.Indent(&buf, in, "", " ")
return buf.Bytes(), err
}