main.go
4.75 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
224
225
226
227
228
229
230
231
232
233
234
235
236
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
)
// Logger ...
type Logger struct {
mu *sync.Mutex
outputFile *os.File
outputFileName string
fullName string
maxFileSize int64
splitCount int
directory string
}
// New ...
func New(name, dir string, maxFileSize int64) (logger *Logger, err error) {
logger = &Logger{}
logger.outputFileName = name
logger.mu = &sync.Mutex{}
logger.maxFileSize = maxFileSize
logger.directory = dir
err = os.Mkdir(dir, os.ModePerm)
if err != nil {
if !os.IsExist(err) {
return nil, err
}
}
date := strings.Replace(time.Now().Format(dateTimeFormat), ":", ".", -1)
logger.outputFileName += " " + date
logger.fullName = logger.outputFileName + ".txt"
path := filepath.Join(dir, logger.fullName)
if logger.outputFile, err = os.Create(path); err != nil {
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)
}
const MaxStackDepth = 10000
// CallStack
func CallStack() (stack string) {
callers := make([]uintptr, MaxStackDepth) // min 1
stackDepth := runtime.Callers(2, callers)
frames := runtime.CallersFrames(callers)
for i := 0; i < stackDepth; i++ {
if i >= 2 { // skip runtime and startup
frame, next := frames.Next()
stack += fmt.Sprintf("[%s %d]\n", frame.File, frame.Line)
if !next {
break
}
}
}
return
}
// PrintTrace ...
func (l *Logger) PrintTrace(format string, v ...interface{}) {
stack := CallStack()
msg := fmt.Sprintf(format, v...)
fmt.Printf("%s:\n%s\n%s\n", time.Now().Format(dateTimeFormat), stack, msg)
}
// Trace ...
func (l *Logger) Trace(format string, v ...interface{}) {
if l.outputFile == nil {
return
}
l.mu.Lock()
defer l.mu.Unlock()
stack := CallStack()
msg := fmt.Sprintf(format, v...)
s := fmt.Sprintf("%s:\n%s\n%s\n", time.Now().Format(dateTimeFormat), stack, 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() error {
if l.outputFile == nil {
return nil
}
return l.outputFile.Close()
}
func (l *Logger) split() error {
if l.outputFile == nil {
return nil
}
// close old file
err := l.outputFile.Close()
if err != nil {
return err
}
// open new file
l.splitCount++
path := filepath.Join(l.directory, l.outputFileName+fmt.Sprintf("(%d)", l.splitCount)+".txt")
l.outputFile, err = os.Create(path)
return err
}
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
}