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
|
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include "log_colored.h"
int log_open_colored(void)
{
if (!getenv("TERM")) {
fprintf(stderr, "%s\n", "Missing TERM variable in your environment.");
return 1;
}
if (!strstr(getenv("TERM"), "linux")
&& !strstr(getenv("TERM"), "xterm"))
{
fprintf(stderr, "%s\n", "Unsupported TERM variable in your environment");
return 1;
}
return 0;
}
void log_close_colored(void)
{
return;
}
void log_fmt_colored(log_priority prio, const char *fmt, ...)
{
char out[LOGMSG_MAXLEN+1] = {0};
va_list arglist;
assert(fmt);
va_start(arglist, fmt);
assert( vsnprintf(&out[0], LOGMSG_MAXLEN, fmt, arglist) >= 0 );
va_end(arglist);
switch (prio) {
case DEBUG:
printf("[DEBUG] %s\n", out);
break;
case NOTICE:
printf("[" GRN "NOTICE" RESET "] %s\n", out);
break;
case WARNING:
printf("[" YEL "WARNING" RESET "] %s\n", out);
break;
case ERROR:
printf("[" RED "ERROR" RESET "] %s\n", out);
break;
}
}
void log_fmtex_colored(log_priority prio, const char *srcfile,
size_t line, const char *fmt, ...)
{
char out[LOGMSG_MAXLEN+1] = {0};
va_list arglist;
assert(fmt);
va_start(arglist, fmt);
assert( vsnprintf(&out[0], LOGMSG_MAXLEN, fmt, arglist) >= 0 );
va_end(arglist);
switch (prio) {
case DEBUG:
printf("[DEBUG] %s.%lu: %s\n", srcfile, line, out);
break;
case NOTICE:
printf("[" GRN "NOTICE" RESET "] %s.%lu: %s\n", srcfile, line, out);
break;
case WARNING:
printf("[" YEL "WARNING" RESET "] %s.%lu: %s\n", srcfile, line, out);
break;
case ERROR:
printf("[" RED "ERROR" RESET "] %s.%lu: %s\n", srcfile, line, out);
break;
}
}
|