blob: f22c5dcc1dcdd5ae4e14e947d7f339ab25cb90c4 [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>
21#include <string>
22
23#include "logging.h"
24#include "macros.h"
25
26namespace art {
27
28class Mutex {
29 public:
30 explicit Mutex(const char* name);
31 ~Mutex();
32
33 void Lock();
34
35 bool TryLock();
36
37 void Unlock();
38
39 const char* GetName() {
40 return name_.c_str();
41 }
42
43 pthread_mutex_t* GetImpl() {
44 return &mutex_;
45 }
46
47 void AssertHeld() {
Elliott Hughes8daa0922011-09-11 13:46:25 -070048 DCHECK_EQ(GetOwner(), GetTid());
Elliott Hughes8daa0922011-09-11 13:46:25 -070049 }
50
51 void AssertNotHeld() {
Elliott Hughes8daa0922011-09-11 13:46:25 -070052 DCHECK_NE(GetOwner(), GetTid());
Elliott Hughes8daa0922011-09-11 13:46:25 -070053 }
54
Elliott Hughes8daa0922011-09-11 13:46:25 -070055 pid_t GetOwner();
Elliott Hughesaccd83d2011-10-17 14:25:58 -070056
57 private:
58 static pid_t GetTid();
Elliott Hughes8daa0922011-09-11 13:46:25 -070059
Brian Carlstrom4514d3c2011-10-21 17:01:31 -070060 void ClearOwner();
61
Elliott Hughes8daa0922011-09-11 13:46:25 -070062 std::string name_;
63
64 pthread_mutex_t mutex_;
65
Brian Carlstrom4514d3c2011-10-21 17:01:31 -070066 friend class MonitorList; // for ClearOwner
Elliott Hughes8daa0922011-09-11 13:46:25 -070067 DISALLOW_COPY_AND_ASSIGN(Mutex);
68};
69
70class MutexLock {
71 public:
72 explicit MutexLock(Mutex& mu) : mu_(mu) {
73 mu_.Lock();
74 }
75
76 ~MutexLock() {
77 mu_.Unlock();
78 }
79
80 private:
81 Mutex& mu_;
82 DISALLOW_COPY_AND_ASSIGN(MutexLock);
83};
84
Elliott Hughes5f791332011-09-15 17:45:30 -070085class ConditionVariable {
86 public:
Elliott Hughesa51a3dd2011-10-17 15:19:26 -070087 explicit ConditionVariable(const std::string& name);
Elliott Hughes5f791332011-09-15 17:45:30 -070088 ~ConditionVariable();
89
90 void Broadcast();
91 void Signal();
92 void Wait(Mutex& mutex);
93 void TimedWait(Mutex& mutex, const timespec& ts);
94
95 private:
96 pthread_cond_t cond_;
97 std::string name_;
98 DISALLOW_COPY_AND_ASSIGN(ConditionVariable);
99};
100
Elliott Hughes8daa0922011-09-11 13:46:25 -0700101} // namespace art
102
103#endif // ART_SRC_MUTEX_H_