forked from danielshaving/redis-cpp17
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxLog.cpp
536 lines (432 loc) · 9.86 KB
/
xLog.cpp
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
#include "xLog.h"
const char digits[] = "9876543210123456789";
const char digitsHex[] = "0123456789ABCDEF";
const char* zero = digits + 9;
template<typename T>
size_t convert(char buf[], T value)
{
T i = value;
char* p = buf;
do
{
int lsd = static_cast<int>(i % 10);
i /= 10;
*p++ = zero[lsd];
} while (i != 0);
if (value < 0)
{
*p++ = '-';
}
*p = '\0';
std::reverse(buf, p);
return p - buf;
}
size_t convertHex(char buf[], uintptr_t value)
{
uintptr_t i = value;
char* p = buf;
do
{
int lsd = static_cast<int>(i % 16);
i /= 16;
*p++ = digitsHex[lsd];
} while (i != 0);
*p = '\0';
std::reverse(buf, p);
return p - buf;
}
AppendFile::AppendFile(std::string &filename)
: fp(::fopen(filename.c_str(), "ae")), // 'e' for O_CLOEXEC
writtenBytes(0)
{
assert(fp);
::setbuffer(fp, buffer, sizeof buffer);
}
AppendFile::~AppendFile()
{
::fclose(fp);
}
void AppendFile::append(const char* logline, const size_t len)
{
size_t n = write(logline, len);
size_t remain = len - n;
while (remain > 0)
{
size_t x = write(logline + n, remain);
if (x == 0)
{
int err = ferror(fp);
if (err)
{
//fprintf(stderr, "AppendFile::append() failed %s\n", strerror_tl(err));
}
break;
}
n += x;
remain = len - n; // remain -= x
}
writtenBytes += len;
}
void AppendFile::flush()
{
::fflush(fp);
}
size_t AppendFile::write(const char* logline, size_t len)
{
// #undef fwrite_unlocked
return ::fwrite_unlocked(logline, 1, len, fp);
}
xLogFile::xLogFile(const std::string& basename,
size_t rollSize,
bool threadSafe,
int flushInterval,
int checkEveryN)
: basename(basename),
rollSize(rollSize),
flushInterval(flushInterval),
checkEveryN(checkEveryN),
count(0),
startOfPeriod(0),
lastRoll(0),
lastFlush(0)
{
assert(basename.find('/') == std::string::npos);
rollFile();
}
xLogFile::~xLogFile()
{
}
void xLogFile::append(const char* logline, int len)
{
std::unique_lock<std::mutex> lk(mutex);
append_unlocked(logline, len);
}
void xLogFile::flush()
{
std::unique_lock<std::mutex> lk(mutex);
file->flush();
}
void xLogFile::append_unlocked(const char* logline, int len)
{
file->append(logline, len);
if (file->getWrittenBytes() > rollSize)
{
rollFile();
}
else
{
++count;
if (count >= checkEveryN)
{
count = 0;
time_t now = ::time(NULL);
time_t thisPeriod = now / kRollPerSeconds * kRollPerSeconds;
if (thisPeriod != startOfPeriod)
{
rollFile();
}
else if (now - lastFlush > flushInterval)
{
lastFlush = now;
file->flush();
}
}
}
}
bool xLogFile::rollFile()
{
time_t now = 0;
std::string filename = getLogFileName(basename, &now);
time_t start = now / kRollPerSeconds* kRollPerSeconds;
if (now > lastRoll)
{
lastRoll = now;
lastFlush = now;
startOfPeriod = start;
file.reset(new AppendFile(filename));
return true;
}
return false;
}
std::string xLogFile::getLogFileName(const std::string& basename, time_t* now)
{
std::string filename;
filename.reserve(basename.size() + 64);
filename = basename;
char timebuf[32];
struct tm tm;
*now = time(NULL);
gmtime_r(now, &tm); // FIXME: localtime_r ?
strftime(timebuf, sizeof timebuf, ".%Y%m%d-%H%M%S", &tm);
filename += timebuf;
filename += ".log";
return filename;
}
xAsyncLogging::xAsyncLogging(std::string baseName,size_t rollSize,int flushInterval)
:baseName(baseName),
flushInterval(flushInterval),
running(false),
rollSize(rollSize),
thread(nullptr),
currentBuffer(new Buffer),
nextBuffer(new Buffer),
buffers()
{
currentBuffer->bzero();
nextBuffer->bzero();
buffers.reserve(16);
}
void xAsyncLogging::append(const char * logline,int len)
{
std::unique_lock<std::mutex> lk(mutex);
if(currentBuffer->avail() > len)
{
currentBuffer->append(logline,len);
}
else
{
buffers.push_back(std::unique_ptr<Buffer>(currentBuffer.release()));
if(nextBuffer)
{
currentBuffer = std::move(nextBuffer);
}
else
{
currentBuffer.reset(new Buffer);
}
currentBuffer->append(logline,len);
condition.notify_one();
}
}
void xAsyncLogging::threadFunc()
{
xLogFile output(baseName,rollSize,false);
BufferPtr newBuffer1(new Buffer);
BufferPtr newBuffer2(new Buffer);
newBuffer1->bzero();
newBuffer2->bzero();
BufferVector buffersToWrite;
buffersToWrite.reserve(16);
running = true;
condition.notify_one();
while(running)
{
assert(newBuffer1 && newBuffer1->length() == 0);
assert(newBuffer2 && newBuffer2->length() == 0);
assert(buffersToWrite.empty());
{
std::unique_lock<std::mutex> lk(mutex);
if(buffers.empty())
{
condition.wait_for(lk,std::chrono::seconds(3));
}
buffers.push_back(std::unique_ptr<Buffer>(currentBuffer.release()));
currentBuffer = std::move(newBuffer1);
buffersToWrite.swap(buffers);
if(!nextBuffer)
{
nextBuffer = std::move(newBuffer2);
}
}
assert(!buffersToWrite.empty());
if(buffersToWrite.size() > 25)
{
}
for (size_t i = 0; i < buffersToWrite.size(); ++i)
{
// FIXME: use unbuffered stdio FILE ? or use ::writev ?
output.append(buffersToWrite[i]->getData(), buffersToWrite[i]->length());
}
if (buffersToWrite.size() > 2)
{
// drop non-bzero-ed buffers, avoid trashing
buffersToWrite.resize(2);
}
if (!newBuffer1)
{
assert(!buffersToWrite.empty());
newBuffer1 = std::move(buffersToWrite.back());
buffersToWrite.pop_back();
newBuffer1->reset();
}
if (!newBuffer2)
{
assert(!buffersToWrite.empty());
newBuffer2 = std::move(buffersToWrite.back());
buffersToWrite.pop_back();
newBuffer2->reset();
}
buffersToWrite.clear();
output.flush();
}
output.flush();
}
template<typename T>
void xLogStream::formatInteger(T v)
{
if (buffer.avail() >= kMaxNumericSize)
{
size_t len = convert(buffer.current(), v);
buffer.add(len);
}
}
xLogStream& xLogStream::operator<<(short v)
{
*this << static_cast<int>(v);
return *this;
}
xLogStream& xLogStream::operator<<(unsigned short v)
{
*this << static_cast<unsigned int>(v);
return *this;
}
xLogStream& xLogStream::operator<<(int v)
{
formatInteger(v);
return *this;
}
xLogStream& xLogStream::operator<<(unsigned int v)
{
formatInteger(v);
return *this;
}
xLogStream& xLogStream::operator<<(long v)
{
formatInteger(v);
return *this;
}
xLogStream& xLogStream::operator<<(unsigned long v)
{
formatInteger(v);
return *this;
}
xLogStream& xLogStream::operator<<(long long v)
{
formatInteger(v);
return *this;
}
xLogStream& xLogStream::operator<<(unsigned long long v)
{
formatInteger(v);
return *this;
}
xLogStream& xLogStream::operator<<(const void* p)
{
uintptr_t v = reinterpret_cast<uintptr_t>(p);
if (buffer.avail() >= kMaxNumericSize)
{
char* buf = buffer.current();
buf[0] = '0';
buf[1] = 'x';
size_t len = convertHex(buf+2, v);
buffer.add(len+2);
}
return *this;
}
// FIXME: replace this with Grisu3 by Florian Loitsch.
xLogStream& xLogStream::operator<<(double v)
{
if (buffer.avail() >= kMaxNumericSize)
{
int len = snprintf(buffer.current(), kMaxNumericSize, "%.12g", v);
buffer.add(len);
}
return *this;
}
xLogger::LogLevel initLogLevel()
{
if (::getenv("TRACE"))
return xLogger::TRACE;
else if (::getenv("DEBUG"))
return xLogger::DEBUG;
else
return xLogger::INFO;
}
xLogger::LogLevel g_logLevel = initLogLevel();
const char* LogLevelName[xLogger::NUM_LOG_LEVELS] =
{
"TRACE ",
"DEBUG ",
"INFO ",
"WARN ",
"ERROR ",
"FATAL ",
};
void defaultOutput(const char* msg, int len)
{
size_t n = fwrite(msg, 1, len, stdout);
//FIXME check n
(void)n;
}
void defaultFlush()
{
fflush(stdout);
}
xLogger::OutputFunc g_output = defaultOutput;
xLogger::FlushFunc g_flush = defaultFlush;
xLogger::xImpl::xImpl(LogLevel level, int savedErrno, const xSourceFile& file, int line)
: stream(),
level(level),
line(line),
baseName(file)
{
formatTime();
}
void xLogger::xImpl::formatTime()
{
char t_time[32];
char timebuf[32];
struct tm tm_time;
time_t now = time(0);
gmtime_r(&now, &tm_time);
int len = snprintf(t_time, sizeof(t_time), "%4d%02d%02d %02d:%02d:%02d",
tm_time.tm_year + 1900, tm_time.tm_mon + 1, tm_time.tm_mday,
tm_time.tm_hour + 8, tm_time.tm_min, tm_time.tm_sec);
assert(len == 17); (void)len;
stream<<T(t_time,17);
stream<<" ";
}
void xLogger::xImpl::finish()
{
stream << " " << T(baseName.data,baseName.size)<< ':' << line<<"\r";
}
xLogger::xLogger(xSourceFile file, int line)
:impl(INFO, 0, file, line)
{
}
xLogger::xLogger(xSourceFile file, int line, LogLevel level, const char* func)
: impl(level, 0, file, line)
{
impl.stream << func << ' ';
}
xLogger::xLogger(xSourceFile file, int line, LogLevel level)
: impl(level, 0, file, line)
{
}
xLogger::xLogger(xSourceFile file, int line, bool toAbort)
: impl(toAbort?FATAL:ERROR, errno, file, line)
{
}
xLogger::~xLogger()
{
impl.finish();
const xLogStream::Buffer& buf(stream().getBuffer());
g_output(buf.getData(), buf.length());
if (impl.level == FATAL)
{
g_flush();
abort();
}
}
void xLogger::setLogLevel(xLogger::LogLevel level)
{
g_logLevel = level;
}
void xLogger::setOutput(OutputFunc out)
{
g_output = out;
}
void xLogger::setFlush(FlushFunc flush)
{
g_flush = flush;
}