sdrangelove/plugins/samplesource/osmosdr/osmosdrthread.cpp

105 lines
2.9 KiB
C++

///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
// written by Christian Daniel //
// //
// 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 <errno.h>
#include "osmosdrthread.h"
#include "dsp/samplefifo.h"
OsmoSDRThread::OsmoSDRThread(osmosdr_dev_t* dev, SampleFifo* sampleFifo, QObject* parent) :
QThread(parent),
m_running(false),
m_dev(dev),
m_sampleFifo(sampleFifo)
{
}
OsmoSDRThread::~OsmoSDRThread()
{
stopWork();
}
void OsmoSDRThread::startWork()
{
m_startWaitMutex.lock();
start();
while(!m_running)
m_startWaiter.wait(&m_startWaitMutex, 100);
m_startWaitMutex.unlock();
}
void OsmoSDRThread::stopWork()
{
m_running = false;
wait();
}
void OsmoSDRThread::run()
{
int res;
m_sampleFifo->readCommit(m_sampleFifo->fill());
m_running = true;
m_startWaiter.wakeAll();
while(m_running) {
if((res = osmosdr_read_async(m_dev, &OsmoSDRThread::callbackHelper, this, 16, sizeof(Sample) * 16384)) < 0) {
qCritical("OsmoSDRThread: async error: %s", strerror(errno));
break;
}
}
m_running = false;
}
void OsmoSDRThread::checkData(const quint8* buf, qint32 len)
{
const Sample* s = (const Sample*)buf;
len /= sizeof(Sample);
while(len) {
if((s->i != m_nextI) || (s->q != m_nextQ)) {
qDebug("continuity error after %llu samples", m_samplePos);
m_samplePos = 0;
m_nextI = s->i - 1;
m_nextQ = s->q + 1;
} else {
m_nextI--;
m_nextQ++;
m_samplePos++;
}
len--;
s++;
}
}
void OsmoSDRThread::callback(const quint8* buf, qint32 len)
{
//checkData(buf, len);
m_sampleFifo->write(buf, len);
if(!m_running)
osmosdr_cancel_async(m_dev);
}
void OsmoSDRThread::callbackHelper(unsigned char* buf, uint32_t len, void* ctx)
{
OsmoSDRThread* thread = (OsmoSDRThread*)ctx;
thread->callback(buf, len);
}