blob: 0e7c1731e678c0ab14eba56133532a779e1e8e35 [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 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 ART_SRC_MUTEX_H_
18#define ART_SRC_MUTEX_H_
19
20#include <pthread.h>
Brian Carlstromcd74c4b2012-01-23 13:21:00 -080021#include <stdint.h>
Elliott Hughesffb465f2012-03-01 18:46:05 -080022
23#include <iosfwd>
Elliott Hughes8daa0922011-09-11 13:46:25 -070024#include <string>
25
Elliott Hughes3efb8412012-03-16 16:09:38 -070026#include "gtest/gtest.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070027#include "logging.h"
28#include "macros.h"
29
30namespace art {
31
Elliott Hughesffb465f2012-03-01 18:46:05 -080032enum MutexRank {
33 kNoMutexRank = -1,
34 kHeapLock = 0,
35 kThreadListLock = 1,
36 kThreadSuspendCountLock = 2,
37 kMaxMutexRank = kThreadSuspendCountLock,
38};
39std::ostream& operator<<(std::ostream& os, const MutexRank& rhs);
40
Elliott Hughesf8349362012-06-18 15:00:06 -070041class LOCKABLE Mutex {
Elliott Hughes8daa0922011-09-11 13:46:25 -070042 public:
Elliott Hughesffb465f2012-03-01 18:46:05 -080043 explicit Mutex(const char* name, MutexRank rank = kNoMutexRank);
Elliott Hughes8daa0922011-09-11 13:46:25 -070044 ~Mutex();
45
Elliott Hughesf8349362012-06-18 15:00:06 -070046 void Lock() EXCLUSIVE_LOCK_FUNCTION();
Elliott Hughes8daa0922011-09-11 13:46:25 -070047
Elliott Hughesf8349362012-06-18 15:00:06 -070048 bool TryLock() EXCLUSIVE_TRYLOCK_FUNCTION(true);
Elliott Hughes8daa0922011-09-11 13:46:25 -070049
Elliott Hughesf8349362012-06-18 15:00:06 -070050 void Unlock() UNLOCK_FUNCTION();
Elliott Hughes8daa0922011-09-11 13:46:25 -070051
Elliott Hughesf1498432012-03-28 19:34:27 -070052#if !defined(NDEBUG)
53 void AssertHeld();
54 void AssertNotHeld();
55#else
56 void AssertHeld() {}
57 void AssertNotHeld() {}
Elliott Hughescf044312012-01-23 18:48:51 -080058#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -070059
Elliott Hughesf1498432012-03-28 19:34:27 -070060 uint64_t GetOwner();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070061
62 private:
Brian Carlstromcd74c4b2012-01-23 13:21:00 -080063 uint32_t GetDepth();
64
Elliott Hughes8daa0922011-09-11 13:46:25 -070065 pthread_mutex_t mutex_;
Elliott Hughes0a1038b2012-06-14 16:24:17 -070066 const std::string name_;
67 const MutexRank rank_;
Elliott Hughes8daa0922011-09-11 13:46:25 -070068
Elliott Hughesf1498432012-03-28 19:34:27 -070069 friend class ConditionVariable;
Elliott Hughes3efb8412012-03-16 16:09:38 -070070 friend class MutexTester;
Elliott Hughes8daa0922011-09-11 13:46:25 -070071 DISALLOW_COPY_AND_ASSIGN(Mutex);
72};
73
Elliott Hughesf8349362012-06-18 15:00:06 -070074class SCOPED_LOCKABLE MutexLock {
Elliott Hughes8daa0922011-09-11 13:46:25 -070075 public:
Elliott Hughesf8349362012-06-18 15:00:06 -070076 explicit MutexLock(Mutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) {
Elliott Hughes8daa0922011-09-11 13:46:25 -070077 mu_.Lock();
78 }
79
Elliott Hughesf8349362012-06-18 15:00:06 -070080 ~MutexLock() UNLOCK_FUNCTION() {
Elliott Hughes8daa0922011-09-11 13:46:25 -070081 mu_.Unlock();
82 }
83
84 private:
85 Mutex& mu_;
86 DISALLOW_COPY_AND_ASSIGN(MutexLock);
87};
Elliott Hughesf8349362012-06-18 15:00:06 -070088// Catch bug where variable name is omitted. "MutexLock (lock);" instead of "MutexLock mu(lock)".
89#define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_declaration_missing_variable_name)
Elliott Hughes8daa0922011-09-11 13:46:25 -070090
Elliott Hughes5f791332011-09-15 17:45:30 -070091class ConditionVariable {
92 public:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -070093 explicit ConditionVariable(const std::string& name);
Elliott Hughes5f791332011-09-15 17:45:30 -070094 ~ConditionVariable();
95
96 void Broadcast();
97 void Signal();
98 void Wait(Mutex& mutex);
99 void TimedWait(Mutex& mutex, const timespec& ts);
100
101 private:
102 pthread_cond_t cond_;
103 std::string name_;
104 DISALLOW_COPY_AND_ASSIGN(ConditionVariable);
105};
106
Elliott Hughes8daa0922011-09-11 13:46:25 -0700107} // namespace art
108
109#endif // ART_SRC_MUTEX_H_