mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-10-31 15:07:12 -04:00
210 lines
6.4 KiB
C++
210 lines
6.4 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2020 Edouard Griffiths, F4EXB //
|
|
// //
|
|
// 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 <QDebug>
|
|
|
|
#include "SWGDeviceState.h"
|
|
#include "SWGSuccessResponse.h"
|
|
#include "SWGErrorResponse.h"
|
|
|
|
#include "webapi/webapiadapterinterface.h"
|
|
|
|
#include "simplepttreport.h"
|
|
#include "simplepttworker.h"
|
|
|
|
MESSAGE_CLASS_DEFINITION(SimplePTTWorker::MsgConfigureSimplePTTWorker, Message)
|
|
MESSAGE_CLASS_DEFINITION(SimplePTTWorker::MsgPTT, Message)
|
|
|
|
SimplePTTWorker::SimplePTTWorker(WebAPIAdapterInterface *webAPIAdapterInterface) :
|
|
m_webAPIAdapterInterface(webAPIAdapterInterface),
|
|
m_msgQueueToGUI(nullptr),
|
|
m_running(false),
|
|
m_tx(false),
|
|
m_mutex(QMutex::Recursive)
|
|
{
|
|
qDebug("SimplePTTWorker::SimplePTTWorker");
|
|
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
|
}
|
|
|
|
SimplePTTWorker::~SimplePTTWorker()
|
|
{
|
|
m_inputMessageQueue.clear();
|
|
}
|
|
|
|
void SimplePTTWorker::reset()
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
m_inputMessageQueue.clear();
|
|
}
|
|
|
|
bool SimplePTTWorker::startWork()
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
|
m_running = true;
|
|
return m_running;
|
|
}
|
|
|
|
void SimplePTTWorker::stopWork()
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
disconnect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
|
m_running = false;
|
|
}
|
|
|
|
void SimplePTTWorker::handleInputMessages()
|
|
{
|
|
Message* message;
|
|
|
|
while ((message = m_inputMessageQueue.pop()) != nullptr)
|
|
{
|
|
if (handleMessage(*message)) {
|
|
delete message;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool SimplePTTWorker::handleMessage(const Message& cmd)
|
|
{
|
|
if (MsgConfigureSimplePTTWorker::match(cmd))
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
MsgConfigureSimplePTTWorker& cfg = (MsgConfigureSimplePTTWorker&) cmd;
|
|
qDebug() << "SimplePTTWorker::handleMessage: MsgConfigureSimplePTTWorker";
|
|
|
|
applySettings(cfg.getSettings(), cfg.getForce());
|
|
|
|
return true;
|
|
}
|
|
else if (MsgPTT::match(cmd))
|
|
{
|
|
MsgPTT& cfg = (MsgPTT&) cmd;
|
|
qDebug() << "SimplePTTWorker::handleMessage: MsgPTT";
|
|
|
|
sendPTT(cfg.getTx());
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void SimplePTTWorker::applySettings(const SimplePTTSettings& settings, bool force)
|
|
{
|
|
qDebug() << "SimplePTTWorker::applySettings:"
|
|
<< " m_title: " << settings.m_title
|
|
<< " m_rgbColor: " << settings.m_rgbColor
|
|
<< " m_rxDeviceSetIndex: " << settings.m_rxDeviceSetIndex
|
|
<< " m_txDeviceSetIndex: " << settings.m_txDeviceSetIndex
|
|
<< " m_rx2TxDelayMs: " << settings.m_rx2TxDelayMs
|
|
<< " m_tx2RxDelayMs: " << settings.m_tx2RxDelayMs
|
|
<< " force: " << force;
|
|
m_settings = settings;
|
|
}
|
|
|
|
void SimplePTTWorker::sendPTT(bool tx)
|
|
{
|
|
if (!m_updateTimer.isActive())
|
|
{
|
|
bool switchedOff = false;
|
|
m_mutex.lock();
|
|
|
|
if (tx)
|
|
{
|
|
if (m_settings.m_rxDeviceSetIndex >= 0)
|
|
{
|
|
m_tx = false;
|
|
switchedOff = turnDevice(false);
|
|
}
|
|
|
|
if (m_settings.m_txDeviceSetIndex >= 0)
|
|
{
|
|
m_tx = true;
|
|
m_updateTimer.start(m_settings.m_rx2TxDelayMs);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (m_settings.m_txDeviceSetIndex >= 0)
|
|
{
|
|
m_tx = true;
|
|
switchedOff = turnDevice(false);
|
|
}
|
|
|
|
if (m_settings.m_rxDeviceSetIndex >= 0)
|
|
{
|
|
m_tx = false;
|
|
m_updateTimer.start(m_settings.m_tx2RxDelayMs);
|
|
}
|
|
}
|
|
|
|
if (switchedOff && (m_msgQueueToGUI))
|
|
{
|
|
SimplePTTReport::MsgRadioState *msg = SimplePTTReport::MsgRadioState::create(SimplePTTReport::RadioIdle);
|
|
m_msgQueueToGUI->push(msg);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SimplePTTWorker::updateHardware()
|
|
{
|
|
SWGSDRangel::SWGSuccessResponse response;
|
|
SWGSDRangel::SWGErrorResponse error;
|
|
m_updateTimer.stop();
|
|
m_mutex.unlock();
|
|
|
|
if (turnDevice(true))
|
|
{
|
|
m_webAPIAdapterInterface->devicesetFocusPatch(
|
|
m_tx ? m_settings.m_txDeviceSetIndex : m_settings.m_rxDeviceSetIndex, response, error);
|
|
|
|
if (m_msgQueueToGUI)
|
|
{
|
|
SimplePTTReport::MsgRadioState *msg = SimplePTTReport::MsgRadioState::create(
|
|
m_tx ? SimplePTTReport::RadioTx : SimplePTTReport::RadioRx
|
|
);
|
|
m_msgQueueToGUI->push(msg);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool SimplePTTWorker::turnDevice(bool on)
|
|
{
|
|
SWGSDRangel::SWGDeviceState response;
|
|
SWGSDRangel::SWGErrorResponse error;
|
|
int httpCode;
|
|
|
|
if (on) {
|
|
httpCode = m_webAPIAdapterInterface->devicesetDeviceRunPost(
|
|
m_tx ? m_settings.m_txDeviceSetIndex : m_settings.m_rxDeviceSetIndex, response, error);
|
|
} else {
|
|
httpCode = m_webAPIAdapterInterface->devicesetDeviceRunDelete(
|
|
m_tx ? m_settings.m_txDeviceSetIndex : m_settings.m_rxDeviceSetIndex, response, error);
|
|
}
|
|
|
|
if (httpCode/100 == 2)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
qWarning("SimplePTTWorker::turnDevice: error: %s", qPrintable(*error.getMessage()));
|
|
return false;
|
|
}
|
|
} |