mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
336 lines
10 KiB
C++
336 lines
10 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2019 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 "samplemofifo.h"
|
|
|
|
void SampleMOFifo::init(unsigned int nbStreams, unsigned int size)
|
|
{
|
|
m_nbStreams = nbStreams;
|
|
m_size = size;
|
|
m_readCount = 0;
|
|
m_readHead = 0;
|
|
m_writeHead = size/8;
|
|
m_data.resize(nbStreams);
|
|
m_vReadCount.clear();
|
|
m_vReadHead.clear();
|
|
m_vWriteHead.clear();
|
|
|
|
for (unsigned int stream = 0; stream < nbStreams; stream++)
|
|
{
|
|
m_data[stream].resize(size);
|
|
m_vReadCount.push_back(0);
|
|
m_vReadHead.push_back(0);
|
|
m_vWriteHead.push_back(size/8);
|
|
}
|
|
}
|
|
|
|
void SampleMOFifo::resize(unsigned int size)
|
|
{
|
|
m_size = size;
|
|
m_readCount = 0;
|
|
m_readHead = 0;
|
|
m_writeHead = size/8;
|
|
|
|
for (unsigned int stream = 0; stream < m_nbStreams; stream++)
|
|
{
|
|
m_data[stream].resize(size);
|
|
m_vReadCount.push_back(0);
|
|
m_vReadHead.push_back(0);
|
|
m_vWriteHead.push_back(size/8);
|
|
}
|
|
}
|
|
|
|
SampleMOFifo::SampleMOFifo(QObject *parent) :
|
|
QObject(parent),
|
|
m_nbStreams(0),
|
|
m_size(0),
|
|
m_readCount(0)
|
|
{}
|
|
|
|
SampleMOFifo::SampleMOFifo(unsigned int nbStreams, unsigned int size, QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
init(nbStreams, size);
|
|
}
|
|
|
|
SampleMOFifo::~SampleMOFifo()
|
|
{}
|
|
|
|
void SampleMOFifo::reset()
|
|
{
|
|
m_readCount = 0;
|
|
m_readHead = 0;
|
|
m_writeHead = m_size/8;
|
|
|
|
for (unsigned int stream = 0; stream < m_nbStreams; stream++)
|
|
{
|
|
m_data[stream].resize(m_size);
|
|
m_vReadCount[stream] = 0;
|
|
m_vReadHead[stream] = 0;
|
|
m_vWriteHead[stream] = m_size/8;
|
|
}
|
|
}
|
|
|
|
void SampleMOFifo::readSync(
|
|
unsigned int amount,
|
|
unsigned int& ipart1Begin, unsigned int& ipart1End,
|
|
unsigned int& ipart2Begin, unsigned int& ipart2End
|
|
)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_readHead;
|
|
m_readCount += amount;
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
ipart1Begin = m_readHead;
|
|
ipart1End = m_readHead + amount;
|
|
ipart2Begin = m_size;
|
|
ipart2End = m_size;
|
|
m_readHead += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = (amount < m_size ? amount : m_size) - spaceLeft;
|
|
ipart1Begin = m_readHead;
|
|
ipart1End = m_size;
|
|
ipart2Begin = 0;
|
|
ipart2End = remaining;
|
|
m_readHead = remaining;
|
|
}
|
|
|
|
emit dataSyncRead();
|
|
}
|
|
|
|
void SampleMOFifo::writeSync(const std::vector<SampleVector::iterator>& vbegin, unsigned int amount)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_writeHead;
|
|
m_readCount = amount < m_readCount ? m_readCount - amount : 0;
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
for (unsigned int stream = 0; stream < m_nbStreams; stream++) {
|
|
std::copy(vbegin[stream], vbegin[stream] + amount, m_data[stream].begin() + m_writeHead);
|
|
}
|
|
|
|
m_writeHead += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = (amount < m_size ? amount : m_size) - spaceLeft;
|
|
|
|
for (unsigned int stream = 0; stream < m_nbStreams; stream++)
|
|
{
|
|
std::copy(vbegin[stream], vbegin[stream] + spaceLeft, m_data[stream].begin() + m_writeHead);
|
|
std::copy(vbegin[stream] + spaceLeft, vbegin[stream] + amount, m_data[stream].begin());
|
|
}
|
|
|
|
m_writeHead = remaining;
|
|
}
|
|
}
|
|
|
|
void SampleMOFifo::writeSync(
|
|
unsigned int amount,
|
|
unsigned int& ipart1Begin, unsigned int& ipart1End, // first part offsets where to write
|
|
unsigned int& ipart2Begin, unsigned int& ipart2End // second part offsets
|
|
)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_writeHead;
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
ipart1Begin = m_writeHead;
|
|
ipart1End = m_writeHead + amount;
|
|
ipart2Begin = m_size;
|
|
ipart2End = m_size;
|
|
m_writeHead += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = (amount < m_size ? amount : m_size) - spaceLeft;
|
|
ipart1Begin = m_writeHead;
|
|
ipart1End = m_size;
|
|
ipart2Begin = 0;
|
|
ipart2End = remaining;
|
|
m_writeHead = remaining;
|
|
}
|
|
}
|
|
|
|
void SampleMOFifo::commitWriteSync(unsigned int amount)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
m_readCount = amount < m_readCount ? m_readCount - amount : 0;
|
|
}
|
|
|
|
void SampleMOFifo::writeSync(
|
|
unsigned int& ipart1Begin, unsigned int& ipart1End, // first part offsets where to write
|
|
unsigned int& ipart2Begin, unsigned int& ipart2End // second part offsets
|
|
)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_writeHead;
|
|
unsigned int amount = m_readHead >= m_writeHead ? m_readHead - m_writeHead : m_size + m_readHead - m_writeHead;
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
ipart1Begin = m_writeHead;
|
|
ipart1End = m_writeHead + amount;
|
|
ipart2Begin = m_size;
|
|
ipart2End = m_size;
|
|
m_writeHead += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = amount - spaceLeft;
|
|
ipart1Begin = m_writeHead;
|
|
ipart1End = m_size;
|
|
ipart2Begin = 0;
|
|
ipart2End = remaining;
|
|
m_writeHead = remaining;
|
|
}
|
|
|
|
m_readCount = amount < m_readCount ? m_readCount - amount : 0;
|
|
}
|
|
|
|
void SampleMOFifo::readAsync(
|
|
unsigned int amount,
|
|
unsigned int& ipart1Begin, unsigned int& ipart1End,
|
|
unsigned int& ipart2Begin, unsigned int& ipart2End,
|
|
unsigned int stream
|
|
)
|
|
{
|
|
if (stream >= m_nbStreams) {
|
|
return;
|
|
}
|
|
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_vReadHead[stream];
|
|
m_vReadCount[stream] += amount;
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
ipart1Begin = m_vReadHead[stream];
|
|
ipart1End = m_vReadHead[stream] + amount;
|
|
ipart2Begin = m_size;
|
|
ipart2End = m_size;
|
|
m_vReadHead[stream] += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = (amount < m_size ? amount : m_size) - spaceLeft;
|
|
ipart1Begin = m_vReadHead[stream];
|
|
ipart1End = m_size;
|
|
ipart2Begin = 0;
|
|
ipart2End = remaining;
|
|
m_readHead = remaining;
|
|
}
|
|
|
|
emit dataAsyncRead(stream);
|
|
}
|
|
|
|
void SampleMOFifo::writeAsync(const SampleVector::iterator& begin, unsigned int amount, unsigned int stream)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_vWriteHead[stream];
|
|
m_vReadCount[stream] = amount < m_vReadCount[stream] ? m_vReadCount[stream] - amount : 0;
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
std::copy(begin, begin + amount, m_data[stream].begin() + m_vWriteHead[stream]);
|
|
m_vWriteHead[stream] += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = (amount < m_size ? amount : m_size) - spaceLeft;
|
|
|
|
for (unsigned int stream = 0; stream < m_nbStreams; stream++)
|
|
{
|
|
std::copy(begin, begin + spaceLeft, m_data[stream].begin() + m_vWriteHead[stream]);
|
|
std::copy(begin + spaceLeft, begin + amount, m_data[stream].begin());
|
|
m_vWriteHead[stream] = remaining;
|
|
}
|
|
}
|
|
}
|
|
|
|
void SampleMOFifo::writeAsync(
|
|
unsigned int amount,
|
|
unsigned int& ipart1Begin, unsigned int& ipart1End,
|
|
unsigned int& ipart2Begin, unsigned int& ipart2End,
|
|
unsigned int stream
|
|
)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_vWriteHead[stream];
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
ipart1Begin = m_vWriteHead[stream];
|
|
ipart1End = m_vWriteHead[stream] + amount;
|
|
ipart2Begin = m_size;
|
|
ipart2End = m_size;
|
|
m_vWriteHead[stream] += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = (amount < m_size ? amount : m_size) - spaceLeft;
|
|
ipart1Begin = m_vWriteHead[stream];
|
|
ipart1End = m_size;
|
|
ipart2Begin = 0;
|
|
ipart2End = remaining;
|
|
m_vWriteHead[stream] = remaining;
|
|
}
|
|
}
|
|
|
|
void SampleMOFifo::commitWriteAsync(unsigned int amount, unsigned int stream)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
m_vReadCount[stream] = amount < m_vReadCount[stream] ? m_vReadCount[stream] - amount : 0;
|
|
}
|
|
|
|
void SampleMOFifo::writeAsync(
|
|
unsigned int& ipart1Begin, unsigned int& ipart1End,
|
|
unsigned int& ipart2Begin, unsigned int& ipart2End,
|
|
unsigned int stream
|
|
)
|
|
{
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
unsigned int spaceLeft = m_size - m_vWriteHead[stream];
|
|
unsigned int amount = m_vReadHead[stream] >= m_vWriteHead[stream] ? m_vReadHead[stream] - m_vWriteHead[stream] : m_size + m_vReadHead[stream] - m_vWriteHead[stream];
|
|
|
|
if (amount <= spaceLeft)
|
|
{
|
|
ipart1Begin = m_vWriteHead[stream];
|
|
ipart1End = m_vWriteHead[stream] + amount;
|
|
ipart2Begin = m_size;
|
|
ipart2End = m_size;
|
|
m_vWriteHead[stream] += amount;
|
|
}
|
|
else
|
|
{
|
|
unsigned int remaining = amount - spaceLeft;
|
|
ipart1Begin = m_vWriteHead[stream];
|
|
ipart1End = m_size;
|
|
ipart2Begin = 0;
|
|
ipart2End = remaining;
|
|
m_vWriteHead[stream] = remaining;
|
|
}
|
|
|
|
m_vReadCount[stream] = amount < m_vReadCount[stream] ? m_vReadCount[stream] - amount : 0;
|
|
}
|