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 "../../Event.h"
30 #include "../../MetaData.h"
31 
32 using namespace std;
33 
34 using namespace rsc::logging;
35 using namespace rsc::runtime;
36 
37 namespace rsb {
38 namespace inprocess {
39 
40 InPushConnector::InPushConnector() :
41  logger(Logger::getLogger("rsb.inprocess.InPushConnector")) {
42 }
43 
44 transport::InPushConnector* InPushConnector::create(const Properties& args) {
45  LoggerPtr logger = Logger::getLogger("rsb.inprocess.InPushConnector");
46  RSCDEBUG(logger, "Creating InPushConnector with properties " << args);
47 
48  // Seems to have confused some users.
49  // See https://code.cor-lab.de/issues/649
50  // if (args.has("converters")) {
51  // RSCWARN(logger, "`converters' property found when constructing inprocess::InPushConnector. This connector does not support (or require) converters.");
52  // }
53  return new InPushConnector();
54 }
55 
57 }
58 
60  return "InPushConnector";
61 }
62 
64 }
65 
70  if (event->getMetaData().getReceiveTime() == 0) {
71  event->mutableMetaData().setReceiveTime();
72  }
73  for (HandlerList::iterator it = this->handlers.begin(); it
74  != this->handlers.end(); ++it) {
75  (*it)->handle(event);
76  }
77 }
78 
79 }
80 }