Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1 | /* |
| 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 Carlstrom | cd74c4b | 2012-01-23 13:21:00 -0800 | [diff] [blame] | 21 | #include <stdint.h> |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 22 | |
| 23 | #include <iosfwd> |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 24 | #include <string> |
| 25 | |
Elliott Hughes | 3efb841 | 2012-03-16 16:09:38 -0700 | [diff] [blame] | 26 | #include "gtest/gtest.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 27 | #include "logging.h" |
| 28 | #include "macros.h" |
| 29 | |
| 30 | namespace art { |
| 31 | |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 32 | enum MutexRank { |
| 33 | kNoMutexRank = -1, |
| 34 | kHeapLock = 0, |
| 35 | kThreadListLock = 1, |
| 36 | kThreadSuspendCountLock = 2, |
| 37 | kMaxMutexRank = kThreadSuspendCountLock, |
| 38 | }; |
| 39 | std::ostream& operator<<(std::ostream& os, const MutexRank& rhs); |
| 40 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 41 | class Mutex { |
| 42 | public: |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 43 | explicit Mutex(const char* name, MutexRank rank = kNoMutexRank); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 44 | ~Mutex(); |
| 45 | |
| 46 | void Lock(); |
| 47 | |
| 48 | bool TryLock(); |
| 49 | |
| 50 | void Unlock(); |
| 51 | |
| 52 | const char* GetName() { |
| 53 | return name_.c_str(); |
| 54 | } |
| 55 | |
| 56 | pthread_mutex_t* GetImpl() { |
| 57 | return &mutex_; |
| 58 | } |
| 59 | |
Elliott Hughes | a4060e5 | 2012-03-02 16:51:35 -0800 | [diff] [blame] | 60 | MutexRank GetRank() const { |
| 61 | return rank_; |
| 62 | } |
| 63 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 64 | void AssertHeld() { |
Elliott Hughes | cf04431 | 2012-01-23 18:48:51 -0800 | [diff] [blame] | 65 | #if !defined(__APPLE__) |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 66 | DCHECK_EQ(GetOwner(), GetTid()); |
Elliott Hughes | cf04431 | 2012-01-23 18:48:51 -0800 | [diff] [blame] | 67 | #endif |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | void AssertNotHeld() { |
Elliott Hughes | cf04431 | 2012-01-23 18:48:51 -0800 | [diff] [blame] | 71 | #if !defined(__APPLE__) |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 72 | DCHECK_NE(GetOwner(), GetTid()); |
Elliott Hughes | cf04431 | 2012-01-23 18:48:51 -0800 | [diff] [blame] | 73 | #endif |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 76 | pid_t GetOwner(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 77 | |
| 78 | private: |
| 79 | static pid_t GetTid(); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 80 | |
Brian Carlstrom | cd74c4b | 2012-01-23 13:21:00 -0800 | [diff] [blame] | 81 | uint32_t GetDepth(); |
| 82 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 83 | pthread_mutex_t mutex_; |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 84 | std::string name_; |
| 85 | MutexRank rank_; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 86 | |
Elliott Hughes | 3efb841 | 2012-03-16 16:09:38 -0700 | [diff] [blame] | 87 | friend class MutexTester; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 88 | DISALLOW_COPY_AND_ASSIGN(Mutex); |
| 89 | }; |
| 90 | |
| 91 | class MutexLock { |
| 92 | public: |
| 93 | explicit MutexLock(Mutex& mu) : mu_(mu) { |
| 94 | mu_.Lock(); |
| 95 | } |
| 96 | |
| 97 | ~MutexLock() { |
| 98 | mu_.Unlock(); |
| 99 | } |
| 100 | |
| 101 | private: |
| 102 | Mutex& mu_; |
| 103 | DISALLOW_COPY_AND_ASSIGN(MutexLock); |
| 104 | }; |
| 105 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 106 | class ConditionVariable { |
| 107 | public: |
Elliott Hughes | a51a3dd | 2011-10-17 15:19:26 -0700 | [diff] [blame] | 108 | explicit ConditionVariable(const std::string& name); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 109 | ~ConditionVariable(); |
| 110 | |
| 111 | void Broadcast(); |
| 112 | void Signal(); |
| 113 | void Wait(Mutex& mutex); |
| 114 | void TimedWait(Mutex& mutex, const timespec& ts); |
| 115 | |
| 116 | private: |
| 117 | pthread_cond_t cond_; |
| 118 | std::string name_; |
| 119 | DISALLOW_COPY_AND_ASSIGN(ConditionVariable); |
| 120 | }; |
| 121 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 122 | } // namespace art |
| 123 | |
| 124 | #endif // ART_SRC_MUTEX_H_ |