YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
return_getStatus.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6// Autogenerated by Thrift Compiler (0.14.1-yarped)
7//
8// This is an automatically generated file.
9// It could get re-generated if the ALLOW_IDL_GENERATION flag is on.
10
11#include <return_getStatus.h>
12
13// Constructor with field values
15 const std::string& status) :
16 WirePortable(),
17 result(result),
18 status(status)
19{
20}
21
22// Read structure on a Wire
24{
25 if (!nested_read_result(reader)) {
26 return false;
27 }
28 if (!read_status(reader)) {
29 return false;
30 }
31 if (reader.isError()) {
32 return false;
33 }
34 return true;
35}
36
37// Read structure on a Connection
39{
40 yarp::os::idl::WireReader reader(connection);
41 if (!reader.readListHeader(2)) {
42 return false;
43 }
44 if (!read(reader)) {
45 return false;
46 }
47 return true;
48}
49
50// Write structure on a Wire
52{
53 if (!nested_write_result(writer)) {
54 return false;
55 }
56 if (!write_status(writer)) {
57 return false;
58 }
59 if (writer.isError()) {
60 return false;
61 }
62 return true;
63}
64
65// Write structure on a Connection
67{
68 yarp::os::idl::WireWriter writer(connection);
69 if (!writer.writeListHeader(2)) {
70 return false;
71 }
72 if (!write(writer)) {
73 return false;
74 }
75 return true;
76}
77
78// Convert to a printable string
79std::string return_getStatus::toString() const
80{
82 if (!yarp::os::Portable::copyPortable(*this, b)) {
83 return {};
84 }
85 return b.toString();
86}
87
88// read result field
89bool return_getStatus::read_result(yarp::os::idl::WireReader& reader)
90{
91 if (reader.noMore()) {
92 reader.fail();
93 return false;
94 }
95 if (!reader.read(result)) {
96 reader.fail();
97 return false;
98 }
99 return true;
100}
101
102// write result field
103bool return_getStatus::write_result(const yarp::os::idl::WireWriter& writer) const
104{
105 if (!writer.write(result)) {
106 return false;
107 }
108 return true;
109}
110
111// read (nested) result field
112bool return_getStatus::nested_read_result(yarp::os::idl::WireReader& reader)
113{
114 if (reader.noMore()) {
115 reader.fail();
116 return false;
117 }
118 if (!reader.readNested(result)) {
119 reader.fail();
120 return false;
121 }
122 return true;
123}
124
125// write (nested) result field
126bool return_getStatus::nested_write_result(const yarp::os::idl::WireWriter& writer) const
127{
128 if (!writer.writeNested(result)) {
129 return false;
130 }
131 return true;
132}
133
134// read status field
135bool return_getStatus::read_status(yarp::os::idl::WireReader& reader)
136{
137 if (reader.noMore()) {
138 reader.fail();
139 return false;
140 }
141 if (!reader.readString(status)) {
142 reader.fail();
143 return false;
144 }
145 return true;
146}
147
148// write status field
149bool return_getStatus::write_status(const yarp::os::idl::WireWriter& writer) const
150{
151 if (!writer.writeString(status)) {
152 return false;
153 }
154 return true;
155}
156
157// read (nested) status field
158bool return_getStatus::nested_read_status(yarp::os::idl::WireReader& reader)
159{
160 if (reader.noMore()) {
161 reader.fail();
162 return false;
163 }
164 if (!reader.readString(status)) {
165 reader.fail();
166 return false;
167 }
168 return true;
169}
170
171// write (nested) status field
172bool return_getStatus::nested_write_status(const yarp::os::idl::WireWriter& writer) const
173{
174 if (!writer.writeString(status)) {
175 return false;
176 }
177 return true;
178}
yarp::dev::ReturnValue result
bool read(yarp::os::idl::WireReader &reader) override
return_getStatus()=default
std::string toString() const
bool write(const yarp::os::idl::WireWriter &writer) const override
A simple collection of objects that can be described and transmitted in a portable way.
Definition Bottle.h:64
std::string toString() const override
Gives a human-readable textual representation of the bottle.
Definition Bottle.cpp:211
An interface for reading from a network connection.
An interface for writing to a network connection.
static bool copyPortable(const PortWriter &writer, PortReader &reader)
Copy one portable to another, via writing and reading.
Definition Portable.cpp:16
IDL-friendly connection reader.
Definition WireReader.h:27
bool readNested(WirePortable &obj)
bool readString(std::string &str, bool *is_vocab=nullptr)
bool read(WirePortable &obj)
IDL-friendly connection writer.
Definition WireWriter.h:28
bool write(const WirePortable &obj) const
bool writeListHeader(int len) const
bool writeString(const std::string &str, bool skip_tag=false) const
bool writeNested(const WirePortable &obj) const