-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patherror.c
72 lines (59 loc) · 1.55 KB
/
error.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
#include "firstinclude.h"
#include "error.h"
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#define ERROR_BUF_SIZE 2048
static FILE * error_stream = NULL;
static int error_stream_inited = 0;
static char error_buf[ERROR_BUF_SIZE] = "";
static int error_code = 0;
static void ensure_error_stream_inited() {
if (error_stream_inited == 0) {
#ifdef LOGERRORS
error_stream = stderr;
#else /* LOGERRORS */
error_stream = NULL;
#endif /* LOGERRORS */
error_stream_inited = 1;
}
}
int error_loc(int code, const char * func, const char * file, int line,
const char * fmt, ...) {
va_list ap;
char msg_buf[ERROR_BUF_SIZE];
ensure_error_stream_inited();
error_code = code;
va_start(ap, fmt);
vsnprintf(msg_buf, ERROR_BUF_SIZE, fmt, ap);
if (errno) {
snprintf(error_buf, ERROR_BUF_SIZE, "ERROR: %s() (%s::%d): %s "
"(system error is '%s')", func, file, line, msg_buf,
strerror(errno));
errno = 0;
} else {
snprintf(error_buf, ERROR_BUF_SIZE, "ERROR: %s (%s::%d): %s",
func, file, line, msg_buf);
}
if (error_stream != NULL) {
fputs(error_buf, error_stream);
fputc('\n', error_stream);
}
va_end(ap);
return code;
}
int error_has_msg() {
return error_buf[0] != '\0';
}
const char * error_last_msg() {
return error_buf;
}
int error_last_code() {
return error_code;
}
void error_set_log_stream(FILE * stream) {
error_stream = stream;
error_stream_inited = 1;
}