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