2019-05-09 11:27:12 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2019 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// API for Rx channels //
|
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// (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 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "util/uid.h"
|
|
|
|
#include "channelapi.h"
|
2021-01-13 12:07:38 -05:00
|
|
|
#include "maincore.h"
|
2019-05-09 11:27:12 -04:00
|
|
|
|
2020-11-22 13:29:27 -05:00
|
|
|
ChannelAPI::ChannelAPI(const QString& uri, StreamType streamType) :
|
2021-02-08 15:52:47 -05:00
|
|
|
m_guiMessageQueue(nullptr),
|
2019-05-09 11:27:12 -04:00
|
|
|
m_streamType(streamType),
|
2020-11-22 13:29:27 -05:00
|
|
|
m_name(uri),
|
|
|
|
m_uri(uri),
|
2019-05-09 11:27:12 -04:00
|
|
|
m_indexInDeviceSet(-1),
|
2019-06-14 10:58:09 -04:00
|
|
|
m_deviceSetIndex(0),
|
2019-05-09 11:27:12 -04:00
|
|
|
m_uid(UidCalculator::getNewObjectId())
|
2022-02-12 18:57:33 -05:00
|
|
|
{
|
|
|
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChannelAPI::handleInputMessages()
|
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
|
|
|
while ((message = m_inputMessageQueue.pop()) != 0)
|
|
|
|
{
|
|
|
|
if (handleMessage(*message)) {
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|