Blame view
main.go
4.56 KB
a99c98307 first commit |
1 2 3 |
package gologger import ( |
a7081e581 pretty print json |
4 5 |
"bytes" "encoding/json" |
a99c98307 first commit |
6 |
"fmt" |
df74f4a7e new filename format |
7 |
"net/http" |
cccb4b47c log http response |
8 |
"net/http/httputil" |
a99c98307 first commit |
9 |
"os" |
e025a8738 platform agnostic... |
10 |
"path/filepath" |
98708cdaf new version, does... |
11 |
"runtime" |
aa60a45ee changed log file ... |
12 |
"strings" |
3ba7b5695 added mutex locks... |
13 |
"sync" |
baa4468b7 Comments go befor... |
14 |
"time" |
a99c98307 first commit |
15 |
) |
b45f88e17 more readable dat... |
16 |
const dateTimeFormat = "2006-01-02 15:04:05" |
92485819d lint |
17 |
// Block ... |
434e7da25 changed initializ... |
18 19 20 21 22 23 24 |
const ( MaxLogSize5MB int64 = 5 * 1024 * 1024 MaxLogSize1MB int64 = 1 * 1024 * 1024 MaxLogSize500KB int64 = 500 * 1024 MaxLogSize100KB int64 = 100 * 1024 MaxLogSize512B int64 = 512 ) |
a99c98307 first commit |
25 |
|
92485819d lint |
26 |
// Logger ... |
5eaa49d2a new design; allow... |
27 |
type Logger struct { |
98cf2ceeb new interaface; a... |
28 29 |
mu *sync.Mutex outputFile *os.File |
23ce66f0f optional init par... |
30 |
|
98cf2ceeb new interaface; a... |
31 |
outputFileName string |
3e936a3c2 output file name ... |
32 |
fullName string |
98cf2ceeb new interaface; a... |
33 |
maxFileSize int64 |
df74f4a7e new filename format |
34 35 |
splitCount int |
c138614d9 output directory ... |
36 37 |
directory string |
a99c98307 first commit |
38 |
} |
92485819d lint |
39 |
// New ... |
c138614d9 output directory ... |
40 |
func New(name, dir string, maxFileSize int64) (logger *Logger, err error) { |
5eaa49d2a new design; allow... |
41 |
logger = &Logger{} |
23ce66f0f optional init par... |
42 |
|
b45f88e17 more readable dat... |
43 |
logger.outputFileName = name |
98cf2ceeb new interaface; a... |
44 45 |
logger.mu = &sync.Mutex{} logger.maxFileSize = maxFileSize |
c138614d9 output directory ... |
46 |
logger.directory = dir |
a99c98307 first commit |
47 |
|
c138614d9 output directory ... |
48 |
err = os.Mkdir(dir, os.ModePerm) |
98cf2ceeb new interaface; a... |
49 50 |
if err != nil { if !os.IsExist(err) { |
5eaa49d2a new design; allow... |
51 |
return nil, err |
a99c98307 first commit |
52 53 |
} } |
b45f88e17 more readable dat... |
54 55 |
date := strings.Replace(time.Now().Format(dateTimeFormat), ":", ".", -1) logger.outputFileName += " " + date |
3e936a3c2 output file name ... |
56 |
logger.fullName = logger.outputFileName + ".txt" |
c138614d9 output directory ... |
57 58 |
path := filepath.Join(dir, logger.fullName) if logger.outputFile, err = os.Create(path); err != nil { |
98cf2ceeb new interaface; a... |
59 |
return nil, err |
e025a8738 platform agnostic... |
60 |
} |
5eaa49d2a new design; allow... |
61 |
return logger, nil |
98708cdaf new version, does... |
62 |
} |
92485819d lint |
63 |
// Log ... |
df74f4a7e new filename format |
64 |
func (l *Logger) Log(format string, v ...interface{}) { |
372beaf62 refactored if sta... |
65 66 67 68 69 70 71 72 |
if l.outputFile == nil { return } l.mu.Lock() defer l.mu.Unlock() msg := fmt.Sprintf(format, v...) |
b45f88e17 more readable dat... |
73 74 |
s := time.Now().Format(dateTimeFormat) + ": " + msg + " " |
372beaf62 refactored if sta... |
75 76 |
if l.shouldSplit(len(s)) { l.split() |
23ce66f0f optional init par... |
77 |
} |
372beaf62 refactored if sta... |
78 |
l.outputFile.WriteString(s) |
98708cdaf new version, does... |
79 |
} |
92485819d lint |
80 81 82 |
// Print ... func (l *Logger) Print(format string, v ...interface{}) { msg := fmt.Sprintf(format, v...) |
b45f88e17 more readable dat... |
83 84 |
fmt.Printf("%s: %s ", time.Now().Format(dateTimeFormat), msg) |
92485819d lint |
85 |
} |
9dd4c982b add CallerFilenam... |
86 87 |
// CallerFilenameAndLineNumber ... func CallerFilenameAndLineNumber() (string, int) { |
8d63648a3 CallerFilenameAnd... |
88 |
_, path, line, _ := runtime.Caller(2) |
9dd4c982b add CallerFilenam... |
89 90 91 |
file := filepath.Base(path) return file, line } |
92485819d lint |
92 93 |
// PrintTrace ... func (l *Logger) PrintTrace(format string, v ...interface{}) { |
9dd4c982b add CallerFilenam... |
94 |
file, line := CallerFilenameAndLineNumber() |
92485819d lint |
95 96 |
msg := fmt.Sprintf(format, v...) |
b45f88e17 more readable dat... |
97 98 |
fmt.Printf("%s: %s %d: %s ", time.Now().Format(dateTimeFormat), file, line, msg) |
92485819d lint |
99 100 101 102 103 104 105 106 107 108 |
} // Trace ... func (l *Logger) Trace(format string, v ...interface{}) { if l.outputFile == nil { return } l.mu.Lock() defer l.mu.Unlock() |
9dd4c982b add CallerFilenam... |
109 |
file, line := CallerFilenameAndLineNumber() |
92485819d lint |
110 |
msg := fmt.Sprintf(format, v...) |
b45f88e17 more readable dat... |
111 112 |
s := fmt.Sprintf("%s: %s %d: %s ", time.Now().Format(dateTimeFormat), file, line, msg) |
92485819d lint |
113 114 115 116 117 118 119 120 121 |
if l.shouldSplit(len(s)) { l.split() } l.outputFile.WriteString(s) } // PrintAndTrace ... func (l *Logger) PrintAndTrace(format string, v ...interface{}) { |
d9c022688 fixed PrintAndTra... |
122 123 |
l.Print(format, v...) l.Trace(format, v...) |
92485819d lint |
124 125 126 |
} // LogHTTPRequest ... |
093191eb2 much cleaner, muc... |
127 |
func (l *Logger) LogHTTPRequest(req *http.Request, userID string) string { |
1f7fbc601 logging user ID |
128 129 |
if userID == "" { userID = "-" |
372beaf62 refactored if sta... |
130 |
} |
df74f4a7e new filename format |
131 |
|
372beaf62 refactored if sta... |
132 |
var b strings.Builder |
093191eb2 much cleaner, muc... |
133 |
|
372beaf62 refactored if sta... |
134 135 136 |
b.WriteString("Request: ") // CLF-like header |
b45f88e17 more readable dat... |
137 138 |
fmt.Fprintf(&b, "%s %s %s ", req.RemoteAddr, userID, time.Now().Format(dateTimeFormat)) |
cccb4b47c log http response |
139 |
|
093191eb2 much cleaner, muc... |
140 141 142 143 |
body, err := httputil.DumpRequest(req, true) if err != nil { fmt.Fprintf(os.Stderr, "%v ", err) |
cccb4b47c log http response |
144 |
} |
a7081e581 pretty print json |
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
const sepStr = "\r \r " sepIndex := bytes.Index(body, []byte(sepStr)) if sepIndex == -1 { b.WriteString(string(body) + " ") } else { sepIndex += len(sepStr) payload, _ := printJSON(body[sepIndex:]) b.WriteString(string(body[:sepIndex]) + string(payload) + " ") } |
372beaf62 refactored if sta... |
161 |
|
093191eb2 much cleaner, muc... |
162 163 |
return b.String() } |
372beaf62 refactored if sta... |
164 |
|
feba66094 split line constant |
165 |
const splitLine = "==============================================================" |
92485819d lint |
166 |
// LogHTTPResponse ... |
093191eb2 much cleaner, muc... |
167 |
func (l *Logger) LogHTTPResponse(status int, duration time.Duration, size int) string { |
feba66094 split line constant |
168 169 170 171 |
return fmt.Sprintf("Response: %d %v %dB %s ", status, duration, size, splitLine) |
cccb4b47c log http response |
172 |
} |
92485819d lint |
173 |
// CombineHTTPLogs ... |
093191eb2 much cleaner, muc... |
174 |
func (l *Logger) CombineHTTPLogs(in string, out string) { |
372beaf62 refactored if sta... |
175 176 177 |
if l.outputFile == nil { return } |
df74f4a7e new filename format |
178 |
|
372beaf62 refactored if sta... |
179 180 |
l.mu.Lock() defer l.mu.Unlock() |
093191eb2 much cleaner, muc... |
181 |
msg := in + out |
372beaf62 refactored if sta... |
182 183 |
if l.shouldSplit(len(msg)) { l.split() |
98708cdaf new version, does... |
184 |
} |
372beaf62 refactored if sta... |
185 |
l.outputFile.WriteString(msg) |
98708cdaf new version, does... |
186 |
} |
92485819d lint |
187 |
// Close ... |
c138614d9 output directory ... |
188 |
func (l *Logger) Close() error { |
372beaf62 refactored if sta... |
189 |
if l.outputFile == nil { |
c138614d9 output directory ... |
190 |
return nil |
372beaf62 refactored if sta... |
191 |
} |
c138614d9 output directory ... |
192 |
return l.outputFile.Close() |
a99c98307 first commit |
193 |
} |
c138614d9 output directory ... |
194 |
func (l *Logger) split() error { |
372beaf62 refactored if sta... |
195 |
if l.outputFile == nil { |
c138614d9 output directory ... |
196 |
return nil |
372beaf62 refactored if sta... |
197 |
} |
98cf2ceeb new interaface; a... |
198 199 200 |
// close old file err := l.outputFile.Close() if err != nil { |
c138614d9 output directory ... |
201 |
return err |
98cf2ceeb new interaface; a... |
202 |
} |
df74f4a7e new filename format |
203 |
|
98cf2ceeb new interaface; a... |
204 |
// open new file |
c138614d9 output directory ... |
205 206 207 |
l.splitCount++ path := filepath.Join(l.directory, l.outputFileName+fmt.Sprintf("(%d)", l.splitCount)+".txt") l.outputFile, err = os.Create(path) |
a99c98307 first commit |
208 |
|
c138614d9 output directory ... |
209 |
return err |
a99c98307 first commit |
210 |
} |
98cf2ceeb new interaface; a... |
211 212 213 |
func (l *Logger) shouldSplit(nextEntrySize int) bool { stats, _ := l.outputFile.Stat() return int64(nextEntrySize) >= (l.maxFileSize - stats.Size()) |
a99c98307 first commit |
214 |
} |
a7081e581 pretty print json |
215 216 217 218 219 220 |
func printJSON(in []byte) (out []byte, err error) { var buf bytes.Buffer err = json.Indent(&buf, in, "", " ") return buf.Bytes(), err } |