RSB  0.7.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Factory.h
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 #pragma once
28 
29 #include <map>
30 
31 #include <boost/thread/thread.hpp>
32 
33 #include <boost/asio.hpp>
34 #include <boost/asio/ip/tcp.hpp>
35 
36 #include <rsc/logging/Logger.h>
37 
38 #include <rsc/patterns/Singleton.h>
39 
40 #include "Bus.h"
41 #include "BusServer.h"
42 
43 namespace rsb {
44 namespace transport {
45 namespace socket {
46 
59 class RSB_EXPORT Factory : public rsc::patterns::Singleton<Factory> {
60  friend class rsc::patterns::Singleton<Factory>;
61  friend class Bus; // for private member function removeBusClient
62  friend class BusServer; // for private member function removeBusServer
63 public:
64  ~Factory();
65 
70  BusPtr getBus(const Server& serverMode,
71  const std::string& host,
72  const boost::uint16_t& port,
73  bool tcpnodelay,
74  ConnectorBase* connector);
75 
76 private:
77  typedef std::pair<std::string, boost::uint16_t> Endpoint;
78  typedef boost::shared_ptr<boost::asio::ip::tcp::socket> SocketPtr;
79 
80  typedef boost::shared_ptr<boost::asio::io_service::work> WorkPtr;
81 
82  typedef std::map<Endpoint, BusPtr> BusClientMap;
83  typedef std::map<Endpoint, BusServerPtr> BusServerMap;
84 
85  rsc::logging::LoggerPtr logger;
86 
89  boost::mutex busMutex;
90 
91  boost::asio::io_service service;
93  boost::thread thread;
94 
95  Factory();
96 
97  BusPtr getBusClientFor(const std::string& host,
98  boost::uint16_t port,
99  bool tcpnodelay,
100  ConnectorBase* connector);
101 
102  BusServerPtr getBusServerFor(const std::string& host,
103  boost::uint16_t port,
104  bool tcpnodelay,
105  ConnectorBase* connector);
106 
107  void removeBusClient(BusPtr bus);
108 
109  void removeBusServer(BusPtr bus);
110 
111  static void checkOptions(BusPtr bus, bool tcpnodelay);
112 };
113 
114 }
115 }
116 }