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
|
#include <fitz.h>
void
fz_warn(char *fmt, ...)
{
va_list ap;
fprintf(stderr, "warning: ");
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fprintf(stderr, "\n");
}
fz_error *
fz_throw1(char *fmt, ...)
{
va_list ap;
fz_error *eo;
eo = fz_malloc(sizeof(fz_error));
if (!eo) return fz_outofmem;
eo->refs = 1;
strlcpy(eo->func, "unknown", sizeof eo->func);
strlcpy(eo->file, "unknown", sizeof eo->file);
eo->line = 0;
va_start(ap, fmt);
vsnprintf(eo->msg, sizeof eo->msg, fmt, ap);
eo->msg[sizeof(eo->msg) - 1] = '\0';
va_end(ap);
return eo;
}
fz_error *
fz_throw0(const char *func, const char *file, int line, char *fmt, ...)
{
va_list ap;
fz_error *eo;
eo = fz_malloc(sizeof(fz_error));
if (!eo) return fz_outofmem;
eo->refs = 1;
strlcpy(eo->func, func, sizeof eo->func);
strlcpy(eo->file, file, sizeof eo->file);
eo->line = line;
va_start(ap, fmt);
vsnprintf(eo->msg, sizeof eo->msg, fmt, ap);
eo->msg[sizeof(eo->msg) - 1] = '\0';
va_end(ap);
if (getenv("BOMB"))
fz_abort(eo);
return eo;
}
void
fz_droperror(fz_error *eo)
{
if (eo->refs > 0)
eo->refs--;
if (eo->refs == 0)
fz_free(eo);
}
void
fz_abort(fz_error *eo)
{
fflush(stdout);
fprintf(stderr, "%s:%d: %s(): %s\n", eo->file, eo->line, eo->func, eo->msg);
fflush(stderr);
abort();
}
|