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 
33 class DynamicReconfigureInterface : public Interface
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 */
45  } LastMsgStatus;
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:292
fawkes::DynamicReconfigureInterface::SetBoolMessage::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:535
fawkes::DynamicReconfigureInterface::create_message
virtual Message * create_message(const char *type) const
Definition: DynamicReconfigureInterface.cpp:382
fawkes::DynamicReconfigureInterface::SetUint32Message::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:838
fawkes::DynamicReconfigureInterface::SetUint32Message::SetUint32Message
SetUint32Message()
Constructor.
Definition: DynamicReconfigureInterface.cpp:790
fawkes::DynamicReconfigureInterface::SetUint32Message::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:900
fawkes::DynamicReconfigureInterface::SetStringMessage
Definition: DynamicReconfigureInterface.h:115
fawkes::DynamicReconfigureInterface::SetUint64Message::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:1014
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:250
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:374
fawkes::DynamicReconfigureInterface::maxlenof_last_uint32_value
size_t maxlenof_last_uint32_value() const
Get maximum length of last_uint32_value value.
Definition: DynamicReconfigureInterface.cpp:240
fawkes::DynamicReconfigureInterface::maxlenof_last_uint64_value
size_t maxlenof_last_uint64_value() const
Get maximum length of last_uint64_value value.
Definition: DynamicReconfigureInterface.cpp:271
fawkes::DynamicReconfigureInterface::SetStringMessage::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:712
fawkes::DynamicReconfigureInterface::SetUint64Message::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:1035
fawkes::DynamicReconfigureInterface::SetStringMessage::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:661
fawkes::DynamicReconfigureInterface::SetUint64Message::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:994
fawkes::DynamicReconfigureInterface::SetFloatMessage::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:1170
fawkes::DynamicReconfigureInterface::SetStringMessage::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:702
fawkes::DynamicReconfigureInterface::SetUint32Message::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:828
fawkes::DynamicReconfigureInterface::SetUint32Message::set_value
void set_value(const uint32_t new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:910
fawkes::DynamicReconfigureInterface::SetStringMessage::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:692
fawkes::DynamicReconfigureInterface::SetBoolMessage::SetBoolMessage
SetBoolMessage()
Constructor.
Definition: DynamicReconfigureInterface.cpp:456
fawkes::DynamicReconfigureInterface::SetUint32Message::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:921
fawkes::DynamicReconfigureInterface::SetBoolMessage
Definition: DynamicReconfigureInterface.h:81
fawkes::DynamicReconfigureInterface::SetFloatMessage::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:1253
fawkes::Message
Definition: message.h:41
fawkes::DynamicReconfigureInterface::SetBoolMessage::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:504
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:218
fawkes::DynamicReconfigureInterface::last_parameter
char * last_parameter() const
Get last_parameter value.
Definition: DynamicReconfigureInterface.cpp:135
fawkes::DynamicReconfigureInterface::SetUint64Message
Definition: DynamicReconfigureInterface.h:183
fawkes::DynamicReconfigureInterface::enum_tostring
virtual const char * enum_tostring(const char *enumtype, int val) const
Definition: DynamicReconfigureInterface.cpp:416
fawkes::DynamicReconfigureInterface::SetStringMessage::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:755
fawkes::DynamicReconfigureInterface::SetBoolMessage::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:545
fawkes::DynamicReconfigureInterface::copy_values
virtual void copy_values(const Interface *other)
Copy values from other interface.
Definition: DynamicReconfigureInterface.cpp:405
fawkes::DynamicReconfigureInterface::SetUint64Message::SetUint64Message
SetUint64Message()
Constructor.
Definition: DynamicReconfigureInterface.cpp:956
fawkes::DynamicReconfigureInterface::SetBoolMessage::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:566
fawkes::DynamicReconfigureInterface::tostring_LastMsgStatus
const char * tostring_LastMsgStatus(LastMsgStatus value) const
Convert LastMsgStatus constant to string.
Definition: DynamicReconfigureInterface.cpp:89
fawkes::DynamicReconfigureInterface::SetFloatMessage::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:1160
fawkes::DynamicReconfigureInterface::SetUint32Message::value
uint32_t value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:890
fawkes::DynamicReconfigureInterface::SetUint64Message::value
uint64_t value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:1056
fawkes::DynamicReconfigureInterface::maxlenof_last_msg_id
size_t maxlenof_last_msg_id() const
Get maximum length of last_msg_id value.
Definition: DynamicReconfigureInterface.cpp:333
fawkes::DynamicReconfigureInterface::SetFloatMessage::value
float value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:1222
fawkes::Interface::type
const char * type() const
Get type of interface.
Definition: interface.cpp:645
fawkes::DynamicReconfigureInterface::SetUint64Message::set_value
void set_value(const uint64_t new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:1076
fawkes::DynamicReconfigureInterface::set_last_service
void set_last_service(const char *new_last_service)
Set last_service value.
Definition: DynamicReconfigureInterface.cpp:123
fawkes::DynamicReconfigureInterface::SetFloatMessage::SetFloatMessage
SetFloatMessage()
Constructor.
Definition: DynamicReconfigureInterface.cpp:1122
fawkes::DynamicReconfigureInterface::SetUint32Message::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:859
fawkes::DynamicReconfigureInterface::SetUint32Message::~SetUint32Message
~SetUint32Message()
Destructor.
Definition: DynamicReconfigureInterface.cpp:805
fawkes::DynamicReconfigureInterface::SetStringMessage::value
char * value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:723
fawkes::DynamicReconfigureInterface::message_valid
virtual bool message_valid(const Message *message) const
Check if message is valid and can be enqueued.
Definition: DynamicReconfigureInterface.cpp:1262
fawkes::DynamicReconfigureInterface::SetBoolMessage::~SetBoolMessage
~SetBoolMessage()
Destructor.
Definition: DynamicReconfigureInterface.cpp:471
fawkes::DynamicReconfigureInterface::is_last_bool_value
bool is_last_bool_value() const
Get last_bool_value value.
Definition: DynamicReconfigureInterface.cpp:167
fawkes::DynamicReconfigureInterface::SetUint64Message::~SetUint64Message
~SetUint64Message()
Destructor.
Definition: DynamicReconfigureInterface.cpp:971
fawkes::DynamicReconfigureInterface::SetBoolMessage::service
char * service() const
Get service value.
Definition: DynamicReconfigureInterface.cpp:494
fawkes::DynamicReconfigureInterface::SetFloatMessage::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:1180
fawkes::DynamicReconfigureInterface::SetUint64Message::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:1025
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:343
fawkes::DynamicReconfigureInterface::SetBoolMessage::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:514
fawkes::DynamicReconfigureInterface::SetFloatMessage::set_value
void set_value(const float new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:1242
fawkes::DynamicReconfigureInterface::set_last_parameter
void set_last_parameter(const char *new_last_parameter)
Set last_parameter value.
Definition: DynamicReconfigureInterface.cpp:155
fawkes::DynamicReconfigureInterface::SetUint64Message::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:1045
fawkes::DynamicReconfigureInterface::last_msg_status
LastMsgStatus last_msg_status() const
Get last_msg_status value.
Definition: DynamicReconfigureInterface.cpp:354
fawkes
fawkes::DynamicReconfigureInterface::maxlenof_last_parameter
size_t maxlenof_last_parameter() const
Get maximum length of last_parameter value.
Definition: DynamicReconfigureInterface.cpp:145
fawkes::DynamicReconfigureInterface::SetFloatMessage::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:1191
fawkes::DynamicReconfigureInterface::maxlenof_last_str_value
size_t maxlenof_last_str_value() const
Get maximum length of last_str_value value.
Definition: DynamicReconfigureInterface.cpp:208
fawkes::DynamicReconfigureInterface::SetBoolMessage::parameter
char * parameter() const
Get parameter value.
Definition: DynamicReconfigureInterface.cpp:525
fawkes::DynamicReconfigureInterface::SetFloatMessage::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:1201
fawkes::DynamicReconfigureInterface::SetBoolMessage::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:587
fawkes::DynamicReconfigureInterface::maxlenof_last_msg_status
size_t maxlenof_last_msg_status() const
Get maximum length of last_msg_status value.
Definition: DynamicReconfigureInterface.cpp:364
fawkes::DynamicReconfigureInterface::SetUint32Message::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:848
fawkes::Interface
Definition: interface.h:78
fawkes::DynamicReconfigureInterface::SetUint32Message::maxlenof_parameter
size_t maxlenof_parameter() const
Get maximum length of parameter value.
Definition: DynamicReconfigureInterface.cpp:869
fawkes::DynamicReconfigureInterface::last_str_value
char * last_str_value() const
Get last_str_value value.
Definition: DynamicReconfigureInterface.cpp:198
fawkes::DynamicReconfigureInterface::SetFloatMessage::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:1211
fawkes::DynamicReconfigureInterface::SetUint64Message::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:1066
fawkes::interface_enum_map_t
std::map< int, std::string > interface_enum_map_t
Map of enum integer to string values.
Definition: types.h:61
fawkes::DynamicReconfigureInterface::maxlenof_last_service
size_t maxlenof_last_service() const
Get maximum length of last_service value.
Definition: DynamicReconfigureInterface.cpp:113
fawkes::DynamicReconfigureInterface::SetFloatMessage
Definition: DynamicReconfigureInterface.h:217
fawkes::DynamicReconfigureInterface::maxlenof_last_float_value
size_t maxlenof_last_float_value() const
Get maximum length of last_float_value value.
Definition: DynamicReconfigureInterface.cpp:302
fawkes::DynamicReconfigureInterface::LastMsgStatus
LastMsgStatus
Status of the last send message.
Definition: DynamicReconfigureInterface.h:54
fawkes::DynamicReconfigureInterface::last_msg_id
uint64_t last_msg_id() const
Get last_msg_id value.
Definition: DynamicReconfigureInterface.cpp:323
fawkes::DynamicReconfigureInterface::SetUint32Message
Definition: DynamicReconfigureInterface.h:149
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:281
fawkes::DynamicReconfigureInterface::last_uint32_value
uint32_t last_uint32_value() const
Get last_uint32_value value.
Definition: DynamicReconfigureInterface.cpp:230
fawkes::DynamicReconfigureInterface::Failed
@ Failed
Message failed.
Definition: DynamicReconfigureInterface.h:62
fawkes::DynamicReconfigureInterface::SetStringMessage::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:671
fawkes::DynamicReconfigureInterface::SetBoolMessage::is_value
bool is_value() const
Get value value.
Definition: DynamicReconfigureInterface.cpp:556
fawkes::DynamicReconfigureInterface::SetFloatMessage::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:1232
fawkes::DynamicReconfigureInterface::SetStringMessage::maxlenof_value
size_t maxlenof_value() const
Get maximum length of value value.
Definition: DynamicReconfigureInterface.cpp:733
fawkes::DynamicReconfigureInterface::SetBoolMessage::set_value
void set_value(const bool new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:576
fawkes::DynamicReconfigureInterface::SetUint64Message::clone
virtual Message * clone() const
Clone this message.
Definition: DynamicReconfigureInterface.cpp:1087
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:187
fawkes::DynamicReconfigureInterface::SetStringMessage::set_value
void set_value(const char *new_value)
Set value value.
Definition: DynamicReconfigureInterface.cpp:743
fawkes::DynamicReconfigureInterface::SetUint32Message::set_parameter
void set_parameter(const char *new_parameter)
Set parameter value.
Definition: DynamicReconfigureInterface.cpp:879
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:312
fawkes::DynamicReconfigureInterface::last_service
char * last_service() const
Get last_service value.
Definition: DynamicReconfigureInterface.cpp:103
fawkes::DynamicReconfigureInterface::SetStringMessage::set_service
void set_service(const char *new_service)
Set service value.
Definition: DynamicReconfigureInterface.cpp:681
fawkes::DynamicReconfigureInterface::SetStringMessage::~SetStringMessage
~SetStringMessage()
Destructor.
Definition: DynamicReconfigureInterface.cpp:638
fawkes::DynamicReconfigureInterface::maxlenof_last_bool_value
size_t maxlenof_last_bool_value() const
Get maximum length of last_bool_value value.
Definition: DynamicReconfigureInterface.cpp:177
fawkes::DynamicReconfigureInterface::SetUint64Message::maxlenof_service
size_t maxlenof_service() const
Get maximum length of service value.
Definition: DynamicReconfigureInterface.cpp:1004
fawkes::DynamicReconfigureInterface::Succeeded
@ Succeeded
Message was successful send.
Definition: DynamicReconfigureInterface.h:61
fawkes::DynamicReconfigureInterface
Definition: DynamicReconfigureInterface.h:39
fawkes::DynamicReconfigureInterface::SetStringMessage::SetStringMessage
SetStringMessage()
Constructor.
Definition: DynamicReconfigureInterface.cpp:623
fawkes::DynamicReconfigureInterface::SetFloatMessage::~SetFloatMessage
~SetFloatMessage()
Destructor.
Definition: DynamicReconfigureInterface.cpp:1137
fawkes::DynamicReconfigureInterface::last_uint64_value
uint64_t last_uint64_value() const
Get last_uint64_value value.
Definition: DynamicReconfigureInterface.cpp:261