| Colin Cross | bcb4ed3 | 2016-01-14 15:35:40 -0800 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2016 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 LIBMEMUNREACHABLE_SEMAPHORE_H_ | 
 | 18 | #define LIBMEMUNREACHABLE_SEMAPHORE_H_ | 
 | 19 |  | 
 | 20 | #include <chrono> | 
 | 21 | #include <mutex> | 
 | 22 |  | 
 | 23 | #include "android-base/macros.h" | 
 | 24 |  | 
| Colin Cross | a9939e9 | 2017-06-21 13:13:00 -0700 | [diff] [blame] | 25 | namespace android { | 
 | 26 |  | 
| Colin Cross | bcb4ed3 | 2016-01-14 15:35:40 -0800 | [diff] [blame] | 27 | class Semaphore { | 
 | 28 |  public: | 
| Chih-Hung Hsieh | 034c475 | 2016-07-12 13:50:44 -0700 | [diff] [blame] | 29 |   explicit Semaphore(int count = 0) : count_(count) {} | 
| Colin Cross | bcb4ed3 | 2016-01-14 15:35:40 -0800 | [diff] [blame] | 30 |   ~Semaphore() = default; | 
 | 31 |  | 
 | 32 |   void Wait(std::chrono::milliseconds ms) { | 
 | 33 |     std::unique_lock<std::mutex> lk(m_); | 
| Colin Cross | a83881e | 2017-06-22 10:50:05 -0700 | [diff] [blame] | 34 |     cv_.wait_for(lk, ms, [&] { | 
| Colin Cross | bcb4ed3 | 2016-01-14 15:35:40 -0800 | [diff] [blame] | 35 |       if (count_ > 0) { | 
 | 36 |         count_--; | 
 | 37 |         return true; | 
 | 38 |       } | 
 | 39 |       return false; | 
 | 40 |     }); | 
 | 41 |   } | 
 | 42 |   void Post() { | 
 | 43 |     { | 
 | 44 |       std::lock_guard<std::mutex> lk(m_); | 
 | 45 |       count_++; | 
 | 46 |     } | 
 | 47 |     cv_.notify_one(); | 
 | 48 |   } | 
| Colin Cross | a83881e | 2017-06-22 10:50:05 -0700 | [diff] [blame] | 49 |  | 
| Colin Cross | bcb4ed3 | 2016-01-14 15:35:40 -0800 | [diff] [blame] | 50 |  private: | 
 | 51 |   DISALLOW_COPY_AND_ASSIGN(Semaphore); | 
 | 52 |  | 
 | 53 |   int count_; | 
 | 54 |   std::mutex m_; | 
 | 55 |   std::condition_variable cv_; | 
 | 56 | }; | 
 | 57 |  | 
| Colin Cross | a9939e9 | 2017-06-21 13:13:00 -0700 | [diff] [blame] | 58 | }  // namespace android | 
 | 59 |  | 
| Colin Cross | a83881e | 2017-06-22 10:50:05 -0700 | [diff] [blame] | 60 | #endif  // LIBMEMUNREACHABLE_SEMAPHORE_H_ |