mirror of https://github.com/EspoTek/Labrador.git
Simplify the waveform reading code (#194)
Combine the Android and non-Android implementations. Only difference now is the path to the waveform data. Remove arbitrarily-sized buffers and most C-style string handling function calls. Use native Qt string methods instead; this should improve memory safety.
This commit is contained in:
parent
1b45b0d112
commit
591940b225
|
@ -9,95 +9,40 @@ ChannelData const& SingleChannelController::getData() const {
|
||||||
|
|
||||||
void SingleChannelController::waveformName(QString newName)
|
void SingleChannelController::waveformName(QString newName)
|
||||||
{
|
{
|
||||||
qDebug() << "newName = " << newName;
|
|
||||||
newName.append(".tlw");
|
|
||||||
|
|
||||||
int length;
|
|
||||||
|
|
||||||
#ifdef PLATFORM_ANDROID
|
#ifdef PLATFORM_ANDROID
|
||||||
QString waveformFilePath("assets:/waveforms/");
|
QString path("assets:/waveforms/");
|
||||||
waveformFilePath.append(newName);
|
QFile file(path.append(newName).append(".tlw"));
|
||||||
|
|
||||||
QFile fptr(waveformFilePath);
|
|
||||||
bool success = fptr.open(QIODevice::ReadOnly);
|
|
||||||
|
|
||||||
QByteArray line;
|
|
||||||
char lengthString[16];
|
|
||||||
char divisibilityString[16];
|
|
||||||
|
|
||||||
line = fptr.readLine();
|
|
||||||
strcpy(lengthString, line.data());
|
|
||||||
sscanf(lengthString, "%d", &length);
|
|
||||||
qDebug() << "lengthString" << lengthString;
|
|
||||||
|
|
||||||
line = fptr.readLine();
|
|
||||||
strcpy(divisibilityString, line.data());
|
|
||||||
sscanf(divisibilityString, "%d", &m_data.divisibility);
|
|
||||||
qDebug() << "divisibilityString" << divisibilityString;
|
|
||||||
|
|
||||||
qDebug() << "Length = " << length;
|
|
||||||
qDebug() << "Divisibility = " << m_data.divisibility;
|
|
||||||
|
|
||||||
QByteArray remainingData = fptr.readAll();
|
|
||||||
char *dataString = remainingData.data();
|
|
||||||
|
|
||||||
m_data.samples.resize(length);
|
|
||||||
|
|
||||||
int dummy;
|
|
||||||
char *dataStringCurrent = dataString;
|
|
||||||
for (int i = 0; i < length; i++)
|
|
||||||
{
|
|
||||||
sscanf(dataStringCurrent, "%d", &dummy);
|
|
||||||
dataStringCurrent += strcspn(dataStringCurrent, "\t") + 1;
|
|
||||||
m_data.samples[i] = static_cast<uint8_t>(dummy);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
QString path = QCoreApplication::applicationDirPath();
|
||||||
|
QFile file(path.append("/waveforms/").append(newName).append(".tlw"));
|
||||||
|
#endif
|
||||||
|
|
||||||
QByteArray filePath = QCoreApplication::applicationDirPath()
|
qDebug() << "opening" << file.fileName();
|
||||||
.append("/waveforms/").append(newName).toLocal8Bit();
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||||
|
qFatal("could not open %s", qUtf8Printable(file.fileName()));
|
||||||
|
|
||||||
qDebug() << "opening" << filePath;
|
int length = file.readLine().toInt();
|
||||||
|
m_data.divisibility = file.readLine().toInt();
|
||||||
FILE *fptr = fopen(filePath.constData(), "r");
|
QByteArray data = file.readLine().trimmed();
|
||||||
if (fptr == NULL)
|
file.close();
|
||||||
qFatal("%s could not be opened!", filePath.constData());
|
|
||||||
|
|
||||||
char lengthString[16];
|
|
||||||
fgets(lengthString, 5, fptr);
|
|
||||||
sscanf(lengthString, "%d", &length);
|
|
||||||
|
|
||||||
char divisibilityString[16];
|
|
||||||
//Bit of bullshit to deal with CRLF line endings on Mac.
|
|
||||||
do
|
|
||||||
{
|
|
||||||
fgets(divisibilityString, 5, fptr);
|
|
||||||
}
|
|
||||||
while ((divisibilityString[0] == '\r') || (divisibilityString[0] == '\n'));
|
|
||||||
|
|
||||||
sscanf(divisibilityString, "%d", &m_data.divisibility);
|
|
||||||
|
|
||||||
qDebug() << "Length = " << length;
|
qDebug() << "Length = " << length;
|
||||||
qDebug() << "Divisibility = " << m_data.divisibility;
|
qDebug() << "Divisibility = " << m_data.divisibility;
|
||||||
|
|
||||||
|
// Length is redundant, could be derived from the sample list.
|
||||||
|
if (length != data.count('\t') + 1)
|
||||||
|
qFatal("%s: sample count mismatch", qUtf8Printable(file.fileName()));
|
||||||
m_data.samples.resize(length);
|
m_data.samples.resize(length);
|
||||||
|
|
||||||
char *dataString = (char *) malloc(length*5+1);
|
data.replace('\t', '\0');
|
||||||
fgets(dataString, length*5+1, fptr);
|
const char *dataString = data.constData();
|
||||||
|
QByteArray dataElem;
|
||||||
int dummy;
|
for (auto &sample : m_data.samples) {
|
||||||
char *dataStringCurrent = dataString;
|
dataElem.setRawData(dataString, strlen(dataString));
|
||||||
for (int i = 0; i < length; i++)
|
sample = static_cast<uint8_t>(dataElem.toInt());
|
||||||
{
|
dataString += dataElem.size() + 1;
|
||||||
sscanf(dataStringCurrent, "%d", &dummy);
|
|
||||||
dataStringCurrent += strcspn(dataStringCurrent, "\t") + 1;
|
|
||||||
m_data.samples[i] = static_cast<uint8_t>(dummy);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
free(dataString);
|
|
||||||
fclose(fptr);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
double newMaxFreq = DAC_SPS / (length >> (m_data.divisibility - 1));
|
double newMaxFreq = DAC_SPS / (length >> (m_data.divisibility - 1));
|
||||||
double newMinFreq = double(CLOCK_FREQ) / 1024.0 / 65535.0 / static_cast<double>(length);
|
double newMinFreq = double(CLOCK_FREQ) / 1024.0 / 65535.0 / static_cast<double>(length);
|
||||||
|
|
||||||
|
|
|
@ -5,59 +5,22 @@ espoComboBox::espoComboBox(QWidget *parent) : QComboBox(parent)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void espoComboBox::readWaveformList(void)
|
void espoComboBox::readWaveformList(void)
|
||||||
{
|
{
|
||||||
//This code gets the name of the current directory, regardless of platform.
|
|
||||||
//This is so the interface knows where to find the waveform data
|
|
||||||
//QDir *dir = new QDir();
|
|
||||||
//qDebug() << dir->currentPath();
|
|
||||||
#ifdef PLATFORM_ANDROID
|
#ifdef PLATFORM_ANDROID
|
||||||
QFile qt_list("assets:/waveforms/_list.wfl");
|
QFile file("assets:/waveforms/_list.wfl");
|
||||||
bool success = qt_list.open(QIODevice::ReadOnly | QIODevice::Text);
|
|
||||||
if(!success){
|
|
||||||
qFatal("Could not load _list.wfl");
|
|
||||||
}
|
|
||||||
|
|
||||||
char nameBuffer[255];
|
|
||||||
QStringList *newNames = new QStringList();
|
|
||||||
|
|
||||||
while (!qt_list.atEnd()) {
|
|
||||||
QByteArray line = qt_list.readLine();
|
|
||||||
strcpy(nameBuffer, line.data());
|
|
||||||
strtok(nameBuffer, "\n\r");
|
|
||||||
newNames->append(nameBuffer);
|
|
||||||
qDebug() << nameBuffer;
|
|
||||||
}
|
|
||||||
this->addItems(*(newNames));
|
|
||||||
delete newNames;
|
|
||||||
qt_list.close();
|
|
||||||
#else
|
#else
|
||||||
QString dirString = QCoreApplication::applicationDirPath();
|
QString path = QCoreApplication::applicationDirPath();
|
||||||
dirString.append("/waveforms/_list.wfl");
|
QFile file(path.append("/waveforms/_list.wfl"));
|
||||||
QByteArray array = dirString.toLocal8Bit();
|
|
||||||
char* buffer = array.data();
|
|
||||||
//qDebug() << buffer;
|
|
||||||
|
|
||||||
qDebug() << "Attempting to open" << dirString;
|
|
||||||
|
|
||||||
FILE *listPtr = fopen(buffer, "r");
|
|
||||||
QStringList *newNames = new QStringList();
|
|
||||||
char nameBuffer[255];
|
|
||||||
|
|
||||||
if(listPtr == NULL){
|
|
||||||
qFatal("Could not load _list.wfl");
|
|
||||||
}
|
|
||||||
|
|
||||||
while (fgets(nameBuffer, sizeof(nameBuffer), listPtr) != NULL){
|
|
||||||
qDebug() << "nameBuffer = " << nameBuffer;
|
|
||||||
strtok(nameBuffer, "\n\r");
|
|
||||||
newNames->append(nameBuffer);
|
|
||||||
}
|
|
||||||
this->addItems(*(newNames));
|
|
||||||
delete newNames;
|
|
||||||
|
|
||||||
fclose(listPtr);
|
|
||||||
#endif
|
#endif
|
||||||
qDebug() << "List loaded!!";
|
|
||||||
|
qDebug() << "opening" << file.fileName();
|
||||||
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||||
|
qFatal("could not open %s", qUtf8Printable(file.fileName()));
|
||||||
|
|
||||||
|
QStringList newNames;
|
||||||
|
while (!file.atEnd())
|
||||||
|
newNames.append(file.readLine().trimmed());
|
||||||
|
this->addItems(newNames);
|
||||||
|
file.close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue