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
|
#include <stdio.h>
#include <stdarg.h>
#include <sys/time.h>
#include "triton_p.h"
#include "memdebug.h"
static FILE *f_error;
static FILE *f_debug;
static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
int log_init(void)
{
char *log_error = conf_get_opt("core","log-error");
char *log_debug = conf_get_opt("core","log-debug");
if (log_error) {
f_error = fopen(log_error, "a");
if (!f_error) {
perror("log:log_error:open");
return -1;
}
}
if (log_debug) {
f_debug = fopen(log_debug, "a");
if (!f_debug) {
perror("log:log_debug:open");
return -1;
}
}
return 0;
}
static void do_log(FILE *f, const char *fmt, va_list ap)
{
struct timeval tv;
struct tm tm;
char date[64];
gettimeofday(&tv, NULL);
localtime_r(&tv.tv_sec, &tm);
strftime(date, sizeof(date), "%F %H:%M:%S", &tm);
pthread_mutex_lock(&lock);
fprintf(f, "[%s.%i]", date, (int)tv.tv_usec / 1000);
vfprintf(f, fmt,ap);
fprintf(f, "\n");
pthread_mutex_unlock(&lock);
fflush(f);
}
void triton_log_error(const char *fmt,...)
{
va_list ap;
if (!f_error)
return;
va_start(ap, fmt);
do_log(f_error, fmt, ap);
va_end(ap);
}
void triton_log_debug(const char *fmt,...)
{
va_list ap;
if (!f_debug)
return;
va_start(ap, fmt);
do_log(f_debug, fmt, ap);
va_end(ap);
}
|