C++ Custom Enum Struct for INI file reader - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:24:53Z http://stackoverflow.com/feeds/question/855121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/855121/c-custom-enum-struct-for-ini-file-reader 0 C++ Custom Enum Struct for INI file reader Lirik 2009-05-12T22:07:35Z 2009-05-12T22:58:53Z <p>I'm trying to create an Enum that has a string label and a value and I plan to use this to read stuff from an ini file.</p> <p>For example in the ini file I might have some <code>double</code>, <code>int</code> or <code>string</code> type values preceded by the tag/name of the value:</p> <pre><code>SomeFloat = 0.5 SomeInteger = 5 FileName = ../Data/xor.csv </code></pre> <p>When I read the tag from a file it comes in as a <code>string</code>, so I'd just like to have <code>std::set</code> that keeps all of my values... when I read the tag I can just compare it against the <code>EnumType</code> and if matches the label then I will check the type and do the proper conversion (atoi or just use the string, etc.)</p> <p>For example:</p> <pre><code>EnumType&lt;int&gt; someInteger; someInteger.label = "SomeInteger"; someInteger.type = INT; std::set&lt;EnumType&gt; myValues; // // populate the set myValues.insert(someInteger); // void ProcessTagAndValue(const std::string &amp;tag, const std::string &amp;value) { switch(myValues[tag].type) { case INT: myValues[tag].value = atoi(value); break; case DOUBLE: // break; case STRING: myValues[tag].value = value; break; default: break; } } enum ValueType{INT,DOUBLE,STRING]; template &lt;class T&gt; struct EnumType{ std::string label; ValueType type; T value; bool operator==(const EnumType &amp;other) const { return this-&gt;label == other.label; } bool operator==(const T&amp; other ) const { return this-&gt;value == other; } T&amp; operator=(const T&amp; p) { value = p; return value; } EnumType&amp; operator=(const EnumType&amp; p) { if (this != &amp;p) { // make sure not same object this-&gt;label = p.label; this-&gt;value = p.value; } return *this; } }; </code></pre> <p>I have several questions:</p> <ol> <li><p>Can you guys tell me any better solutions? I'm not sure if I'm trying to be too clever for my own good, or if this is really a viable solution.</p></li> <li><p>If my solution is acceptable, then can anybody tell me how I can declare a set of <code>std::set&lt;EnumType&lt;...&gt;&gt;</code> so that it can accept any type (int, double, string) without me actually knowing which type the enum is going to be using for the value?</p></li> </ol> <p>If you have any code, then it would be GREAT! :)</p> http://stackoverflow.com/questions/855121/c-custom-enum-struct-for-ini-file-reader/855145#855145 1 Answer by Harper Shelby for C++ Custom Enum Struct for INI file reader Harper Shelby 2009-05-12T22:16:13Z 2009-05-12T22:16:13Z <p>Have you looked at <a href="http://www.boost.org/doc/libs/1%5F39%5F0/doc/html/any.html" rel="nofollow">Boost.Any</a>? It should do what you want (and if you <em>need</em> to roll your own, you can peek at the source for hints).</p> http://stackoverflow.com/questions/855121/c-custom-enum-struct-for-ini-file-reader/855291#855291 1 Answer by Konstantin for C++ Custom Enum Struct for INI file reader Konstantin 2009-05-12T22:58:53Z 2009-05-12T22:58:53Z <p>If you have limited and very stable set of types, then <a href="http://www.boost.org/doc/libs/1%5F39%5F0/doc/html/variant.html" rel="nofollow">Boost.Variant</a> may be used. If you going to add support for new types later, then better forget about this method. In this situation solution, based on <a href="http://www.boost.org/doc/libs/1%5F39%5F0/doc/html/any.html" rel="nofollow">Boost.Any</a>, or pair of strings will be better.</p> <pre><code>typedef boost::variant&lt;int, double, std::string&gt; ValueType; struct EnumType { std::string label; ValueType value; }; </code></pre> <p>Another question is: "How these values will be used later?" If you are going to pass "SomeInteger" to function, accepting int, you still have to run code similar to:</p> <pre><code>acceptInt( get&lt;int&gt;( v.value ) ); // get may throw </code></pre> <p>This approach works better when you have uniform processing of fixed set of types:</p> <pre><code>class processValue : public boost::static_visitor&lt;&gt; { public: void operator()(int i) const { acceptInt( i ); } void operator()(double d) const { acceptDouble( d ); } void operator()(const std::string &amp; str) const { acceptString( str ); } }; boost::apply_visitor( processValue(), v.value ); </code></pre>