forked from robotology/yarp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarrier_human.cpp
361 lines (298 loc) · 9.59 KB
/
carrier_human.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
/*
* SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
* SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdio.h>
#include <yarp/os/all.h>
#include <yarp/os/Carrier.h>
#include <yarp/os/Carriers.h>
#include <yarp/os/Bytes.h>
#include <yarp/os/ManagedBytes.h>
#include <yarp/os/NetType.h>
#include <yarp/os/impl/Protocol.h>
#include <iostream>
#include <string>
/**
*
* Get a Human to input/output data. We'll only deal with text.
*
*/
class HumanStream : public yarp::os::TwoWayStream, public yarp::os::InputStream, public yarp::os::OutputStream {
private:
bool interrupting;
bool needInterrupt;
std::string inputCache;
std::string outputCache;
public:
HumanStream() {
interrupting = false;
needInterrupt = false;
inputCache = outputCache = "";
}
virtual void close() {
yInfo() << "Bye bye";
}
virtual bool isOk() {
return true;
}
virtual void interrupt() {
interrupting = true;
while (needInterrupt) {
yInfo() << "*** INTERRUPT: Please hit enter ***";
for (int i=0; i<10 && needInterrupt; i++) {
yarp::os::Time::delay(0.1);
}
}
}
/////////////////////////////////////////////////
// InputStream
virtual ssize_t read(yarp::os::Bytes& b) {
if (interrupting) { return -1; }
while (inputCache.size() < b.length()) {
yInfo() <<"*** CHECK OTHER TERMINAL FOR SOMETHING TO TYPE:";
char buf[1000];
needInterrupt = true; // should be mutexed, in real implementation
std::cin.getline(buf,1000);
needInterrupt = false;
if (interrupting) { return -1; }
inputCache += buf;
inputCache += "\r\n";
yInfo() << "Thank you";
}
memcpy(b.get(),inputCache.c_str(),b.length());
inputCache = inputCache.substr(b.length());
return b.length();
}
/////////////////////////////////////////////////
// OutputStream
virtual void write(const yarp::os::Bytes& b) {
outputCache.append(b.get(),b.length());
while (outputCache.find("\n")!=std::string::npos) {
size_t idx = outputCache.find("\n");
std::string show;
show.append(outputCache.c_str(),idx);
yInfo() << "*** TYPE THIS ON THE OTHER TERMINAL: " << show;
outputCache = outputCache.substr(idx+1);
yarp::os::Time::delay(1);
}
}
/////////////////////////////////////////////////
// TwoWayStream
virtual InputStream& getInputStream() {
return *this;
}
virtual OutputStream& getOutputStream() {
return *this;
}
virtual const yarp::os::Contact& getLocalAddress() {
// left undefined
return local;
}
virtual const yarp::os::Contact& getRemoteAddress() {
// left undefined
return remote;
}
virtual void reset() {
inputCache = outputCache = "";
yInfo() << "Stream reset";
}
virtual void beginPacket() {
yInfo() << "Packet begins";
inputCache = "";
outputCache = "";
}
virtual void endPacket() {
yInfo() << "Packet ends";
}
private:
yarp::os::Contact local, remote;
};
/**
*
* A completely new carrier. Get a Human to carry the data!
*
*/
class HumanCarrier : public yarp::os::Carrier {
public:
/////////////////////////////////////////////////
// First, the easy bits...
virtual yarp::os::Carrier *create() const {
return new HumanCarrier();
}
virtual std::string getName() const {
return "human";
}
virtual bool isConnectionless() const {
return true;
}
virtual bool canAccept() const {
return true;
}
virtual bool canOffer() const {
return true;
}
virtual bool isTextMode() const {
// let's be text mode, for human-friendliness
return true;
}
virtual bool canEscape() const {
return true;
}
virtual bool requireAck() const {
return true;
}
virtual bool supportReply() const {
return true;
}
virtual bool isLocal() const {
return false;
}
virtual std::string toString() const {
return "humans are handy";
}
virtual void getHeader(const yarp::os::Bytes& header) {
const char *target = "HUMANITY";
for (int i=0; i<8 && i<header.length(); i++) {
header.get()[i] = target[i];
}
}
virtual bool checkHeader(const yarp::os::Bytes& header) {
if (header.length()!=8) {
return false;
}
const char *target = "HUMANITY";
for (int i=0; i<8; i++) {
if (header.get()[i] != target[i]) {
return false;
}
}
return true;
}
virtual void setParameters(const yarp::os::Bytes& header) {
// no parameters - no carrier variants
}
/////////////////////////////////////////////////
// Now, the initial hand-shaking
virtual bool prepareSend(yarp::os::ConnectionState& proto) {
// nothing special to do
return true;
}
virtual bool sendHeader(yarp::os::ConnectionState& proto) {
// Send the "magic number" for this carrier
yarp::os::ManagedBytes header(8);
getHeader(header.bytes());
proto.os().write(header.bytes());
if (!proto.os().isOk()) return false;
// Now we can do whatever we want, as long as somehow
// we also send the name of the originating port
// let's just send the port name in plain text terminated with a
// carriage-return / line-feed
std::string from = proto.getRoute().getFromName();
yarp::os::Bytes b2((char*)from.c_str(),from.length());
proto.os().write(b2);
proto.os().write('\r');
proto.os().write('\n');
proto.os().flush();
return proto.os().isOk();
}
virtual bool expectSenderSpecifier(yarp::os::ConnectionState& proto) {
// interpret everything that sendHeader wrote
proto.setRoute(proto.getRoute().addFromName(proto.is().readLine()));
return proto.is().isOk();
}
virtual bool expectExtraHeader(yarp::os::ConnectionState& proto) {
// interpret any extra header information sent - optional
return true;
}
virtual bool respondToHeader(yarp::os::ConnectionState& proto) {
// SWITCH TO NEW STREAM TYPE
HumanStream *stream = new HumanStream();
if (stream==NULL) { return false; }
proto.takeStreams(stream);
return true;
}
virtual bool expectReplyToHeader(yarp::os::ConnectionState& proto) {
// SWITCH TO NEW STREAM TYPE
HumanStream *stream = new HumanStream();
if (stream==NULL) { return false; }
proto.takeStreams(stream);
return true;
}
virtual bool isActive() {
return true;
}
/////////////////////////////////////////////////
// Payload time!
virtual bool write(yarp::os::ConnectionState& proto, yarp::os::SizedWriter& writer) {
bool ok = sendIndex(proto);
if (!ok) return false;
writer.write(proto.os());
return proto.os().isOk();
}
virtual bool sendIndex(yarp::os::ConnectionState& proto) {
std::string prefix = "human says ";
yarp::os::Bytes b2((char*)prefix.c_str(),prefix.length());
proto.os().write(b2);
return true;
}
virtual bool expectIndex(yarp::os::ConnectionState& proto) {
std::string prefix = "human says ";
std::string compare = prefix;
yarp::os::Bytes b2((char*)prefix.c_str(),prefix.length());
proto.is().read(b2);
bool ok = proto.is().isOk() && (prefix==compare);
if (!ok) yInfo() << "YOU DID NOT SAY 'human says '";
return ok;
}
/////////////////////////////////////////////////
// Acknowledgements, we don't do them
virtual bool sendAck(yarp::os::ConnectionState& proto) {
std::string prefix = "computers rule!\r\n";
yarp::os::Bytes b2((char*)prefix.c_str(),prefix.length());
proto.os().write(b2);
return true;
}
virtual bool expectAck(yarp::os::ConnectionState& proto) {
std::string prefix = "computers rule!\r\n";
std::string compare = prefix;
yarp::os::Bytes b2((char*)prefix.c_str(),prefix.length());
proto.is().read(b2);
bool ok = proto.is().isOk() && (prefix==compare);
if (!ok) yInfo() << "YOU DID NOT SAY 'computers rule!'";
return ok;
}
};
int main(int argc, char *argv[]) {
yarp::os::Network yarp;
yarp::os::Carriers::addCarrierPrototype(new HumanCarrier);
if (argc<2) {
yInfo() << "Please run in two terminals as:\n";
yInfo() << " carrier_human --server\n";
yInfo() << " carrier_human --client\n";
std::exit(1);
}
std::string mode = argv[1];
if (mode == "--server") {
yarp::os::Port out;
out.open("/test/out");
bool connected = false;
while (!connected) {
connected = yarp::os::Network::connect("/test/out","/test/in","human");
if (!connected) yarp::os::Time::delay(1);
}
yarp::os::Bottle bot;
bot.fromString("1 2 3");
out.write(bot);
out.close();
}
if (mode == "--client") {
yarp::os::Port in;
in.open("/test/in");
yarp::os::Bottle bot;
in.read(bot);
yInfo() << "Got message " << bot.toString().c_str();
in.close();
}
return 0;
}