mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
better serialisable enums (can be encapsulated into classes)
This commit is contained in:
parent
8a337f3070
commit
f8d11ff673
@ -83,12 +83,7 @@ namespace Grid {
|
|||||||
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
||||||
write(const std::string& s, const U &output);
|
write(const std::string& s, const U &output);
|
||||||
template <typename U>
|
template <typename U>
|
||||||
typename std::enable_if<std::is_enum<U>::value, void>::type
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
||||||
write(const std::string& s, const U &output);
|
|
||||||
template <typename U>
|
|
||||||
typename std::enable_if<
|
|
||||||
!(std::is_base_of<Serializable, U>::value or std::is_enum<U>::value),
|
|
||||||
void>::type
|
|
||||||
write(const std::string& s, const U &output);
|
write(const std::string& s, const U &output);
|
||||||
private:
|
private:
|
||||||
T *upcast;
|
T *upcast;
|
||||||
@ -107,12 +102,7 @@ namespace Grid {
|
|||||||
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
typename std::enable_if<std::is_base_of<Serializable, U>::value, void>::type
|
||||||
read(const std::string& s, U &output);
|
read(const std::string& s, U &output);
|
||||||
template <typename U>
|
template <typename U>
|
||||||
typename std::enable_if<std::is_enum<U>::value, void>::type
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
||||||
read(const std::string& s, U &output);
|
|
||||||
template <typename U>
|
|
||||||
typename std::enable_if<
|
|
||||||
!(std::is_base_of<Serializable, U>::value or std::is_enum<U>::value),
|
|
||||||
void>::type
|
|
||||||
read(const std::string& s, U &output);
|
read(const std::string& s, U &output);
|
||||||
protected:
|
protected:
|
||||||
template <typename U>
|
template <typename U>
|
||||||
@ -221,17 +211,7 @@ namespace Grid {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
template <typename U>
|
template <typename U>
|
||||||
typename std::enable_if<std::is_enum<U>::value, void>::type
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
||||||
Writer<T>::write(const std::string &s, const U &output)
|
|
||||||
{
|
|
||||||
EnumIO<U>::write(*this, s, output);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
|
||||||
template <typename U>
|
|
||||||
typename std::enable_if<
|
|
||||||
!(std::is_base_of<Serializable, U>::value or std::is_enum<U>::value),
|
|
||||||
void>::type
|
|
||||||
Writer<T>::write(const std::string &s, const U &output)
|
Writer<T>::write(const std::string &s, const U &output)
|
||||||
{
|
{
|
||||||
upcast->writeDefault(s, output);
|
upcast->writeDefault(s, output);
|
||||||
@ -266,17 +246,7 @@ namespace Grid {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
template <typename U>
|
template <typename U>
|
||||||
typename std::enable_if<std::is_enum<U>::value, void>::type
|
typename std::enable_if<!std::is_base_of<Serializable, U>::value, void>::type
|
||||||
Reader<T>::read(const std::string &s, U &output)
|
|
||||||
{
|
|
||||||
EnumIO<U>::read(*this, s, output);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
|
||||||
template <typename U>
|
|
||||||
typename std::enable_if<
|
|
||||||
!(std::is_base_of<Serializable, U>::value or std::is_enum<U>::value),
|
|
||||||
void>::type
|
|
||||||
Reader<T>::read(const std::string &s, U &output)
|
Reader<T>::read(const std::string &s, U &output)
|
||||||
{
|
{
|
||||||
upcast->readDefault(s, output);
|
upcast->readDefault(s, output);
|
||||||
@ -300,7 +270,6 @@ namespace Grid {
|
|||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -114,35 +114,33 @@ THE SOFTWARE.
|
|||||||
#define GRID_MACRO_WRITE_MEMBER(A,B) Grid::write(WR,#B,obj. B);
|
#define GRID_MACRO_WRITE_MEMBER(A,B) Grid::write(WR,#B,obj. B);
|
||||||
|
|
||||||
#define GRID_SERIALIZABLE_CLASS_MEMBERS(cname,...) \
|
#define GRID_SERIALIZABLE_CLASS_MEMBERS(cname,...) \
|
||||||
\
|
\
|
||||||
\
|
\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_MEMBER,__VA_ARGS__)) \
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_MEMBER,__VA_ARGS__)) \
|
||||||
\
|
\
|
||||||
\
|
\
|
||||||
template <typename T>\
|
template <typename T>\
|
||||||
static inline void write(Writer<T> &WR,const std::string &s, const cname &obj){ \
|
static inline void write(Writer<T> &WR,const std::string &s, const cname &obj){ \
|
||||||
push(WR,s);\
|
push(WR,s);\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_WRITE_MEMBER,__VA_ARGS__)) \
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_WRITE_MEMBER,__VA_ARGS__)) \
|
||||||
pop(WR);\
|
pop(WR);\
|
||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
\
|
\
|
||||||
template <typename T>\
|
template <typename T>\
|
||||||
static inline void read(Reader<T> &RD,const std::string &s, cname &obj){ \
|
static inline void read(Reader<T> &RD,const std::string &s, cname &obj){ \
|
||||||
push(RD,s);\
|
push(RD,s);\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_READ_MEMBER,__VA_ARGS__)) \
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_READ_MEMBER,__VA_ARGS__)) \
|
||||||
pop(RD);\
|
pop(RD);\
|
||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
\
|
\
|
||||||
friend inline std::ostream & operator << (std::ostream &os, const cname &obj ) { \
|
friend inline std::ostream & operator << (std::ostream &os, const cname &obj ) { \
|
||||||
os<<"class "<<#cname<<" {"<<std::endl;\
|
os<<"class "<<#cname<<" {"<<std::endl;\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_OS_WRITE_MEMBER,__VA_ARGS__)) \
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_OS_WRITE_MEMBER,__VA_ARGS__)) \
|
||||||
os<<"}"; \
|
os<<"}"; \
|
||||||
return os;\
|
return os;\
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define GRID_ENUM_TYPE(obj) std::remove_reference<decltype(obj)>::type
|
#define GRID_ENUM_TYPE(obj) std::remove_reference<decltype(obj)>::type
|
||||||
#define GRID_MACRO_ENUMVAL(A,B) A = B,
|
#define GRID_MACRO_ENUMVAL(A,B) A = B,
|
||||||
@ -150,44 +148,52 @@ THE SOFTWARE.
|
|||||||
#define GRID_MACRO_ENUMTEST(A,B) else if (buf == #A) {obj = GRID_ENUM_TYPE(obj)::A;}
|
#define GRID_MACRO_ENUMTEST(A,B) else if (buf == #A) {obj = GRID_ENUM_TYPE(obj)::A;}
|
||||||
#define GRID_MACRO_ENUMCASEIO(A,B) case GRID_ENUM_TYPE(obj)::A: os << #A; break;
|
#define GRID_MACRO_ENUMCASEIO(A,B) case GRID_ENUM_TYPE(obj)::A: os << #A; break;
|
||||||
|
|
||||||
namespace Grid {
|
|
||||||
template <typename U>
|
|
||||||
class EnumIO {};
|
|
||||||
}
|
|
||||||
|
|
||||||
#define GRID_SERIALIZABLE_ENUM(name,undefname,...)\
|
#define GRID_SERIALIZABLE_ENUM(name,undefname,...)\
|
||||||
enum class name {\
|
class name: public Serializable\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMVAL,__VA_ARGS__))\
|
{\
|
||||||
undefname = -1\
|
public:\
|
||||||
|
enum EnumType\
|
||||||
|
{\
|
||||||
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMVAL,__VA_ARGS__))\
|
||||||
|
undefname = -1\
|
||||||
};\
|
};\
|
||||||
|
public:\
|
||||||
|
name(void): value_(undefname) {};\
|
||||||
|
name(EnumType value): value_(value) {};\
|
||||||
|
template <typename T>\
|
||||||
|
static inline void write(Writer<T> &WR,const std::string &s, const name &obj)\
|
||||||
|
{\
|
||||||
|
switch (obj.value_)\
|
||||||
|
{\
|
||||||
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMCASE,__VA_ARGS__))\
|
||||||
|
default: Grid::write(WR,s,#undefname); break;\
|
||||||
|
}\
|
||||||
|
}\
|
||||||
\
|
\
|
||||||
template<>\
|
template <typename T>\
|
||||||
class EnumIO<name> {\
|
static inline void read(Reader<T> &RD,const std::string &s, name &obj)\
|
||||||
public:\
|
{\
|
||||||
template <typename T>\
|
std::string buf;\
|
||||||
static inline void write(Writer<T> &WR,const std::string &s, const name &obj){ \
|
Grid::read(RD, s, buf);\
|
||||||
switch (obj) {\
|
if (buf == #undefname) {obj = name::undefname;}\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMCASE,__VA_ARGS__))\
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMTEST,__VA_ARGS__))\
|
||||||
default: Grid::write(WR,s,#undefname); break;\
|
else {obj = name::undefname;}\
|
||||||
}\
|
}\
|
||||||
}\
|
inline operator EnumType(void) const\
|
||||||
\
|
{\
|
||||||
template <typename T>\
|
return value_;\
|
||||||
static inline void read(Reader<T> &RD,const std::string &s, name &obj){ \
|
}\
|
||||||
std::string buf;\
|
inline friend std::ostream & operator<<(std::ostream &os, const name &obj)\
|
||||||
Grid::read(RD, s, buf);\
|
{\
|
||||||
if (buf == #undefname) {obj = name::undefname;}\
|
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMTEST,__VA_ARGS__))\
|
|
||||||
else {obj = name::undefname;}\
|
|
||||||
}\
|
|
||||||
};\
|
|
||||||
\
|
|
||||||
inline std::ostream & operator << (std::ostream &os, const name &obj ) { \
|
|
||||||
switch (obj) {\
|
switch (obj) {\
|
||||||
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMCASEIO,__VA_ARGS__))\
|
GRID_MACRO_EVAL(GRID_MACRO_MAP(GRID_MACRO_ENUMCASEIO,__VA_ARGS__))\
|
||||||
default: os << #undefname; break;\
|
default: os << #undefname; break;\
|
||||||
}\
|
}\
|
||||||
return os;\
|
return os;\
|
||||||
};
|
}\
|
||||||
|
private:\
|
||||||
|
EnumType value_;\
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user