blob: 9bf82eb77ae2ef0f88ec1774bcd6371c232669d0 [file] [log] [blame]
Mathias Agopian2bd99592012-02-25 23:02:14 -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 _LIBS_UTILS_CONDITION_H
18#define _LIBS_UTILS_CONDITION_H
19
Colin Cross17b5b822016-09-15 18:15:37 -070020#include <limits.h>
Mathias Agopian2bd99592012-02-25 23:02:14 -080021#include <stdint.h>
22#include <sys/types.h>
23#include <time.h>
24
Yabin Cui4a6e5a32015-01-26 19:48:54 -080025#if !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -080026# include <pthread.h>
27#endif
28
29#include <utils/Errors.h>
30#include <utils/Mutex.h>
31#include <utils/Timers.h>
32
33// ---------------------------------------------------------------------------
34namespace android {
35// ---------------------------------------------------------------------------
36
Steven Morelandb8f152d2017-12-18 16:14:13 -080037// DO NOT USE: please use std::condition_variable instead.
38
Mathias Agopian2bd99592012-02-25 23:02:14 -080039/*
40 * Condition variable class. The implementation is system-dependent.
41 *
42 * Condition variables are paired up with mutexes. Lock the mutex,
43 * call wait(), then either re-wait() if things aren't quite what you want,
44 * or unlock the mutex and continue. All threads calling wait() must
45 * use the same mutex for a given Condition.
Tom Cherryf1147f72017-02-27 17:02:02 -080046 *
47 * On Android and Apple platforms, these are implemented as a simple wrapper
48 * around pthread condition variables. Care must be taken to abide by
49 * the pthreads semantics, in particular, a boolean predicate must
50 * be re-evaluated after a wake-up, as spurious wake-ups may happen.
Mathias Agopian2bd99592012-02-25 23:02:14 -080051 */
52class Condition {
53public:
54 enum {
55 PRIVATE = 0,
56 SHARED = 1
57 };
58
Romain Guy31ba37f2013-03-11 14:34:56 -070059 enum WakeUpType {
60 WAKE_UP_ONE = 0,
61 WAKE_UP_ALL = 1
62 };
63
Mathias Agopian2bd99592012-02-25 23:02:14 -080064 Condition();
Chih-Hung Hsieh2a929962016-08-02 12:14:47 -070065 explicit Condition(int type);
Mathias Agopian2bd99592012-02-25 23:02:14 -080066 ~Condition();
67 // Wait on the condition variable. Lock the mutex before calling.
Tom Cherryf1147f72017-02-27 17:02:02 -080068 // Note that spurious wake-ups may happen.
Mathias Agopian2bd99592012-02-25 23:02:14 -080069 status_t wait(Mutex& mutex);
70 // same with relative timeout
71 status_t waitRelative(Mutex& mutex, nsecs_t reltime);
Tom Cherryf1147f72017-02-27 17:02:02 -080072 // Signal the condition variable, allowing one thread to continue.
Mathias Agopian2bd99592012-02-25 23:02:14 -080073 void signal();
Romain Guy31ba37f2013-03-11 14:34:56 -070074 // Signal the condition variable, allowing one or all threads to continue.
75 void signal(WakeUpType type) {
76 if (type == WAKE_UP_ONE) {
77 signal();
78 } else {
79 broadcast();
80 }
81 }
Mathias Agopian2bd99592012-02-25 23:02:14 -080082 // Signal the condition variable, allowing all threads to continue.
83 void broadcast();
84
85private:
Yabin Cui4a6e5a32015-01-26 19:48:54 -080086#if !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -080087 pthread_cond_t mCond;
88#else
89 void* mState;
90#endif
91};
92
93// ---------------------------------------------------------------------------
94
Yabin Cui4a6e5a32015-01-26 19:48:54 -080095#if !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -080096
Tom Cherry1fb04ff2017-02-22 17:38:00 -080097inline Condition::Condition() : Condition(PRIVATE) {
Mathias Agopian2bd99592012-02-25 23:02:14 -080098}
99inline Condition::Condition(int type) {
Tom Cherry1fb04ff2017-02-22 17:38:00 -0800100 pthread_condattr_t attr;
101 pthread_condattr_init(&attr);
102#if defined(__linux__)
103 pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
104#endif
105
Mathias Agopian2bd99592012-02-25 23:02:14 -0800106 if (type == SHARED) {
Mathias Agopian2bd99592012-02-25 23:02:14 -0800107 pthread_condattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
Mathias Agopian2bd99592012-02-25 23:02:14 -0800108 }
Tom Cherry1fb04ff2017-02-22 17:38:00 -0800109
110 pthread_cond_init(&mCond, &attr);
111 pthread_condattr_destroy(&attr);
112
Mathias Agopian2bd99592012-02-25 23:02:14 -0800113}
114inline Condition::~Condition() {
115 pthread_cond_destroy(&mCond);
116}
117inline status_t Condition::wait(Mutex& mutex) {
118 return -pthread_cond_wait(&mCond, &mutex.mMutex);
119}
120inline status_t Condition::waitRelative(Mutex& mutex, nsecs_t reltime) {
Mathias Agopian2bd99592012-02-25 23:02:14 -0800121 struct timespec ts;
Elliott Hughes76f0a842015-01-09 16:16:53 -0800122#if defined(__linux__)
Tom Cherry1fb04ff2017-02-22 17:38:00 -0800123 clock_gettime(CLOCK_MONOTONIC, &ts);
Elliott Hughes76f0a842015-01-09 16:16:53 -0800124#else // __APPLE__
Elliott Hughesfd376b92016-04-04 14:21:47 -0700125 // Apple doesn't support POSIX clocks.
Mathias Agopian2bd99592012-02-25 23:02:14 -0800126 struct timeval t;
127 gettimeofday(&t, NULL);
128 ts.tv_sec = t.tv_sec;
Elliott Hughesfd376b92016-04-04 14:21:47 -0700129 ts.tv_nsec = t.tv_usec*1000;
Elliott Hughes76f0a842015-01-09 16:16:53 -0800130#endif
Elliott Hughesfd376b92016-04-04 14:21:47 -0700131
132 // On 32-bit devices, tv_sec is 32-bit, but `reltime` is 64-bit.
133 int64_t reltime_sec = reltime/1000000000;
134
Colin Cross17b5b822016-09-15 18:15:37 -0700135 ts.tv_nsec += static_cast<long>(reltime%1000000000);
Elliott Hughesfd376b92016-04-04 14:21:47 -0700136 if (reltime_sec < INT64_MAX && ts.tv_nsec >= 1000000000) {
Mathias Agopian2bd99592012-02-25 23:02:14 -0800137 ts.tv_nsec -= 1000000000;
Elliott Hughesfd376b92016-04-04 14:21:47 -0700138 ++reltime_sec;
Mathias Agopian2bd99592012-02-25 23:02:14 -0800139 }
Elliott Hughesfd376b92016-04-04 14:21:47 -0700140
141 int64_t time_sec = ts.tv_sec;
142 if (time_sec > INT64_MAX - reltime_sec) {
143 time_sec = INT64_MAX;
144 } else {
145 time_sec += reltime_sec;
146 }
147
Colin Cross17b5b822016-09-15 18:15:37 -0700148 ts.tv_sec = (time_sec > LONG_MAX) ? LONG_MAX : static_cast<long>(time_sec);
Elliott Hughesfd376b92016-04-04 14:21:47 -0700149
Mathias Agopian2bd99592012-02-25 23:02:14 -0800150 return -pthread_cond_timedwait(&mCond, &mutex.mMutex, &ts);
Mathias Agopian2bd99592012-02-25 23:02:14 -0800151}
152inline void Condition::signal() {
Mathias Agopian2bd99592012-02-25 23:02:14 -0800153 pthread_cond_signal(&mCond);
154}
155inline void Condition::broadcast() {
156 pthread_cond_broadcast(&mCond);
157}
158
Yabin Cui4a6e5a32015-01-26 19:48:54 -0800159#endif // !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -0800160
161// ---------------------------------------------------------------------------
162}; // namespace android
163// ---------------------------------------------------------------------------
164
165#endif // _LIBS_UTILS_CONDITON_H