RSB  0.17.0
OutConnector.cpp
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is part of the RSB project
4  *
5  * Copyright (C) 2011, 2012, 2013, 2015 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 "OutConnector.h"
28 
29 #include "Bus.h"
30 #include "../../MetaData.h"
31 #include "../../EventId.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 transport::OutConnector* OutConnector::create(const Properties& args) {
45  LoggerPtr logger = Logger::getLogger("rsb.transport.socket.OutConnector");
46  RSCDEBUG(logger, "Creating OutConnector with properties " << args);
47 
48  return new OutConnector(getDefaultFactory(),
49  args.get<ConverterSelectionStrategyPtr>("converters"),
50  args.get<string> ("host", DEFAULT_HOST),
51  args.getAs<unsigned int> ("port", DEFAULT_PORT),
52  args.getAs<Server> ("server", SERVER_AUTO),
53  args.getAs<bool> ("tcpnodelay", true));
54 }
55 
56 OutConnector::OutConnector(FactoryPtr factory,
58  const string& host,
59  unsigned int port,
60  Server server,
61  bool tcpnodelay) :
62  ConnectorBase(factory, converters, host, port, server, tcpnodelay),
63  logger(Logger::getLogger("rsb.transport.socket.OutConnector")){
64 }
65 
67 
68 }
69 
72 }
73 
76 }
77 
80 }
81 
83  RSCDEBUG(logger, "Quality of service not implemented");
84 }
85 
87  event->mutableMetaData().setSendTime();
88 
89  EventPtr busEvent(new Event(*event));
90  boost::shared_ptr<string> wireData(new string());
91  AnnotatedData d(busEvent->getType(), busEvent->getData());
92  string wireSchema = getConverter(busEvent->getType())->serialize(d, *wireData);
93  busEvent->setData(wireData);
94  busEvent->mutableMetaData().setUserInfo("rsb.wire-schema", wireSchema);
95 
96  getBus()->handle(busEvent);
97 }
98 
99 const std::string OutConnector::getTransportURL() const {
101 }
102 
103 
104 }
105 }
106 }
Specification of desired quality of service settings for sending and receiving events.
std::pair< std::string, boost::shared_ptr< void > > AnnotatedData
A combination of data type and the actual data.
Definition: Event.h:269
virtual const std::string getTransportURL() const
Basic message that is exchanged between informers and listeners.
Definition: Event.h:60
STL namespace.
boost::shared_ptr< Factory > FactoryPtr
Definition: Factory.h:113
virtual void setScope(const Scope &scope)
FactoryPtr getDefaultFactory()
Definition: Factory.cpp:224
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...
const uint16_t DEFAULT_PORT
Definition: Types.cpp:39
void setQualityOfServiceSpecs(const QualityOfServiceSpec &specs)
Requests new QoS settings for publishing events.
ConverterPtr getConverter(const std::string &key) const
Try to find a suitable converter for key .
converter::ConverterSelectionStrategy< std::string >::Ptr ConverterSelectionStrategyPtr
boost::shared_ptr< Event > EventPtr
Definition: Event.h:264
Scope is a descriptor for a hierarchical channel of the unified bus.
Definition: Scope.h:46
void handle(EventPtr e)
Handle event.
virtual void setScope(const Scope &scope)
const string DEFAULT_HOST
Definition: Types.cpp:37
virtual const std::string getTransportURL() const