vote up 0 vote down star

I want to use some NSAssert stuff and other things to enable better debugging in my app. NSAssert wants a string which it prints if the assertion fails. Nice, but useless unless you type a whole bunch of information in that string, which can become a big mess when done all over the place.

So I want to make a macro that will do the NSAssert call with an string equipped full of useful information like the class name, the method name and other stuff. But more important, I want to provide a custom comment as well. Imagine a macro like this:

USEFUL_ASSERT(foo != nil, @"that wasn't good, really")

for a lot of reasons I can't use a function or method call here, because context would be lost and I could not find out which class caused that problem, which method caused that problem. That can only be done inside that method itself, so I would have to pass a lot of parameters for this information like [self class] and _cmd, but I don't want all this stuff scattered everywhere. The shorter the code to insert, the better to maintain.

Any idea?

flag

67% accept rate
1  
Did you RTFM? (not usually my style, but it is your username, afterall) – Barry Wark Sep 3 at 20:50
man. TFM is so huge, I read all the time. but I'll need another six years until I'm through everything. So I try to accelerate my learning process through SO. – HelloMoon Sep 3 at 20:52

2 Answers

vote up 1 vote down check
#define USEFUL_ASSERT(condition, comment) /*whatever*/
link|flag
Nice, that looks like if I could just use condition, comment in the definition of the macro? gonna try that! perfect. – HelloMoon Sep 3 at 20:53
1  
Just remember that this is textual replacement, not variable binding, so for example, if you write USEFUL_ASSERT(++x == 0, @"It's zero"), that means x will be incremented for each occurrence of condition in the macro body. – Chuck Sep 3 at 21:27
1  
So, for example, if the macro body is NSLog(@"%u is true? %@", (condition), (condition) ? @"YES" : @"NO"), this expands to NSLog(@"%u is true? %@", (condition), (condition) ? @"YES" : @"NO"). Notice that there are two ++x expressions here, so x gets incremented twice. – Peter Hosey Sep 4 at 2:32
Makes a lot of sense. Gracias! – HelloMoon Sep 4 at 7:57
vote up 2 vote down

Take a look at the macro docs.

link|flag
good to know there's another FM for that. thanks. – HelloMoon Sep 3 at 20:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.