robotDescriptionServer
: This device is a storage which contains a list of the currently opened device drivers.
More...
#include <RobotDescriptionServer/RobotDescriptionServer.h>
Public Member Functions | |
bool | open (yarp::os::Searchable &config) override |
Open the DeviceDriver. More... | |
bool | close () override |
Close the DeviceDriver. More... | |
bool | detachAll () override |
Detach the object (you must have first called attach). More... | |
bool | attachAll (const yarp::dev::PolyDriverList &l) override |
Attach to a list of objects. More... | |
bool | read (yarp::os::ConnectionReader &connection) override |
Read this object from a network connection. More... | |
![]() | |
DeviceDriver () | |
DeviceDriver (const DeviceDriver &other)=delete | |
DeviceDriver (DeviceDriver &&other) noexcept=delete | |
DeviceDriver & | operator= (const DeviceDriver &other)=delete |
DeviceDriver & | operator= (DeviceDriver &&other) noexcept=delete |
~DeviceDriver () override | |
bool | open (yarp::os::Searchable &config) override |
Open the DeviceDriver. More... | |
bool | close () override |
Close the DeviceDriver. More... | |
virtual std::string | id () const |
Return the id assigned to the PolyDriver. More... | |
virtual void | setId (const std::string &id) |
Set the id for this device. More... | |
template<class T > | |
bool | view (T *&x) |
Get an interface to the device driver. More... | |
virtual DeviceDriver * | getImplementation () |
Some drivers are bureaucrats, pointing at others. More... | |
![]() | |
virtual | ~IConfig () |
Destructor. More... | |
virtual bool | open (Searchable &config) |
Initialize the object. More... | |
virtual bool | close () |
Shut the object down. More... | |
virtual bool | configure (Searchable &config) |
Change online parameters. More... | |
![]() | |
virtual | ~PortReader () |
Destructor. More... | |
virtual bool | read (ConnectionReader &reader)=0 |
Read this object from a network connection. More... | |
virtual Type | getReadType () const |
![]() | |
virtual | ~IMultipleWrapper () |
Destructor. More... | |
virtual bool | attachAll (const PolyDriverList &drivers)=0 |
Attach to a list of objects. More... | |
virtual bool | detachAll ()=0 |
Detach the object (you must have first called attach). More... | |
Protected Attributes | |
std::mutex | m_external_mutex |
std::mutex | m_internal_mutex |
yarp::os::Port | m_rpc_port |
std::string | m_local_name |
std::vector< yarp::dev::DeviceDescription > | m_robot_devices |
robotDescriptionServer
: This device is a storage which contains a list of the currently opened device drivers.
yarprobotinterfaces adds/removes devices to the storage using attachAll()/detachAll() methods. A robotDescriptionClient devices can bused by the user to retrieve information about the currently opened devices.
Parameters required by this device are:
Parameter name | SubParameter | Type | Units | Default Value | Required | Description | Notes |
---|---|---|---|---|---|---|---|
local | - | string | - | - | Yes | prefix of the port opened by the device, like /descriptionServer | MUST start with a '/' character. /rpc is automatically appended. |
Definition at line 35 of file RobotDescriptionServer.h.
|
overridevirtual |
Attach to a list of objects.
drivers | the polydriver list that you want to attach to. |
Implements yarp::dev::IMultipleWrapper.
Definition at line 49 of file RobotDescriptionServer.cpp.
|
overridevirtual |
Close the DeviceDriver.
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 76 of file RobotDescriptionServer.cpp.
|
overridevirtual |
Detach the object (you must have first called attach).
Implements yarp::dev::IMultipleWrapper.
Definition at line 69 of file RobotDescriptionServer.cpp.
|
overridevirtual |
Open the DeviceDriver.
config | is a list of parameters for the device. Which parameters are effective for your device can vary. See device invocation examples. If there is no example for your device, you can run the "yarpdev" program with the verbose flag set to probe what parameters the device is checking. If that fails too, you'll need to read the source code (please nag one of the yarp developers to add documentation for your device). |
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 25 of file RobotDescriptionServer.cpp.
|
overridevirtual |
Read this object from a network connection.
Override this for your particular class.
reader | an interface to the network connection for reading |
Implements yarp::os::PortReader.
Definition at line 111 of file RobotDescriptionServer.cpp.
|
protected |
Definition at line 41 of file RobotDescriptionServer.h.
|
protected |
Definition at line 42 of file RobotDescriptionServer.h.
|
protected |
Definition at line 44 of file RobotDescriptionServer.h.
|
protected |
Definition at line 45 of file RobotDescriptionServer.h.
|
protected |
Definition at line 43 of file RobotDescriptionServer.h.