ChatBot_nws_yarp
: A wrapper for a plugin able to interact with a chatbot or implementing one.
More...
#include <networkWrappers/chatBot_nws_yarp/ChatBot_nws_yarp.h>
Public Member Functions | |
ChatBot_nws_yarp ()=default | |
ChatBot_nws_yarp (const ChatBot_nws_yarp &)=delete | |
ChatBot_nws_yarp (ChatBot_nws_yarp &&)=delete | |
ChatBot_nws_yarp & | operator= (const ChatBot_nws_yarp &)=delete |
ChatBot_nws_yarp & | operator= (ChatBot_nws_yarp &&)=delete |
virtual | ~ChatBot_nws_yarp () override |
bool | open (yarp::os::Searchable &config) override |
Open the DeviceDriver. | |
bool | close () override |
Close the DeviceDriver. | |
bool | read (yarp::os::ConnectionReader &connection) override |
Read this object from a network connection. | |
![]() | |
DeviceDriver () | |
DeviceDriver (const DeviceDriver &other)=delete | |
DeviceDriver (DeviceDriver &&other) noexcept=delete | |
DeviceDriver & | operator= (const DeviceDriver &other)=delete |
DeviceDriver & | operator= (DeviceDriver &&other) noexcept=delete |
virtual | ~DeviceDriver () |
virtual std::string | id () const |
Return the id assigned to the PolyDriver. | |
virtual void | setId (const std::string &id) |
Set the id for this device. | |
template<class T > | |
bool | view (T *&x) |
Get an interface to the device driver. | |
virtual DeviceDriver * | getImplementation () |
Some drivers are bureaucrats, pointing at others. | |
![]() | |
~WrapperSingle () override | |
Destructor. | |
bool | attachAll (const yarp::dev::PolyDriverList &drivers) final |
Attach to a list of objects. | |
bool | detachAll () final |
Detach the object (you must have first called attach). | |
![]() | |
virtual | ~IWrapper () |
Destructor. | |
![]() | |
virtual | ~IMultipleWrapper () |
Destructor. | |
![]() | |
virtual | ~PortReader () |
Destructor. | |
virtual Type | getReadType () const |
![]() | |
ChatBot_nws_yarp_ParamsParser () | |
~ChatBot_nws_yarp_ParamsParser () override=default | |
bool | parseParams (const yarp::os::Searchable &config) override |
Parse the DeviceDriver parameters. | |
std::string | getDeviceClassName () const override |
Get the name of the DeviceDriver class. | |
std::string | getDeviceName () const override |
Get the name of the device (i.e. | |
std::string | getDocumentationOfDeviceParams () const override |
Get the documentation of the DeviceDriver's parameters. | |
std::vector< std::string > | getListOfParams () const override |
Return a list of all params used by the device. | |
![]() | |
virtual | ~IDeviceDriverParams () |
Additional Inherited Members | |
![]() | |
const std::string | m_device_classname = {"ChatBot_nws_yarp"} |
const std::string | m_device_name = {"chatBot_nws_yarp"} |
bool | m_parser_is_strict = false |
const parser_version_type | m_parser_version = {} |
const std::string | m_name_defaultValue = {"/chatBot_nws"} |
const std::string | m_streaming_name_defaultValue = {""} |
std::string | m_name = {"/chatBot_nws"} |
std::string | m_streaming_name = {} |
ChatBot_nws_yarp
: A wrapper for a plugin able to interact with a chatbot or implementing one.
The network interface is composed by two ports. When a text bottle is received on the input port, the attached subdevice sends it to the chatbot and sends the bot response on the output port The same functionality is available also via rpc port, which also provides additional functionalities, such as setting the language, resetting the bot and performing backup and restore operations.
Parameters required by this device are shown in class: ChatBot_nws_yarp_ParamsParser
Definition at line 79 of file ChatBot_nws_yarp.h.
|
default |
|
delete |
|
delete |
|
overridevirtual |
Definition at line 16 of file ChatBot_nws_yarp.cpp.
|
overridevirtual |
Close the DeviceDriver.
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 21 of file ChatBot_nws_yarp.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 26 of file ChatBot_nws_yarp.cpp.
|
delete |
|
delete |
|
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 102 of file ChatBot_nws_yarp.cpp.