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.

Say I have a base class with a flag inside of it which derived classes have to set:

struct Base
{
    bool flag;
    Base(bool flag):flag(flag) {}
};

I want to configure which derived classes set the flag to true/false in a data-driven way - i.e. I'd like to configure this from a header.

struct Derived1 : Base
{
    Derived1() : Base( expr ) {}
};

Where expr is something (don't know what yet) that is able to get the info from the header - tell whether Derived1 should make flag true or false. Ideally, I'd get an error if I make a new derived class but fail to specify the flag in the header, but this isn't mandatory. This way I can just modify a single central location to make changes.

What's the idiomatic approach for this?

share|improve this question
1  
Why wouldn't a constant template parameter work? – Gearoid Murphy Feb 4 at 12:14
@LuchianGrigore I guess maaaayybe if you have the field declared on the derived and initialize it constexpr, you could read it with a trait emplying declval<T>() - this is an extremely long shot though. – sehe Feb 4 at 12:25

4 Answers

up vote 2 down vote accepted

An alternative version that uses a single function might be more compact:

struct Derived1 : Base
{
    Derived1() : Base(theFlag(this)) {}
};

Then in the header:

template <typename T>
bool theFlag(T*)
{
   if (typeid(T) == typeid(Derived1)) return true;
   if (typeid(T) == typeid(Derived2)) return false;
   if (typeid(T) == typeid(Derived3)) return true;

   throw std::runtime_error("No theFlag is given for this type");
}

If you are married to the compile-time check, the best you could do is to introduce a bit of duplication:

template <typename T>
bool theFlag(T*)
{
   static_assert(
      std::is_same<T, Derived1>::value ||
      std::is_same<T, Derived2>::value ||
      std::is_same<T, Derived3>::value,
      "No theFlag is given for this type"
   );

   if (typeid(T) == typeid(Derived1)) return true;
   if (typeid(T) == typeid(Derived2)) return false;
   if (typeid(T) == typeid(Derived3)) return true;
}

This basically relies on SFINAE - the compiler would not be able to find an overload for theFlag if you called it with an unsupported argument, essentially.

share|improve this answer
Hmmmm, this one looks nicer, yes. – Luchian Grigore Feb 4 at 12:20
I'm not convinced that the static_assert is right. That is, I'm sure it's not. Perhaps someone can help me correct it before my initial 5 mins are up? :P – Lightness Races in Orbit Feb 4 at 12:20
It's completely wrong. Either you perform the type dispatching at compiletime via template specialization, in which case you can static_assert, or the assert will always fail. – DeadMG Feb 4 at 12:21
@DeadMG: Yep -- I don't think that I can improve this any further without ending up back at the other answer. – Lightness Races in Orbit Feb 4 at 12:22
constexpr, anyone? – sehe Feb 4 at 12:25

You could write:

struct Derived1 : Base
{
    Derived1() : Base(Concept<Derived1>::theFlag) {}
};

And your header could have the following:

template <typename T>
struct Concept
{};

template <>
struct Concept<Derived1>
{
   static const bool theFlag = true;
};

with the specialisation repeated for each type.

Is that what you meant? Compilation will fail when you didn't give a flag value for some DerivedN.

share|improve this answer
Perhaps it's a runtime parameter? – Gearoid Murphy Feb 4 at 12:15
@Gearoid: The contents of headers cannot be decided at runtime. – Lightness Races in Orbit Feb 4 at 12:16
@GearoidMurphy no. It's compile-time. @ Lightness yes, similar to this, but I'd like a more compact version. – Luchian Grigore Feb 4 at 12:16
@LuchianGrigore: I'm not sure that I can beat this. C++ doesn't have any sort of native data interchange format. – Lightness Races in Orbit Feb 4 at 12:17
Could the same effect be achieved by an enumerated constant? – Gearoid Murphy Feb 4 at 12:18
show 6 more comments

I'd write a trait class for flags and use a macro to define specializations:

#include <type_traits>

template<typename T>
struct FlagTrait {
    static_assert(std::is_void<T>::value, "No flag defined for this type.");
};

#define DEFINE_FLAG(Type, Val)               \
        template<>                           \
        struct FlagTrait<class Type>         \
            : std::integral_constant<bool, Val> {};

template<typename T>
constexpr bool getFlag(T) { return FlagTrait<T>::value; }

#define GET_FLAG getFlag(*this)

Now all we need to do for each new derived class is to add a line with class name and value of the flag:

DEFINE_FLAG(Derived1, true)
DEFINE_FLAG(Derived2, false)

Usage:

struct Base
{
    bool flag;
    Base(bool flag):flag(flag) {}
};

struct Derived1 : Base
{
    Derived1() : Base(GET_FLAG) {}
};

struct Derived2 : Base
{
     Derived2() : Base(GET_FLAG) {}
};
share|improve this answer
I like this. +1 – Lightness Races in Orbit Feb 4 at 13:52

Here's a pure compile-time solution:

struct Derived1 ;
struct Derived2 ;
template <typename Derived> struct Bootstrap
{
    bool init(Derived1 *) { return true ; }
    bool init(Derived2 *) { return false ; }
    Bootstrap():flag(init(static_cast<Derived *>(this))){}
    bool flag ;
};
struct Derived1: public Bootstrap <Derived1> {};
struct Derived2: public Bootstrap <Derived2> {};
int main()
{
    Derived1 d1 ;
    Derived2 d2 ;
    std::cout<<d1.flag<<" "<<d2.flag<<std::endl ;
    return 0 ;
}

EDIT

As pointed out by 'Lightness Races in Orbit', static_cast during ctor process can cause Undefined Behabiour (UB). Here's an updated implementation which negates the need for the static_cast operator:

#include <iostream>
struct Derived1 ;
struct Derived2 ;
namespace BootstrapDetail
{
    template <typename Identifier> bool init();
    template <> bool init <Derived1>() { return true ; }
    template <> bool init <Derived2>() { return false ; }
}
template <typename Derived> struct Bootstrap
{
    Bootstrap(): flag(BootstrapDetail::init<Derived>()) {}
    bool flag ;
};
struct Derived1: public Bootstrap <Derived1> {};
struct Derived2: public Bootstrap <Derived2> {};
int main()
{
    Derived1 d1 ;
    Derived2 d2 ;
    std::cout<<d1.flag<<" "<<d2.flag<<std::endl ;
    return 0 ;
}
share|improve this answer
struct Derived1* and struct Derived2* cough – Xeo Feb 4 at 12:31
Does that convention need to be followed in C++? – Gearoid Murphy Feb 4 at 12:33
3  
No, but it keeps the code shorter. :) It's effectively an inline declaration, meaning you don't need the struct Derived1; and struct Derived2; at the top anymore. – Xeo Feb 4 at 12:36
Awesome, I did not know that. Does it work for 'class' structures too? – Gearoid Murphy Feb 4 at 12:38
2  
@GearoidMurphy: No some static casts are restricted during initialisation too (see 12.7/3, for example). Though I can't find any wording to prohibit your code. – Lightness Races in Orbit Feb 4 at 12:52
show 6 more comments

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.