2015-08-13 23:00:28 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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 as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// 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 V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_MESSAGEQUEUE_H
|
|
|
|
#define INCLUDE_MESSAGEQUEUE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QQueue>
|
2015-09-01 19:51:49 -04:00
|
|
|
#include <QMutex>
|
2018-03-20 08:49:21 -04:00
|
|
|
#include "export.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
class Message;
|
|
|
|
|
2018-03-03 14:23:38 -05:00
|
|
|
class SDRBASE_API MessageQueue : public QObject {
|
2014-05-18 11:52:39 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MessageQueue(QObject* parent = NULL);
|
|
|
|
~MessageQueue();
|
|
|
|
|
2015-08-13 23:00:28 -04:00
|
|
|
void push(Message* message, bool emitSignal = true); //!< Push message onto queue
|
|
|
|
Message* pop(); //!< Pop message from queue
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2015-08-13 23:00:28 -04:00
|
|
|
int size(); //!< Returns queue size
|
|
|
|
void clear(); //!< Empty queue
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void messageEnqueued();
|
|
|
|
|
|
|
|
private:
|
2015-09-01 19:51:49 -04:00
|
|
|
QMutex m_lock;
|
2014-05-18 11:52:39 -04:00
|
|
|
QQueue<Message*> m_queue;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_MESSAGEQUEUE_H
|