ConnectionInterface.hpp
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
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef ORO_EXECUTION_CONNECTION_INTERFACE_HPP
00040 #define ORO_EXECUTION_CONNECTION_INTERFACE_HPP
00041
00042 #include <boost/intrusive_ptr.hpp>
00043 #include "os/Atomic.hpp"
00044 #include "DataSourceBase.hpp"
00045 #include "BufferBase.hpp"
00046 #include <vector>
00047
00048 namespace RTT
00049 {
00050 class ConnectionInterface;
00051 }
00052
00053 void RTT_API intrusive_ptr_add_ref( RTT::ConnectionInterface* p );
00054 void RTT_API intrusive_ptr_release( RTT::ConnectionInterface* p );
00055
00056 namespace RTT
00057 {
00058 class PortInterface;
00059
00101 class RTT_API ConnectionInterface
00102 {
00103 protected:
00104 friend void ::intrusive_ptr_add_ref( ConnectionInterface* p );
00105 friend void ::intrusive_ptr_release( ConnectionInterface* p );
00106 OS::AtomicInt refcount;
00107
00108 typedef std::vector<PortInterface*> PList;
00109 PList ports;
00110 bool mconnected;
00111
00112 std::string connectionName;
00113 public:
00114 typedef boost::intrusive_ptr<ConnectionInterface> shared_ptr;
00115
00116 ConnectionInterface();
00117 virtual ~ConnectionInterface();
00118
00123 virtual DataSourceBase::shared_ptr getDataSource() const = 0;
00124
00130 virtual BufferBase::shared_ptr getBuffer() const = 0;
00131
00139 virtual bool connect();
00140
00144 virtual bool connected() const;
00145
00149 virtual bool disconnect();
00150
00161 virtual bool addPort(PortInterface* p);
00162
00172 virtual bool removePort(PortInterface* p);
00173
00177 virtual const TypeInfo* getTypeInfo() const = 0;
00178
00182 virtual int serverProtocol() const {
00183 return 0;
00184 }
00185
00192 void signal();
00193
00199 std::string getConnectionName();
00200
00206 void setConnectionName(std::string newConnectionName);
00207
00213 PList getPortList();
00214 };
00215 }
00216
00217 #endif