Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Simple question for which I could not find answer on the net. In variadic argument macros, how to find the number of arguments? I am okay with boost preprocessor, if it has the solution.

If it makes a difference, I am trying to convert variable number of macro arguments to boost preprocessor sequence, list, or array for further reprocessing.

share|improve this question
Can you fix the question again, as you mentioned C Preprocessor... yet the tags include C++. Which is it? – t0mm13b Jan 23 '10 at 19:23
Just to be clear - you are asking about variadic macros, and not the macros used to create variadic C functions? – anon Jan 23 '10 at 19:23
1  
are the arguments of the same type? if so, and if the type is known, there's a standard C solution via compound literals; if it's unknown, you could use __typeof__ to get it to work at least on some compilers – Christoph Jan 23 '10 at 19:24
1  
Since the discussion is about the Boost preprocessor sequence etc, it has to be C++ (which is why I retagged the Q - but failed to change the question title)...Oops; I'll fix that. – Jonathan Leffler Jan 23 '10 at 19:25
sorry, it has been tagged C++ because of boost. I am asking about macros, not the later. – Anycorn Jan 23 '10 at 19:25
show 2 more comments

6 Answers

up vote 18 down vote accepted

This is actually compiler dependent, and not supported by any standard.

Here however you have a macro implementation that does the count.

share|improve this answer
perfect, thanks – Anycorn Jan 23 '10 at 19:37
2  
Very devious - but effective. – Jonathan Leffler Jan 23 '10 at 20:23
The link is gone now! – Jasper Blues Jan 27 at 11:29

I usually use this macro to find a number of params:

#define NUMARGS(...)  (sizeof((int[]){__VA_ARGS__})/sizeof(int))

Full example:

#include <stdio.h>
#include <string.h>
#include <stdarg.h>

#define NUMARGS(...)  (sizeof((int[]){__VA_ARGS__})/sizeof(int))
#define SUM(...)  (sum(NUMARGS(__VA_ARGS__), __VA_ARGS__))

void sum(int numargs, ...);

int main(int argc, char *argv[]) {

    SUM(1);
    SUM(1, 2);
    SUM(1, 2, 3);
    SUM(1, 2, 3, 4);

    return 1;
}

void sum(int numargs, ...) {
    int     total = 0;
    va_list ap;

    printf("sum() called with %d params:", numargs);
    va_start(ap, numargs);
    while (numargs--)
        total += va_arg(ap, int);
    va_end(ap);

    printf(" %d\n", total);

    return;
}

It is completely valid C99 code. It has one drawback, though - you cannot invoke the macro SUM() without params, but GCC has a solution to it - see here.

So in case of GCC you need to define macros like this:

#define       NUMARGS(...)  (sizeof((int[]){0, ##__VA_ARGS__})/sizeof(int)-1)
#define       SUM(...)  sum(NUMARGS(__VA_ARGS__), ##__VA_ARGS__)

and it will work even with empty parameter list

share|improve this answer
UM, it won't work for the OP, he needs the size for BOOST_PP which runs on compile time. – Kornel Kisielewicz Jan 23 '10 at 19:50
Clever! Does it also work when sizeof(int) != sizeof(void *) ? – Adam Liss Jan 23 '10 at 19:52
@Kornel Like any macro, it is evaluated at compile time. I have no idea about Boost, but anyway Boost isn't needed. – qrdl Jan 23 '10 at 20:44
@Adam Because I cast {__VA_ARGS__} to int[], it is just int[], regardless of actual content of __VA_ARGS__ – qrdl Jan 23 '10 at 20:45
@qrdl, so I can write SUM( myfunc(2), myarr[10], 2+3 )? – Kornel Kisielewicz Jan 23 '10 at 21:34
show 2 more comments

With msvc extension:

#define Y_TUPLE_SIZE(...) Y_TUPLE_SIZE_II((Y_TUPLE_SIZE_PREFIX_ ## __VA_ARGS__ ## _Y_TUPLE_SIZE_POSTFIX,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0))
#define Y_TUPLE_SIZE_II(__args) Y_TUPLE_SIZE_I __args

#define Y_TUPLE_SIZE_PREFIX__Y_TUPLE_SIZE_POSTFIX ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0

#define Y_TUPLE_SIZE_I(__p0,__p1,__p2,__p3,__p4,__p5,__p6,__p7,__p8,__p9,__p10,__p11,__p12,__p13,__p14,__p15,__p16,__p17,__p18,__p19,__p20,__p21,__p22,__p23,__p24,__p25,__p26,__p27,__p28,__p29,__p30,__p31,__n,...) __n

Works for 0 - 32 arguments. This limit can be easily extended.

share|improve this answer

Neither the C nor the C++ preprocessor provides a way to find out the number of arguments in a variadic argument list to a macro. Indeed, the C++98 standard uses the C89 preprocessor and does not support variadic arguments to macros at all.

Your question says

I am OK with Boost preprocessor; it has the solution

So if the Boost preprocessor has the solution, why are you asking the question? Or did you mean:

I am OK with Boost preprocessor if it has the solution.

share|improve this answer
Maybe he prefers not to use the boost preprocessor, but he will if he has no other choice – Andreas Bonini Jan 23 '10 at 19:26
sorry, meant to say if it, i edited the question – Anycorn Jan 23 '10 at 19:29

You can use this GNU extension:

#define macro(format, arguments...) fprintf(stderr, format, ## arguments)

Just remember - it only works with GNU compiler.

share|improve this answer
2  
This doesn't answer the question. It's just some other irrelevant information about variadic macros. – Craig McQueen Dec 31 '12 at 6:26

Although there's no easy solution for the general case in which your function receives an arbitrary number of arguments of arbitrary types, the problem becomes easier if you follow the convention of using the first argument to give yourself clues.

This is how functions like printf() work:  the first argument (the format string) provides enough information to determine the number and types of the successive arguments. For example:

printf("This call to %*s requires %d argument%c\n",
    length, string,
    num,
    num == 1  ?  ' ' : 's');

%*s requires an integer argument and a pointer.
%d   requires an integer.
%c   requires a character.

So the format string completely specifies the remaining 4 arguments.

share|improve this answer
3  
A downvote 2 years later would be far more helpful if it also had an explanation. – Adam Liss Feb 14 '12 at 0:02

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.