new_allocator.hpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2014-2015. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_CONTAINER_NEW_ALLOCATOR_HPP
  11. #define BOOST_CONTAINER_NEW_ALLOCATOR_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. #include <boost/container/detail/config_begin.hpp>
  19. #include <boost/container/detail/workaround.hpp>
  20. #include <boost/container/throw_exception.hpp>
  21. #include <cstddef>
  22. //!\file
  23. namespace boost {
  24. namespace container {
  25. /// @cond
  26. template<bool Value>
  27. struct new_allocator_bool
  28. { static const bool value = Value; };
  29. template<class T>
  30. class new_allocator;
  31. /// @endcond
  32. //! Specialization of new_allocator for void types
  33. template<>
  34. class new_allocator<void>
  35. {
  36. public:
  37. typedef void value_type;
  38. typedef void * pointer;
  39. typedef const void* const_pointer;
  40. //!A integral constant of type bool with value true
  41. typedef BOOST_CONTAINER_IMPDEF(new_allocator_bool<true>) propagate_on_container_move_assignment;
  42. //!A integral constant of type bool with value true
  43. typedef BOOST_CONTAINER_IMPDEF(new_allocator_bool<true>) is_always_equal;
  44. // reference-to-void members are impossible
  45. //!Obtains an new_allocator that allocates
  46. //!objects of type T2
  47. template<class T2>
  48. struct rebind
  49. {
  50. typedef new_allocator< T2> other;
  51. };
  52. //!Default constructor
  53. //!Never throws
  54. new_allocator() BOOST_NOEXCEPT_OR_NOTHROW
  55. {}
  56. //!Constructor from other new_allocator.
  57. //!Never throws
  58. new_allocator(const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  59. {}
  60. //!Constructor from related new_allocator.
  61. //!Never throws
  62. template<class T2>
  63. new_allocator(const new_allocator<T2> &) BOOST_NOEXCEPT_OR_NOTHROW
  64. {}
  65. //!Swaps two allocators, does nothing
  66. //!because this new_allocator is stateless
  67. friend void swap(new_allocator &, new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  68. {}
  69. //!An new_allocator always compares to true, as memory allocated with one
  70. //!instance can be deallocated by another instance
  71. friend bool operator==(const new_allocator &, const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  72. { return true; }
  73. //!An new_allocator always compares to false, as memory allocated with one
  74. //!instance can be deallocated by another instance
  75. friend bool operator!=(const new_allocator &, const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  76. { return false; }
  77. };
  78. //! This class is a reduced STL-compatible allocator that allocates memory using operator new
  79. template<class T>
  80. class new_allocator
  81. {
  82. public:
  83. typedef T value_type;
  84. typedef T * pointer;
  85. typedef const T * const_pointer;
  86. typedef T & reference;
  87. typedef const T & const_reference;
  88. typedef std::size_t size_type;
  89. typedef std::ptrdiff_t difference_type;
  90. //!A integral constant of type bool with value true
  91. typedef BOOST_CONTAINER_IMPDEF(new_allocator_bool<true>) propagate_on_container_move_assignment;
  92. //!A integral constant of type bool with value true
  93. typedef BOOST_CONTAINER_IMPDEF(new_allocator_bool<true>) is_always_equal;
  94. //!Obtains an new_allocator that allocates
  95. //!objects of type T2
  96. template<class T2>
  97. struct rebind
  98. {
  99. typedef new_allocator<T2> other;
  100. };
  101. //!Default constructor
  102. //!Never throws
  103. new_allocator() BOOST_NOEXCEPT_OR_NOTHROW
  104. {}
  105. //!Constructor from other new_allocator.
  106. //!Never throws
  107. new_allocator(const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  108. {}
  109. //!Constructor from related new_allocator.
  110. //!Never throws
  111. template<class T2>
  112. new_allocator(const new_allocator<T2> &) BOOST_NOEXCEPT_OR_NOTHROW
  113. {}
  114. //!Allocates memory for an array of count elements.
  115. //!Throws std::bad_alloc if there is no enough memory
  116. pointer allocate(size_type count)
  117. {
  118. if(BOOST_UNLIKELY(count > this->max_size()))
  119. throw_bad_alloc();
  120. return static_cast<T*>(::operator new(count*sizeof(T)));
  121. }
  122. //!Deallocates previously allocated memory.
  123. //!Never throws
  124. void deallocate(pointer ptr, size_type) BOOST_NOEXCEPT_OR_NOTHROW
  125. { ::operator delete((void*)ptr); }
  126. //!Returns the maximum number of elements that could be allocated.
  127. //!Never throws
  128. size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
  129. { return size_type(-1)/sizeof(T); }
  130. //!Swaps two allocators, does nothing
  131. //!because this new_allocator is stateless
  132. friend void swap(new_allocator &, new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  133. {}
  134. //!An new_allocator always compares to true, as memory allocated with one
  135. //!instance can be deallocated by another instance
  136. friend bool operator==(const new_allocator &, const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  137. { return true; }
  138. //!An new_allocator always compares to false, as memory allocated with one
  139. //!instance can be deallocated by another instance
  140. friend bool operator!=(const new_allocator &, const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  141. { return false; }
  142. };
  143. } //namespace container {
  144. } //namespace boost {
  145. #include <boost/container/detail/config_end.hpp>
  146. #endif //BOOST_CONTAINER_ALLOCATOR_HPP