-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlog.c
101 lines (77 loc) · 2.05 KB
/
log.c
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
#include "log.h"
static pthread_mutex_t lock;
static struct {
pthread_mutex_t lock;
FILE *fp;
int level;
int quiet;
} L;
static const char *level_names[] = {
"TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
};
static const char *level_colors[] = {
"\x1b[94m", "\x1b[36m", "\x1b[32m", "\x1b[33m", "\x1b[31m", "\x1b[35m"
};
void log_set_fp(FILE *fp)
{
L.fp = fp;
}
void log_set_level(int level)
{
L.level = level;
}
void log_set_quiet(int enable)
{
L.quiet = enable;
}
void log_log(int level, const char *file, int line, const char *fmt, ...)
{
char buf[64];
if (level < L.level) { return; }
pthread_mutex_lock(&lock);
time_t t = time(NULL);
struct tm *lt = localtime(&t);
if (!L.quiet)
{
va_list args;
buf[strftime(buf, sizeof(buf), "%H:%M:%S", lt)] = '\0';
fprintf(stderr, "%s %s%-5s\x1b[0m\x1b[90m %s:%d:\x1b[0m ",
buf, level_colors[level], level_names[level], file, line);
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
fprintf(stderr, "\n");
fflush(stderr);
}
if (L.fp)
{
va_list args;
buf[strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", lt)] = '\0';
fprintf(L.fp, "%s %-5s %s:%d: ", buf, level_names[level], file, line);
va_start(args, fmt);
vfprintf(L.fp, fmt, args);
va_end(args);
fprintf(L.fp, "\n");
fflush(L.fp);
}
pthread_mutex_unlock(&lock);
}
void print_backtrace()
{
pthread_mutex_lock(&lock);
int j, nptrs;
void *buffer[BT_BUF_SIZE];
char **strings;
nptrs = backtrace(buffer, BT_BUF_SIZE);
printf("backtrace() returned %d addresses\n", nptrs);
strings = backtrace_symbols(buffer, nptrs);
if (strings == NULL)
{
perror("backtrace_symbols");
exit(EXIT_FAILURE);
}
for (j = 0; j < nptrs; j++)
printf("%s\n", strings[j]);
free(strings);
pthread_mutex_unlock(&lock);
}