Files
utils_native/base/include/safe_queue.h
T
zhoushilin 1b1678e3a7 change file auth to 644
Signed-off-by: zhoushilin <zhoushilin1@huawei.com>
2022-03-24 20:11:18 +08:00

135 lines
2.7 KiB
C++

/*
* 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.
*/
#ifndef UTILS_BASE_SAFE_QUEUE_H
#define UTILS_BASE_SAFE_QUEUE_H
#include <deque>
#include <mutex>
namespace OHOS {
template <typename T>
class SafeQueueInner {
public:
SafeQueueInner() {}
virtual ~SafeQueueInner()
{
if (!deque_.empty()) {
deque_.clear();
}
}
void Erase(T& Object)
{
std::lock_guard<std::mutex> lock(mutex_);
deque_.remove(Object);
}
bool Empty()
{
std::lock_guard<std::mutex> lock(mutex_);
return deque_.empty();
}
void Push(const T& pt)
{
std::lock_guard<std::mutex> lock(mutex_);
return DoPush(pt);
}
void Clear()
{
std::lock_guard<std::mutex> lock(mutex_);
if (!deque_.empty()) {
deque_.clear();
}
return;
}
int Size()
{
std::lock_guard<std::mutex> lock(mutex_);
return deque_.size();
}
bool Pop(T& pt)
{
std::lock_guard<std::mutex> lock(mutex_);
return DoPop(pt);
}
protected:
virtual void DoPush(const T& pt) = 0;
virtual bool DoPop(T& pt) = 0;
std::deque<T> deque_;
std::mutex mutex_;
};
template <typename T>
class SafeQueue : public SafeQueueInner<T> {
protected:
using SafeQueueInner<T>::deque_;
using SafeQueueInner<T>::mutex_;
virtual void DoPush(const T& pt) override
{
deque_.push_back(pt);
}
virtual bool DoPop(T& pt) override
{
if (deque_.size() > 0) {
pt = deque_.front();
deque_.pop_front();
return true;
}
return false;
}
};
template <typename T>
class SafeStack : public SafeQueueInner<T> {
protected:
using SafeQueueInner<T>::deque_;
using SafeQueueInner<T>::mutex_;
virtual void DoPush(const T& pt) override
{
deque_.push_back(pt);
}
virtual bool DoPop(T& pt) override
{
if (deque_.size() > 0) {
pt = deque_.back();
deque_.pop_back();
return true;
}
return false;
}
};
} // namespace OHOS
#endif