Commit | Line | Data |
---|---|---|
826d496d MD |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
fac6795d | 3 | * |
db758600 DG |
4 | * This program is free software; you can redistribute it and/or modify it |
5 | * under the terms of the GNU General Public License as published by the Free | |
6 | * Software Foundation; only version 2 of the License. | |
fac6795d | 7 | * |
db758600 DG |
8 | * This program is distributed in the hope that it will be useful, but WITHOUT |
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
11 | * more details. | |
fac6795d | 12 | * |
db758600 DG |
13 | * You should have received a copy of the GNU General Public License along with |
14 | * this program; if not, write to the Free Software Foundation, Inc., 59 Temple | |
15 | * Place - Suite 330, Boston, MA 02111-1307, USA. | |
fac6795d DG |
16 | */ |
17 | ||
db758600 DG |
18 | #ifndef _ERROR_H |
19 | #define _ERROR_H | |
fac6795d DG |
20 | |
21 | #include <errno.h> | |
d738ac16 | 22 | #include <stdio.h> |
d05ea5da | 23 | #include <string.h> |
fac6795d | 24 | |
57d0d501 DG |
25 | /* Stringify the expansion of a define */ |
26 | #define XSTR(d) STR(d) | |
27 | #define STR(s) #s | |
28 | ||
fac6795d DG |
29 | extern int opt_quiet; |
30 | extern int opt_verbose; | |
31 | ||
75dea654 DG |
32 | #define PRINT_ERR 0x1 |
33 | #define PRINT_WARN 0x2 | |
34 | #define PRINT_BUG 0x3 | |
35 | #define PRINT_MSG 0x4 | |
36 | #define PRINT_DBG 0x10 | |
37 | #define PRINT_DBG2 0x20 | |
38 | #define PRINT_DBG3 0x30 | |
fac6795d DG |
39 | |
40 | /* | |
75dea654 | 41 | * Macro for printing message depending on command line option and verbosity. |
fac6795d | 42 | */ |
75dea654 DG |
43 | #define __lttng_print(type, fmt, args...) \ |
44 | do { \ | |
45 | if (opt_quiet == 0) { \ | |
1fea938d DG |
46 | if (type == PRINT_MSG) { \ |
47 | fprintf(stdout, fmt, ## args); \ | |
48 | } else if (((type & PRINT_DBG) && opt_verbose == 1) || \ | |
75dea654 DG |
49 | ((type & (PRINT_DBG | PRINT_DBG2)) && \ |
50 | opt_verbose == 2) || \ | |
51 | ((type & (PRINT_DBG | PRINT_DBG2 | PRINT_DBG3)) && \ | |
52 | opt_verbose == 3)) { \ | |
94484837 | 53 | fprintf(stderr, fmt, ## args); \ |
75dea654 DG |
54 | } else if (type & (PRINT_ERR | PRINT_WARN | PRINT_BUG)) { \ |
55 | fprintf(stderr, fmt, ## args); \ | |
56 | } \ | |
57 | } \ | |
3ce7388b | 58 | } while (0); |
fac6795d | 59 | |
75dea654 DG |
60 | #define MSG(fmt, args...) \ |
61 | __lttng_print(PRINT_MSG, fmt "\n", ## args) | |
62 | #define ERR(fmt, args...) \ | |
63 | __lttng_print(PRINT_ERR, "Error: " fmt "\n", ## args) | |
64 | #define WARN(fmt, args...) \ | |
65 | __lttng_print(PRINT_WARN, "Warning: " fmt "\n", ## args) | |
66 | #define BUG(fmt, args...) \ | |
67 | __lttng_print(PRINT_BUG, "BUG: " fmt "\n", ## args) | |
68 | ||
69 | /* Three level of debug. Use -v, -vv or -vvv for the levels */ | |
70 | #define DBG(fmt, args...) __lttng_print(PRINT_DBG, "DEBUG1: " fmt \ | |
71 | " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) | |
72 | #define DBG2(fmt, args...) __lttng_print(PRINT_DBG2, "DEBUG2: " fmt \ | |
73 | " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) | |
74 | #define DBG3(fmt, args...) __lttng_print(PRINT_DBG3, "DEBUG3: " fmt \ | |
75 | " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__) | |
76 | ||
77 | #define _PERROR(fmt, args...) \ | |
78 | __lttng_print(PRINT_ERR, "perror " fmt "\n", ## args) | |
79 | ||
80 | #define PERROR(call, args...) \ | |
81 | do { \ | |
82 | char *buf; \ | |
83 | char tmp[200]; \ | |
84 | buf = strerror_r(errno, tmp, sizeof(tmp)); \ | |
85 | _PERROR(call ": %s", ## args, buf); \ | |
86 | } while(0); | |
fac6795d | 87 | |
db758600 | 88 | #endif /* _ERROR_H */ |