RSB  0.7.0
 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 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", false));
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 
68  if (!this->active) {
69  throw std::runtime_error("Cannot handle events when not active");
70  }
71 
72  // busEvent is an intermediate object. The deserialization of the
73  // payload still has to be performed.
74  EventPtr event(new Event(*busEvent));
75 
76  event->mutableMetaData().setReceiveTime();
77 
78  // Extract the serialized data and wire-schema from the
79  // intermediate event.
80  boost::shared_ptr<string> wireData = static_pointer_cast<string>(event->getData());
81  string wireSchema = event->getMetaData().getUserInfo("rsb.wire-schema");
82 
83  // Apply the configured converter.
85  = getConverter(wireSchema)->deserialize(wireSchema, *wireData);
86  event->setData(d.second);
87  event->setType(d.first);
88 
89  // Dispatch the final result to all handlers (typically a single
90  // object implementing the EventReceivingStrategy interface).
91  for (HandlerList::iterator it = this->handlers.begin(); it
92  != this->handlers.end(); ++it) {
93  (*it)->handle(event);
94  }
95 }
96 
97 }
98 }
99 }