Fawkes API  Fawkes Development Version
DynamicReconfigureInterface.h
1 
2 /***************************************************************************
3  * DynamicReconfigureInterface.h - Fawkes BlackBoard Interface - DynamicReconfigureInterface
4  *
5  * Templated created: Thu Oct 12 10:49:19 2006
6  * Copyright 2017 Christoph Henke
7  *
8  ****************************************************************************/
9 
10 /* This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version. A runtime exception applies to
14  * this software (see LICENSE.GPL_WRE file mentioned below for details).
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Library General Public License for more details.
20  *
21  * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
22  */
23 
24 #ifndef _INTERFACES_DYNAMICRECONFIGUREINTERFACE_H_
25 #define _INTERFACES_DYNAMICRECONFIGUREINTERFACE_H_
26 
27 #include <interface/interface.h>
28 #include <interface/message.h>
29 #include <interface/field_iterator.h>
30 
31 namespace fawkes {
32 
34 {
35  /// @cond INTERNALS
36  INTERFACE_MGMT_FRIENDS(DynamicReconfigureInterface)
37  /// @endcond
38  public:
39  /* constants */
40 
41  /** Status of the last send message */
42  typedef enum {
43  Succeeded /**< Message was successful send */,
44  Failed /**< Message failed */
46  const char * tostring_LastMsgStatus(LastMsgStatus value) const;
47 
48  private:
49  /** Internal data storage, do NOT modify! */
50  typedef struct {
51  int64_t timestamp_sec; /**< Interface Unix timestamp, seconds */
52  int64_t timestamp_usec; /**< Interface Unix timestamp, micro-seconds */
53  char last_service[64]; /**< The last service for reconfiguration called. */
54  char last_parameter[64]; /**< The last parameter name. */
55  bool last_bool_value; /**< The last parameter value. */
56  char last_str_value[64]; /**< The last parameter value. */
57  uint32_t last_uint32_value; /**< The last parameter value. */
58  uint64_t last_uint64_value; /**< The last parameter value. */
59  float last_float_value; /**< The last parameter value. */
60  uint64_t last_msg_id; /**< The last parameter name. */
61  int32_t last_msg_status; /**< The last send message status. */
62  } DynamicReconfigureInterface_data_t;
63 
64  DynamicReconfigureInterface_data_t *data;
65 
66  interface_enum_map_t enum_map_LastMsgStatus;
67  public:
68  /* messages */
69  class SetBoolMessage : public Message
70  {
71  private:
72  /** Internal data storage, do NOT modify! */
73  typedef struct {
74  int64_t timestamp_sec; /**< Interface Unix timestamp, seconds */
75  int64_t timestamp_usec; /**< Interface Unix timestamp, micro-seconds */
76  char service[64]; /**< Name of the ROS service for dynamic reconfiguration. */
77  char parameter[64]; /**< Name of the ROS parameter. */
78  bool value; /**< The bool value. */
79  } SetBoolMessage_data_t;
80 
81  SetBoolMessage_data_t *data;
82 
83  interface_enum_map_t enum_map_LastMsgStatus;
84  public:
85  SetBoolMessage(const char * ini_service, const char * ini_parameter, const bool ini_value);
88 
89  explicit SetBoolMessage(const SetBoolMessage *m);
90  /* Methods */
91  char * service() const;
92  void set_service(const char * new_service);
93  size_t maxlenof_service() const;
94  char * parameter() const;
95  void set_parameter(const char * new_parameter);
96  size_t maxlenof_parameter() const;
97  bool is_value() const;
98  void set_value(const bool new_value);
99  size_t maxlenof_value() const;
100  virtual Message * clone() const;
101  };
102 
103  class SetStringMessage : public Message
104  {
105  private:
106  /** Internal data storage, do NOT modify! */
107  typedef struct {
108  int64_t timestamp_sec; /**< Interface Unix timestamp, seconds */
109  int64_t timestamp_usec; /**< Interface Unix timestamp, micro-seconds */
110  char service[64]; /**< Name of the ROS service for dynamic reconfiguration. */
111  char parameter[64]; /**< Name of the ROS parameter. */
112  char value[64]; /**< The value to set. */
113  } SetStringMessage_data_t;
114 
115  SetStringMessage_data_t *data;
116 
117  interface_enum_map_t enum_map_LastMsgStatus;
118  public:
119  SetStringMessage(const char * ini_service, const char * ini_parameter, const char * ini_value);
122 
123  explicit SetStringMessage(const SetStringMessage *m);
124  /* Methods */
125  char * service() const;
126  void set_service(const char * new_service);
127  size_t maxlenof_service() const;
128  char * parameter() const;
129  void set_parameter(const char * new_parameter);
130  size_t maxlenof_parameter() const;
131  char * value() const;
132  void set_value(const char * new_value);
133  size_t maxlenof_value() const;
134  virtual Message * clone() const;
135  };
136 
137  class SetUint32Message : public Message
138  {
139  private:
140  /** Internal data storage, do NOT modify! */
141  typedef struct {
142  int64_t timestamp_sec; /**< Interface Unix timestamp, seconds */
143  int64_t timestamp_usec; /**< Interface Unix timestamp, micro-seconds */
144  char service[64]; /**< Name of the ROS service for dynamic reconfiguration. */
145  char parameter[64]; /**< Name of the ROS parameter. */
146  uint32_t value; /**< The value to set. */
147  } SetUint32Message_data_t;
148 
149  SetUint32Message_data_t *data;
150 
151  interface_enum_map_t enum_map_LastMsgStatus;
152  public:
153  SetUint32Message(const char * ini_service, const char * ini_parameter, const uint32_t ini_value);
156 
157  explicit SetUint32Message(const SetUint32Message *m);
158  /* Methods */
159  char * service() const;
160  void set_service(const char * new_service);
161  size_t maxlenof_service() const;
162  char * parameter() const;
163  void set_parameter(const char * new_parameter);
164  size_t maxlenof_parameter() const;
165  uint32_t value() const;
166  void set_value(const uint32_t new_value);
167  size_t maxlenof_value() const;
168  virtual Message * clone() const;
169  };
170 
171  class SetUint64Message : public Message
172  {
173  private:
174  /** Internal data storage, do NOT modify! */
175  typedef struct {
176  int64_t timestamp_sec; /**< Interface Unix timestamp, seconds */
177  int64_t timestamp_usec; /**< Interface Unix timestamp, micro-seconds */
178  char service[64]; /**< Name of the ROS service for dynamic reconfiguration. */
179  char parameter[64]; /**< Name of the ROS parameter. */
180  uint64_t value; /**< The value to set. */
181  } SetUint64Message_data_t;
182 
183  SetUint64Message_data_t *data;
184 
185  interface_enum_map_t enum_map_LastMsgStatus;
186  public:
187  SetUint64Message(const char * ini_service, const char * ini_parameter, const uint64_t ini_value);
190 
191  explicit SetUint64Message(const SetUint64Message *m);
192  /* Methods */
193  char * service() const;
194  void set_service(const char * new_service);
195  size_t maxlenof_service() const;
196  char * parameter() const;
197  void set_parameter(const char * new_parameter);
198  size_t maxlenof_parameter() const;
199  uint64_t value() const;
200  void set_value(const uint64_t new_value);
201  size_t maxlenof_value() const;
202  virtual Message * clone() const;
203  };
204 
205  class SetFloatMessage : public Message
206  {
207  private:
208  /** Internal data storage, do NOT modify! */
209  typedef struct {
210  int64_t timestamp_sec; /**< Interface Unix timestamp, seconds */
211  int64_t timestamp_usec; /**< Interface Unix timestamp, micro-seconds */
212  char service[64]; /**< Name of the ROS service for dynamic reconfiguration. */
213  char parameter[64]; /**< Name of the ROS parameter. */
214  float value; /**< The value to set. */
215  } SetFloatMessage_data_t;
216 
217  SetFloatMessage_data_t *data;
218 
219  interface_enum_map_t enum_map_LastMsgStatus;
220  public:
221  SetFloatMessage(const char * ini_service, const char * ini_parameter, const float ini_value);
222  SetFloatMessage();
224 
225  explicit SetFloatMessage(const SetFloatMessage *m);
226  /* Methods */
227  char * service() const;
228  void set_service(const char * new_service);
229  size_t maxlenof_service() const;
230  char * parameter() const;
231  void set_parameter(const char * new_parameter);
232  size_t maxlenof_parameter() const;
233  float value() const;
234  void set_value(const float new_value);
235  size_t maxlenof_value() const;
236  virtual Message * clone() const;
237  };
238 
239  virtual bool message_valid(const Message *message) const;
240  private:
243 
244  public:
245  /* Methods */
246  char * last_service() const;
247  void set_last_service(const char * new_last_service);
248  size_t maxlenof_last_service() const;
249  char * last_parameter() const;
250  void set_last_parameter(const char * new_last_parameter);
251  size_t maxlenof_last_parameter() const;
252  bool is_last_bool_value() const;
253  void set_last_bool_value(const bool new_last_bool_value);
254  size_t maxlenof_last_bool_value() const;
255  char * last_str_value() const;
256  void set_last_str_value(const char * new_last_str_value);
257  size_t maxlenof_last_str_value() const;
258  uint32_t last_uint32_value() const;
259  void set_last_uint32_value(const uint32_t new_last_uint32_value);
260  size_t maxlenof_last_uint32_value() const;
261  uint64_t last_uint64_value() const;
262  void set_last_uint64_value(const uint64_t new_last_uint64_value);
263  size_t maxlenof_last_uint64_value() const;
264  float last_float_value() const;
265  void set_last_float_value(const float new_last_float_value);
266  size_t maxlenof_last_float_value() const;
267  uint64_t last_msg_id() const;
268  void set_last_msg_id(const uint64_t new_last_msg_id);
269  size_t maxlenof_last_msg_id() const;
271  void set_last_msg_status(const LastMsgStatus new_last_msg_status);
272  size_t maxlenof_last_msg_status() const;
273  virtual Message * create_message(const char *type) const;
274 
275  virtual void copy_values(const Interface *other);
276  virtual const char * enum_tostring(const char *enumtype, int val) const;
277 
278 };
279 
280 } // end namespace fawkes
281 
282 #endif
fawkes::DynamicReconfigureInterface::last_float_value
float last_float_value() const
Get last_float_value value.
Definition: DynamicReconfigureInterface.cpp:277
fawkes::DynamicReconfigureInterface::SetBoolMessage::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:516
fawkes::DynamicReconfigureInterface::create_message
virtual Message * create_message(const char *type) const
Create message based on type name.
Definition: DynamicReconfigureInterface.cpp:364
fawkes::DynamicReconfigureInterface::SetUint32Message::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:815
fawkes::DynamicReconfigureInterface::SetUint32Message::SetUint32Message
SetUint32Message()
Constructor.
Definition: DynamicReconfigureInterface.cpp:767
fawkes::DynamicReconfigureInterface::SetUint32Message::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:875
fawkes::DynamicReconfigureInterface::SetStringMessage
SetStringMessage Fawkes BlackBoard Interface Message.
Definition: DynamicReconfigureInterface.h:104
fawkes::DynamicReconfigureInterface::SetUint64Message::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:989
fawkes::DynamicReconfigureInterface::set_last_uint32_value
void set_last_uint32_value(const uint32_t new_last_uint32_value)
Set last_uint32_value value.
Definition: DynamicReconfigureInterface.cpp:237
fawkes::DynamicReconfigureInterface::set_last_msg_status
void set_last_msg_status(const LastMsgStatus new_last_msg_status)
Set last_msg_status value.
Definition: DynamicReconfigureInterface.cpp:357
fawkes::DynamicReconfigureInterface::maxlenof_last_uint32_value
size_t maxlenof_last_uint32_value() const
Get maximum length of last_uint32_value value.
Definition: DynamicReconfigureInterface.cpp:227
fawkes::DynamicReconfigureInterface::maxlenof_last_uint64_value
size_t maxlenof_last_uint64_value() const
Get maximum length of last_uint64_value value.
Definition: DynamicReconfigureInterface.cpp:257
fawkes::DynamicReconfigureInterface::SetStringMessage::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:691
fawkes::DynamicReconfigureInterface::SetUint64Message::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:1009
fawkes::DynamicReconfigureInterface::SetStringMessage::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:641
fawkes::DynamicReconfigureInterface::SetUint64Message::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:969
fawkes::DynamicReconfigureInterface::SetFloatMessage::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:1143
fawkes::DynamicReconfigureInterface::SetStringMessage::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:681
fawkes::DynamicReconfigureInterface::SetUint32Message::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:805
fawkes::DynamicReconfigureInterface::SetUint32Message::set_value
void set_value(const uint32_t new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:885
fawkes::DynamicReconfigureInterface::SetStringMessage::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:671
fawkes::DynamicReconfigureInterface::SetBoolMessage::SetBoolMessage
SetBoolMessage()
Constructor.
Definition: DynamicReconfigureInterface.cpp:438
fawkes::DynamicReconfigureInterface::SetUint32Message::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:896
fawkes::DynamicReconfigureInterface::SetBoolMessage
SetBoolMessage Fawkes BlackBoard Interface Message.
Definition: DynamicReconfigureInterface.h:70
fawkes::DynamicReconfigureInterface::SetFloatMessage::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:1224
fawkes::Message
Base class for all messages passed through interfaces in Fawkes BlackBoard.
Definition: message.h:45
fawkes::DynamicReconfigureInterface::SetBoolMessage::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:486
fawkes::DynamicReconfigureInterface::set_last_str_value
void set_last_str_value(const char *new_last_str_value)
Set last_str_value value.
Definition: DynamicReconfigureInterface.cpp:207
fawkes::DynamicReconfigureInterface::last_parameter
char * last_parameter() const
Get last_parameter value.
Definition: DynamicReconfigureInterface.cpp:127
fawkes::DynamicReconfigureInterface::SetUint64Message
SetUint64Message Fawkes BlackBoard Interface Message.
Definition: DynamicReconfigureInterface.h:172
fawkes::DynamicReconfigureInterface::enum_tostring
virtual const char * enum_tostring(const char *enumtype, int val) const
Convert arbitrary enum value to string.
Definition: DynamicReconfigureInterface.cpp:398
fawkes::DynamicReconfigureInterface::SetStringMessage::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:732
fawkes::DynamicReconfigureInterface::SetBoolMessage::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:526
fawkes::DynamicReconfigureInterface::copy_values
virtual void copy_values(const Interface *other)
Copy values from other interface.
Definition: DynamicReconfigureInterface.cpp:387
fawkes::DynamicReconfigureInterface::SetUint64Message::SetUint64Message
SetUint64Message()
Constructor.
Definition: DynamicReconfigureInterface.cpp:931
fawkes::DynamicReconfigureInterface::SetBoolMessage::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:546
fawkes::DynamicReconfigureInterface::tostring_LastMsgStatus
const char * tostring_LastMsgStatus(LastMsgStatus value) const
Convert LastMsgStatus constant to string.
Definition: DynamicReconfigureInterface.cpp:83
fawkes::DynamicReconfigureInterface::SetFloatMessage::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:1133
fawkes::DynamicReconfigureInterface::SetUint32Message::value
uint32_t value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:865
fawkes::DynamicReconfigureInterface::SetUint64Message::value
uint64_t value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:1029
fawkes::DynamicReconfigureInterface::maxlenof_last_msg_id
size_t maxlenof_last_msg_id() const
Get maximum length of last_msg_id value.
Definition: DynamicReconfigureInterface.cpp:317
fawkes::DynamicReconfigureInterface::SetFloatMessage::value
float value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:1193
fawkes::Interface::type
const char * type() const
Get type of interface.
Definition: interface.cpp:643
fawkes::DynamicReconfigureInterface::SetUint64Message::set_value
void set_value(const uint64_t new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:1049
fawkes::DynamicReconfigureInterface::set_last_service
void set_last_service(const char *new_last_service)
Set last_service value.
Definition: DynamicReconfigureInterface.cpp:117
fawkes::DynamicReconfigureInterface::SetFloatMessage::SetFloatMessage
SetFloatMessage()
Constructor.
Definition: DynamicReconfigureInterface.cpp:1095
fawkes::DynamicReconfigureInterface::SetUint32Message::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:835
fawkes::DynamicReconfigureInterface::SetUint32Message::~SetUint32Message
~SetUint32Message()
Destructor.
Definition: DynamicReconfigureInterface.cpp:782
fawkes::DynamicReconfigureInterface::SetStringMessage::value
char * value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:701
fawkes::DynamicReconfigureInterface::message_valid
virtual bool message_valid(const Message *message) const
Check if message is valid and can be enqueued.
Definition: DynamicReconfigureInterface.cpp:1233
fawkes::DynamicReconfigureInterface::SetBoolMessage::~SetBoolMessage
~SetBoolMessage()
Destructor.
Definition: DynamicReconfigureInterface.cpp:453
fawkes::DynamicReconfigureInterface::is_last_bool_value
bool is_last_bool_value() const
Get last_bool_value value.
Definition: DynamicReconfigureInterface.cpp:157
fawkes::DynamicReconfigureInterface::SetUint64Message::~SetUint64Message
~SetUint64Message()
Destructor.
Definition: DynamicReconfigureInterface.cpp:946
fawkes::DynamicReconfigureInterface::SetBoolMessage::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:476
fawkes::DynamicReconfigureInterface::SetFloatMessage::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:1153
fawkes::DynamicReconfigureInterface::SetUint64Message::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:999
fawkes::DynamicReconfigureInterface::set_last_msg_id
void set_last_msg_id(const uint64_t new_last_msg_id)
Set last_msg_id value.
Definition: DynamicReconfigureInterface.cpp:327
fawkes::DynamicReconfigureInterface::SetBoolMessage::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:496
fawkes::DynamicReconfigureInterface::SetFloatMessage::set_value
void set_value(const float new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:1213
fawkes::DynamicReconfigureInterface::set_last_parameter
void set_last_parameter(const char *new_last_parameter)
Set last_parameter value.
Definition: DynamicReconfigureInterface.cpp:147
fawkes::DynamicReconfigureInterface::SetUint64Message::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:1019
fawkes::DynamicReconfigureInterface::last_msg_status
LastMsgStatus last_msg_status() const
Get last_msg_status value.
Definition: DynamicReconfigureInterface.cpp:337
fawkes
Fawkes library namespace.
fawkes::DynamicReconfigureInterface::maxlenof_last_parameter
size_t maxlenof_last_parameter() const
Get maximum length of last_parameter value.
Definition: DynamicReconfigureInterface.cpp:137
fawkes::DynamicReconfigureInterface::SetFloatMessage::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:1163
fawkes::DynamicReconfigureInterface::maxlenof_last_str_value
size_t maxlenof_last_str_value() const
Get maximum length of last_str_value value.
Definition: DynamicReconfigureInterface.cpp:197
fawkes::DynamicReconfigureInterface::SetBoolMessage::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:506
fawkes::DynamicReconfigureInterface::SetFloatMessage::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:1173
fawkes::DynamicReconfigureInterface::SetBoolMessage::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:567
fawkes::DynamicReconfigureInterface::maxlenof_last_msg_status
size_t maxlenof_last_msg_status() const
Get maximum length of last_msg_status value.
Definition: DynamicReconfigureInterface.cpp:347
fawkes::DynamicReconfigureInterface::SetUint32Message::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:825
fawkes::Interface
Base class for all Fawkes BlackBoard interfaces.
Definition: interface.h:79
fawkes::DynamicReconfigureInterface::SetUint32Message::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:845
fawkes::DynamicReconfigureInterface::last_str_value
char * last_str_value() const
Get last_str_value value.
Definition: DynamicReconfigureInterface.cpp:187
fawkes::DynamicReconfigureInterface::SetFloatMessage::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:1183
fawkes::DynamicReconfigureInterface::SetUint64Message::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:1039
fawkes::interface_enum_map_t
std::map< int, std::string > interface_enum_map_t
Map of enum integer to string values.
Definition: types.h:54
fawkes::DynamicReconfigureInterface::maxlenof_last_service
size_t maxlenof_last_service() const
Get maximum length of last_service value.
Definition: DynamicReconfigureInterface.cpp:107
fawkes::DynamicReconfigureInterface::SetFloatMessage
SetFloatMessage Fawkes BlackBoard Interface Message.
Definition: DynamicReconfigureInterface.h:206
fawkes::DynamicReconfigureInterface::maxlenof_last_float_value
size_t maxlenof_last_float_value() const
Get maximum length of last_float_value value.
Definition: DynamicReconfigureInterface.cpp:287
fawkes::DynamicReconfigureInterface::LastMsgStatus
LastMsgStatus
Status of the last send message.
Definition: DynamicReconfigureInterface.h:42
fawkes::DynamicReconfigureInterface::last_msg_id
uint64_t last_msg_id() const
Get last_msg_id value.
Definition: DynamicReconfigureInterface.cpp:307
fawkes::DynamicReconfigureInterface::SetUint32Message
SetUint32Message Fawkes BlackBoard Interface Message.
Definition: DynamicReconfigureInterface.h:138
fawkes::DynamicReconfigureInterface::set_last_uint64_value
void set_last_uint64_value(const uint64_t new_last_uint64_value)
Set last_uint64_value value.
Definition: DynamicReconfigureInterface.cpp:267
fawkes::DynamicReconfigureInterface::last_uint32_value
uint32_t last_uint32_value() const
Get last_uint32_value value.
Definition: DynamicReconfigureInterface.cpp:217
fawkes::DynamicReconfigureInterface::Failed
@ Failed
Message failed.
Definition: DynamicReconfigureInterface.h:44
fawkes::DynamicReconfigureInterface::SetStringMessage::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:651
fawkes::DynamicReconfigureInterface::SetBoolMessage::is_value
bool is_value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:536
fawkes::DynamicReconfigureInterface::SetFloatMessage::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:1203
fawkes::DynamicReconfigureInterface::SetStringMessage::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:711
fawkes::DynamicReconfigureInterface::SetBoolMessage::set_value
void set_value(const bool new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:556
fawkes::DynamicReconfigureInterface::SetUint64Message::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:1060
fawkes::DynamicReconfigureInterface::set_last_bool_value
void set_last_bool_value(const bool new_last_bool_value)
Set last_bool_value value.
Definition: DynamicReconfigureInterface.cpp:177
fawkes::DynamicReconfigureInterface::SetStringMessage::set_value
void set_value(const char *new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:721
fawkes::DynamicReconfigureInterface::SetUint32Message::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:855
fawkes::DynamicReconfigureInterface::set_last_float_value
void set_last_float_value(const float new_last_float_value)
Set last_float_value value.
Definition: DynamicReconfigureInterface.cpp:297
fawkes::DynamicReconfigureInterface::last_service
char * last_service() const
Get last_service value.
Definition: DynamicReconfigureInterface.cpp:97
fawkes::DynamicReconfigureInterface::SetStringMessage::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:661
fawkes::DynamicReconfigureInterface::SetStringMessage::~SetStringMessage
~SetStringMessage()
Destructor.
Definition: DynamicReconfigureInterface.cpp:618
fawkes::DynamicReconfigureInterface::maxlenof_last_bool_value
size_t maxlenof_last_bool_value() const
Get maximum length of last_bool_value value.
Definition: DynamicReconfigureInterface.cpp:167
fawkes::DynamicReconfigureInterface::SetUint64Message::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:979
fawkes::DynamicReconfigureInterface::Succeeded
@ Succeeded
Message was successful send.
Definition: DynamicReconfigureInterface.h:43
fawkes::DynamicReconfigureInterface
DynamicReconfigureInterface Fawkes BlackBoard Interface.
Definition: DynamicReconfigureInterface.h:34
fawkes::DynamicReconfigureInterface::SetStringMessage::SetStringMessage
SetStringMessage()
Constructor.
Definition: DynamicReconfigureInterface.cpp:603
fawkes::DynamicReconfigureInterface::SetFloatMessage::~SetFloatMessage
~SetFloatMessage()
Destructor.
Definition: DynamicReconfigureInterface.cpp:1110
fawkes::DynamicReconfigureInterface::last_uint64_value
uint64_t last_uint64_value() const
Get last_uint64_value value.
Definition: DynamicReconfigureInterface.cpp:247