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.

Is it possible to check this:

template<class IntType,IntType value>
struct X{};

What I mean by this is, is it possible to check that value supplied by user will "fit" into IntType (which can be any of std integer types) type? For example, I would like to detect something like this:

X<char,300> a;//here 300 is out of range and I would like to be able to detect that.
share|improve this question
2  
What is your goal? – GManNickG Apr 5 '11 at 18:29
2  
@GMan: His goal is to check at compile time whether a given template parameter is within the allowable range of a given numeric type. – Lightness Races in Orbit Apr 5 '11 at 18:33
4  
@There @Tomalak: So we can solve problems rather than answer questions. If this was being used for some actual purpose and we knew that goal, we could take a completely different and possibly more appropriate route. Asking about the step is never as useful as asking about the goal. If someone asked "How do I resize my dynamic array?" the answer is to use a std::vector, not continue down the incorrect path. And you can answer in that fashion because you know the goal, not the step. – GManNickG Apr 5 '11 at 18:42
4  
@GMan: I mostly disagree with "answer the problem, not the question" on Stack Overflow. It's a Q&A site, not a P&A site. If someone asks a question, answer it... don't second guess them and try to intricately inspect their motivations for doing so. (That will come naturally in the comments anyway. :P) – Lightness Races in Orbit Apr 5 '11 at 18:54
3  
@Tomalak: I disagree with a straight Q&A approach. That'd be fine if the questioner knew what they were trying to do every time, but most of the time (that is, not exceptionally), they don't. My goal is to help people, which means understanding their goals. Burying my head in the sand and acting like I don't see the real problem or better approach is only hurting people. – GManNickG Apr 5 '11 at 18:56
show 30 more comments

3 Answers

up vote 2 down vote accepted

Now that you've changed X's signature from the way it was in the original unedited question, it's easily implemented using Boost.Integer:

#include <boost/static_assert.hpp>
#include <boost/cstdint.hpp>
#include <boost/integer_traits.hpp>

template<
    typename IntType,
    boost::uint64_t Value,
    bool IsSigned = boost::integer_traits<IntType>::is_signed
>
struct validate_range;

template<typename IntType, boost::uint64_t Value>
struct validate_range<IntType, Value, true>
{
    typedef boost::integer_traits<IntType> traits_t;
    static bool const value =
        static_cast<boost::int64_t>(Value) >= traits_t::const_min &&
        static_cast<boost::int64_t>(Value) <= traits_t::const_max;
};

template<typename IntType, boost::uint64_t Value>
struct validate_range<IntType, Value, false>
{
    typedef boost::integer_traits<IntType> traits_t;
    static bool const value =
        Value >= traits_t::const_min &&
        Value <= traits_t::const_max;
};

template<typename IntType, boost::uint64_t Value>
struct X
{
    BOOST_STATIC_ASSERT_MSG(
        (validate_range<IntType, Value>::value),
        "Value constant is out of range"
    );
};

int main()
{
    X<char, -2> x1;             // fine
    X<char, 2> x2;              // fine
    X<char, 255> x3;            // fails when char is signed by default
    X<unsigned char, -2> x4;    // fails
    X<unsigned char, 255> x5;   // fine
    X<unsigned char, 300> x6;   // fails
}
share|improve this answer
The problem is that the result of converting unsigned to signed is implementation-defined, which is why I say there's no general solution. But a definite +1 for the approach. – GManNickG Apr 5 '11 at 19:21
@GMan : All that matters is that converting signed to unsigned to signed roundtrips the value correctly, which I believe is safe to assume in all mainstream compilers. – ildjarn Apr 5 '11 at 19:26
Yes, hence the +1, but it's not a general solution. – GManNickG Apr 5 '11 at 19:27

Boost is the right way, but want you really want is what is coming the new C++0x standard: static asserts. Boost already implements it in boost_staticassert.

share|improve this answer
ok, so how to do it with static_assert? – There is nothing we can do Apr 5 '11 at 18:40
Its not that easy, but something like this should do it (warning, not checked): BOOST_STATIC_ASSERT(std::numeric_limits<IntType>::max() > 300); (here you cood use instead of the numeric_limit also the boost::integer_traits stuff. – flolo Apr 5 '11 at 18:50
2  
std::numeric_limits<T>::{max(),min()} are not constant. Good luck using them at compile-time. – Lightness Races in Orbit Apr 5 '11 at 18:56
Oops, didn't see your answer. +1, this is what I just typed in. – wheaties Apr 5 '11 at 18:56
@Tomalak : FWIW there's boost::integer_traits<T>::{const_max,const_min} which are constant expressions. – ildjarn Oct 5 '11 at 18:31

No. Given your code, 300 is converted to a char by the compiler before you ever get to see it.

The closest thing you can do is accept the argument into an integer parameter who's range is larger than your target type. Then check that the value will fit before converting. The only problem is signed versus unsigned, for which I don't think there's a general solution.

But not to worry: it's not your class's job to make sure the arguments are being supplied correctly; that would be the job of a utility type that simply doesn't exist. For better or for worse, C++ doesn't provide a clean mechanism for this because it assumes the programmer won't make these mistakes.

share|improve this answer
Agreed. Just hope that the programmer doesn't. If they do, it's their own fault. – Lightness Races in Orbit Apr 5 '11 at 18:54

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.