RSB  0.7.0
 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 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", false));
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 
70 }
71 
74 }
75 
77  RSCWARN(logger, "Quality of service not implemented");
78 }
79 
81  event->mutableMetaData().setSendTime();
82 
83  EventPtr busEvent(new Event(*event));
84  boost::shared_ptr<string> wireData(new string());
85  AnnotatedData d(busEvent->getType(), busEvent->getData());
86  string wireSchema = getConverter(busEvent->getType())->serialize(d, *wireData);
87  busEvent->setData(wireData);
88  busEvent->mutableMetaData().setUserInfo("rsb.wire-schema", wireSchema);
89 
90  getBus()->handle(busEvent);
91 }
92 
93 }
94 }
95 }