RSB  0.9.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InPushConnector.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 "InPushConnector.h"
28 
29 #include "Factory.h"
30 #include "../../MetaData.h"
31 
32 using namespace std;
33 
34 using namespace boost;
35 
36 using namespace rsc::logging;
37 using namespace rsc::runtime;
38 
39 namespace rsb {
40 namespace transport {
41 namespace socket {
42 
43 transport::InPushConnector* InPushConnector::create(const Properties& args) {
44  LoggerPtr logger = Logger::getLogger("rsb.transport.socket.InPushConnector");
45  RSCDEBUG(logger, "Creating InPushConnector with properties " << args);
46 
47  return new InPushConnector(args.get<ConverterSelectionStrategyPtr>("converters"),
48  args.get<string> ("host", DEFAULT_HOST),
49  args.getAs<unsigned int> ("port", DEFAULT_PORT),
50  args.getAs<Server> ("server", SERVER_AUTO),
51  args.getAs<bool> ("tcpnodelay", true));
52 }
53 
54 InPushConnector::InPushConnector(ConverterSelectionStrategyPtr converters,
55  const string& host,
56  unsigned int port,
57  Server server,
58  bool tcpnodelay) :
59  ConnectorBase(converters, host, port, server, tcpnodelay),
60  InConnector(converters, host, port, server, tcpnodelay),
61  logger(Logger::getLogger("rsb.transport.socket.InPushConnector")) {
62 }
63 
65 }
66 
67 void InPushConnector::setScope(const Scope& scope) {
69 }
70 
72  if (!this->active) {
73  throw std::runtime_error("Cannot handle events when not active");
74  }
75 
76  // busEvent is an intermediate object. The deserialization of the
77  // payload still has to be performed.
78  EventPtr event(new Event(*busEvent));
79 
80  event->mutableMetaData().setReceiveTime();
81 
82  // Extract the serialized data and wire-schema from the
83  // intermediate event.
84  boost::shared_ptr<string> wireData = static_pointer_cast<string>(event->getData());
85  string wireSchema = event->getMetaData().getUserInfo("rsb.wire-schema");
86 
87  // Apply the configured converter.
89  = getConverter(wireSchema)->deserialize(wireSchema, *wireData);
90  event->setData(d.second);
91  event->setType(d.first);
92 
93  // Dispatch the final result to all handlers (typically a single
94  // object implementing the EventReceivingStrategy interface).
95  for (HandlerList::iterator it = this->handlers.begin(); it
96  != this->handlers.end(); ++it) {
97  (*it)->handle(event);
98  }
99 }
100 
101 }
102 }
103 }
std::pair< std::string, boost::shared_ptr< void > > AnnotatedData
A combination of data type and the actual data.
Definition: Event.h:256
void handle(EventPtr event)
Handle event.
Basic message that is exchanged between informers and listeners.
Definition: Event.h:61
virtual void setScope(const Scope &scope)
Instances of this class receive events from a bus that is accessed via a socket connection.
Definition: InConnector.h:60
This class is intended to be used as a base class for connector classes of the socket-based transport...
Definition: ConnectorBase.h:58
virtual void setScope(const Scope &scope)
const uint16_t DEFAULT_PORT
Definition: Types.cpp:39
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
const string DEFAULT_HOST
Definition: Types.cpp:37