RSB  0.9.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 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(args.get<ConverterSelectionStrategyPtr>("converters"),
49  args.get<string> ("host", DEFAULT_HOST),
50  args.getAs<unsigned int> ("port", DEFAULT_PORT),
51  args.getAs<Server> ("server", SERVER_AUTO),
52  args.getAs<bool> ("tcpnodelay", true));
53 }
54 
55 OutConnector::OutConnector(ConverterSelectionStrategyPtr converters,
56  const string& host,
57  unsigned int port,
58  Server server,
59  bool tcpnodelay) :
60  ConnectorBase(converters, host, port, server, tcpnodelay),
61  logger(Logger::getLogger("rsb.transport.socket.OutConnector")){
62 }
63 
65 
66 }
67 
68 void OutConnector::setScope(const Scope& scope) {
70 }
71 
74 }
75 
78 }
79 
81  RSCWARN(logger, "Quality of service not implemented");
82 }
83 
85  event->mutableMetaData().setSendTime();
86 
87  EventPtr busEvent(new Event(*event));
88  boost::shared_ptr<string> wireData(new string());
89  AnnotatedData d(busEvent->getType(), busEvent->getData());
90  string wireSchema = getConverter(busEvent->getType())->serialize(d, *wireData);
91  busEvent->setData(wireData);
92  busEvent->mutableMetaData().setUserInfo("rsb.wire-schema", wireSchema);
93 
94  getBus()->handle(busEvent);
95 }
96 
97 }
98 }
99 }
Specification of desired quality of service settings for sending and receiving events.
rsc::logging::LoggerPtr logger
Definition: OutConnector.h:74
std::pair< std::string, boost::shared_ptr< void > > AnnotatedData
A combination of data type and the actual data.
Definition: Event.h:256
Basic message that is exchanged between informers and listeners.
Definition: Event.h:61
virtual void setScope(const Scope &scope)
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...
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:251
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