#include <gstreamer_carrier/GstreamerCarrier.h>
Public Member Functions | |
GstreamerCarrier () | |
Carrier * | create () const override |
Factory method. | |
std::string | getName () const override |
Get the name of this connection type ("tcp", "mcast", "shmem", ...) | |
bool | checkHeader (const yarp::os::Bytes &header) override |
Given the first 8 bytes received on a connection, decide if this is the right carrier type to use for the rest of the connection. | |
void | getHeader (yarp::os::Bytes &header) const override |
Provide 8 bytes describing this connection sufficiently to allow the other side of a connection to select it. | |
void | setParameters (const yarp::os::Bytes &header) override |
Configure this carrier based on the first 8 bytes of the connection. | |
bool | requireAck () const override |
Check if carrier has flow control, requiring sent messages to be acknowledged by recipient. | |
bool | isConnectionless () const override |
Check if this carrier is connectionless (like udp, mcast) or connection based (like tcp). | |
bool | respondToHeader (yarp::os::ConnectionState &proto) override |
Respond to the header. | |
bool | expectReplyToHeader (yarp::os::ConnectionState &proto) override |
Process reply to header, if one is expected for this carrier. | |
bool | isPush () const override |
Check if carrier is "push" or "pull" style. | |
bool | canAccept () const override |
Check if reading is implemented for this carrier. | |
bool | canOffer () const override |
Check if writing is implemented for this carrier. | |
bool | isTextMode () const override |
Check if carrier is textual in nature. | |
bool | canEscape () const override |
Check if carrier can encode administrative messages, as opposed to just user data. | |
bool | supportReply () const override |
This flag is used by YARP to determine whether the connection can carry RPC traffic, that is, messages with replies. | |
bool | isLocal () const override |
Check if carrier operates within a single process. | |
bool | prepareSend (yarp::os::ConnectionState &proto) override |
Perform any initialization needed before writing on a connection. | |
bool | sendHeader (yarp::os::ConnectionState &proto) override |
Write a header appropriate to the carrier to the connection, followed by any carrier-specific data. | |
bool | expectSenderSpecifier (yarp::os::ConnectionState &proto) override |
Expect the name of the sending port. | |
bool | expectExtraHeader (yarp::os::ConnectionState &proto) override |
Receive any carrier-specific header. | |
bool | isActive () const override |
Check if carrier is alive and error free. | |
bool | expectAck (yarp::os::ConnectionState &proto) override |
Receive an acknowledgement, if expected for this carrier. | |
bool | write (yarp::os::ConnectionState &proto, yarp::os::SizedWriter &writer) override |
Write a message. | |
bool | reply (yarp::os::ConnectionState &proto, yarp::os::SizedWriter &writer) override |
std::string | toString () const override |
Get name of carrier. | |
bool | expectIndex (yarp::os::ConnectionState &proto) override |
Expect a message header, if there is one for this carrier. | |
bool | sendAck (yarp::os::ConnectionState &proto) override |
Send an acknowledgement, if needed for this carrier. | |
yarp::os::Face * | createFace () const override |
Create new Face object that the carrier needs. | |
![]() | |
bool | isBroadcast () const override |
Check if this carrier uses a broadcast mechanism. | |
void | handleEnvelope (const std::string &envelope) override |
Carriers that do not distinguish data from administrative headers (i.e. | |
void | prepareDisconnect () override |
Do cleanup and preparation for the coming disconnect, if necessary. | |
virtual void | close () |
Close the carrier. | |
virtual | ~Carrier () |
Destructor. | |
virtual std::string | getBootstrapCarrierName () const |
Get the name of the carrier that should be used prior to handshaking, if a port is registered with this carrier as its default carrier. | |
virtual int | connect (const Contact &src, const Contact &dest, const ContactStyle &style, int mode, bool reversed) |
Some carrier types may require special connection logic. | |
bool | modifiesIncomingData () const override |
Check if this carrier modifies incoming data through the Carrier::modifyIncomingData method. | |
ConnectionReader & | modifyIncomingData (ConnectionReader &reader) override |
Modify incoming payload data, if appropriate. | |
bool | acceptIncomingData (ConnectionReader &reader) override |
Determine whether incoming data should be accepted. | |
bool | modifiesOutgoingData () const override |
Check if this carrier modifies outgoing data through the Carrier::modifyOutgoingData method. | |
const PortWriter & | modifyOutgoingData (const PortWriter &writer) override |
Modify outgoing payload data, if appropriate. | |
bool | modifiesReply () const override |
Check if this carrier modifies outgoing data through the Carrier::modifyReply method. | |
PortReader & | modifyReply (PortReader &reader) override |
Modify reply payload data, if appropriate. | |
bool | acceptOutgoingData (const PortWriter &writer) override |
Determine whether outgoing data should be accepted. | |
virtual bool | configure (ConnectionState &proto) |
Give carrier a shot at looking at how the connection is set up. | |
virtual bool | configureFromProperty (yarp::os::Property &options) |
void | setCarrierParams (const Property ¶ms) override |
Configure carrier from port administrative commands. | |
void | getCarrierParams (Property ¶ms) const override |
Get carrier configuration and deliver it by port administrative commands. | |
![]() | |
virtual | ~Connection () |
Destructor. | |
virtual bool | isValid () const |
Check if this object is really a connection, or just an empty placeholder. | |
virtual bool | isBareMode () const |
Check if carrier excludes type information from payload. | |
Definition at line 14 of file GstreamerCarrier.h.
|
default |
|
inlineoverridevirtual |
Check if reading is implemented for this carrier.
Implements yarp::os::Carrier.
Definition at line 36 of file GstreamerCarrier.h.
|
inlineoverridevirtual |
Check if carrier can encode administrative messages, as opposed to just user data.
The word escape is used in the sense of escape character or escape sequence here.
Implements yarp::os::Carrier.
Definition at line 39 of file GstreamerCarrier.h.
|
inlineoverridevirtual |
Check if writing is implemented for this carrier.
Implements yarp::os::Carrier.
Definition at line 37 of file GstreamerCarrier.h.
|
overridevirtual |
Given the first 8 bytes received on a connection, decide if this is the right carrier type to use for the rest of the connection.
For example the "text" carrier looks for the 8-byte sequence "CONNECT ". See the YARP protocol documentation for all the sequences in use here. In general you are free to add your own.
header | a buffer holding the first 8 bytes received on the connection |
Implements yarp::os::Carrier.
Definition at line 39 of file GstreamerCarrier.cpp.
|
overridevirtual |
Factory method.
Get a new object of the same type as this one.
Implements yarp::os::Carrier.
Definition at line 29 of file GstreamerCarrier.cpp.
|
overridevirtual |
Create new Face object that the carrier needs.
Reimplemented from yarp::os::Carrier.
Definition at line 160 of file GstreamerCarrier.cpp.
|
overridevirtual |
Receive an acknowledgement, if expected for this carrier.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 165 of file GstreamerCarrier.cpp.
|
overridevirtual |
Receive any carrier-specific header.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 155 of file GstreamerCarrier.cpp.
|
overridevirtual |
Expect a message header, if there is one for this carrier.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 180 of file GstreamerCarrier.cpp.
|
overridevirtual |
Process reply to header, if one is expected for this carrier.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 77 of file GstreamerCarrier.cpp.
|
overridevirtual |
Expect the name of the sending port.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 150 of file GstreamerCarrier.cpp.
|
overridevirtual |
Provide 8 bytes describing this connection sufficiently to allow the other side of a connection to select it.
header | a buffer to hold the first 8 bytes to send on a connection |
Implements yarp::os::Carrier.
Definition at line 44 of file GstreamerCarrier.cpp.
|
overridevirtual |
Get the name of this connection type ("tcp", "mcast", "shmem", ...)
Implements yarp::os::Connection.
Definition at line 34 of file GstreamerCarrier.cpp.
|
inlineoverridevirtual |
Check if carrier is alive and error free.
Implements yarp::os::Carrier.
Definition at line 49 of file GstreamerCarrier.h.
|
overridevirtual |
Check if this carrier is connectionless (like udp, mcast) or connection based (like tcp).
This flag is used by YARP to determine whether the connection can carry RPC traffic, that is, messages with replies. Replies are not supported by YARP on connectionless carriers.
Implements yarp::os::Carrier.
Definition at line 53 of file GstreamerCarrier.cpp.
|
inlineoverridevirtual |
Check if carrier operates within a single process.
In such a case, YARP connections may get completely reorganized in order to optimize them.
Implements yarp::os::Carrier.
Definition at line 43 of file GstreamerCarrier.h.
|
inlineoverridevirtual |
Check if carrier is "push" or "pull" style.
Push means that the side that initiates a connection is also the one that will sending of data or commands. All native YARP connections are like this. A "pull" style is equivalent to automatically sending a "reverse connection" port command at the start of the connection.
Reimplemented from yarp::os::Carrier.
Definition at line 35 of file GstreamerCarrier.h.
|
inlineoverridevirtual |
Check if carrier is textual in nature.
Implements yarp::os::Carrier.
Definition at line 38 of file GstreamerCarrier.h.
|
overridevirtual |
Perform any initialization needed before writing on a connection.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 98 of file GstreamerCarrier.cpp.
|
overridevirtual |
Reimplemented from yarp::os::Carrier.
Definition at line 190 of file GstreamerCarrier.cpp.
|
inlineoverridevirtual |
Check if carrier has flow control, requiring sent messages to be acknowledged by recipient.
Implements yarp::os::Carrier.
Definition at line 29 of file GstreamerCarrier.h.
|
overridevirtual |
Respond to the header.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 59 of file GstreamerCarrier.cpp.
|
overridevirtual |
Send an acknowledgement, if needed for this carrier.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 185 of file GstreamerCarrier.cpp.
|
overridevirtual |
Write a header appropriate to the carrier to the connection, followed by any carrier-specific data.
Must communicate at least the name of the originating port, if there is one.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 145 of file GstreamerCarrier.cpp.
|
overridevirtual |
Configure this carrier based on the first 8 bytes of the connection.
This will only be called if checkHeader passed.
header | a buffer holding the first 8 bytes received on the connection |
Implements yarp::os::Carrier.
Definition at line 48 of file GstreamerCarrier.cpp.
|
inlineoverridevirtual |
This flag is used by YARP to determine whether the connection can carry RPC traffic, that is, messages with replies.
Implements yarp::os::Carrier.
Definition at line 41 of file GstreamerCarrier.h.
|
overridevirtual |
Get name of carrier.
Implements yarp::os::Carrier.
Definition at line 175 of file GstreamerCarrier.cpp.
|
overridevirtual |
Write a message.
proto | the protocol object, which tracks connection state |
Implements yarp::os::Carrier.
Definition at line 170 of file GstreamerCarrier.cpp.