RSB  0.9.6
 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 }
rsc::logging::LoggerPtr logger
Definition: Factory.h:85
Instances of this class provide access to a socket-based bus.
Definition: Bus.h:71
boost::asio::io_service service
Definition: Factory.h:91
boost::shared_ptr< boost::asio::ip::tcp::socket > SocketPtr
Definition: Factory.h:78
boost::shared_ptr< BusServer > BusServerPtr
Definition: BusServer.h:105
Instances of this class provide access to a socket-based bus for local and remote bus clients...
Definition: BusServer.h:59
This class is intended to be used as a base class for connector classes of the socket-based transport...
Definition: ConnectorBase.h:58
The singleton instance of this class is responsible for managing bus provider objects.
Definition: Factory.h:59
std::map< Endpoint, BusServerPtr > BusServerMap
Definition: Factory.h:83
std::pair< std::string, boost::uint16_t > Endpoint
Definition: Factory.h:77
std::map< Endpoint, BusPtr > BusClientMap
Definition: Factory.h:82
boost::shared_ptr< boost::asio::io_service::work > WorkPtr
Definition: Factory.h:80
boost::shared_ptr< Bus > BusPtr
Definition: BusConnection.h:51