YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
BufferedPort-inl.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef YARP_OS_BUFFEREDPORT_INL_H
8#define YARP_OS_BUFFEREDPORT_INL_H
9
11#include <yarp/os/Type.h>
12
13template <typename T>
15 interrupted(false),
16 attached(false)
17{
18 T example;
20 port.enableBackgroundWrite(true);
21}
22
23template <typename T>
25 interrupted(false),
26 attached(false)
27{
28 sharedOpen(port);
29}
30
31template <typename T>
36
37template <typename T>
38bool yarp::os::BufferedPort<T>::open(const std::string& name)
39{
40 attachIfNeeded();
41 return port.open(name);
42}
43
44template <typename T>
45bool yarp::os::BufferedPort<T>::open(const Contact& contact, bool registerName)
46{
47 attachIfNeeded();
48 return port.open(contact, registerName);
49}
50
51template <typename T>
52bool yarp::os::BufferedPort<T>::addOutput(const std::string& name)
53{
54 return port.addOutput(name);
55}
56
57template <typename T>
58bool yarp::os::BufferedPort<T>::addOutput(const std::string& name, const std::string& carrier)
59{
60 return port.addOutput(name, carrier);
61}
62
63template <typename T>
65{
66 return port.addOutput(contact);
67}
68
69template <typename T>
71{
72 port.close();
73 reader.detach();
74 writer.detach();
75 attached = false;
76}
78template <typename T>
80{
81 interrupted = true;
82 port.interrupt();
83}
84
85template <typename T>
87{
88 port.resume();
89 interrupted = false;
90}
92template <typename T>
95 return reader.getPendingReads();
96}
98template <typename T>
101 return port.where();
102}
104template <typename T>
106{
107 return where().getName();
108}
109
110template <typename T>
112{
113 return writer.get();
114}
115
116template <typename T>
118{
119 return writer.unprepare();
120}
121
122template <typename T>
124{
125 if (isClosed()) {
126 return;
127 }
128 writer.write(forceStrict);
129}
130
131template <typename T>
133{
134 write(true);
135}
136
137template <typename T>
139{
140 writer.waitForWrite();
141}
142
143template <typename T>
146 attachIfNeeded();
147 reader.setStrict(strict);
148}
149
150template <typename T>
152{
153 if (!port.isOpen()) {
154 return nullptr;
155 }
156 if (interrupted) {
157 return nullptr;
158 }
159 T* result = reader.read(shouldWait);
160 // in some circs PortReaderBuffer::read(true) may return false
161 while (result == nullptr && shouldWait && !reader.isClosed() && !interrupted) {
162 result = reader.read(shouldWait);
163 }
164 return result;
165}
166
167template <typename T>
169{
170 return reader.lastRead();
171}
172
173template <typename T>
175{
176 return !port.isOpen();
177}
179template <typename T>
182 attachIfNeeded();
183 this->reader.setReplier(reader);
185
186template <typename T>
188{
189 attachIfNeeded();
190 setReplier(reader);
191}
192
193template <typename T>
195{
196 attachIfNeeded();
197 port.setAdminReader(reader);
198}
200template <typename T>
202{
204 // override this to do something
205}
206
207template <typename T>
210 attachIfNeeded();
211 reader.useCallback(callback);
213
214template <typename T>
216{
217 attachIfNeeded();
218 reader.useCallback(*this);
220
221template <typename T>
223{
224 attachIfNeeded();
225 reader.disableCallback();
226}
227
228template <typename T>
230{
231 return port.setEnvelope(envelope);
232}
233
235template <typename T>
238 return reader.getEnvelope(envelope);
239}
241template <typename T>
244 return port.getInputCount();
245}
247template <typename T>
250 return port.getOutputCount();
251}
253template <typename T>
256 return port.isWriting();
257}
259template <typename T>
262 port.getReport(reporter);
263}
265template <typename T>
268 port.setReporter(reporter);
269}
271template <typename T>
274 port.resetReporter();
275}
277template <typename T>
280 return reader.acquire();
281}
283template <typename T>
286 reader.release(handle);
287}
289
290template <typename T>
292{
293 attachIfNeeded();
294 reader.setTargetPeriod(period);
295}
296
297template <typename T>
299{
300 return port.getType();
301}
302
303template <typename T>
308
309template <typename T>
314
315template <typename T>
320
321template <typename T>
326
327template <typename T>
329{
330 return port.acquireProperties(readOnly);
331}
332
333template <typename T>
338
339template <typename T>
344
345template <typename T>
347{
348 return port.setCallbackLock(mutex);
349}
350
351template <typename T>
356
357template <typename T>
359{
360 return port.lockCallback();
361}
362
363template <typename T>
368
369template <typename T>
374
375template <typename T>
377{
378 if (!attached) {
379 reader.attach(port);
380 writer.attach(port);
381 attached = true;
382 }
383}
384
385template <typename T>
387{
388 bool ok = this->port.sharedOpen(port);
389 if (!ok) {
390 return false;
391 }
392 reader.attach(port);
393 writer.attach(port);
394 attached = true;
395 return true;
396}
397
398
399#endif // YARP_OS_BUFFEREDPORT_INL_H
A mini-server for performing network communication in the background.
Type getType() override
Get the type of data the port has committed to send/receive.
bool removeCallbackLock() override
Remove a lock on callbacks added with setCallbackLock()
Contact where() const override
Returns information about how this port can be reached.
void setRpcMode(bool expectRpc) override
Configure the port to be RPC only.
void waitForWrite()
Wait for any pending writes to complete.
void promiseType(const Type &typ) override
Commit the port to a particular type of data.
void includeNodeInName(bool flag) override
Choose whether to prepend a node name (if one is available) to the port's name.
Property * acquireProperties(bool readOnly) override
Access unstructured port properties.
void * acquire() override
Take control of the last object read.
void resume() override
Put the port back in an operative state after interrupt() has been called.
void setAdminReader(PortReader &reader) override
Set an external reader for unrecognized administrative port messages.
void onRead(T &datum) override
Callback method.
std::string getName() const override
Get name of port.
bool tryLockCallback() override
Try to lock callbacks until unlockCallback() is called.
void writeStrict()
Write the current object being returned by BufferedPort::prepare, waiting until any previous sends ar...
bool getEnvelope(PortReader &envelope) override
Get the envelope information (e.g., a timestamp) from the last message received on the port.
bool setCallbackLock(std::mutex *mutex) override
Add a lock to use when invoking callbacks.
void close() override
Stop port activity.
void releaseProperties(Property *prop) override
End access unstructured port properties.
void disableCallback() override
Remove a callback set up with useCallback()
bool setEnvelope(PortWriter &envelope) override
Set an envelope (e.g., a timestamp) to the next message which will be sent.
void release(void *handle) override
Return control to YARP of an object previously taken control of with the acquire() method.
void setReader(PortReader &reader) override
Set an external reader for port data.
void setOutputMode(bool expectOutput) override
Configure the port to allow or forbid outputs.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
int getPendingReads() override
Get the number of objects ready to be read.
void interrupt() override
Interrupt any current reads or writes attached to the port.
void setReporter(PortReport &reporter) override
Set a callback to be called upon any future connections and disconnections to/from the port.
int getInputCount() override
Determine how many connections are arriving into this port.
bool isWriting() override
Report whether the port is currently writing data.
void useCallback()
Use own onRead() method as callback.
bool isClosed() override
Returns whether the port associated with this reader has been closed.
void getReport(PortReport &reporter) override
Get information on the state of the port - connections etc.
T * read(bool shouldWait=true) override
Read an available object from the port.
T * lastRead() override
Get the last data returned by read()
bool addOutput(const std::string &name) override
Add an output connection to the specified port.
void setTargetPeriod(double period) override
Try to provide data periodically.
bool lockCallback() override
Lock callbacks until unlockCallback() is called.
void setStrict(bool strict=true) override
Call this to strictly keep all messages, or allow old ones to be quietly dropped.
int getOutputCount() override
Determine how many output connections this port has.
virtual ~BufferedPort()
Destructor.
void write(bool forceStrict=false)
Write the current object being returned by BufferedPort::prepare.
void resetReporter() override
Remove the callback which is called upon any future connections and disconnections to/from the port.
T & prepare()
Access the object which will be transmitted by the next call to yarp::os::BufferedPort::write.
void setInputMode(bool expectInput) override
Configure the port to allow or forbid inputs.
bool unprepare()
Give the last prepared object back to YARP without writing it.
void unlockCallback() override
Unlock callbacks.
void setReplier(PortReader &reader) override
If a message is received that requires a reply, use this handler.
Represents how to reach a part of a YARP network.
Definition Contact.h:33
std::string getName() const
Get the name associated with this Contact.
Definition Contact.cpp:205
Interface implemented by all objects that can read themselves from the network, such as Bottle object...
Definition PortReader.h:24
A base class for objects that want information about port status changes.
Definition PortReport.h:25
Interface implemented by all objects that can write themselves to the network, such as Bottle objects...
Definition PortWriter.h:23
A mini-server for network communication.
Definition Port.h:46
void enableBackgroundWrite(bool backgroundFlag)
control whether writing from this port is done in the background.
Definition Port.cpp:533
void promiseType(const Type &typ) override
Commit the port to a particular type of data.
Definition Port.cpp:657
A class for storing options and configuration information.
Definition Property.h:33
#define YARP_UNUSED(var)
Definition api.h:162