License header fixes
[lttng-tools.git] / src / common / error.h
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
7 *
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.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18 #ifndef _ERROR_H
19 #define _ERROR_H
20
21 #include <errno.h>
22 #include <stdio.h>
23 #include <string.h>
24
25 #ifndef _GNU_SOURCE
26 #error "lttng-tools error.h needs _GNU_SOURCE"
27 #endif
28
29 /* Stringify the expansion of a define */
30 #define XSTR(d) STR(d)
31 #define STR(s) #s
32
33 extern int lttng_opt_quiet;
34 extern int lttng_opt_verbose;
35
36 #define PRINT_ERR 0x1
37 #define PRINT_WARN 0x2
38 #define PRINT_BUG 0x3
39 #define PRINT_MSG 0x4
40 #define PRINT_DBG 0x10
41 #define PRINT_DBG2 0x20
42 #define PRINT_DBG3 0x30
43
44 /*
45 * Macro for printing message depending on command line option and verbosity.
46 */
47 #define __lttng_print(type, fmt, args...) \
48 do { \
49 if (lttng_opt_quiet == 0 && type == PRINT_MSG) { \
50 fprintf(stdout, fmt, ## args); \
51 } else if (lttng_opt_quiet == 0 && \
52 (((type & PRINT_DBG) && lttng_opt_verbose == 1) || \
53 ((type & (PRINT_DBG | PRINT_DBG2)) && \
54 lttng_opt_verbose == 2) || \
55 ((type & (PRINT_DBG | PRINT_DBG2 | PRINT_DBG3)) && \
56 lttng_opt_verbose == 3))) { \
57 fprintf(stderr, fmt, ## args); \
58 } else if (lttng_opt_quiet == 0 && (type & (PRINT_WARN))) { \
59 fprintf(stderr, fmt, ## args); \
60 } else if (type & (PRINT_ERR | PRINT_BUG)) { \
61 fprintf(stderr, fmt, ## args); \
62 } \
63 } while (0);
64
65 #define MSG(fmt, args...) \
66 __lttng_print(PRINT_MSG, fmt "\n", ## args)
67 #define ERR(fmt, args...) \
68 __lttng_print(PRINT_ERR, "Error: " fmt "\n", ## args)
69 #define WARN(fmt, args...) \
70 __lttng_print(PRINT_WARN, "Warning: " fmt "\n", ## args)
71 #define BUG(fmt, args...) \
72 __lttng_print(PRINT_BUG, "BUG: " fmt "\n", ## args)
73
74 /* Three level of debug. Use -v, -vv or -vvv for the levels */
75 #define DBG(fmt, args...) __lttng_print(PRINT_DBG, "DEBUG1: " fmt \
76 " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__)
77 #define DBG2(fmt, args...) __lttng_print(PRINT_DBG2, "DEBUG2: " fmt \
78 " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__)
79 #define DBG3(fmt, args...) __lttng_print(PRINT_DBG3, "DEBUG3: " fmt \
80 " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__)
81
82 #define _PERROR(fmt, args...) \
83 __lttng_print(PRINT_ERR, "PERROR: " fmt \
84 " [in %s() at " __FILE__ ":" XSTR(__LINE__) "]\n", ## args, __func__)
85
86 #if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
87
88 /*
89 * Version using XSI strerror_r.
90 */
91 #define PERROR(call, args...) \
92 do { \
93 char buf[200]; \
94 strerror_r(errno, buf, sizeof(buf)); \
95 _PERROR(call ": %s", ## args, buf); \
96 } while(0);
97 #else
98 /*
99 * Version using GNU strerror_r, for linux with appropriate defines.
100 */
101 #define PERROR(call, args...) \
102 do { \
103 char *buf; \
104 char tmp[200]; \
105 buf = strerror_r(errno, tmp, sizeof(tmp)); \
106 _PERROR(call ": %s", ## args, buf); \
107 } while(0);
108 #endif
109
110 #endif /* _ERROR_H */
This page took 0.032647 seconds and 5 git commands to generate.