blob: 744bc428585b61da977e11663550152980a5eb1f [file] [log] [blame]
Ian Rogers22d5e732014-07-15 22:23:51 -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#include "object_lock.h"
18
Alex Lighta01de592016-11-15 10:43:06 -080019#include "mirror/class_ext.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070020#include "mirror/object-inl.h"
Ian Rogers22d5e732014-07-15 22:23:51 -070021#include "monitor.h"
22
23namespace art {
24
25template <typename T>
Andreas Gampe5a4b8a22014-09-11 08:30:08 -070026ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) {
Andreas Gampefa4333d2017-02-14 11:10:34 -080027 CHECK(object != nullptr);
Ian Rogers22d5e732014-07-15 22:23:51 -070028 obj_->MonitorEnter(self_);
29}
30
31template <typename T>
32ObjectLock<T>::~ObjectLock() {
33 obj_->MonitorExit(self_);
34}
35
36template <typename T>
37void ObjectLock<T>::WaitIgnoringInterrupts() {
38 Monitor::Wait(self_, obj_.Get(), 0, 0, false, kWaiting);
39}
40
41template <typename T>
42void ObjectLock<T>::Notify() {
43 obj_->Notify(self_);
44}
45
46template <typename T>
47void ObjectLock<T>::NotifyAll() {
48 obj_->NotifyAll(self_);
49}
50
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -070051template <typename T>
52ObjectTryLock<T>::ObjectTryLock(Thread* self, Handle<T> object) : self_(self), obj_(object) {
Andreas Gampefa4333d2017-02-14 11:10:34 -080053 CHECK(object != nullptr);
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -070054 acquired_ = obj_->MonitorTryEnter(self_) != nullptr;
55}
56
57template <typename T>
58ObjectTryLock<T>::~ObjectTryLock() {
59 if (acquired_) {
60 obj_->MonitorExit(self_);
61 }
62}
63
Ian Rogers22d5e732014-07-15 22:23:51 -070064template class ObjectLock<mirror::Class>;
Alex Lighta01de592016-11-15 10:43:06 -080065template class ObjectLock<mirror::ClassExt>;
Ian Rogers22d5e732014-07-15 22:23:51 -070066template class ObjectLock<mirror::Object>;
Mathieu Chartier4b0ef1c2016-07-29 16:26:01 -070067template class ObjectTryLock<mirror::Class>;
68template class ObjectTryLock<mirror::Object>;
Ian Rogers22d5e732014-07-15 22:23:51 -070069
70} // namespace art