blob: 97028a89fafeab8fc29351c10409bae7844680e0 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_BARRIER_H
18#define ANDROID_BARRIER_H
19
20#include <stdint.h>
Lloyd Piquef1c675b2018-09-12 20:45:39 -070021#include <condition_variable>
22#include <mutex>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023
24namespace android {
25
26class Barrier
27{
28public:
Jesse Hallc6157672014-07-13 12:47:02 -070029 // Release any threads waiting at the Barrier.
30 // Provides release semantics: preceding loads and stores will be visible
31 // to other threads before they wake up.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080032 void open() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -070033 std::lock_guard<std::mutex> lock(mMutex);
34 mIsOpen = true;
35 mCondition.notify_all();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036 }
Jesse Hallc6157672014-07-13 12:47:02 -070037
38 // Reset the Barrier, so wait() will block until open() has been called.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080039 void close() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -070040 std::lock_guard<std::mutex> lock(mMutex);
41 mIsOpen = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042 }
Jesse Hallc6157672014-07-13 12:47:02 -070043
44 // Wait until the Barrier is OPEN.
45 // Provides acquire semantics: no subsequent loads or stores will occur
46 // until wait() returns.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047 void wait() const {
Lloyd Piquef1c675b2018-09-12 20:45:39 -070048 std::unique_lock<std::mutex> lock(mMutex);
49 mCondition.wait(lock, [this]() NO_THREAD_SAFETY_ANALYSIS { return mIsOpen; });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050 }
51private:
Lloyd Piquef1c675b2018-09-12 20:45:39 -070052 mutable std::mutex mMutex;
53 mutable std::condition_variable mCondition;
54 int mIsOpen GUARDED_BY(mMutex){false};
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055};
56
57}; // namespace android
58
59#endif // ANDROID_BARRIER_H