YarpDataFeedOutputPort.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "config.h"
00031
00032 #include "YarpDataFeedOutputPort.hpp"
00033
00034 #include <PortNamingConvention.hpp>
00035
00036 #include <Exception.hpp>
00037
00038 #include <yarp/os/all.h>
00039
00040 using namespace mermaid::support::communication;
00041
00042 using mermaid::support::errorhandling::Exception;
00043 using yarp::os::Network;
00044
00045 YarpDataFeedOutputPort::YarpDataFeedOutputPort (std::string entityName, std::string serviceName, std::string datafeedName)
00046 {
00047 entityName_ = entityName;
00048 serviceName_ = serviceName;
00049 datafeedName_ = datafeedName;
00050
00051 std::string portName = PortNamingConvention::getDataFeedOutputPortName (entityName, serviceName, datafeedName);
00052
00053
00054 if (!open (portName.c_str())) {
00055 throw Exception ("YarpDataFeedOutputPort::YarpDataFeedOutputPort : could not open YARP port with name: " + portName);
00056 }
00057
00058
00059 this->setStrict (true);
00060
00061 };
00062
00063 std::string YarpDataFeedOutputPort::getEntityName()
00064 {
00065 return entityName_;
00066 };
00067
00068 std::string YarpDataFeedOutputPort::getServiceInstanceName()
00069 {
00070 return serviceName_;
00071 };
00072
00073 std::string YarpDataFeedOutputPort::getDataFeedName()
00074 {
00075 return datafeedName_;
00076 };