Files
@ 71441196d1c5
Branch filter:
Location: tempo-plotter/src/binarystreamreader.cpp
71441196d1c5
5.3 KiB
text/x-c++hdr
Merge with default
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | /*
Copyright © 2019 Hasan Yavuz Özderya
This file is part of serialplot.
serialplot 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, either version 3 of the License, or
(at your option) any later version.
serialplot 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 for more details.
You should have received a copy of the GNU General Public License
along with serialplot. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtEndian>
#include <QtDebug>
#include "binarystreamreader.h"
#include "floatswap.h"
BinaryStreamReader::BinaryStreamReader(QIODevice* device, QObject* parent) :
AbstractReader(device, parent)
{
paused = false;
skipByteRequested = false;
skipSampleRequested = false;
_numChannels = _settingsWidget.numOfChannels();
connect(&_settingsWidget, &BinaryStreamReaderSettings::numOfChannelsChanged,
this, &BinaryStreamReader::onNumOfChannelsChanged);
// initial number format selection
onNumberFormatChanged(_settingsWidget.numberFormat());
connect(&_settingsWidget, &BinaryStreamReaderSettings::numberFormatChanged,
this, &BinaryStreamReader::onNumberFormatChanged);
// enable skip byte and sample buttons
connect(&_settingsWidget, &BinaryStreamReaderSettings::skipByteRequested,
[this]()
{
skipByteRequested = true;
});
connect(&_settingsWidget, &BinaryStreamReaderSettings::skipSampleRequested,
[this]()
{
skipSampleRequested = true;
});
}
QWidget* BinaryStreamReader::settingsWidget()
{
return &_settingsWidget;
}
unsigned BinaryStreamReader::numChannels() const
{
return _numChannels;
}
void BinaryStreamReader::onNumberFormatChanged(NumberFormat numberFormat)
{
switch(numberFormat)
{
case NumberFormat_uint8:
sampleSize = 1;
readSample = &BinaryStreamReader::readSampleAs<quint8>;
break;
case NumberFormat_int8:
sampleSize = 1;
readSample = &BinaryStreamReader::readSampleAs<qint8>;
break;
case NumberFormat_uint16:
sampleSize = 2;
readSample = &BinaryStreamReader::readSampleAs<quint16>;
break;
case NumberFormat_int16:
sampleSize = 2;
readSample = &BinaryStreamReader::readSampleAs<qint16>;
break;
case NumberFormat_uint32:
sampleSize = 4;
readSample = &BinaryStreamReader::readSampleAs<quint32>;
break;
case NumberFormat_int32:
sampleSize = 4;
readSample = &BinaryStreamReader::readSampleAs<qint32>;
break;
case NumberFormat_float:
sampleSize = 4;
readSample = &BinaryStreamReader::readSampleAs<float>;
break;
case NumberFormat_INVALID:
Q_ASSERT(1); // never
break;
}
}
void BinaryStreamReader::onNumOfChannelsChanged(unsigned value)
{
_numChannels = value;
updateNumChannels();
emit numOfChannelsChanged(value);
}
unsigned BinaryStreamReader::readData()
{
// a package is a set of channel data like {CHAN0_SAMPLE, CHAN1_SAMPLE...}
unsigned packageSize = sampleSize * _numChannels;
unsigned bytesAvailable = _device->bytesAvailable();
unsigned totalRead = 0;
// skip 1 byte if requested
if (skipByteRequested && bytesAvailable > 0)
{
_device->read(1);
totalRead++;
skipByteRequested = false;
bytesAvailable--;
}
// skip 1 sample (channel) if requested
if (skipSampleRequested && bytesAvailable >= sampleSize)
{
_device->read(sampleSize);
totalRead += sampleSize;
skipSampleRequested = false;
bytesAvailable -= sampleSize;
}
if (bytesAvailable < packageSize) return totalRead;
unsigned numOfPackagesToRead =
(bytesAvailable - (bytesAvailable % packageSize)) / packageSize;
unsigned numBytesToRead = numOfPackagesToRead * packageSize;
totalRead += numBytesToRead;
if (paused)
{
// read and discard data
_device->read(numBytesToRead);
return totalRead;
}
// actual reading
SamplePack samples(numOfPackagesToRead, _numChannels);
for (unsigned i = 0; i < numOfPackagesToRead; i++)
{
for (unsigned ci = 0; ci < _numChannels; ci++)
{
samples.data(ci)[i] = (this->*readSample)();
}
}
feedOut(samples);
return totalRead;
}
template<typename T> double BinaryStreamReader::readSampleAs()
{
T data;
_device->read((char*) &data, sizeof(data));
if (_settingsWidget.endianness() == LittleEndian)
{
data = qFromLittleEndian(data);
}
else
{
data = qFromBigEndian(data);
}
return double(data);
}
void BinaryStreamReader::saveSettings(QSettings* settings)
{
_settingsWidget.saveSettings(settings);
}
void BinaryStreamReader::loadSettings(QSettings* settings)
{
_settingsWidget.loadSettings(settings);
}
|