vote up 9 vote down star
7

It is common knowledge that built-in enums in C++ are not typesafe. I was wondering which classes implementing typesafe enums are used out there... I myself use the following "bicycle", but it is somewhat verbose and limited:

typesafeenum.h:

struct TypesafeEnum
{
// Construction:
public:
    TypesafeEnum(): id (next_id++), name("") {}
    TypesafeEnum(const std::string& n): id(next_id++), name(n) {}

// Operations:
public:
    bool operator == (const TypesafeEnum& right) const;
    bool operator != (const TypesafeEnum& right) const;
    bool operator < (const TypesafeEnum& right) const;

    std::string to_string() const { return name; }

// Implementation:
private:
    static int next_id;
    int id;
    std::string name;
};

typesafeenum.cpp:

int TypesafeEnum::next_id = 1;

bool TypesafeEnum::operator== (const TypesafeEnum& right) const 
{ return id == right.id; }

bool TypesafeEnum::operator!= (const TypesafeEnum& right) const 
{ return !operator== (right); }

bool TypesafeEnum::operator< (const TypesafeEnum& right) const  
{ return id < right.id; }

Usage:

class Dialog 
{
 ...
    struct Result: public TypesafeEnum
    {
        static const Result CANCEL("Cancel");
        static const Result OK("Ok");
    };


    Result doModal();
 ...
};

const Dialog::Result Dialog::Result::OK;
const Dialog::Result Dialog::Result::CANCEL;

Addition: I think I should have been more specific about the requirements. I'll try to summarize them:

Priority 1: Setting an enum variable to an invalid value should be impossible (a compile-time error) with no exceptions.

Priority 2: Converting an enum value to/from an int should be possible with a single explicit function/method call.

Priority 3: As compact, elegant and convenient declaration and usage as possible

Priority 4: Converting enum values to and from strings.

Priority 5: (Nice to have) Possibility to iterate over enum values.

flag

80% accept rate

9 Answers

vote up 7 vote down check

I'm currently playing around with the Boost.Enum proposal from the Boost Vault (filename enum_rev4.6.zip). Although it was never officially submitted for inclusion into Boost, it's useable as-is. (Documentation is lacking but is made up for by clear source code and good tests.)

Boost.Enum lets you declare an enum like this:

BOOST_ENUM_VALUES(Level, const char*,
    (Abort)("unrecoverable problem")
    (Error)("recoverable problem")
    (Alert)("unexpected behavior")
    (Info) ("expected behavior")
    (Trace)("normal flow of execution")
    (Debug)("detailed object state listings")
)

And have it automatically expand to this:

class Level : public boost::detail::enum_base<Level, string>
{
public:
    enum domain
    {
        Abort,
        Error,
        Alert,
        Info,
        Trace,
        Debug,
    };

    BOOST_STATIC_CONSTANT(index_type, size = 6);

    Level() {}
    Level(domain index) : boost::detail::enum_base<Level, string>(index) {}

    typedef boost::optional<Level> optional;
    static optional get_by_name(const char* str)
    {
        if(strcmp(str, "Abort") == 0) return optional(Abort);
        if(strcmp(str, "Error") == 0) return optional(Error);
        if(strcmp(str, "Alert") == 0) return optional(Alert);
        if(strcmp(str, "Info") == 0) return optional(Info);
        if(strcmp(str, "Trace") == 0) return optional(Trace);
        if(strcmp(str, "Debug") == 0) return optional(Debug);
        return optional();
    }

private:
    friend class boost::detail::enum_base<Level, string>;
    static const char* names(domain index)
    {
        switch(index)
        {
        case Abort: return "Abort";
        case Error: return "Error";
        case Alert: return "Alert";
        case Info: return "Info";
        case Trace: return "Trace";
        case Debug: return "Debug";
        default: return NULL;
        }
    }

    typedef boost::optional<value_type> optional_value;
    static optional_value values(domain index)
    {
        switch(index)
        {
        case Abort: return optional_value("unrecoverable problem");
        case Error: return optional_value("recoverable problem");
        case Alert: return optional_value("unexpected behavior");
        case Info: return optional_value("expected behavior");
        case Trace: return optional_value("normal flow of execution");
        case Debug: return optional_value("detailed object state listings");
        default: return optional_value();
        }
    }
};

It satisfies all five of the priorities which you list.

link|flag
why is this needed to solve a problem that dosn't exist??!! head explodes – Nelson LaQuet Jan 14 at 21:42
3  
No need for exploding heads; the complexity is nicely hidden behind macros and a clean interface. And standard C enums have several real problems: lack of type safety, no ability to query an enum type for its max size, lack of automatic conversion to/from strings. – Josh Kelley Jan 14 at 22:21
This is what I was looking for, thanks! :) – triton May 26 at 13:59
I originally designed boost::enum to be sort of a string table that was built at compile-time and could be used at run-time. Eventually it morphed into a more generic type-safe enum. It never got included with boost because of my lack of time to dedicate to documentation. Nice to see it out in the wild! – fried Nov 22 at 10:21
vote up 12 vote down

A nice compromise method is this:

struct Flintstones {
   enum E {
      Fred,
      Barney,
      Wilma
   };
};

Flintstones::E fred = Flintstones::Fred;
Flintstones::E barney = Flintstones::Barney;

It's not typesafe in the same sense that your version is, but the usage is nicer than standard enums, and you can still take advantage of integer conversion when you need it.

link|flag
Very nice. Good work! – Nelson LaQuet Oct 20 '08 at 8:43
Wouldn't this be cleaner with a namespace instead of a struct? – jmucchiello Feb 7 at 17:07
Interesting thought. That would eliminate one occasional issue with this, which is having someone attempt to declare a Flintstones rather than a Flintstones::E. – Charlie Feb 8 at 15:19
Follow-up on the namespace thing: for enums that live inside a class or struct, you can't use a namespace. If the enum doesn't live in a class or struct, I think you're right that using a namespace is cleaner. – Charlie Oct 17 at 2:40
vote up 6 vote down

I don't. Way too much overhead for little benefit. Also, being able to caste enumerations to different data types for serialization is a very handy tool. I have never seen an instance where a "Type safe" enumeration would be worth the overhead and complexity where C++ offers a good enough implementation already.

link|flag
Don't shoot the messenger... Up voting again – fizzer Oct 20 '08 at 7:13
vote up 5 vote down

I use C++0x typesafe enums. I use some helper template/macros that provide the to/from string functionality.

enum class Result { Ok, Cancel};
link|flag
Which compilers support this? – Joachim Sauer Oct 27 at 11:30
Why not ask stackoverflow? :-) stackoverflow.com/questions/934183/… – Roddy Oct 27 at 12:06
@Roddy: so basically you’re using a feature that just one compiler supports, on up-to-date systems (as opposed to most systems, which do not have gcc 4.4 yet)? – Konrad Rudolph 14 hours ago
vote up 2 vote down

My take is that you're inventing a problem and then fitting a solution onto it. I see no need to do an elaborate framework for an enumeration of values. If you are dedicated to having your values only be members of a certain set, you could hack up a variant of a unique set datatype.

link|flag
vote up 1 vote down

I gave an answer to this here, on a different topic. It's a different style of approach which allows most of the same functionality without requiring modification to the original enum definition (and consequently allowing usage in cases where you don't define the enum). It also allows runtime range checking.

The downside of my approach is that it doesn't programmatically enforce the coupling between the enum and the helper class, so they have to be updated in parallel. It works for me, but YMMV.

link|flag
vote up 0 vote down

I think the Java enum would be a good model to follow. Essentially, the Java form would look like this:

public enum Result {
    OK("OK"), CANCEL("Cancel");

    private final String name;

    Result(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }
}

What's interesting about the Java approach is that OK and CANCEL are immutable, singleton instances of Result (with the methods that you see). You cannot create any further instances of Result. Since they're singletons, you can compare by pointer/reference---very handy. :-)

ETA: In Java, instead of doing bitmasks by hand, instead you use an EnumSet to specify a bit set (it implements the Set interface, and works like sets---but implemented using bitmasks). Much more readable than hand-written bitmask manipulation!

link|flag
That's very nice, but how can we do this in c++? And I think using addresses for comparison is not very harmless, consider if enum values get serialized on disk? Each time we might get different ordering. – Alex Jenter Oct 20 '08 at 5:47
Remember, in Java, you can't do < comparisons on pointers, only == or !=. So as long as they're distinct, that's good enough to compare by pointer. :-) I'll see if I can write a C++ implementation sometime. – Chris Jester-Young Oct 20 '08 at 5:57
the java enum seems to be an instance of cope's curiously recurring pattern (en.wikipedia.org/wiki/…). naict by googleing, no one has tried this approach. i wonder if it is due to the difference between java generics and the stl semantics? – Ray Tayek Oct 20 '08 at 15:39
vote up 0 vote down

Here's my answer to a previous question, Should I use #define, enum or const?. Seems pretty germane.

link|flag
vote up 0 vote down

Not sure if this post is too late, but there's an article on GameDev.net which satisfies all but the 5th point (ability to iterate over enumerators): http://www.gamedev.net/reference/snippets/features/cppstringizing/

The method described by the article allows string conversion support for existing enumerations without changing their code. If you only want support for new enumerations though, I'd go with Boost.Enum (mentioned above).

link|flag

Your Answer

Get an OpenID
or

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