Trying to create a macro which can be used for print debug messages when DEBUG is defined, like the following pseudo code:
#define DEBUG 1
#define debug_print(args ...) if (DEBUG) fprintf(stderr, args)
How is this accomplished with a macro?
|
Trying to create a macro which can be used for print debug messages when DEBUG is defined, like the following pseudo code:
How is this accomplished with a macro? |
||||
|
|
If you use a C99 compiler
It assumes you are using C99 (the variable argument list notation is not supported in earlier versions). The If you want to work with #ifdef DEBUG, then change the test condition:
And then use DEBUG_TEST where I used DEBUG. If you insist on a string literal for the format string (probably a good idea anyway), you can also introduce things like
This relies on string concatenation to create a bigger format string than the programmer writes. If you use a C89 compilerIf you are stuck with C89 and no useful compiler extension, then there isn't a particularly clean way to handle it. The technique I used to use was:
And then, in the code, write:
The double-parentheses are crucial — and are why you have the funny notation in the macro expansion. As before, the compiler always checks the code for syntactic validity (which is good) but the optimizer only invokes the printing function if the DEBUG macro evaluates to non-zero. This does require a support function — dbg_printf() in the example — to handle things like 'stderr'. It requires you to know how to write varargs functions, but that isn't hard:
You can also use this technique in C99, of course, but the Why is it crucial that the compiler always see the debug code?[Rehashing comments made to another answer.] One central idea behind both the C99 and C89 implementations above is that the compiler proper always sees the debugging printf-like statements. This is important for long-term code — code that will last a decade or two. Suppose a piece of code has been mostly dormant (stable) for a number of years, but now needs to be changed. You re-enable debugging trace - but it is frustrating to have to debug the debugging (tracing) code because it refers to variables that have been renamed or retyped, during the years of stable maintenance. If the compiler (post pre-processor) always sees the print statement, it ensures that any surrounding changes have not invalidated the diagnostics. If the compiler does not see the print statement, it cannot protect you against your own carelessness (or the carelessness of your colleagues or collaborators). See 'The Practice of Programming' by Kernighan and Pike, especially Chapter 8. This is 'been there, done that' experience — I used essentially the technique described in other answers where the non-debug build does not see the printf-like statements for a number of years (more than a decade). But I came across the advice in TPOP (see my previous comment), and then did enable some debugging code after a number of years, and ran into problems of changed context breaking the debugging. Several times, having the printing always validated has saved me from later problems. I use NDEBUG to control assertions only, and a separate macro (usually DEBUG) to control whether debug tracing is built into the program. Even when the debug tracing is built in, I frequently do not want debug output to appear unconditionally, so I have mechanism to control whether the output appears (debug levels, and instead of calling fprintf() directly, I call a debug print function that only conditionally prints so the same build of the code can print or not print based on program options). I also have a 'multiple-subsystem' version of the code for bigger programs, so that I can have different sections of the program producing different amounts of trace - under runtime control. I am advocating that for all builds, the compiler should see the diagnostic statements; however, the compiler won't generate any code for the debugging trace statements unless debug is enabled. Basically, it means that all of your code is checked by the compiler every time you compile - whether for release or debugging. This is a good thing! debug.h - version 1.2 (1990-05-01)
debug.h - version 3.6 (2008-02-11)
Single argument C99 variantKyle Brandt asked:
There's one simple, old-fashioned hack:
The GCC-only solution also provides support for that. However, you can do it with the straight C99 system by using:
Compared to the first version, you lose the limited checking that requires the 'fmt' argument, which means that someone could call 'debug_print()' with no arguments. Whether the loss of checking is a problem at all is debatable. GCC-specific TechniqueSome compilers may offer extensions for other ways of handling variable-length argument lists in macros. Specifically, as first noted in the comments by Hugo Ideler, GCC allows you to omit the comma that would normally appear after the last 'fixed' argument to the macro. It also allows you to use
This solution retains the benefits of first version. Why the do-while loop?
You want to be able to use the macro so it looks like a function call, which means it will be followed by a semi-colon. Therefore, you have to package the macro body to suit. If you use an
Now, suppose you write:
Unfortunately, that indentation doesn't reflect the actual control of flow, because the preprocessor produces code equivalent to this (indented and braces added to emphasize the actual meaning):
The next attempt at the macro might be:
And the same code fragment now produces:
And the There's one other way of writing the macro which might work:
This leaves the program fragment shown as valid. The |
|||||||||||||
|
|
I use something like this:
Than I just use D as a prefix:
Compiler sees the debug code, there is no comma problem and it works everywhere. Also it works when EDIT: Ok, it might generate a problem when there is
|
||||
|
|
|
For a portable (ISO C90) implementation, you could use double parentheses, like this;
or (hackish, wouldn't recommend it)
|
|||||||
|
|
I would do something like
I think this is cleaner. |
|||||||||||||||||
|
|
|||||||||||
|
|
Here's the version I use:
|
|||
|
|
|
Will the compiler (gcc) optimize statements like if(DEBUG) {...} out, if in production code the DEBUG macro is set to 0 ? I understand that there are good reasons to leave the debug statements visible to the compiler, but a bad feeling remains. -Pat |
|||
|
|
According to http://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html,
there should be a Otherwise, a macro |
||||
|