/* * * Copyright (C) 2023, KylinSoft Co., Ltd. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * */ #ifndef DATAQUEUE_H #define DATAQUEUE_H #include #include #include #include "libsearch_global.h" namespace UkuiSearch { // TODO I want a unlocked queue template class LIBSEARCH_EXPORT DataQueue : protected QList { public: inline void enqueue(const T &t) { QMutexLocker locker(&m_mutex); QList::append(t); } inline T dequeue() { QMutexLocker locker(&m_mutex); return QList::takeFirst(); } inline void clear() { QMutexLocker locker(&m_mutex); QList::clear(); QList::reserve(QList::size()); } inline bool isEmpty() { QMutexLocker locker(&m_mutex); return QList::isEmpty(); } inline T tryDequeue() { QMutexLocker locker(&m_mutex); if(QList::isEmpty()) { return T(); } else { return QList::takeFirst(); } } private: QMutex m_mutex; }; } #endif // DATAQUEUE_H