Created
October 14, 2019 21:16
-
-
Save heiner/90a62cc7a8b26ae64aea7152ffe77850 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copied from | |
| // https://raw.githubusercontent.com/tensorflow/tensorflow/9590c4c32dd4346ea5c35673336f5912c6072bf2/tensorflow/core/platform/default/notification.h | |
| // and slightly modified. | |
| /* Copyright 2015 The TensorFlow Authors. All Rights Reserved. | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software | |
| distributed under the License is distributed on an "AS IS" BASIS, | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| See the License for the specific language governing permissions and | |
| limitations under the License. | |
| ==============================================================================*/ | |
| #pragma once | |
| #include <assert.h> | |
| #include <atomic> | |
| #include <chrono> | |
| #include <condition_variable> | |
| #include <mutex> | |
| class Notification { | |
| public: | |
| Notification() : notified_(0) {} | |
| ~Notification() { | |
| // In case the notification is being used to synchronize its own deletion, | |
| // force any prior notifier to leave its critical section before the object | |
| // is destroyed. | |
| std::unique_lock l(mu_); | |
| } | |
| void Notify() { | |
| std::unique_lock l(mu_); | |
| assert(!HasBeenNotified()); | |
| notified_.store(true, std::memory_order_release); | |
| cv_.notify_all(); | |
| } | |
| bool HasBeenNotified() const { | |
| return notified_.load(std::memory_order_acquire); | |
| } | |
| void WaitForNotification() { | |
| if (!HasBeenNotified()) { | |
| std::unique_lock l(mu_); | |
| while (!HasBeenNotified()) { | |
| cv_.wait(l); | |
| } | |
| } | |
| } | |
| private: | |
| friend bool WaitForNotificationWithTimeout(Notification* n, | |
| int64_t timeout_in_us); | |
| bool WaitForNotificationWithTimeout(int64_t timeout_in_us) { | |
| bool notified = HasBeenNotified(); | |
| if (!notified) { | |
| std::unique_lock l(mu_); | |
| do { | |
| notified = HasBeenNotified(); | |
| } while (!notified && | |
| cv_.wait_for(l, std::chrono::microseconds(timeout_in_us)) != | |
| std::cv_status::timeout); | |
| } | |
| return notified; | |
| } | |
| std::mutex mu_; // protects mutations of notified_ | |
| std::condition_variable cv_; // signaled when notified_ becomes non-zero | |
| std::atomic<bool> notified_; // mutations under mu_ | |
| }; | |
| inline bool WaitForNotificationWithTimeout(Notification* n, | |
| int64_t timeout_in_us) { | |
| return n->WaitForNotificationWithTimeout(timeout_in_us); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment