mutex.hpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. // mutex.hpp --------------------------------------------------------------//
  2. // Copyright 2010 Vicente J. Botet Escriba
  3. // Copyright 2015 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_MUTEX_HPP
  7. #define BOOST_DETAIL_WINAPI_MUTEX_HPP
  8. #include <boost/detail/winapi/basic_types.hpp>
  9. #include <boost/predef/platform.h>
  10. #ifdef BOOST_HAS_PRAGMA_ONCE
  11. #pragma once
  12. #endif
  13. #if !defined( BOOST_USE_WINDOWS_H )
  14. extern "C" {
  15. #if !defined( BOOST_NO_ANSI_APIS )
  16. #if !defined( BOOST_PLAT_WINDOWS_RUNTIME_AVALIABLE )
  17. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  18. CreateMutexA(
  19. ::_SECURITY_ATTRIBUTES* lpMutexAttributes,
  20. boost::detail::winapi::BOOL_ bInitialOwner,
  21. boost::detail::winapi::LPCSTR_ lpName);
  22. #endif
  23. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  24. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  25. CreateMutexExA(
  26. ::_SECURITY_ATTRIBUTES* lpMutexAttributes,
  27. boost::detail::winapi::LPCSTR_ lpName,
  28. boost::detail::winapi::DWORD_ dwFlags,
  29. boost::detail::winapi::DWORD_ dwDesiredAccess);
  30. #endif
  31. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  32. OpenMutexA(
  33. boost::detail::winapi::DWORD_ dwDesiredAccess,
  34. boost::detail::winapi::BOOL_ bInheritHandle,
  35. boost::detail::winapi::LPCSTR_ lpName);
  36. #endif
  37. #if !defined( BOOST_PLAT_WINDOWS_RUNTIME_AVALIABLE )
  38. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  39. CreateMutexW(
  40. ::_SECURITY_ATTRIBUTES* lpMutexAttributes,
  41. boost::detail::winapi::BOOL_ bInitialOwner,
  42. boost::detail::winapi::LPCWSTR_ lpName);
  43. #endif
  44. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  45. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  46. CreateMutexExW(
  47. ::_SECURITY_ATTRIBUTES* lpMutexAttributes,
  48. boost::detail::winapi::LPCWSTR_ lpName,
  49. boost::detail::winapi::DWORD_ dwFlags,
  50. boost::detail::winapi::DWORD_ dwDesiredAccess);
  51. #endif
  52. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  53. OpenMutexW(
  54. boost::detail::winapi::DWORD_ dwDesiredAccess,
  55. boost::detail::winapi::BOOL_ bInheritHandle,
  56. boost::detail::winapi::LPCWSTR_ lpName);
  57. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  58. ReleaseMutex(boost::detail::winapi::HANDLE_ hMutex);
  59. }
  60. #endif
  61. namespace boost {
  62. namespace detail {
  63. namespace winapi {
  64. #if !defined( BOOST_NO_ANSI_APIS )
  65. using ::OpenMutexA;
  66. #endif
  67. using ::OpenMutexW;
  68. using ::ReleaseMutex;
  69. #if defined( BOOST_USE_WINDOWS_H )
  70. const DWORD_ MUTEX_ALL_ACCESS_ = MUTEX_ALL_ACCESS;
  71. const DWORD_ MUTEX_MODIFY_STATE_ = MUTEX_MODIFY_STATE;
  72. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  73. const DWORD_ CREATE_MUTEX_INITIAL_OWNER_ = CREATE_MUTEX_INITIAL_OWNER;
  74. #endif
  75. #else // defined( BOOST_USE_WINDOWS_H )
  76. const DWORD_ MUTEX_ALL_ACCESS_ = 0x001F0001;
  77. const DWORD_ MUTEX_MODIFY_STATE_ = 0x00000001;
  78. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  79. const DWORD_ CREATE_MUTEX_INITIAL_OWNER_ = 0x00000001;
  80. #endif
  81. #endif // defined( BOOST_USE_WINDOWS_H )
  82. const DWORD_ mutex_all_access = MUTEX_ALL_ACCESS_;
  83. const DWORD_ mutex_modify_state = MUTEX_MODIFY_STATE_;
  84. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  85. const DWORD_ create_mutex_initial_owner = CREATE_MUTEX_INITIAL_OWNER_;
  86. #endif
  87. #if !defined( BOOST_NO_ANSI_APIS )
  88. BOOST_FORCEINLINE HANDLE_ CreateMutexA(SECURITY_ATTRIBUTES_* lpMutexAttributes, BOOL_ bInitialOwner, LPCSTR_ lpName)
  89. {
  90. #if BOOST_PLAT_WINDOWS_RUNTIME && BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  91. const DWORD_ flags = bInitialOwner ? create_mutex_initial_owner : 0u;
  92. return ::CreateMutexExA(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpMutexAttributes), lpName, flags, mutex_all_access);
  93. #else
  94. return ::CreateMutexA(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpMutexAttributes), bInitialOwner, lpName);
  95. #endif
  96. }
  97. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  98. BOOST_FORCEINLINE HANDLE_ CreateMutexExA(
  99. SECURITY_ATTRIBUTES_* lpMutexAttributes,
  100. LPCSTR_ lpName,
  101. DWORD_ dwFlags,
  102. DWORD_ dwDesiredAccess)
  103. {
  104. return ::CreateMutexExA(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpMutexAttributes), lpName, dwFlags, dwDesiredAccess);
  105. }
  106. #endif
  107. #endif
  108. BOOST_FORCEINLINE HANDLE_ CreateMutexW(SECURITY_ATTRIBUTES_* lpMutexAttributes, BOOL_ bInitialOwner, LPCWSTR_ lpName)
  109. {
  110. #if BOOST_PLAT_WINDOWS_RUNTIME && BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  111. const DWORD_ flags = bInitialOwner ? create_mutex_initial_owner : 0u;
  112. return ::CreateMutexExW(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpMutexAttributes), lpName, flags, mutex_all_access);
  113. #else
  114. return ::CreateMutexW(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpMutexAttributes), bInitialOwner, lpName);
  115. #endif
  116. }
  117. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  118. BOOST_FORCEINLINE HANDLE_ CreateMutexExW(
  119. SECURITY_ATTRIBUTES_* lpMutexAttributes,
  120. LPCWSTR_ lpName,
  121. DWORD_ dwFlags,
  122. DWORD_ dwDesiredAccess)
  123. {
  124. return ::CreateMutexExW(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpMutexAttributes), lpName, dwFlags, dwDesiredAccess);
  125. }
  126. #endif
  127. #if !defined( BOOST_NO_ANSI_APIS )
  128. BOOST_FORCEINLINE HANDLE_ create_mutex(SECURITY_ATTRIBUTES_* lpAttributes, BOOL_ bInitialOwner, LPCSTR_ lpName)
  129. {
  130. return winapi::CreateMutexA(lpAttributes, bInitialOwner, lpName);
  131. }
  132. BOOST_FORCEINLINE HANDLE_ open_mutex(DWORD_ dwDesiredAccess, BOOL_ bInheritHandle, LPCSTR_ lpName)
  133. {
  134. return ::OpenMutexA(dwDesiredAccess, bInheritHandle, lpName);
  135. }
  136. #endif
  137. BOOST_FORCEINLINE HANDLE_ create_mutex(SECURITY_ATTRIBUTES_* lpAttributes, BOOL_ bInitialOwner, LPCWSTR_ lpName)
  138. {
  139. return winapi::CreateMutexW(lpAttributes, bInitialOwner, lpName);
  140. }
  141. BOOST_FORCEINLINE HANDLE_ open_mutex(DWORD_ dwDesiredAccess, BOOL_ bInheritHandle, LPCWSTR_ lpName)
  142. {
  143. return ::OpenMutexW(dwDesiredAccess, bInheritHandle, lpName);
  144. }
  145. BOOST_FORCEINLINE HANDLE_ create_anonymous_mutex(SECURITY_ATTRIBUTES_* lpAttributes, BOOL_ bInitialOwner)
  146. {
  147. return winapi::CreateMutexW(lpAttributes, bInitialOwner, 0);
  148. }
  149. }
  150. }
  151. }
  152. #endif // BOOST_DETAIL_WINAPI_MUTEX_HPP