* Copyright (C) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "rwlock.h"
#include <cassert>
namespace OHOS {
namespace Utils {
RWLock::RWLock(bool writeFirst)
: writeFirst_(writeFirst), writeThreadID_(), lockCount_(0), writeWaitCount_(0)
{
}
void RWLock::LockRead()
{
if (std::this_thread::get_id() != writeThreadID_) {
int count;
if (writeFirst_) {
do {
while ((count = lockCount_) == LOCK_STATUS_WRITE || writeWaitCount_ > 0) {
}
} while (!lockCount_.compare_exchange_weak(count, count + 1));
} else {
do {
while ((count = lockCount_) == LOCK_STATUS_WRITE) {}
} while (!lockCount_.compare_exchange_weak(count, count + 1));
}
}
}
void RWLock::UnLockRead()
{
if (std::this_thread::get_id() != writeThreadID_) {
--lockCount_;
}
}
void RWLock::LockWrite()
{
if (std::this_thread::get_id() != writeThreadID_) {
++writeWaitCount_;
for (int status = LOCK_STATUS_FREE; !lockCount_.compare_exchange_weak(status, LOCK_STATUS_WRITE);
status = LOCK_STATUS_FREE) {
}
--writeWaitCount_;
writeThreadID_ = std::this_thread::get_id();
}
}
void RWLock::UnLockWrite()
{
if (std::this_thread::get_id() != writeThreadID_) {
return;
}
if (lockCount_ != LOCK_STATUS_WRITE) {
return;
}
writeThreadID_ = std::thread::id();
lockCount_.store(LOCK_STATUS_FREE);
}
}
}