473,404 Members | 2,187 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Macros

I have an exception class whose constructor takes in 3 parameters,
a string, an int, and a string.
The parameters represent a filename, a line number, and an error message
where the error occurred.

I call the function as follows

if ( whatever_problem)
throw MyException(__FILE__,__LINE__, "This was my problem");

This is all working fine, though it's getting annoying to have to type
__FILE__,__LINE__ every time. How do I write a macro that will put that in
its place so that I can do something like:

if ( whatever_problem)
throw MyException(ERROR_PARMS, "This was my problem");
Apr 30 '06 #1
3 2174
Winbatch wrote:
I have an exception class whose constructor takes in 3 parameters,
a string, an int, and a string.
The parameters represent a filename, a line number, and an error message
where the error occurred.

I call the function as follows

if ( whatever_problem)
throw MyException(__FILE__,__LINE__, "This was my problem");

This is all working fine, though it's getting annoying to have to type
__FILE__,__LINE__ every time. How do I write a macro that will put that
in its place so that I can do something like:

if ( whatever_problem)
throw MyException(ERROR_PARMS, "This was my problem");


Uhm,

#define ERROR_PARMS __FILE__,__LINE__

?

Apr 30 '06 #2
Winbatch wrote:
if ( whatever_problem)
throw MyException(__FILE__,__LINE__, "This was my problem");

This is all working fine, though it's getting annoying to have to type
__FILE__,__LINE__ every time. How do I write a macro that will put that
in its place so that I can do something like:


Off the top of my head, might have a syntax error,

#define CHECK(q) \
do{ if (!(q)) \
throw MyException(__FILE__,__LINE__, #q "failed"); } \
while(false)

If you are going to write a macro, then really write it. Put all the
duplicated code you can into it.

That advice risks the spectre of "macro abuse", so follow this checklist.
Does my macro:

- use conditional compilation
- stringerize
- paste tokens

My macro follows the first two (__FILE__ & __LINE__ are a kind of
conditional compilation, because their condition changes all the time, and
#q is stringerization).

To reduce the macro abuse further, put the logic into a function and call
that:

void check(bool q, char const * strQ, char const * file, unsigned long line)
{
if (!q)
throw MyException(file, line, strQ);
}

#define CHECK(q) \
check(q, #q "failed", __FILE__,__LINE__)

--
Phlip
http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!
Apr 30 '06 #3

"Rolf Magnus" <ra******@t-online.de> wrote in message
news:e3*************@news.t-online.com...
Winbatch wrote:
I have an exception class whose constructor takes in 3 parameters,
a string, an int, and a string.
The parameters represent a filename, a line number, and an error message
where the error occurred.

I call the function as follows

if ( whatever_problem)
throw MyException(__FILE__,__LINE__, "This was my problem");

This is all working fine, though it's getting annoying to have to type
__FILE__,__LINE__ every time. How do I write a macro that will put that
in its place so that I can do something like:

if ( whatever_problem)
throw MyException(ERROR_PARMS, "This was my problem");


Uhm,

#define ERROR_PARMS __FILE__,__LINE__

?

Sorry, didn't realize it was that simple. I must have put a space or
something in between or typed something funny as it had given me a compiler
error. (Don't remember what it said. In any case, it works. Thanks)
May 3 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Chris Reedy | last post by:
For everyone - Apologies for the length of this message. If you don't want to look at the long example, you can skip to the end of the message. And for the Python gurus among you, if you can...
699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
16
by: mike420 | last post by:
Tayss wrote: > > app = wxPySimpleApp() > frame = MainWindow(None, -1, "A window") > frame.Show(True) > app.MainLoop() > Why do you need a macro for that? Why don't you just write
37
by: michele.simionato | last post by:
Paul Rubin wrote: > How about macros? Some pretty horrible things have been done in C > programs with the C preprocessor. But there's a movememnt afloat to > add hygienic macros to Python. Got any...
8
by: Michael Winter | last post by:
In a recent post ("About C error" by Victor, 21 Sep 2003), comments were made about the poster's use of macros. What I would like to know is why they are considered bad? I'm not referring to...
11
by: Ben Hetland | last post by:
....in certain cituations they can be useful if not for anything else, then at least for saving a lot of repetetetetetitititive typing. :-) Beyond the point of "do something better instead", I'm...
3
by: Stephen Sprunk | last post by:
On a project I'm working on, I ran across the following macros: /* assume s is struct stream *, s->p is char, v is unit16_t or uint32_t */ #define in_uint16_le(s,v) { v = *((s)->p++); v +=...
47
by: Emil | last post by:
Is there any hope that new versions of PHP will support macros similar to C or C++? I've searched manual and didn't find anything except define directive, but it can be used to define constant...
11
by: San | last post by:
hi there, I am new to c++ and tryig to learn the basics of the c++ concepts. While I was reading the templates, I realize that the templates are a syntax that the compilar expands pased upon the...
33
by: Robert Seacord | last post by:
When writing C99 code is a reasonable recommendation to use inline functions instead of macros? What sort of things is it still reasonable to do using macros? For example, is it reasonable to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.