2016-10-17 12:15:08 -04:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 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/>. //
///////////////////////////////////////////////////////////////////////////////////
# include <stdio.h>
# include <QDebug>
# include <QThread>
# include "dspdevicesinkengine.h"
# include "dsp/basebandsamplesource.h"
# include "dsp/basebandsamplesink.h"
# include "dsp/devicesamplesink.h"
# include "dsp/dspcommands.h"
# include "samplesourcefifo.h"
# include "threadedbasebandsamplesource.h"
DSPDeviceSinkEngine : : DSPDeviceSinkEngine ( uint uid , QObject * parent ) :
m_uid ( uid ) ,
QThread ( parent ) ,
m_state ( StNotStarted ) ,
m_deviceSampleSink ( 0 ) ,
m_sampleSinkSequence ( 0 ) ,
m_basebandSampleSources ( ) ,
m_sampleRate ( 0 ) ,
m_centerFrequency ( 0 )
{
connect ( & m_inputMessageQueue , SIGNAL ( messageEnqueued ( ) ) , this , SLOT ( handleInputMessages ( ) ) , Qt : : QueuedConnection ) ;
connect ( & m_syncMessenger , SIGNAL ( messageSent ( ) ) , this , SLOT ( handleSynchronousMessages ( ) ) , Qt : : QueuedConnection ) ;
moveToThread ( this ) ;
}
DSPDeviceSinkEngine : : ~ DSPDeviceSinkEngine ( )
{
wait ( ) ;
}
void DSPDeviceSinkEngine : : run ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::run " ;
m_state = StIdle ;
m_syncMessenger . done ( ) ; // Release start() that is waiting in main thread
exec ( ) ;
}
void DSPDeviceSinkEngine : : start ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::start " ;
QThread : : start ( ) ;
}
void DSPDeviceSinkEngine : : stop ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::stop " ;
DSPExit cmd ;
m_syncMessenger . sendWait ( cmd ) ;
}
bool DSPDeviceSinkEngine : : initGeneration ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::initGeneration " ;
DSPGenerationInit cmd ;
return m_syncMessenger . sendWait ( cmd ) = = StReady ;
}
bool DSPDeviceSinkEngine : : startGeneration ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::startGeneration " ;
DSPGenerationStart cmd ;
return m_syncMessenger . sendWait ( cmd ) = = StRunning ;
}
void DSPDeviceSinkEngine : : stopGeneration ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::stopGeneration " ;
DSPGenerationStop cmd ;
m_syncMessenger . storeMessage ( cmd ) ;
handleSynchronousMessages ( ) ;
}
void DSPDeviceSinkEngine : : setSink ( DeviceSampleSink * sink )
{
qDebug ( ) < < " DSPDeviceSinkEngine::setSink " ;
DSPSetSink cmd ( sink ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
void DSPDeviceSinkEngine : : setSinkSequence ( int sequence )
{
qDebug ( " DSPDeviceSinkEngine::setSinkSequence: seq: %d " , sequence ) ;
m_sampleSinkSequence = sequence ;
}
void DSPDeviceSinkEngine : : addSource ( BasebandSampleSource * source )
{
qDebug ( ) < < " DSPDeviceSinkEngine::addSource: " < < source - > objectName ( ) . toStdString ( ) . c_str ( ) ;
DSPAddSource cmd ( source ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
void DSPDeviceSinkEngine : : removeSource ( BasebandSampleSource * source )
{
qDebug ( ) < < " DSPDeviceSinkEngine::removeSource: " < < source - > objectName ( ) . toStdString ( ) . c_str ( ) ;
DSPRemoveSource cmd ( source ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
void DSPDeviceSinkEngine : : addThreadedSource ( ThreadedBasebandSampleSource * source )
{
qDebug ( ) < < " DSPDeviceSinkEngine::addThreadedSource: " < < source - > objectName ( ) . toStdString ( ) . c_str ( ) ;
DSPAddThreadedSampleSource cmd ( source ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
void DSPDeviceSinkEngine : : removeThreadedSource ( ThreadedBasebandSampleSource * source )
{
qDebug ( ) < < " DSPDeviceSinkEngine::removeThreadedSource: " < < source - > objectName ( ) . toStdString ( ) . c_str ( ) ;
DSPRemoveThreadedSampleSource cmd ( source ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
void DSPDeviceSinkEngine : : addSink ( BasebandSampleSink * sink )
{
qDebug ( ) < < " DSPDeviceSinkEngine::addSink: " < < sink - > objectName ( ) . toStdString ( ) . c_str ( ) ;
DSPAddSink cmd ( sink ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
void DSPDeviceSinkEngine : : removeSink ( BasebandSampleSink * sink )
{
qDebug ( ) < < " DSPDeviceSinkEngine::removeSink: " < < sink - > objectName ( ) . toStdString ( ) . c_str ( ) ;
DSPRemoveSink cmd ( sink ) ;
m_syncMessenger . sendWait ( cmd ) ;
}
QString DSPDeviceSinkEngine : : errorMessage ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::errorMessage " ;
DSPGetErrorMessage cmd ;
m_syncMessenger . sendWait ( cmd ) ;
return cmd . getErrorMessage ( ) ;
}
QString DSPDeviceSinkEngine : : sinkDeviceDescription ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::sinkDeviceDescription " ;
DSPGetSinkDeviceDescription cmd ;
m_syncMessenger . sendWait ( cmd ) ;
return cmd . getDeviceDescription ( ) ;
}
void DSPDeviceSinkEngine : : work ( )
{
SampleSourceFifo * sampleFifo = m_deviceSampleSink - > getSampleFifo ( ) ;
unsigned int nbWriteSamples = sampleFifo - > getChunkSize ( ) ;
SampleVector : : iterator writeBegin ;
sampleFifo - > getWriteIterator ( writeBegin ) ;
SampleVector : : iterator writeAt = writeBegin ;
Sample s ;
if ( ( m_threadedBasebandSampleSources . size ( ) + m_basebandSampleSources . size ( ) ) > 0 )
{
for ( int is = 0 ; is < nbWriteSamples ; is + + , + + writeAt )
{
// pull data from threaded sources and merge them in the device sample FIFO
for ( ThreadedBasebandSampleSources : : iterator it = m_threadedBasebandSampleSources . begin ( ) ; it ! = m_threadedBasebandSampleSources . end ( ) ; + + it )
{
( * it ) - > pull ( s ) ;
s / = ( m_threadedBasebandSampleSources . size ( ) + m_basebandSampleSources . size ( ) ) ;
* writeAt + = s ;
}
// pull data from direct sources and merge them in the device sample FIFO
for ( BasebandSampleSources : : iterator it = m_basebandSampleSources . begin ( ) ; it ! = m_basebandSampleSources . end ( ) ; + + it )
{
( * it ) - > pull ( s ) ;
s / = ( m_threadedBasebandSampleSources . size ( ) + m_basebandSampleSources . size ( ) ) ;
* writeAt + = s ;
}
}
// feed the mix to the sinks normally just the main spectrum vis
for ( BasebandSampleSinks : : iterator it = m_basebandSampleSinks . begin ( ) ; it ! = m_basebandSampleSinks . end ( ) ; + + it )
{
( * it ) - > feed ( writeBegin , writeBegin + nbWriteSamples , false ) ;
}
}
}
// notStarted -> idle -> init -> running -+
// ^ |
// +-----------------------+
DSPDeviceSinkEngine : : State DSPDeviceSinkEngine : : gotoIdle ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoIdle " ;
switch ( m_state ) {
case StNotStarted :
return StNotStarted ;
case StIdle :
case StError :
return StIdle ;
case StReady :
case StRunning :
break ;
}
if ( m_deviceSampleSink = = 0 )
{
return StIdle ;
}
// stop everything
for ( BasebandSampleSources : : const_iterator it = m_basebandSampleSources . begin ( ) ; it ! = m_basebandSampleSources . end ( ) ; it + + )
{
( * it ) - > stop ( ) ;
}
for ( ThreadedBasebandSampleSources : : const_iterator it = m_threadedBasebandSampleSources . begin ( ) ; it ! = m_threadedBasebandSampleSources . end ( ) ; it + + )
{
( * it ) - > stop ( ) ;
}
for ( BasebandSampleSinks : : const_iterator it = m_basebandSampleSinks . begin ( ) ; it ! = m_basebandSampleSinks . end ( ) ; it + + )
{
( * it ) - > stop ( ) ;
}
m_deviceSampleSink - > stop ( ) ;
m_deviceDescription . clear ( ) ;
m_sampleRate = 0 ;
return StIdle ;
}
DSPDeviceSinkEngine : : State DSPDeviceSinkEngine : : gotoInit ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoInit " ;
switch ( m_state ) {
case StNotStarted :
return StNotStarted ;
case StRunning : // FIXME: assumes it goes first through idle state. Could we get back to init from running directly?
return StRunning ;
case StReady :
return StReady ;
case StIdle :
case StError :
break ;
}
if ( m_deviceSampleSink = = 0 )
{
return gotoError ( " DSPDeviceSinkEngine::gotoInit: No sample source configured " ) ;
}
// init: pass sample rate and center frequency to all sample rate and/or center frequency dependent sinks and wait for completion
m_deviceDescription = m_deviceSampleSink - > getDeviceDescription ( ) ;
m_centerFrequency = m_deviceSampleSink - > getCenterFrequency ( ) ;
m_sampleRate = m_deviceSampleSink - > getSampleRate ( ) ;
qDebug ( ) < < " DSPDeviceSinkEngine::gotoInit: " < < m_deviceDescription . toStdString ( ) . c_str ( ) < < " : "
< < " sampleRate: " < < m_sampleRate
< < " centerFrequency: " < < m_centerFrequency ;
DSPSignalNotification notif ( m_sampleRate , m_centerFrequency ) ;
for ( BasebandSampleSources : : const_iterator it = m_basebandSampleSources . begin ( ) ; it ! = m_basebandSampleSources . end ( ) ; + + it )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoInit: initializing " < < ( * it ) - > objectName ( ) . toStdString ( ) . c_str ( ) ;
( * it ) - > handleMessage ( notif ) ;
}
for ( ThreadedBasebandSampleSources : : const_iterator it = m_threadedBasebandSampleSources . begin ( ) ; it ! = m_threadedBasebandSampleSources . end ( ) ; + + it )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoInit: initializing ThreadedSampleSource( " < < ( * it ) - > getSampleSourceObjectName ( ) . toStdString ( ) . c_str ( ) < < " ) " ;
( * it ) - > handleSourceMessage ( notif ) ;
}
for ( BasebandSampleSinks : : const_iterator it = m_basebandSampleSinks . begin ( ) ; it ! = m_basebandSampleSinks . end ( ) ; + + it )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoInit: initializing " < < ( * it ) - > objectName ( ) . toStdString ( ) . c_str ( ) ;
( * it ) - > handleMessage ( notif ) ;
}
// pass data to listeners
DSPSignalNotification * rep = new DSPSignalNotification ( notif ) ; // make a copy for the output queue
m_outputMessageQueue . push ( rep ) ;
return StReady ;
}
DSPDeviceSinkEngine : : State DSPDeviceSinkEngine : : gotoRunning ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoRunning " ;
switch ( m_state )
{
case StNotStarted :
return StNotStarted ;
case StIdle :
return StIdle ;
case StRunning :
return StRunning ;
case StReady :
case StError :
break ;
}
2016-10-23 04:38:44 -04:00
if ( m_deviceSampleSink = = 0 ) {
2016-10-17 12:15:08 -04:00
return gotoError ( " DSPDeviceSinkEngine::gotoRunning: No sample source configured " ) ;
}
qDebug ( ) < < " DSPDeviceSinkEngine::gotoRunning: " < < m_deviceDescription . toStdString ( ) . c_str ( ) < < " started " ;
// Start everything
if ( ! m_deviceSampleSink - > start ( m_sampleSinkSequence ) )
{
return gotoError ( " DSPDeviceSinkEngine::gotoRunning: Could not start sample source " ) ;
}
for ( BasebandSampleSources : : const_iterator it = m_basebandSampleSources . begin ( ) ; it ! = m_basebandSampleSources . end ( ) ; it + + )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoRunning: starting " < < ( * it ) - > objectName ( ) . toStdString ( ) . c_str ( ) ;
( * it ) - > start ( ) ;
}
for ( ThreadedBasebandSampleSources : : const_iterator it = m_threadedBasebandSampleSources . begin ( ) ; it ! = m_threadedBasebandSampleSources . end ( ) ; + + it )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoRunning: starting ThreadedSampleSource( " < < ( * it ) - > getSampleSourceObjectName ( ) . toStdString ( ) . c_str ( ) < < " ) " ;
( * it ) - > start ( ) ;
}
for ( BasebandSampleSinks : : const_iterator it = m_basebandSampleSinks . begin ( ) ; it ! = m_basebandSampleSinks . end ( ) ; it + + )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoRunning: starting " < < ( * it ) - > objectName ( ) . toStdString ( ) . c_str ( ) ;
( * it ) - > start ( ) ;
}
qDebug ( ) < < " DSPDeviceSinkEngine::gotoRunning: input message queue pending: " < < m_inputMessageQueue . size ( ) ;
return StRunning ;
}
DSPDeviceSinkEngine : : State DSPDeviceSinkEngine : : gotoError ( const QString & errorMessage )
{
qDebug ( ) < < " DSPDeviceSinkEngine::gotoError " ;
m_errorMessage = errorMessage ;
m_deviceDescription . clear ( ) ;
m_state = StError ;
return StError ;
}
void DSPDeviceSinkEngine : : handleSetSink ( DeviceSampleSink * sink )
{
gotoIdle ( ) ;
// if(m_sampleSource != 0)
// {
// disconnect(m_sampleSource->getSampleFifo(), SIGNAL(dataReady()), this, SLOT(handleData()));
// }
m_deviceSampleSink = sink ;
if ( m_deviceSampleSink ! = 0 )
{
qDebug ( " DSPDeviceSinkEngine::handleSetSink: set %s " , qPrintable ( sink - > getDeviceDescription ( ) ) ) ;
connect ( m_deviceSampleSink - > getSampleFifo ( ) , SIGNAL ( dataWrite ( ) ) , this , SLOT ( handleData ( ) ) , Qt : : QueuedConnection ) ;
}
else
{
qDebug ( " DSPDeviceSinkEngine::handleSetSource: set none " ) ;
}
}
void DSPDeviceSinkEngine : : handleData ( )
{
if ( m_state = = StRunning )
{
work ( ) ;
}
}
void DSPDeviceSinkEngine : : handleSynchronousMessages ( )
{
Message * message = m_syncMessenger . getMessage ( ) ;
2016-10-22 20:22:00 -04:00
qDebug ( ) < < " DSPDeviceSinkEngine::handleSynchronousMessages: " < < message - > getIdentifier ( ) ;
2016-10-17 12:15:08 -04:00
if ( DSPExit : : match ( * message ) )
{
gotoIdle ( ) ;
m_state = StNotStarted ;
exit ( ) ;
}
else if ( DSPGenerationInit : : match ( * message ) )
{
m_state = gotoIdle ( ) ;
if ( m_state = = StIdle ) {
m_state = gotoInit ( ) ; // State goes ready if init is performed
}
}
else if ( DSPGenerationStart : : match ( * message ) )
{
if ( m_state = = StReady ) {
m_state = gotoRunning ( ) ;
}
}
else if ( DSPGenerationStop : : match ( * message ) )
{
m_state = gotoIdle ( ) ;
}
else if ( DSPGetSinkDeviceDescription : : match ( * message ) )
{
( ( DSPGetSinkDeviceDescription * ) message ) - > setDeviceDescription ( m_deviceDescription ) ;
}
else if ( DSPGetErrorMessage : : match ( * message ) )
{
( ( DSPGetErrorMessage * ) message ) - > setErrorMessage ( m_errorMessage ) ;
}
else if ( DSPSetSink : : match ( * message ) ) {
handleSetSink ( ( ( DSPSetSink * ) message ) - > getSampleSink ( ) ) ;
}
else if ( DSPAddSink : : match ( * message ) )
{
BasebandSampleSink * sink = ( ( DSPAddSink * ) message ) - > getSampleSink ( ) ;
m_basebandSampleSinks . push_back ( sink ) ;
}
else if ( DSPRemoveSink : : match ( * message ) )
{
BasebandSampleSink * sink = ( ( DSPRemoveSink * ) message ) - > getSampleSink ( ) ;
if ( m_state = = StRunning ) {
sink - > stop ( ) ;
}
m_basebandSampleSinks . remove ( sink ) ;
}
else if ( DSPAddSource : : match ( * message ) )
{
BasebandSampleSource * source = ( ( DSPAddSource * ) message ) - > getSampleSource ( ) ;
m_basebandSampleSources . push_back ( source ) ;
}
else if ( DSPRemoveSource : : match ( * message ) )
{
BasebandSampleSource * source = ( ( DSPRemoveSource * ) message ) - > getSampleSource ( ) ;
if ( m_state = = StRunning ) {
source - > stop ( ) ;
}
m_basebandSampleSources . remove ( source ) ;
}
else if ( DSPAddThreadedSampleSource : : match ( * message ) )
{
ThreadedBasebandSampleSource * threadedSource = ( ( DSPAddThreadedSampleSource * ) message ) - > getThreadedSampleSource ( ) ;
m_threadedBasebandSampleSources . push_back ( threadedSource ) ;
threadedSource - > start ( ) ;
}
else if ( DSPRemoveThreadedSampleSource : : match ( * message ) )
{
ThreadedBasebandSampleSource * threadedSource = ( ( DSPRemoveThreadedSampleSource * ) message ) - > getThreadedSampleSource ( ) ;
threadedSource - > stop ( ) ;
m_threadedBasebandSampleSources . remove ( threadedSource ) ;
}
m_syncMessenger . done ( m_state ) ;
}
void DSPDeviceSinkEngine : : handleInputMessages ( )
{
qDebug ( ) < < " DSPDeviceSinkEngine::handleInputMessages " ;
Message * message ;
while ( ( message = m_inputMessageQueue . pop ( ) ) ! = 0 )
{
qDebug ( " DSPDeviceSinkEngine::handleInputMessages: message: %s " , message - > getIdentifier ( ) ) ;
if ( DSPSignalNotification : : match ( * message ) )
{
DSPSignalNotification * notif = ( DSPSignalNotification * ) message ;
// update DSP values
m_sampleRate = notif - > getSampleRate ( ) ;
m_centerFrequency = notif - > getCenterFrequency ( ) ;
qDebug ( ) < < " DSPDeviceSinkEngine::handleInputMessages: DSPSignalNotification( " < < m_sampleRate < < " , " < < m_centerFrequency < < " ) " ;
2016-10-22 20:22:00 -04:00
// forward source changes to sources with immediate execution
2016-10-17 12:15:08 -04:00
for ( BasebandSampleSources : : const_iterator it = m_basebandSampleSources . begin ( ) ; it ! = m_basebandSampleSources . end ( ) ; it + + )
{
qDebug ( ) < < " DSPDeviceSinkEngine::handleInputMessages: forward message to " < < ( * it ) - > objectName ( ) . toStdString ( ) . c_str ( ) ;
( * it ) - > handleMessage ( * message ) ;
}
for ( ThreadedBasebandSampleSources : : const_iterator it = m_threadedBasebandSampleSources . begin ( ) ; it ! = m_threadedBasebandSampleSources . end ( ) ; + + it )
{
qDebug ( ) < < " DSPDeviceSinkEngine::handleSourceMessages: forward message to ThreadedSampleSource( " < < ( * it ) - > getSampleSourceObjectName ( ) . toStdString ( ) . c_str ( ) < < " ) " ;
( * it ) - > handleSourceMessage ( * message ) ;
}
// forward changes to listeners on DSP output queue
DSPSignalNotification * rep = new DSPSignalNotification ( * notif ) ; // make a copy for the output queue
m_outputMessageQueue . push ( rep ) ;
delete message ;
}
}
}