service_registry.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. //
  2. // detail/service_registry.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_DETAIL_SERVICE_REGISTRY_HPP
  11. #define BOOST_ASIO_DETAIL_SERVICE_REGISTRY_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <typeinfo>
  17. #include <boost/asio/detail/mutex.hpp>
  18. #include <boost/asio/detail/noncopyable.hpp>
  19. #include <boost/asio/io_service.hpp>
  20. #include <boost/asio/detail/push_options.hpp>
  21. namespace boost {
  22. namespace asio {
  23. namespace detail {
  24. template <typename T>
  25. class typeid_wrapper {};
  26. class service_registry
  27. : private noncopyable
  28. {
  29. public:
  30. // Constructor. Adds the initial service.
  31. template <typename Service, typename Arg>
  32. service_registry(boost::asio::io_service& o,
  33. Service* initial_service, Arg arg);
  34. // Destructor.
  35. BOOST_ASIO_DECL ~service_registry();
  36. // Notify all services of a fork event.
  37. BOOST_ASIO_DECL void notify_fork(boost::asio::io_service::fork_event fork_ev);
  38. // Get the first service object cast to the specified type. Called during
  39. // io_service construction and so performs no locking or type checking.
  40. template <typename Service>
  41. Service& first_service();
  42. // Get the service object corresponding to the specified service type. Will
  43. // create a new service object automatically if no such object already
  44. // exists. Ownership of the service object is not transferred to the caller.
  45. template <typename Service>
  46. Service& use_service();
  47. // Add a service object. Throws on error, in which case ownership of the
  48. // object is retained by the caller.
  49. template <typename Service>
  50. void add_service(Service* new_service);
  51. // Check whether a service object of the specified type already exists.
  52. template <typename Service>
  53. bool has_service() const;
  54. private:
  55. // Initialise a service's key based on its id.
  56. BOOST_ASIO_DECL static void init_key(
  57. boost::asio::io_service::service::key& key,
  58. const boost::asio::io_service::id& id);
  59. #if !defined(BOOST_ASIO_NO_TYPEID)
  60. // Initialise a service's key based on its id.
  61. template <typename Service>
  62. static void init_key(boost::asio::io_service::service::key& key,
  63. const boost::asio::detail::service_id<Service>& /*id*/);
  64. #endif // !defined(BOOST_ASIO_NO_TYPEID)
  65. // Check if a service matches the given id.
  66. BOOST_ASIO_DECL static bool keys_match(
  67. const boost::asio::io_service::service::key& key1,
  68. const boost::asio::io_service::service::key& key2);
  69. // The type of a factory function used for creating a service instance.
  70. typedef boost::asio::io_service::service*
  71. (*factory_type)(boost::asio::io_service&);
  72. // Factory function for creating a service instance.
  73. template <typename Service>
  74. static boost::asio::io_service::service* create(
  75. boost::asio::io_service& owner);
  76. // Destroy a service instance.
  77. BOOST_ASIO_DECL static void destroy(
  78. boost::asio::io_service::service* service);
  79. // Helper class to manage service pointers.
  80. struct auto_service_ptr;
  81. friend struct auto_service_ptr;
  82. struct auto_service_ptr
  83. {
  84. boost::asio::io_service::service* ptr_;
  85. ~auto_service_ptr() { destroy(ptr_); }
  86. };
  87. // Get the service object corresponding to the specified service key. Will
  88. // create a new service object automatically if no such object already
  89. // exists. Ownership of the service object is not transferred to the caller.
  90. BOOST_ASIO_DECL boost::asio::io_service::service* do_use_service(
  91. const boost::asio::io_service::service::key& key,
  92. factory_type factory);
  93. // Add a service object. Throws on error, in which case ownership of the
  94. // object is retained by the caller.
  95. BOOST_ASIO_DECL void do_add_service(
  96. const boost::asio::io_service::service::key& key,
  97. boost::asio::io_service::service* new_service);
  98. // Check whether a service object with the specified key already exists.
  99. BOOST_ASIO_DECL bool do_has_service(
  100. const boost::asio::io_service::service::key& key) const;
  101. // Mutex to protect access to internal data.
  102. mutable boost::asio::detail::mutex mutex_;
  103. // The owner of this service registry and the services it contains.
  104. boost::asio::io_service& owner_;
  105. // The first service in the list of contained services.
  106. boost::asio::io_service::service* first_service_;
  107. };
  108. } // namespace detail
  109. } // namespace asio
  110. } // namespace boost
  111. #include <boost/asio/detail/pop_options.hpp>
  112. #include <boost/asio/detail/impl/service_registry.hpp>
  113. #if defined(BOOST_ASIO_HEADER_ONLY)
  114. # include <boost/asio/detail/impl/service_registry.ipp>
  115. #endif // defined(BOOST_ASIO_HEADER_ONLY)
  116. #endif // BOOST_ASIO_DETAIL_SERVICE_REGISTRY_HPP