blob: eb905656a96650ce094e4fe66bf78cf961410651 [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
60 std::string name_;
61
62 pthread_mutex_t mutex_;
63
64 DISALLOW_COPY_AND_ASSIGN(Mutex);
65};
66
67class MutexLock {
68 public:
69 explicit MutexLock(Mutex& mu) : mu_(mu) {
70 mu_.Lock();
71 }
72
73 ~MutexLock() {
74 mu_.Unlock();
75 }
76
77 private:
78 Mutex& mu_;
79 DISALLOW_COPY_AND_ASSIGN(MutexLock);
80};
81
Elliott Hughes5f791332011-09-15 17:45:30 -070082class ConditionVariable {
83 public:
84 ConditionVariable(const std::string& name);
85 ~ConditionVariable();
86
87 void Broadcast();
88 void Signal();
89 void Wait(Mutex& mutex);
90 void TimedWait(Mutex& mutex, const timespec& ts);
91
92 private:
93 pthread_cond_t cond_;
94 std::string name_;
95 DISALLOW_COPY_AND_ASSIGN(ConditionVariable);
96};
97
Elliott Hughes8daa0922011-09-11 13:46:25 -070098} // namespace art
99
100#endif // ART_SRC_MUTEX_H_