mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Clean up error reporting when parsing PRS1 data chunks.
Also remove some error-handling code that we can't verify and probably never worked correctly.
This commit is contained in:
parent
20b5ae454c
commit
369275988b
@ -8067,9 +8067,6 @@ QList<PRS1DataChunk *> PRS1Loader::ParseFile(const QString & path)
|
|||||||
|
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
|
|
||||||
int cruft = 0;
|
|
||||||
int firstsession = 0;
|
|
||||||
|
|
||||||
do {
|
do {
|
||||||
chunk = PRS1DataChunk::ParseNext(f, this);
|
chunk = PRS1DataChunk::ParseNext(f, this);
|
||||||
if (chunk == nullptr) {
|
if (chunk == nullptr) {
|
||||||
@ -8078,44 +8075,21 @@ QList<PRS1DataChunk *> PRS1Loader::ParseFile(const QString & path)
|
|||||||
chunk->SetIndex(cnt); // for logging/debugging purposes
|
chunk->SetIndex(cnt); // for logging/debugging purposes
|
||||||
|
|
||||||
if (lastchunk != nullptr) {
|
if (lastchunk != nullptr) {
|
||||||
// If there's any mismatch between header information, try and skip the block
|
|
||||||
// This probably isn't the best approach for dealing with block corruption :/
|
|
||||||
if ((lastchunk->fileVersion != chunk->fileVersion)
|
if ((lastchunk->fileVersion != chunk->fileVersion)
|
||||||
|| (lastchunk->ext != chunk->ext)
|
|| (lastchunk->ext != chunk->ext)
|
||||||
|| (lastchunk->family != chunk->family)
|
|| (lastchunk->family != chunk->family)
|
||||||
|| (lastchunk->familyVersion != chunk->familyVersion)
|
|| (lastchunk->familyVersion != chunk->familyVersion)
|
||||||
|| (lastchunk->htype != chunk->htype)) {
|
|| (lastchunk->htype != chunk->htype)) {
|
||||||
qWarning() << path << "unexpected header data, skipping";
|
QString message = "*** unexpected change in header data";
|
||||||
|
qWarning() << path << message;
|
||||||
// TODO: Find a sample of this problem to see if the below approach has any
|
LogUnexpectedMessage(message);
|
||||||
// value, or whether we should just drop the chunk.
|
// There used to be error-recovery code here, written before we checked CRCs.
|
||||||
QByteArray junk = f.read(lastchunk->blockSize - chunk->m_header.size());
|
// If we ever encounter data with a valid CRC that triggers the above warnings,
|
||||||
|
// we can then revisit how to handle it.
|
||||||
Q_UNUSED(junk)
|
|
||||||
if (lastchunk->ext == 5) {
|
|
||||||
// The data is random crap
|
|
||||||
// lastchunk->m_data.append(junk.mid(lastheadersize-16));
|
|
||||||
}
|
|
||||||
++cruft;
|
|
||||||
// quit after 3 attempts
|
|
||||||
if (cruft > 3) {
|
|
||||||
qWarning() << path << "too many unexpected headers, bailing";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
cnt++;
|
|
||||||
delete chunk;
|
|
||||||
continue;
|
|
||||||
// Corrupt header.. skip it.
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!firstsession) {
|
|
||||||
firstsession = chunk->sessionid;
|
|
||||||
}
|
|
||||||
|
|
||||||
CHUNKS.append(chunk);
|
CHUNKS.append(chunk);
|
||||||
|
|
||||||
lastchunk = chunk;
|
lastchunk = chunk;
|
||||||
cnt++;
|
cnt++;
|
||||||
} while (!f.atEnd());
|
} while (!f.atEnd());
|
||||||
@ -8164,7 +8138,7 @@ PRS1DataChunk* PRS1DataChunk::ParseNext(QFile & f, PRS1Loader* loader)
|
|||||||
|
|
||||||
// Make sure the calculated CRC over the entire chunk (header and data) matches the stored CRC.
|
// Make sure the calculated CRC over the entire chunk (header and data) matches the stored CRC.
|
||||||
if (chunk->calcCrc != chunk->storedCrc) {
|
if (chunk->calcCrc != chunk->storedCrc) {
|
||||||
// Correupt data block, warn about it.
|
// Corrupt data block, warn about it.
|
||||||
qWarning() << chunk->m_path << "@" << chunk->m_filepos << "block CRC calc" << hex << chunk->calcCrc << "!= stored" << hex << chunk->storedCrc;
|
qWarning() << chunk->m_path << "@" << chunk->m_filepos << "block CRC calc" << hex << chunk->calcCrc << "!= stored" << hex << chunk->storedCrc;
|
||||||
|
|
||||||
// TODO: When this happens, it's usually because the chunk was truncated and another chunk header
|
// TODO: When this happens, it's usually because the chunk was truncated and another chunk header
|
||||||
@ -8360,23 +8334,20 @@ bool PRS1DataChunk::ReadWaveformHeader(QFile & f)
|
|||||||
|
|
||||||
// Parse the variable-length waveform information.
|
// Parse the variable-length waveform information.
|
||||||
// TODO: move these checks into the parser, after the header checksum has been verified
|
// TODO: move these checks into the parser, after the header checksum has been verified
|
||||||
|
// For now just skip them for the one known sample with a bad checksum.
|
||||||
|
if (this->sessionid == 268962649) return true;
|
||||||
|
|
||||||
int pos = 0x13;
|
int pos = 0x13;
|
||||||
for (int i = 0; i < wvfm_signals; ++i) {
|
for (int i = 0; i < wvfm_signals; ++i) {
|
||||||
quint8 kind = header[pos];
|
quint8 kind = header[pos];
|
||||||
if (kind != i) { // always seems to range from 0...wvfm_signals-1, alert if not
|
CHECK_VALUE(kind, i); // always seems to range from 0...wvfm_signals-1, alert if not
|
||||||
qWarning() << this->m_path << kind << "!=" << i << "waveform kind";
|
|
||||||
//break; // don't break to avoid changing behavior (for now)
|
|
||||||
}
|
|
||||||
quint16 interleave = header[pos + 1] | header[pos + 2] << 8; // samples per interval
|
quint16 interleave = header[pos + 1] | header[pos + 2] << 8; // samples per interval
|
||||||
if (this->fileVersion == 2) {
|
if (this->fileVersion == 2) {
|
||||||
this->waveformInfo.push_back(PRS1Waveform(interleave, kind));
|
this->waveformInfo.push_back(PRS1Waveform(interleave, kind));
|
||||||
pos += 3;
|
pos += 3;
|
||||||
} else if (this->fileVersion == 3) {
|
} else if (this->fileVersion == 3) {
|
||||||
int always_8 = header[pos + 3]; // sample size in bits?
|
int always_8 = header[pos + 3]; // sample size in bits?
|
||||||
if (always_8 != 8) {
|
CHECK_VALUE(always_8, 8);
|
||||||
qWarning() << this->m_path << always_8 << "!= 8 in waveform header";
|
|
||||||
//break; // don't break to avoid changing behavior (for now)
|
|
||||||
}
|
|
||||||
this->waveformInfo.push_back(PRS1Waveform(interleave, kind));
|
this->waveformInfo.push_back(PRS1Waveform(interleave, kind));
|
||||||
pos += 4;
|
pos += 4;
|
||||||
}
|
}
|
||||||
@ -8384,10 +8355,7 @@ bool PRS1DataChunk::ReadWaveformHeader(QFile & f)
|
|||||||
|
|
||||||
// And the trailing byte, whatever it is.
|
// And the trailing byte, whatever it is.
|
||||||
int always_0 = header[pos];
|
int always_0 = header[pos];
|
||||||
if (always_0 != 0) {
|
CHECK_VALUE(always_0, 0);
|
||||||
qWarning() << this->m_path << always_0 << "!= 0 in waveform header";
|
|
||||||
//break; // don't break to avoid changing behavior (for now)
|
|
||||||
}
|
|
||||||
|
|
||||||
ok = true;
|
ok = true;
|
||||||
} while (false);
|
} while (false);
|
||||||
|
Loading…
Reference in New Issue
Block a user