I am using std::map<const char*, boost::any> to store my library's settings. Each setting only uses a single underlying value type and I want to enforce this during configuration calls to set() or similar. Settings are initialized with default values of the correct type.

Here is some pseudo code that hopefully shows what I'm trying to achieve:

using namespace std;
using namespace boost;

void set(map<const char *, any> &settings, const char *key, any &value)
{
    if (type_of(value) != type_of(settings[key]) throw wrong_type_exception();
    settings[key] = value;
}

Is it possible to trap type errors like this at runtime? I'd prefer not to have template functions in my API if possible.

I've used boost::any but might consider boost::variant's which() if that's the only viable solution.

link|improve this question

74% accept rate
feedback

1 Answer

value.type() != settings[key].type()

If settings[key] doesn't previously exist, then settings[key].type() is typeid(void), which compares equal to value.type() if and only if value is empty. So you won't be able to add new setting/value pairs via this function, but based on the pseudo-code that seems to be intended.

link|improve this answer
Ah, didn't spot that one - but do I really want RTTI in my lib... – paperjam Dec 5 '11 at 11:16
@paperjam: does boost::any_cast work without RTTI? – Steve Jessop Dec 5 '11 at 11:36
Hmm - seems it may not but there is no fundamental reason boost::any_cast needs RTTI stackoverflow.com/a/2650805/674683 – paperjam Dec 5 '11 at 11:44
Seems strange to me, to implement some portion of RTTI (one distinct object per class) in order to avoid RTTI. It just means that when someone uses your code in a program that does have RTTI, they end up with two lots of overhead, the (larger) RTTI overhead plus your (smaller) pseudo-RTTI overhead. But anyway, if you bodge Boost.Any with the modified typeid implementation proposed in that anwer, then this code will work without RTTI too. – Steve Jessop Dec 5 '11 at 11:48
1  
@paperjam RTTI is an integral part of the language, I don't see why you would want not to use it, and in particular for configuration elements of which there are going to be just a few... – David Rodríguez - dribeas Dec 5 '11 at 12:27
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.