waitable_timer.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. // waitable_timer.hpp --------------------------------------------------------------//
  2. // Copyright 2013 Andrey Semashev
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. #ifndef BOOST_DETAIL_WINAPI_WAITABLE_TIMER_HPP
  6. #define BOOST_DETAIL_WINAPI_WAITABLE_TIMER_HPP
  7. #include <boost/detail/winapi/basic_types.hpp>
  8. #ifdef BOOST_HAS_PRAGMA_ONCE
  9. #pragma once
  10. #endif
  11. #if !defined( BOOST_USE_WINDOWS_H )
  12. extern "C" {
  13. typedef boost::detail::winapi::VOID_
  14. (WINAPI *PTIMERAPCROUTINE)(
  15. boost::detail::winapi::LPVOID_ lpArgToCompletionRoutine,
  16. boost::detail::winapi::DWORD_ dwTimerLowValue,
  17. boost::detail::winapi::DWORD_ dwTimerHighValue);
  18. #if !defined( BOOST_NO_ANSI_APIS )
  19. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  20. CreateWaitableTimerA(
  21. ::_SECURITY_ATTRIBUTES* lpTimerAttributes,
  22. boost::detail::winapi::BOOL_ bManualReset,
  23. boost::detail::winapi::LPCSTR_ lpTimerName);
  24. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  25. OpenWaitableTimerA(
  26. boost::detail::winapi::DWORD_ dwDesiredAccess,
  27. boost::detail::winapi::BOOL_ bInheritHandle,
  28. boost::detail::winapi::LPCSTR_ lpTimerName);
  29. #endif
  30. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  31. CreateWaitableTimerW(
  32. ::_SECURITY_ATTRIBUTES* lpTimerAttributes,
  33. boost::detail::winapi::BOOL_ bManualReset,
  34. boost::detail::winapi::LPCWSTR_ lpTimerName);
  35. BOOST_SYMBOL_IMPORT boost::detail::winapi::HANDLE_ WINAPI
  36. OpenWaitableTimerW(
  37. boost::detail::winapi::DWORD_ dwDesiredAccess,
  38. boost::detail::winapi::BOOL_ bInheritHandle,
  39. boost::detail::winapi::LPCWSTR_ lpTimerName);
  40. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  41. SetWaitableTimer(
  42. boost::detail::winapi::HANDLE_ hTimer,
  43. const ::_LARGE_INTEGER* lpDueTime,
  44. boost::detail::winapi::LONG_ lPeriod,
  45. PTIMERAPCROUTINE pfnCompletionRoutine,
  46. boost::detail::winapi::LPVOID_ lpArgToCompletionRoutine,
  47. boost::detail::winapi::BOOL_ fResume);
  48. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  49. CancelWaitableTimer(boost::detail::winapi::HANDLE_ hTimer);
  50. }
  51. #endif
  52. namespace boost {
  53. namespace detail {
  54. namespace winapi {
  55. typedef ::PTIMERAPCROUTINE PTIMERAPCROUTINE_;
  56. #if !defined( BOOST_NO_ANSI_APIS )
  57. using ::OpenWaitableTimerA;
  58. #endif
  59. using ::OpenWaitableTimerW;
  60. using ::CancelWaitableTimer;
  61. #if defined( BOOST_USE_WINDOWS_H )
  62. const DWORD_ TIMER_ALL_ACCESS_ = TIMER_ALL_ACCESS;
  63. const DWORD_ TIMER_MODIFY_STATE_ = TIMER_MODIFY_STATE;
  64. const DWORD_ TIMER_QUERY_STATE_ = TIMER_QUERY_STATE;
  65. #else // defined( BOOST_USE_WINDOWS_H )
  66. const DWORD_ TIMER_ALL_ACCESS_ = 0x001F0003;
  67. const DWORD_ TIMER_MODIFY_STATE_ = 0x00000002;
  68. const DWORD_ TIMER_QUERY_STATE_ = 0x00000001;
  69. #endif // defined( BOOST_USE_WINDOWS_H )
  70. const DWORD_ timer_all_access = TIMER_ALL_ACCESS_;
  71. const DWORD_ timer_modify_state = TIMER_MODIFY_STATE_;
  72. const DWORD_ timer_query_state = TIMER_QUERY_STATE_;
  73. #if !defined( BOOST_NO_ANSI_APIS )
  74. BOOST_FORCEINLINE HANDLE_ CreateWaitableTimerA(PSECURITY_ATTRIBUTES_ lpTimerAttributes, BOOL_ bManualReset, LPCSTR_ lpTimerName)
  75. {
  76. return ::CreateWaitableTimerA(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpTimerAttributes), bManualReset, lpTimerName);
  77. }
  78. #endif
  79. BOOST_FORCEINLINE HANDLE_ CreateWaitableTimerW(PSECURITY_ATTRIBUTES_ lpTimerAttributes, BOOL_ bManualReset, LPCWSTR_ lpTimerName)
  80. {
  81. return ::CreateWaitableTimerW(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpTimerAttributes), bManualReset, lpTimerName);
  82. }
  83. BOOST_FORCEINLINE BOOL_ SetWaitableTimer(
  84. HANDLE_ hTimer,
  85. const LARGE_INTEGER_* lpDueTime,
  86. LONG_ lPeriod,
  87. PTIMERAPCROUTINE_ pfnCompletionRoutine,
  88. LPVOID_ lpArgToCompletionRoutine,
  89. BOOL_ fResume)
  90. {
  91. return ::SetWaitableTimer(hTimer, reinterpret_cast< const ::_LARGE_INTEGER* >(lpDueTime), lPeriod, pfnCompletionRoutine, lpArgToCompletionRoutine, fResume);
  92. }
  93. #if !defined( BOOST_NO_ANSI_APIS )
  94. BOOST_FORCEINLINE HANDLE_ create_waitable_timer(PSECURITY_ATTRIBUTES_ lpTimerAttributes, BOOL_ bManualReset, LPCSTR_ lpTimerName)
  95. {
  96. return ::CreateWaitableTimerA(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpTimerAttributes), bManualReset, lpTimerName);
  97. }
  98. #endif
  99. BOOST_FORCEINLINE HANDLE_ create_waitable_timer(PSECURITY_ATTRIBUTES_ lpTimerAttributes, BOOL_ bManualReset, LPCWSTR_ lpTimerName)
  100. {
  101. return ::CreateWaitableTimerW(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpTimerAttributes), bManualReset, lpTimerName);
  102. }
  103. BOOST_FORCEINLINE HANDLE_ create_anonymous_waitable_timer(PSECURITY_ATTRIBUTES_ lpTimerAttributes, BOOL_ bManualReset)
  104. {
  105. #ifdef BOOST_NO_ANSI_APIS
  106. return ::CreateWaitableTimerW(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpTimerAttributes), bManualReset, 0);
  107. #else
  108. return ::CreateWaitableTimerA(reinterpret_cast< ::_SECURITY_ATTRIBUTES* >(lpTimerAttributes), bManualReset, 0);
  109. #endif
  110. }
  111. }
  112. }
  113. }
  114. #endif // BOOST_DETAIL_WINAPI_WAITABLE_TIMER_HPP