67 static constexpr const char*
s_tag{
"reset_odometry_RPC"};
71 static constexpr const char*
s_prototype{
"yarp::dev::ReturnValue IOdometry2DMsgs::reset_odometry_RPC()"};
72 static constexpr const char*
s_help{
""};
107 if (!writeTag(writer)) {
110 if (!writeArgs(writer)) {
131 if (!readTag(reader)) {
134 if (!readArgs(reader)) {
165 return write(writer);
177 if (!writer.
write(return_helper)) {
190 if (!reader.
read(return_helper)) {
205 yarp().setOwner(*
this);
210 if (!
yarp().canWrite()) {
214 bool ok =
yarp().write(helper, helper);
221 bool showAll = (functionName ==
"--all");
222 std::vector<std::string> helpString;
224 helpString.emplace_back(
"*** Available commands:");
226 helpString.emplace_back(
"help");
231 if (functionName ==
"help") {
232 helpString.emplace_back(
"std::vector<std::string> help(const std::string& functionName = \"--all\")");
233 helpString.emplace_back(
"Return list of available commands, or help message for a specific function");
234 helpString.emplace_back(
"@param functionName name of command for which to get a detailed description. If none or '--all' is provided, print list of available commands");
235 helpString.emplace_back(
"@return list of strings (one string per line)");
238 if (helpString.empty()) {
239 helpString.emplace_back(
"Command not found");
247 constexpr size_t max_tag_len = 3;
257 std::string tag = reader.
readTag(1);
258 bool direct = (tag ==
"__direct__");
262 while (tag_len <= max_tag_len && !reader.
isError()) {
279 std::string functionName;
281 functionName =
"--all";
283 auto help_strings = help(functionName);
289 if (!writer.
writeTag(
"many", 1, 0)) {
295 for (
const auto& help_string : help_strings) {
311 std::string next_tag = reader.
readTag(1);
312 if (next_tag.empty()) {
315 tag.append(
"_").append(next_tag);
316 tag_len = std::count(tag.begin(), tag.end(),
'_') + 1;
~Command() override=default
bool readArgs(yarp::os::idl::WireReader &reader)
bool writeArgs(const yarp::os::idl::WireWriter &writer) const
bool readTag(yarp::os::idl::WireReader &reader)
bool writeTag(const yarp::os::idl::WireWriter &writer) const
bool write(yarp::os::ConnectionWriter &connection) const override
Write this object to a network connection.
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
bool write(yarp::os::ConnectionWriter &connection) const override
Write this object to a network connection.
~Reply() override=default
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
yarp::dev::ReturnValue return_helper
static constexpr const char * s_prototype
IOdometry2DMsgs_reset_odometry_RPC_helper()=default
static constexpr const char * s_help
static constexpr const char * s_tag
static constexpr size_t s_reply_len
yarp::dev::ReturnValue(*)() funcptr_t
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
void call(IOdometry2DMsgs *ptr)
bool write(yarp::os::ConnectionWriter &connection) const override
Write this object to a network connection.
static constexpr size_t s_cmd_len
static constexpr size_t s_tag_len
virtual yarp::dev::ReturnValue reset_odometry_RPC()
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
virtual std::vector< std::string > help(const std::string &functionName="--all")
An interface for reading from a network connection.
An interface for writing to a network connection.
This is a base class for objects that can be both read from and be written to the YARP network.
A "tamed" Portable, that promises to serialize itself in an IDL-friendly way.
IDL-friendly connection reader.
bool readString(std::string &str, bool *is_vocab=nullptr)
std::string readTag(size_t len=static_cast< size_t >(-1))
bool read(WirePortable &obj)
IDL-friendly connection writer.
bool write(const WirePortable &obj) const
bool writeListHeader(int len) const
bool writeTag(const char *tag, int split, int len) const
bool writeString(const std::string &str, bool skip_tag=false) const
bool writeListEnd() const
bool writeListBegin(int tag, size_t len) const
The main, catch-all namespace for YARP.