Add ph_blk_offset during every blockdev bread/bwrite
[lwext4.git] / lwext4 / ext4_debug.h
1 /*
2  * Copyright (c) 2013 Grzegorz Kostka (kostka.grzegorz@gmail.com)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  * - Redistributions in binary form must reproduce the above copyright
12  *   notice, this list of conditions and the following disclaimer in the
13  *   documentation and/or other materials provided with the distribution.
14  * - The name of the author may not be used to endorse or promote products
15  *   derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /** @addtogroup lwext4
30  * @{
31  */
32 /**
33  * @file  ext4_debug.c
34  * @brief Debug printf and assert macros.
35  */
36
37 #ifndef EXT4_DEBUG_H_
38 #define EXT4_DEBUG_H_
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 #include "ext4_config.h"
45 #include "ext4_errno.h"
46
47 #if !CONFIG_HAVE_OWN_ASSERT
48 #include <assert.h>
49 #endif
50
51 #include <stdint.h>
52 #include <stdio.h>
53 #include <inttypes.h>
54
55 #ifndef PRIu64
56 #define PRIu64 "llu"
57 #endif
58
59 #ifndef PRId64
60 #define PRId64 "lld"
61 #endif
62
63
64 #define DEBUG_BALLOC (1ul << 0)
65 #define DEBUG_BCACHE (1ul << 1)
66 #define DEBUG_BITMAP (1ul << 2)
67 #define DEBUG_BLOCK_GROUP (1ul << 3)
68 #define DEBUG_BLOCKDEV (1ul << 4)
69 #define DEBUG_DIR_IDX (1ul << 5)
70 #define DEBUG_DIR (1ul << 6)
71 #define DEBUG_EXTENT (1ul << 7)
72 #define DEBUG_FS (1ul << 8)
73 #define DEBUG_HASH (1ul << 9)
74 #define DEBUG_IALLOC (1ul << 10)
75 #define DEBUG_INODE (1ul << 11)
76 #define DEBUG_SUPER (1ul << 12)
77 #define DEBUG_XATTR (1ul << 13)
78 #define DEBUG_MKFS (1ul << 14)
79 #define DEBUG_EXT4 (1ul << 15)
80 #define DEBUG_JBD (1ul << 16)
81
82 #define DEBUG_ALL (0xFFFFFFFF)
83
84 static inline const char *ext4_dmask_id2str(uint32_t m)
85 {
86         switch(m) {
87         case DEBUG_BALLOC:
88                 return "ext4_balloc: ";
89         case DEBUG_BCACHE:
90                 return "ext4_bcache: ";
91         case DEBUG_BITMAP:
92                 return "ext4_bitmap: ";
93         case DEBUG_BLOCK_GROUP:
94                 return "ext4_block_group: ";
95         case DEBUG_BLOCKDEV:
96                 return "ext4_blockdev: ";
97         case DEBUG_DIR_IDX:
98                 return "ext4_dir_idx: ";
99         case DEBUG_DIR:
100                 return "ext4_dir: ";
101         case DEBUG_EXTENT:
102                 return "ext4_extent: ";
103         case DEBUG_FS:
104                 return "ext4_fs: ";
105         case DEBUG_HASH:
106                 return "ext4_hash: ";
107         case DEBUG_IALLOC:
108                 return "ext4_ialloc: ";
109         case DEBUG_INODE:
110                 return "ext4_inode: ";
111         case DEBUG_SUPER:
112                 return "ext4_super: ";
113         case DEBUG_XATTR:
114                 return "ext4_xattr: ";
115         case DEBUG_MKFS:
116                 return "ext4_mkfs: ";
117         case DEBUG_JBD:
118                 return "ext4_jbd: ";
119         case DEBUG_EXT4:
120                 return "ext4: ";
121         }
122         return "";
123 }
124 #define DBG_NONE  "        "
125 #define DBG_INFO  "[info]  "
126 #define DBG_WARN  "[warn]  "
127 #define DBG_ERROR "[error] "
128
129 /**@brief   Global mask debug set.
130  * @brief   m new debug mask.*/
131 void ext4_dmask_set(uint32_t m);
132
133 /**@brief   Global mask debug clear.
134  * @brief   m new debug mask.*/
135 void ext4_dmask_clr(uint32_t m);
136
137 /**@brief   Global debug mask get.
138  * @return  debug mask*/
139 uint32_t ext4_dmask_get(void);
140
141 #if CONFIG_DEBUG_PRINTF
142 /**@brief   Debug printf.*/
143 #define ext4_dbg(m, ...)                                                       \
144         do {                                                                   \
145                 if (m & ext4_dmask_get()) {                                    \
146                         if (CONFIG_DEBUG_PREFIX) {                             \
147                                 printf("%s", ext4_dmask_id2str(m));            \
148                                 printf("l: %d   ", __LINE__);                  \
149                         }                                                      \
150                         printf(__VA_ARGS__);                                   \
151                         fflush(stdout);                                        \
152                 }                                                              \
153         } while (0)
154 #else
155 #define ext4_dbg(m, ...) do { } while (0)
156 #endif
157
158 #if CONFIG_DEBUG_ASSERT
159 /**@brief   Debug assertion.*/
160 #if CONFIG_HAVE_OWN_ASSERT
161 #define ext4_assert(_v)                                                        \
162         do {                                                                   \
163                 if (!(_v)) {                                                   \
164                         printf("assertion failed:\nfile: %s\nline: %d\n",      \
165                                __FILE__, __LINE__);                            \
166                                while (1)                                       \
167                                        ;                                       \
168                 }                                                              \
169         } while (0)
170 #else
171 #define ext4_assert(_v) assert(_v)
172 #endif
173 #else
174 #define ext4_assert(_v)
175 #endif
176
177 #ifdef __cplusplus
178 }
179 #endif
180
181 #endif /* EXT4_DEBUG_H_ */
182
183 /**
184  * @}
185  */