blob: b019f68cb590818e67f84f5607a6ddf22c0f5747 [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 Hughes8daa0922011-09-11 13:46:25 -070041class Mutex {
42 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
46 void Lock();
47
48 bool TryLock();
49
50 void Unlock();
51
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 Hughesffb465f2012-03-01 18:46:05 -080066 std::string name_;
67 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
74class MutexLock {
75 public:
76 explicit MutexLock(Mutex& mu) : mu_(mu) {
77 mu_.Lock();
78 }
79
80 ~MutexLock() {
81 mu_.Unlock();
82 }
83
84 private:
85 Mutex& mu_;
86 DISALLOW_COPY_AND_ASSIGN(MutexLock);
87};
88
Elliott Hughes5f791332011-09-15 17:45:30 -070089class ConditionVariable {
90 public:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -070091 explicit ConditionVariable(const std::string& name);
Elliott Hughes5f791332011-09-15 17:45:30 -070092 ~ConditionVariable();
93
94 void Broadcast();
95 void Signal();
96 void Wait(Mutex& mutex);
97 void TimedWait(Mutex& mutex, const timespec& ts);
98
99 private:
100 pthread_cond_t cond_;
101 std::string name_;
102 DISALLOW_COPY_AND_ASSIGN(ConditionVariable);
103};
104
Elliott Hughes8daa0922011-09-11 13:46:25 -0700105} // namespace art
106
107#endif // ART_SRC_MUTEX_H_