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

For the purpose of introspection, sometimes I've wanted to automatically assign serial numbers to types, or something similar.

Unfortunately, template metaprogramming is essentially a functional language, and as such lacks global variables or modifiable state which would implement such a counter.

Or is it?


Example code by request:

#include <iostream>

int const a = counter_read;
counter_inc;
counter_inc;
counter_inc;
counter_inc;
counter_inc;

int const b = counter_read;

int main() {
    std::cout << a << ' ' << b << '\n'; // print "0 5"

    counter_inc_t();
    counter_inc_t();
    counter_inc_t();

    std::cout << counter_read << '\n'; // print "8"

    struct {
        counter_inc_t d1;
        char x[ counter_read ];
        counter_inc_t d2;
        char y[ counter_read ];
    } ls;

    std::cout << sizeof ls.x << ' ' << sizeof ls.y << '\n'; // print "9 10"
}
share|improve this question
can you give a short example to demo what is the exact question ? – iammilind May 29 '11 at 7:03
is it not possible to use X<__LINE__> ? that will provide a unique number (may not be serial number) always in the given file. – iammilind May 29 '11 at 7:15
@iammilind: That doesn't work across several headers, and won't return the same result repeatedly when uniqueness isn't desired. The template solution is more powerful. See the answer. – Potatoswatter May 29 '11 at 7:42
due to your example code, I was able to think in blackbox direction and it enlighten me to find the answer ! :) See my answer below. Thanks. – iammilind Jun 2 '11 at 3:51

4 Answers

I believe both MSVC and GCC support a __COUNTER__ preprocessor token that has a monotonically increasing value substituted in its place.

share|improve this answer
+1 nice one for new info – iammilind Jun 2 '11 at 5:13
what a word, monotonically – thecoshman Dec 16 '11 at 12:04
1  
You should check the kinds of beauty that lead to words like duodecilliotonically, if I'm getting my prefixes right... :P – Luis Machuca Mar 22 '12 at 3:35
up vote 10 down vote accepted

Well… yes, template metaprogramming lacks side effects as it is intended. I was misled by a bug in older versions of GCC and a little unclear wording in the Standard to believe that all those features were possible.

However, at least the namespace-scope functionality can be achieved with little use of templates at all. Function lookup can extract numeric state from the set of declared functions, as demonstrated below.

Library code:

template< size_t n > // This type returns a number through function lookup.
struct cn // The function returns cn<n>.
    { char data[ n + 1 ]; }; // The caller uses (sizeof fn() - 1).

template< typename id, size_t n, size_t acc >
cn< acc > seen( id, cn< n >, cn< acc > ); // Default fallback case.

/* Evaluate the counter by finding the last defined overload.
   Each function, when defined, alters the lookup sequence for lower-order
   functions. */
#define counter_read( id ) \
( sizeof seen( id(), cn< 1 >(), cn< \
( sizeof seen( id(), cn< 2 >(), cn< \
( sizeof seen( id(), cn< 4 >(), cn< \
( sizeof seen( id(), cn< 8 >(), cn< \
( sizeof seen( id(), cn< 16 >(), cn< \
( sizeof seen( id(), cn< 32 >(), cn< 0 \
/* Add more as desired; trimmed for Stack Overflow code block. */ \
                      >() ) - 1 ) \
                      >() ) - 1 ) \
                      >() ) - 1 ) \
                      >() ) - 1 ) \
                      >() ) - 1 ) \
                      >() ) - 1 )

/* Define a single new function with place-value equal to the bit flipped to 1
   by the increment operation.
   This is the lowest-magnitude function yet undefined in the current context
   of defined higher-magnitude functions. */
#define counter_inc( id ) \
cn< counter_read( id ) + 1 > \
seen( id, cn< ( counter_read( id ) + 1 ) & ~ counter_read( id ) >, \
          cn< ( counter_read( id ) + 1 ) & counter_read( id ) > )

Quick demo (see it run):

struct my_cnt {};

int const a = counter_read( my_cnt );
counter_inc( my_cnt );
counter_inc( my_cnt );
counter_inc( my_cnt );
counter_inc( my_cnt );
counter_inc( my_cnt );

int const b = counter_read( my_cnt );

counter_inc( my_cnt );

#include <iostream>

int main() {
    std::cout << a << ' ' << b << '\n';

    std::cout << counter_read( my_cnt ) << '\n';
}

Apologies to those misled by my previous answer.

share|improve this answer

I was thinking to solve this problem for quite sometime, and have come up with a very short-clean solution. At least I deserve one upvote to try this out. :))

Following library code achieves namespace level functionality. i.e. I am successful to implement counter_read and counter_inc; but not the counter_inc_t (which is incremented inside function because template classes are not allowed inside function)

template<unsigned int NUM> struct Counter { enum { value = Counter<NUM-1>::value }; };
template<> struct Counter<0> { enum { value = 0 }; };

#define counter_read Counter<__LINE__>::value
#define counter_inc template<> struct Counter<__LINE__> { enum { value = Counter<__LINE__-1>::value + 1}; }

This technique uses template meta-programming and leverages the __LINE__ macro. See the result for the code from your answer.

share|improve this answer
Very nice! However, this incurs a level of template nesting for each source line, so for large files it likely won't compile. – Potatoswatter Jun 2 '11 at 7:31
Also, it will get confused if used it two different header files. (But namespaces can be used to contain the damage.) – Potatoswatter Jun 2 '11 at 8:17
1  
1 << 9 is only 512 ;v) . See ideone.com/dOXTG . As you can see from the error message, 512 is exactly the highest value that is guaranteed to work with this version of this compiler. – Potatoswatter Jun 2 '11 at 8:27
@Potatoswatter, agreed. I miffed between binary and decimal :). You are right 512 is too low. May be this code need to enhanced. – iammilind Jun 2 '11 at 8:51

You could use BOOST_PP_COUNTER from Boost.Preprocessor.

Advantage: it works even for macros

Disadvantage: there is only one "counter kind" for the whole program, but the mechanism may be reimplemented for dedicated counters

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.