blob: a420185553979ac6e371a206e57b7ee56c3ed250 [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
20#include <stdint.h>
21#include <sys/types.h>
22#include <time.h>
23
Yabin Cui4a6e5a32015-01-26 19:48:54 -080024#if !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -080025# include <pthread.h>
26#endif
27
28#include <utils/Errors.h>
29#include <utils/Mutex.h>
30#include <utils/Timers.h>
31
32// ---------------------------------------------------------------------------
33namespace android {
34// ---------------------------------------------------------------------------
35
36/*
37 * Condition variable class. The implementation is system-dependent.
38 *
39 * Condition variables are paired up with mutexes. Lock the mutex,
40 * call wait(), then either re-wait() if things aren't quite what you want,
41 * or unlock the mutex and continue. All threads calling wait() must
42 * use the same mutex for a given Condition.
43 */
44class Condition {
45public:
46 enum {
47 PRIVATE = 0,
48 SHARED = 1
49 };
50
Romain Guy31ba37f2013-03-11 14:34:56 -070051 enum WakeUpType {
52 WAKE_UP_ONE = 0,
53 WAKE_UP_ALL = 1
54 };
55
Mathias Agopian2bd99592012-02-25 23:02:14 -080056 Condition();
57 Condition(int type);
58 ~Condition();
59 // Wait on the condition variable. Lock the mutex before calling.
60 status_t wait(Mutex& mutex);
61 // same with relative timeout
62 status_t waitRelative(Mutex& mutex, nsecs_t reltime);
Igor Murashkindb419382014-04-15 15:39:27 -070063 // Signal the condition variable, allowing exactly one thread to continue.
Mathias Agopian2bd99592012-02-25 23:02:14 -080064 void signal();
Romain Guy31ba37f2013-03-11 14:34:56 -070065 // Signal the condition variable, allowing one or all threads to continue.
66 void signal(WakeUpType type) {
67 if (type == WAKE_UP_ONE) {
68 signal();
69 } else {
70 broadcast();
71 }
72 }
Mathias Agopian2bd99592012-02-25 23:02:14 -080073 // Signal the condition variable, allowing all threads to continue.
74 void broadcast();
75
76private:
Yabin Cui4a6e5a32015-01-26 19:48:54 -080077#if !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -080078 pthread_cond_t mCond;
79#else
80 void* mState;
81#endif
82};
83
84// ---------------------------------------------------------------------------
85
Yabin Cui4a6e5a32015-01-26 19:48:54 -080086#if !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -080087
88inline Condition::Condition() {
89 pthread_cond_init(&mCond, NULL);
90}
91inline Condition::Condition(int type) {
92 if (type == SHARED) {
93 pthread_condattr_t attr;
94 pthread_condattr_init(&attr);
95 pthread_condattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
96 pthread_cond_init(&mCond, &attr);
97 pthread_condattr_destroy(&attr);
98 } else {
99 pthread_cond_init(&mCond, NULL);
100 }
101}
102inline Condition::~Condition() {
103 pthread_cond_destroy(&mCond);
104}
105inline status_t Condition::wait(Mutex& mutex) {
106 return -pthread_cond_wait(&mCond, &mutex.mMutex);
107}
108inline status_t Condition::waitRelative(Mutex& mutex, nsecs_t reltime) {
Mathias Agopian2bd99592012-02-25 23:02:14 -0800109 struct timespec ts;
Elliott Hughes76f0a842015-01-09 16:16:53 -0800110#if defined(__linux__)
Mathias Agopian2bd99592012-02-25 23:02:14 -0800111 clock_gettime(CLOCK_REALTIME, &ts);
Elliott Hughes76f0a842015-01-09 16:16:53 -0800112#else // __APPLE__
Elliott Hughesfd376b92016-04-04 14:21:47 -0700113 // Apple doesn't support POSIX clocks.
Mathias Agopian2bd99592012-02-25 23:02:14 -0800114 struct timeval t;
115 gettimeofday(&t, NULL);
116 ts.tv_sec = t.tv_sec;
Elliott Hughesfd376b92016-04-04 14:21:47 -0700117 ts.tv_nsec = t.tv_usec*1000;
Elliott Hughes76f0a842015-01-09 16:16:53 -0800118#endif
Elliott Hughesfd376b92016-04-04 14:21:47 -0700119
120 // On 32-bit devices, tv_sec is 32-bit, but `reltime` is 64-bit.
121 int64_t reltime_sec = reltime/1000000000;
122
123 ts.tv_nsec += reltime%1000000000;
124 if (reltime_sec < INT64_MAX && ts.tv_nsec >= 1000000000) {
Mathias Agopian2bd99592012-02-25 23:02:14 -0800125 ts.tv_nsec -= 1000000000;
Elliott Hughesfd376b92016-04-04 14:21:47 -0700126 ++reltime_sec;
Mathias Agopian2bd99592012-02-25 23:02:14 -0800127 }
Elliott Hughesfd376b92016-04-04 14:21:47 -0700128
129 int64_t time_sec = ts.tv_sec;
130 if (time_sec > INT64_MAX - reltime_sec) {
131 time_sec = INT64_MAX;
132 } else {
133 time_sec += reltime_sec;
134 }
135
136#if defined(__LP64__)
137 ts.tv_sec = time_sec;
138#else
139 ts.tv_sec = (time_sec > INT32_MAX) ? INT32_MAX : time_sec;
140#endif
141
Mathias Agopian2bd99592012-02-25 23:02:14 -0800142 return -pthread_cond_timedwait(&mCond, &mutex.mMutex, &ts);
Mathias Agopian2bd99592012-02-25 23:02:14 -0800143}
144inline void Condition::signal() {
Igor Murashkindb419382014-04-15 15:39:27 -0700145 /*
146 * POSIX says pthread_cond_signal wakes up "one or more" waiting threads.
147 * However bionic follows the glibc guarantee which wakes up "exactly one"
148 * waiting thread.
149 *
150 * man 3 pthread_cond_signal
151 * pthread_cond_signal restarts one of the threads that are waiting on
152 * the condition variable cond. If no threads are waiting on cond,
153 * nothing happens. If several threads are waiting on cond, exactly one
154 * is restarted, but it is not specified which.
155 */
Mathias Agopian2bd99592012-02-25 23:02:14 -0800156 pthread_cond_signal(&mCond);
157}
158inline void Condition::broadcast() {
159 pthread_cond_broadcast(&mCond);
160}
161
Yabin Cui4a6e5a32015-01-26 19:48:54 -0800162#endif // !defined(_WIN32)
Mathias Agopian2bd99592012-02-25 23:02:14 -0800163
164// ---------------------------------------------------------------------------
165}; // namespace android
166// ---------------------------------------------------------------------------
167
168#endif // _LIBS_UTILS_CONDITON_H