65.9K
CodeProject is changing. Read more.
Home

Extended Debug Macros

starIconstarIconemptyStarIconemptyStarIconemptyStarIcon

2.00/5 (5 votes)

Jun 14, 2001

1 min read

viewsIcon

55350

downloadIcon

723

A set of debug macros for checking expressions that work in

Sample Image - LJSDebug.gif

Introduction

This code makes debugging somewhat easier. This code is simply a macro definition file.

The MFC TRACE macro only outputs messages to the Debug window, moreover, it is of no use with Release builds. The VERIFY and ASSERT macros are also no use with Release builds. If we could control debug macro regardless of compile mode, it would be easier for us to debug. So I coded this. It is simply macro definition, but useful, I think.

The macros are:

// These macros return false and exit function when expression is false
CHECKEXPR(bExpression, ERRORMSG, RETURNVALUE) 
CHECKVOIDEXPR(bExpression, ERRORMSG) 
CHECKFUNC(bExpression, ERRORMSG, RETURNVALUE) 
CHECKVOIDFUNC(bExpression, ERRORMSG) 

// This macro exits the program when expression is false
EXITCHECKEXPR(bExpression, ERRORMSG, RETURNVALUE) 
EXITCHECKVOIDEXPR(bExpression, ERRORMSG) 
EXITCHECKFUNC(bExpression, ERRORMSG, RETURNVALUE) 
EXITCHECKVOIDFUNC(bExpression, ERRORMSG) 

If an unexpected situation occurs, we would like to exit program at that time, or ignore the situation and force processing. If you want to exit the program, we can use the EXITCHECK* macro, if you want to ignore the error and continue, use the CHECK* macro.

The only thing you need to do to use this macro file is add

#include "LJSDebug.h"

in your file. You must pre-define __LJS__DEBUG__YES__ or __LJS__DEBUG__NO__ before you add #include "LJSDebug.h".

It works under Unicode and with VC++ 6.0. It's ok for any one to use and modify this file freely.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.