RSB  0.9.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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(ConverterSelectionStrategyPtr converters,
45  const string& host,
46  unsigned int port,
47  Server server,
48  bool tcpnodelay) :
49  ConnectorBase(converters, host, port, server, tcpnodelay),
50  logger(Logger::getLogger("rsb.transport.socket.InConnector")) {
51 }
52 
54  if (this->active) {
55  deactivate();
56  }
57 }
58 
61 
62  RSCDEBUG(logger, "Activating");
63 
64  getBus()->addSink(dynamic_pointer_cast<InConnector>(enable_shared_from_this<rsb::transport::InConnector>::shared_from_this()));
65 }
66 
68  RSCDEBUG(logger, "Deactivating");
69 
70  BusPtr bus = getBus();
71  if (bus) {
72  RSCDEBUG(logger, "Removing ourselves from sink list of bus " << bus);
73  bus->removeSink(this);
74  }
75 
77 }
78 
80  RSCWARN(logger, "Quality of service not implemented");
81 }
82 
83 void InConnector::printContents(ostream& stream) const {
84  stream << "scope = " << getScope();
85 }
86 
87 }
88 }
89 }
Specification of desired quality of service settings for sending and receiving events.
rsc::logging::LoggerPtr logger
Definition: InConnector.h:82
This class is intended to be used as a base class for connector classes of the socket-based transport...
Definition: ConnectorBase.h:58
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:79
void printContents(std::ostream &stream) const
Definition: InConnector.cpp:83
converter::ConverterSelectionStrategy< std::string >::Ptr ConverterSelectionStrategyPtr
boost::shared_ptr< Bus > BusPtr
Definition: BusConnection.h:51