I have a program with a set of input and a set of out variables that I exchange with an Apache/PHP webpage using XML. The webpage is where users can see what is configured/going on and can change settings.
When I pass the XML to the PHP program (we use Unix_domain Sockets) I add a lot of meta-information about the settings and indicators I'm passing to him. Things like datatype, min, max, default, read/write privileges, etc.
<temperature datatype="INT32" min=-"40" max="150" permissions="R/O">25</temperature>
I need to know the metadata about each of my variables as I build the outbound xml. I though a good way to do this wouldbe to create a class VarInfo which I'd associate to each variable. Insted of storing the variable name as the key in the map (not sure I can always know the variable name) I thought of making the key be the pointer to the variable and the value be the pointer to a VarInfo object for that variable. Only way I know to store mixed pointer types is to cast them all to void*. So, something like:
bool cmpr( void* a, void*b) { return (long)a < (long)b;};
std::map<void*,VarInfo*,cmpr> VarMap;
int temperature;
VarInfo vi_temperature;
VarMap[(void*)&temperature] = &vi_temperature;
Doing this create a bunch of errors about declaring the map.
expected a type, got ‘cmpr’ ACT_iod.cpp
Invalid template arguments ACT_iod.cpp line 40 Semantic Error
invalid type in declaration before ‘;’ token
type/value mismatch at argument 3 in template parameter list for
‘template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map’
So, can someone suggest how I might get this working and probably also suggest a better way to store the metainfo? Still thinking about changing to std::string's as the key.
Thanks.
comprto afunctorobject (that overridesoperator()) for your types. That's not encouraging or discouraging the overall approach, as I haven't thought that much about it. – Chad Jun 28 '12 at 18:39