RSB  0.17.0
InConnector.cpp
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is part of the RSB project
4  *
5  * Copyright (C) 2012, 2013 Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
6  *
7  * This file may be licensed under the terms of the
8  * GNU Lesser General Public License Version 3 (the ``LGPL''),
9  * or (at your option) any later version.
10  *
11  * Software distributed under the License is distributed
12  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
13  * express or implied. See the LGPL for the specific language
14  * governing rights and limitations.
15  *
16  * You should have received a copy of the LGPL along with this
17  * program. If not, go to http://www.gnu.org/licenses/lgpl.html
18  * or write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  * The development of this software was supported by:
22  * CoR-Lab, Research Institute for Cognition and Robotics
23  * Bielefeld University
24  *
25  * ============================================================ */
26 
27 #include "InConnector.h"
28 
29 #include "../../MetaData.h"
30 
31 #include "Factory.h"
32 
33 using namespace std;
34 
35 using namespace boost;
36 
37 using namespace rsc::logging;
38 using namespace rsc::runtime;
39 
40 namespace rsb {
41 namespace transport {
42 namespace socket {
43 
44 InConnector::InConnector(FactoryPtr factory,
46  const string& host,
47  unsigned int port,
48  Server server,
49  bool tcpnodelay) :
50  ConnectorBase(factory, converters, host, port, server, tcpnodelay),
51  logger(Logger::getLogger("rsb.transport.socket.InConnector")) {
52 }
53 
55  if (this->active) {
56  deactivate();
57  }
58 }
59 
62 
63  RSCDEBUG(logger, "Activating");
64 
65  getBus()->addSink(dynamic_pointer_cast<InConnector>(enable_shared_from_this<rsb::transport::InConnector>::shared_from_this()));
66 }
67 
69  RSCDEBUG(logger, "Deactivating");
70 
71  BusPtr bus = getBus();
72  if (bus) {
73  RSCDEBUG(logger, "Removing ourselves from sink list of bus " << bus);
74  bus->removeSink(this);
75  }
76 
78 }
79 
81  RSCDEBUG(logger, "Quality of service not implemented");
82 }
83 
84 void InConnector::printContents(ostream& stream) const {
85  stream << "scope = " << getScope();
86 }
87 
88 }
89 }
90 }
Specification of desired quality of service settings for sending and receiving events.
STL namespace.
boost::shared_ptr< Factory > FactoryPtr
Definition: Factory.h:113
rsc::logging::LoggerPtr logger
Definition: InConnector.h:84
This class is intended to be used as a base class for connector classes of the socket-based transport...
Definition: ConnectorBase.h:59
BusPtr getBus()
Return the Bus object through which this connector is connected to a socket-based bus...
void setQualityOfServiceSpecs(const QualityOfServiceSpec &specs)
Requests new QoS settings for publishing events.
Definition: InConnector.cpp:80
void printContents(std::ostream &stream) const
Definition: InConnector.cpp:84
converter::ConverterSelectionStrategy< std::string >::Ptr ConverterSelectionStrategyPtr
boost::shared_ptr< Bus > BusPtr
Definition: BusConnection.h:51