forked from phuslu/log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsv.go
293 lines (263 loc) · 6.45 KB
/
tsv.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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
package log
import (
"io"
"net"
"net/netip"
"os"
"runtime"
"strconv"
"sync"
)
// TSVLogger represents an active logging object that generates lines of TSV output to an io.Writer.
type TSVLogger struct {
Separator byte
Writer io.Writer
}
// TSVEntry represents a tsv log entry. It is instanced by one of TSVLogger and finalized by the Msg method.
type TSVEntry struct {
buf []byte
w io.Writer
sep byte
}
var tepool = sync.Pool{
New: func() interface{} {
return new(TSVEntry)
},
}
// New starts a new tsv message.
func (l *TSVLogger) New() (e *TSVEntry) {
e = tepool.Get().(*TSVEntry)
e.sep = l.Separator
if l.Writer != nil {
e.w = l.Writer
} else {
e.w = os.Stderr
}
if e.sep == 0 {
e.sep = '\t'
}
e.buf = e.buf[:0]
return
}
// Timestamp adds the current time as UNIX timestamp
func (e *TSVEntry) Timestamp() *TSVEntry {
var tmp [11]byte
sec, _, _ := now()
// separator
tmp[10] = e.sep
// seconds
is := sec % 100 * 2
sec /= 100
tmp[9] = smallsString[is+1]
tmp[8] = smallsString[is]
is = sec % 100 * 2
sec /= 100
tmp[7] = smallsString[is+1]
tmp[6] = smallsString[is]
is = sec % 100 * 2
sec /= 100
tmp[5] = smallsString[is+1]
tmp[4] = smallsString[is]
is = sec % 100 * 2
sec /= 100
tmp[3] = smallsString[is+1]
tmp[2] = smallsString[is]
is = sec % 100 * 2
tmp[1] = smallsString[is+1]
tmp[0] = smallsString[is]
// append to buf
e.buf = append(e.buf, tmp[:]...)
return e
}
// TimestampMS adds the current time with milliseconds as UNIX timestamp
func (e *TSVEntry) TimestampMS() *TSVEntry {
var tmp [14]byte
sec, nsec, _ := now()
// separator
tmp[13] = e.sep
// milli seconds
a := int64(nsec) / 1000000
is := a % 100 * 2
tmp[12] = smallsString[is+1]
tmp[11] = smallsString[is]
tmp[10] = byte('0' + a/100)
// seconds
is = sec % 100 * 2
sec /= 100
tmp[9] = smallsString[is+1]
tmp[8] = smallsString[is]
is = sec % 100 * 2
sec /= 100
tmp[7] = smallsString[is+1]
tmp[6] = smallsString[is]
is = sec % 100 * 2
sec /= 100
tmp[5] = smallsString[is+1]
tmp[4] = smallsString[is]
is = sec % 100 * 2
sec /= 100
tmp[3] = smallsString[is+1]
tmp[2] = smallsString[is]
is = sec % 100 * 2
tmp[1] = smallsString[is+1]
tmp[0] = smallsString[is]
// append to buf
e.buf = append(e.buf, tmp[:]...)
return e
}
// Caller adds the file:line of to the entry.
func (e *TSVEntry) Caller(depth int) *TSVEntry {
var rpc [1]uintptr
i := callers(depth, rpc[:])
if i < 1 {
return e
}
frame, _ := runtime.CallersFrames(rpc[:]).Next()
file := frame.File
for i = len(file) - 1; i >= 0; i-- {
if file[i] == '/' {
break
}
}
if i > 0 {
file = file[i+1:]
}
e.buf = append(e.buf, file...)
e.buf = append(e.buf, ':')
e.buf = strconv.AppendInt(e.buf, int64(frame.Line), 10)
e.buf = append(e.buf, e.sep)
return e
}
// Bool append the b as a bool to the entry, the value of output bool is 0 or 1.
func (e *TSVEntry) Bool(b bool) *TSVEntry {
if b {
e.buf = append(e.buf, '1', e.sep)
} else {
e.buf = append(e.buf, '0', e.sep)
}
return e
}
// BoolString append the b as a bool to the entry, the value of output bool is false or true.
func (e *TSVEntry) BoolString(b bool) *TSVEntry {
if b {
e.buf = append(e.buf, 't', 'r', 'u', 'e', e.sep)
} else {
e.buf = append(e.buf, 'f', 'a', 'l', 's', 'e', e.sep)
}
return e
}
// Byte append the b as a byte to the entry.
func (e *TSVEntry) Byte(b byte) *TSVEntry {
e.buf = append(e.buf, b, e.sep)
return e
}
// Float64 adds a float64 to the entry.
func (e *TSVEntry) Float64(f float64) *TSVEntry {
e.buf = strconv.AppendFloat(e.buf, f, 'f', -1, 64)
e.buf = append(e.buf, e.sep)
return e
}
// Int64 adds a int64 to the entry.
func (e *TSVEntry) Int64(i int64) *TSVEntry {
e.buf = strconv.AppendInt(e.buf, i, 10)
e.buf = append(e.buf, e.sep)
return e
}
// Uint64 adds a uint64 to the entry.
func (e *TSVEntry) Uint64(i uint64) *TSVEntry {
e.buf = strconv.AppendUint(e.buf, i, 10)
e.buf = append(e.buf, e.sep)
return e
}
// Float32 adds a float32 to the entry.
func (e *TSVEntry) Float32(f float32) *TSVEntry {
return e.Float64(float64(f))
}
// Int adds a int to the entry.
func (e *TSVEntry) Int(i int) *TSVEntry {
return e.Int64(int64(i))
}
// Int32 adds a int32 to the entry.
func (e *TSVEntry) Int32(i int32) *TSVEntry {
return e.Int64(int64(i))
}
// Int16 adds a int16 to the entry.
func (e *TSVEntry) Int16(i int16) *TSVEntry {
return e.Int64(int64(i))
}
// Int8 adds a int8 to the entry.
func (e *TSVEntry) Int8(i int8) *TSVEntry {
return e.Int64(int64(i))
}
// Uint32 adds a uint32 to the entry.
func (e *TSVEntry) Uint32(i uint32) *TSVEntry {
return e.Uint64(uint64(i))
}
// Uint16 adds a uint16 to the entry.
func (e *TSVEntry) Uint16(i uint16) *TSVEntry {
return e.Uint64(uint64(i))
}
// Uint8 adds a uint8 to the entry.
func (e *TSVEntry) Uint8(i uint8) *TSVEntry {
return e.Uint64(uint64(i))
}
// Uint adds a uint to the entry.
func (e *TSVEntry) Uint(i uint) *TSVEntry {
return e.Uint64(uint64(i))
}
// Str adds a string to the entry.
func (e *TSVEntry) Str(val string) *TSVEntry {
e.buf = append(e.buf, val...)
e.buf = append(e.buf, e.sep)
return e
}
// Bytes adds a bytes as string to the entry.
func (e *TSVEntry) Bytes(val []byte) *TSVEntry {
e.buf = append(e.buf, val...)
e.buf = append(e.buf, e.sep)
return e
}
// IPAddr adds IPv4 or IPv6 Address to the entry.
func (e *TSVEntry) IPAddr(ip net.IP) *TSVEntry {
if ip4 := ip.To4(); ip4 != nil {
e.buf = strconv.AppendInt(e.buf, int64(ip4[0]), 10)
e.buf = append(e.buf, '.')
e.buf = strconv.AppendInt(e.buf, int64(ip4[1]), 10)
e.buf = append(e.buf, '.')
e.buf = strconv.AppendInt(e.buf, int64(ip4[2]), 10)
e.buf = append(e.buf, '.')
e.buf = strconv.AppendInt(e.buf, int64(ip4[3]), 10)
} else {
e.buf = append(e.buf, ip.String()...)
}
e.buf = append(e.buf, e.sep)
return e
}
// NetIPAddr adds IPv4 or IPv6 Address to the entry.
func (e *TSVEntry) NetIPAddr(ip netip.Addr) *TSVEntry {
e.buf = ip.AppendTo(e.buf)
e.buf = append(e.buf, e.sep)
return e
}
// NetIPAddrPort adds IPv4 or IPv6 with Port Address to the entry.
func (e *TSVEntry) NetIPAddrPort(ipPort netip.AddrPort) *TSVEntry {
e.buf = ipPort.AppendTo(e.buf)
e.buf = append(e.buf, e.sep)
return e
}
// NetIPPrefix adds IPv4 or IPv6 Prefix (address and mask) to the entry.
func (e *TSVEntry) NetIPPrefix(pfx netip.Prefix) *TSVEntry {
e.buf = pfx.AppendTo(e.buf)
e.buf = append(e.buf, e.sep)
return e
}
// Msg sends the entry.
func (e *TSVEntry) Msg() {
if len(e.buf) != 0 {
e.buf[len(e.buf)-1] = '\n'
}
_, _ = e.w.Write(e.buf)
if cap(e.buf) <= bbcap {
tepool.Put(e)
}
}