Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

im writing a logging class at the moment. The Logger works with streams and also prints the object wich is logging at the moment. Here is the macro:

#define OBJLOG(DL, what) DL <= this->Logger->getDebugLevel() ? *this->Logger << DL << "[" << this->Name << "]: "<< what << std::endl : this->Logger->doNothing();

The pseudo code Varient for better overview:

#define OBJLOG(debuglevel, what) debuglevel <= logger.debuglevel ? logger.log(what) : logger.doNothing()

Is there any way to get around the doNothing function call, like doing nothing at all? Thanks in advance.

share|improve this question

3 Answers

up vote 4 down vote accepted
#define OBJLOG(DL, what) do { if(DL <= this->Logger->getDebugLevel()) *this->Logger << DL << "[" << this->Name << "]: "<< what << std::endl; } while(0)

See Why are there sometimes meaningless do/while and if/else statements in C/C++ macros? for an explanation. (The do {} while(0) isn't strictly necessary here, but I would prefer not to leak an ostream.)

Also, you should always wrap macro argument uses in parentheses, like:

#define OBJLOG(DL, what) do { if((DL) <= this->Logger->getDebugLevel()) *this->Logger << (DL) << "[" << this->Name << "]: "<< (what) << std::endl; } while(0)

Finally, you should move this code into a function and call that in your macro (if you really insist on using a macro) to avoid evaluating your macro arguments more than once.

share|improve this answer
Hi, and thank you for your answer. I just dont get the last part you wrote about moving it into a function call. But ill give it try now and see how to get it working. – roohan May 2 '12 at 15:42
You might not want parentheses around the what parameter; they change the possible syntax of the macro call. Without parentheses, you can call OBJLOG(0, "x: " << x << "; y: " << y). With parentheses, you get a syntax error in the macro expansion (because you can't shift char arrays). – Rob Kennedy May 2 '12 at 15:47
If macro arguments get expanded multiple times, you had better hope (i.e. don't count on it) your expressions have no side effects. E.g. hypothetically doing OBJLOG(--i ? DEBUG : WARN, "foo") would decrement i twice. (It's a contrived example, but beware of that when writing macros.) – Electro May 2 '12 at 15:47
@RobKennedy: It had occurred to me, but better safe than sorry, I guess. – Electro May 2 '12 at 15:49
  1. Have your logger.log() function return a boolean.

  2. Connect your predicates with an and like this: debuglevel <= logger.debuglevel && logger.log

That should do the trick.

share|improve this answer
Using the first code variant, your first step isn't even necessary. The Logger object is evidently a stream pointer, and streams can be used in bool expressions implicitly: (DL <= this->Logger->getDebugLevel() && (*this->Logger << ... << what << std::endl)). – Rob Kennedy May 2 '12 at 15:55
@Rob the logger does have a stream operator but I assumed it was a user defined class that most likely contains a stream as one of it's members. My own implementation does this so I had to add the bool conversion operator. Just an assumption though. – Anon Mail May 2 '12 at 18:44

If you want an expression that does nothing, try (void)0.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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