43 if (!writer.
writeString(
"getRemoteProtocolVersion")) {
57 if (!helper_proto.read(connection)) {
67 if(!
yarp().canWrite()) {
68 yError(
" Missing server method FakeTestMsgs::getRemoteProtocolVersion");
73 return helper.helper_proto;}
84 if (remproto.protocol_version != locproto.protocol_version)
86 yCError(SERVICE_LOG_COMPONENT) <<
"Invalid communication protocol.";
87 yCError(SERVICE_LOG_COMPONENT) <<
"Local Protocol Version: " << locproto.toString();
88 yCError(SERVICE_LOG_COMPONENT) <<
"Remote Protocol Version: " << remproto.toString();
155 static constexpr const char*
s_tag{
"doSomethingRPC"};
159 static constexpr const char*
s_prototype{
"yarp::dev::ReturnValue FakeTestMsgs::doSomethingRPC()"};
180 return write(writer);
195 if (!writeTag(writer)) {
198 if (!writeArgs(writer)) {
219 if (!readTag(reader)) {
222 if (!readArgs(reader)) {
253 return write(writer);
265 if (!writer.
write(return_helper)) {
278 if (!reader.
read(return_helper)) {
293 yarp().setOwner(*
this);
298 if (!
yarp().canWrite()) {
302 bool ok =
yarp().write(helper, helper);
309 bool showAll = (functionName ==
"--all");
310 std::vector<std::string> helpString;
312 helpString.emplace_back(
"*** Available commands:");
314 helpString.emplace_back(
"help");
319 if (functionName ==
"help") {
320 helpString.emplace_back(
"std::vector<std::string> help(const std::string& functionName = \"--all\")");
321 helpString.emplace_back(
"Return list of available commands, or help message for a specific function");
322 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");
323 helpString.emplace_back(
"@return list of strings (one string per line)");
326 if (helpString.empty()) {
327 helpString.emplace_back(
"Command not found");
335 constexpr size_t max_tag_len = 1;
345 std::string tag = reader.
readTag(1);
346 bool direct = (tag ==
"__direct__");
350 while (tag_len <= max_tag_len && !reader.
isError()) {
351 if(tag ==
"getRemoteProtocolVersion") {
358 auto proto = getLocalProtocolVersion();
364 if (!writer.
write(proto)) {
387 std::string functionName;
389 functionName =
"--all";
391 auto help_strings = help(functionName);
397 if (!writer.
writeTag(
"many", 1, 0)) {
403 for (
const auto& help_string : help_strings) {
419 std::string next_tag = reader.
readTag(1);
420 if (next_tag.empty()) {
423 tag.append(
"_").append(next_tag);
424 tag_len = std::count(tag.begin(), tag.end(),
'_') + 1;
bool write(yarp::os::ConnectionWriter &connection) const override
Write this object to a network connection.
bool readArgs(yarp::os::idl::WireReader &reader)
bool writeTag(const yarp::os::idl::WireWriter &writer) const
bool writeArgs(const yarp::os::idl::WireWriter &writer) const
bool readTag(yarp::os::idl::WireReader &reader)
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
~Command() override=default
yarp::dev::ReturnValue return_helper
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.
static constexpr const char * s_help
yarp::dev::ReturnValue(*)() funcptr_t
static constexpr size_t s_tag_len
FakeTestMsgs_doSomethingRPC_helper()=default
bool write(yarp::os::ConnectionWriter &connection) const override
Write this object to a network connection.
static constexpr size_t s_cmd_len
void call(FakeTestMsgs *ptr)
static constexpr const char * s_tag
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
static constexpr const char * s_prototype
static constexpr size_t s_reply_len
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
yarp::os::ApplicationNetworkProtocolVersion helper_proto
FakeTestMsgs_getRemoteProtocolVersion_helper()=default
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.
virtual std::vector< std::string > help(const std::string &functionName="--all")
virtual yarp::os::ApplicationNetworkProtocolVersion getRemoteProtocolVersion()
virtual yarp::dev::ReturnValue doSomethingRPC()
virtual yarp::os::ApplicationNetworkProtocolVersion getLocalProtocolVersion()
virtual bool checkProtocolVersion()
short int protocol_version
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.
bool write(PortWriter &writer)
Write a message to the associated port or reader.
yarp::os::WireLink & yarp()
Get YARP state associated with this object.
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
constexpr std::int16_t protocol_version
#define yCError(component,...)
#define YARP_LOG_COMPONENT(name,...)
The main, catch-all namespace for YARP.
#define YARP_VERSION_PATCH
#define YARP_VERSION_MAJOR
#define YARP_VERSION_MINOR