TAMSVIZ
Visualization and annotation tool for ROS
struct.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "property.h"
7 
8 template <class T>
9 auto properties(T &v, std::vector<Property> &properties) -> decltype(
10  (*(T *)nullptr).properties(*((std::vector<Property> *)nullptr))) {
11  v.properties(properties);
12 }
13 
14 #define AUTO_STRUCT_BEGIN(name) \
15  struct name { \
16  name() {} \
17  bool operator==(const name &other) const { \
18  return Properties::equals(*this, other); \
19  } \
20  bool operator!=(const name &other) const { \
21  return !Properties::equals(*this, other); \
22  } \
23  void properties(std::vector<Property> &p) { \
24  Properties::properties(*this, p); \
25  } \
26  typedef struct { \
27  template <class T> static bool equals(const T &a, const T &b) { \
28  return true; \
29  } \
30  template <class T> \
31  static void properties(T &v, std::vector<Property> &p) {}
32 
33 #define AUTO_STRUCT_FIELD(type, name, ...) \
34  } \
35  Base_##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); \
40  } \
41  template <class T> \
42  static void properties(T &v, std::vector<Property> &p) { \
43  Base_##name::properties(v, p); \
44  p.emplace_back( \
45  []() { \
46  static std::shared_ptr<PropertyInfo> info = \
47  std::make_shared<PropertyInfoImpl<type>>( \
48  #name, GENERATE_PROPERTY_ATTRIBUTES(type, __VA_ARGS__)); \
49  return info; \
50  }(), \
51  &v.name); \
52  }
53 
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(...) \
57  } \
58  AUTO_STRUCT_IMPL_CONCAT(Base_, __LINE__); \
59  __VA_ARGS__; \
60  typedef struct : AUTO_STRUCT_IMPL_CONCAT(Base_, __LINE__) {
61 
62 #define AUTO_STRUCT_END() \
63  } \
64  Properties; \
65  } \
66  ;
67 
68 #define STRUCT_BEGIN(typename) \
69  static void properties(typename &v, std::vector<Property> &properties) {
70 
71 #define STRUCT_FIELD(fieldname, ...) \
72  properties.emplace_back( \
73  []() { \
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, \
80  __VA_ARGS__)); \
81  return info; \
82  }(), \
83  &v.fieldname);
84 
85 #define STRUCT_PROPERTY(propname, ...) \
86  properties.emplace_back( \
87  []() { \
88  static std::shared_ptr<PropertyInfo> info = std::make_shared< \
89  PropertyInfoImpl<typename std::remove_reference<decltype( \
90  v.propname())>::type>>( \
91  #propname, \
92  GENERATE_PROPERTY_ATTRIBUTES( \
93  typename std::remove_reference<decltype(v.propname())>::type, \
94  __VA_ARGS__)); \
95  return info; \
96  }(), \
97  &v.propname());
98 
99 #define STRUCT_END() }
100 
101 #define DECLARE_STRUCT_PROPERTY(type, name, def) \
102 protected: \
103  type _##name = def; \
104  \
105 public: \
106  inline const type &name() const { return _##name; } \
107  inline type &name() { return _##name; }