You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

notification.h 5.5 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. // Copyright 2017 The Abseil Authors.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // -----------------------------------------------------------------------------
  16. // notification.h
  17. // -----------------------------------------------------------------------------
  18. //
  19. // This header file defines a `Notification` abstraction, which allows threads
  20. // to receive notification of a single occurrence of a single event.
  21. //
  22. // The `Notification` object maintains a private boolean "notified" state that
  23. // transitions to `true` at most once. The `Notification` class provides the
  24. // following primary member functions:
  25. // * `HasBeenNotified()` to query its state
  26. // * `WaitForNotification*()` to have threads wait until the "notified" state
  27. // is `true`.
  28. // * `Notify()` to set the notification's "notified" state to `true` and
  29. // notify all waiting threads that the event has occurred.
  30. // This method may only be called once.
  31. //
  32. // Note that while `Notify()` may only be called once, it is perfectly valid to
  33. // call any of the `WaitForNotification*()` methods multiple times, from
  34. // multiple threads -- even after the notification's "notified" state has been
  35. // set -- in which case those methods will immediately return.
  36. //
  37. // Note that the lifetime of a `Notification` requires careful consideration;
  38. // it might not be safe to destroy a notification after calling `Notify()` since
  39. // it is still legal for other threads to call `WaitForNotification*()` methods
  40. // on the notification. However, observers responding to a "notified" state of
  41. // `true` can safely delete the notification without interfering with the call
  42. // to `Notify()` in the other thread.
  43. //
  44. // Memory ordering: For any threads X and Y, if X calls `Notify()`, then any
  45. // action taken by X before it calls `Notify()` is visible to thread Y after:
  46. // * Y returns from `WaitForNotification()`, or
  47. // * Y receives a `true` return value from either `HasBeenNotified()` or
  48. // `WaitForNotificationWithTimeout()`.
  49. #ifndef ABSL_SYNCHRONIZATION_NOTIFICATION_H_
  50. #define ABSL_SYNCHRONIZATION_NOTIFICATION_H_
  51. #include <atomic>
  52. #include "absl/base/attributes.h"
  53. #include "absl/base/macros.h"
  54. #include "absl/synchronization/mutex.h"
  55. #include "absl/time/time.h"
  56. namespace absl
  57. {
  58. ABSL_NAMESPACE_BEGIN
  59. // -----------------------------------------------------------------------------
  60. // Notification
  61. // -----------------------------------------------------------------------------
  62. class Notification
  63. {
  64. public:
  65. // Initializes the "notified" state to unnotified.
  66. Notification() :
  67. notified_yet_(false)
  68. {
  69. }
  70. explicit Notification(bool prenotify) :
  71. notified_yet_(prenotify)
  72. {
  73. }
  74. Notification(const Notification&) = delete;
  75. Notification& operator=(const Notification&) = delete;
  76. ~Notification();
  77. // Notification::HasBeenNotified()
  78. //
  79. // Returns the value of the notification's internal "notified" state.
  80. ABSL_MUST_USE_RESULT bool HasBeenNotified() const
  81. {
  82. return HasBeenNotifiedInternal(&this->notified_yet_);
  83. }
  84. // Notification::WaitForNotification()
  85. //
  86. // Blocks the calling thread until the notification's "notified" state is
  87. // `true`. Note that if `Notify()` has been previously called on this
  88. // notification, this function will immediately return.
  89. void WaitForNotification() const;
  90. // Notification::WaitForNotificationWithTimeout()
  91. //
  92. // Blocks until either the notification's "notified" state is `true` (which
  93. // may occur immediately) or the timeout has elapsed, returning the value of
  94. // its "notified" state in either case.
  95. bool WaitForNotificationWithTimeout(absl::Duration timeout) const;
  96. // Notification::WaitForNotificationWithDeadline()
  97. //
  98. // Blocks until either the notification's "notified" state is `true` (which
  99. // may occur immediately) or the deadline has expired, returning the value of
  100. // its "notified" state in either case.
  101. bool WaitForNotificationWithDeadline(absl::Time deadline) const;
  102. // Notification::Notify()
  103. //
  104. // Sets the "notified" state of this notification to `true` and wakes waiting
  105. // threads. Note: do not call `Notify()` multiple times on the same
  106. // `Notification`; calling `Notify()` more than once on the same notification
  107. // results in undefined behavior.
  108. void Notify();
  109. private:
  110. static inline bool HasBeenNotifiedInternal(
  111. const std::atomic<bool>* notified_yet
  112. )
  113. {
  114. return notified_yet->load(std::memory_order_acquire);
  115. }
  116. mutable Mutex mutex_;
  117. std::atomic<bool> notified_yet_; // written under mutex_
  118. };
  119. ABSL_NAMESPACE_END
  120. } // namespace absl
  121. #endif // ABSL_SYNCHRONIZATION_NOTIFICATION_H_