9 auto properties(T &v, std::vector<Property> &properties) -> decltype(
10 (*(T *)
nullptr).properties(*((std::vector<Property> *)
nullptr))) {
11 v.properties(properties);
14 #define AUTO_STRUCT_BEGIN(name) \ 17 bool operator==(const name &other) const { \ 18 return Properties::equals(*this, other); \ 20 bool operator!=(const name &other) const { \ 21 return !Properties::equals(*this, other); \ 23 void properties(std::vector<Property> &p) { \ 24 Properties::properties(*this, p); \ 27 template <class T> static bool equals(const T &a, const T &b) { \ 31 static void properties(T &v, std::vector<Property> &p) {} 33 #define AUTO_STRUCT_FIELD(type, name, ...) \ 36 type name = type(PROPERTY_FIRST_ARGUMENT(__VA_ARGS__)); \ 37 typedef struct : Base_##name { \ 38 template <class T> static bool equals(const T &a, const T &b) { \ 39 return Base_##name::equals(a, b) && (a.name == b.name); \ 42 static void properties(T &v, std::vector<Property> &p) { \ 43 Base_##name::properties(v, p); \ 46 static std::shared_ptr<PropertyInfo> info = \ 47 std::make_shared<PropertyInfoImpl<type>>( \ 48 #name, GENERATE_PROPERTY_ATTRIBUTES(type, __VA_ARGS__)); \ 54 #define AUTO_STRUCT_IMPL_CONCAT_2(a, b) a##b 55 #define AUTO_STRUCT_IMPL_CONCAT(a, b) AUTO_STRUCT_IMPL_CONCAT_2(a, b) 56 #define AUTO_STRUCT_EXTRA(...) \ 58 AUTO_STRUCT_IMPL_CONCAT(Base_, __LINE__); \ 60 typedef struct : AUTO_STRUCT_IMPL_CONCAT(Base_, __LINE__) { 62 #define AUTO_STRUCT_END() \ 68 #define STRUCT_BEGIN(typename) \ 69 static void properties(typename &v, std::vector<Property> &properties) { 71 #define STRUCT_FIELD(fieldname, ...) \ 72 properties.emplace_back( \ 74 static std::shared_ptr<PropertyInfo> info = \ 75 std::make_shared<PropertyInfoImpl< \ 76 typename std::remove_reference<decltype(v.fieldname)>::type>>( \ 77 #fieldname, GENERATE_PROPERTY_ATTRIBUTES( \ 78 typename std::remove_reference<decltype( \ 79 v.fieldname)>::type, \ 85 #define STRUCT_PROPERTY(propname, ...) \ 86 properties.emplace_back( \ 88 static std::shared_ptr<PropertyInfo> info = std::make_shared< \ 89 PropertyInfoImpl<typename std::remove_reference<decltype( \ 90 v.propname())>::type>>( \ 92 GENERATE_PROPERTY_ATTRIBUTES( \ 93 typename std::remove_reference<decltype(v.propname())>::type, \ 99 #define STRUCT_END() } 101 #define DECLARE_STRUCT_PROPERTY(type, name, def) \ 103 type _##name = def; \ 106 inline const type &name() const { return _##name; } \ 107 inline type &name() { return _##name; }