mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Filter out zero-length and equipment-off PRS1 slices when importing a session.
Also clean up some tests for failed channel/event creation since they can never fail.
This commit is contained in:
parent
2a2b36cfc7
commit
19facdba8f
@ -2564,7 +2564,7 @@ bool PRS1DataChunk::ParseEventsF5V2(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool PRS1Import::CreateEventChannels(const PRS1DataChunk* event)
|
void PRS1Import::CreateEventChannels(const PRS1DataChunk* event)
|
||||||
{
|
{
|
||||||
m_importChannels.clear();
|
m_importChannels.clear();
|
||||||
|
|
||||||
@ -2573,13 +2573,10 @@ bool PRS1Import::CreateEventChannels(const PRS1DataChunk* event)
|
|||||||
for (auto & e : supported) {
|
for (auto & e : supported) {
|
||||||
if (!PRS1OnDemandChannels.contains(e)) {
|
if (!PRS1OnDemandChannels.contains(e)) {
|
||||||
for (auto & pChannelID : PRS1ImportChannelMap[e]) {
|
for (auto & pChannelID : PRS1ImportChannelMap[e]) {
|
||||||
if (!GetImportChannel(*pChannelID)) {
|
GetImportChannel(*pChannelID);
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2588,24 +2585,17 @@ EventList* PRS1Import::GetImportChannel(ChannelID channel)
|
|||||||
EventList* C = m_importChannels[channel];
|
EventList* C = m_importChannels[channel];
|
||||||
if (C == nullptr) {
|
if (C == nullptr) {
|
||||||
C = session->AddEventList(channel, EVL_Event);
|
C = session->AddEventList(channel, EVL_Event);
|
||||||
// TODO: figure out why this can fail and prevent it
|
Q_ASSERT(C); // Once upon a time AddEventList could return nullptr, but not any more.
|
||||||
if (C == nullptr) {
|
m_importChannels[channel] = C;
|
||||||
qWarning() << "Unable to create event list for channel" << channel;
|
|
||||||
} else {
|
|
||||||
m_importChannels[channel] = C;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return C;
|
return C;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool PRS1Import::AddEvent(ChannelID channel, qint64 t, float value, float gain)
|
void PRS1Import::AddEvent(ChannelID channel, qint64 t, float value, float gain)
|
||||||
{
|
{
|
||||||
EventList* C = GetImportChannel(channel);
|
EventList* C = GetImportChannel(channel);
|
||||||
if (C == nullptr) {
|
Q_ASSERT(C);
|
||||||
// Warnings are handled by GetImportChannel.
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (C->count() == 0) {
|
if (C->count() == 0) {
|
||||||
// Initialize the gain (here, since required channels are created with default gain).
|
// Initialize the gain (here, since required channels are created with default gain).
|
||||||
C->setGain(gain);
|
C->setGain(gain);
|
||||||
@ -2618,8 +2608,6 @@ bool PRS1Import::AddEvent(ChannelID channel, qint64 t, float value, float gain)
|
|||||||
|
|
||||||
// Add the event
|
// Add the event
|
||||||
C->AddEvent(t, value, gain);
|
C->AddEvent(t, value, gain);
|
||||||
// TODO: can this ever fail?
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -3365,7 +3353,7 @@ bool PRS1DataChunk::ParseEventsF0V23()
|
|||||||
DUMP_EVENT();
|
DUMP_EVENT();
|
||||||
UNEXPECTED_VALUE(code, "known event code");
|
UNEXPECTED_VALUE(code, "known event code");
|
||||||
this->AddEvent(new PRS1UnknownDataEvent(m_data, startpos));
|
this->AddEvent(new PRS1UnknownDataEvent(m_data, startpos));
|
||||||
ok = false; // unlike F0V6, we don't know the size of unknown slices, so we can't recover
|
ok = false; // unlike F0V6, we don't know the size of unknown events, so we can't recover
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
pos = startpos + size;
|
pos = startpos + size;
|
||||||
@ -3566,7 +3554,7 @@ bool PRS1DataChunk::ParseEventsF0V4()
|
|||||||
DUMP_EVENT();
|
DUMP_EVENT();
|
||||||
UNEXPECTED_VALUE(code, "known event code");
|
UNEXPECTED_VALUE(code, "known event code");
|
||||||
this->AddEvent(new PRS1UnknownDataEvent(m_data, startpos));
|
this->AddEvent(new PRS1UnknownDataEvent(m_data, startpos));
|
||||||
ok = false; // unlike F0V6, we don't know the size of unknown slices, so we can't recover
|
ok = false; // unlike F0V6, we don't know the size of unknown events, so we can't recover
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
pos = startpos + size;
|
pos = startpos + size;
|
||||||
@ -3868,7 +3856,7 @@ bool PRS1Import::ImportCompliance()
|
|||||||
for (int i=0; i < compliance->m_parsedData.count(); i++) {
|
for (int i=0; i < compliance->m_parsedData.count(); i++) {
|
||||||
PRS1ParsedEvent* e = compliance->m_parsedData.at(i);
|
PRS1ParsedEvent* e = compliance->m_parsedData.at(i);
|
||||||
if (e->m_type == PRS1ParsedSliceEvent::TYPE) {
|
if (e->m_type == PRS1ParsedSliceEvent::TYPE) {
|
||||||
ImportSlice(start, e);
|
AddSlice(start, e);
|
||||||
continue;
|
continue;
|
||||||
} else if (e->m_type != PRS1ParsedSettingEvent::TYPE) {
|
} else if (e->m_type != PRS1ParsedSettingEvent::TYPE) {
|
||||||
qWarning() << "Compliance had non-setting event:" << (int) e->m_type;
|
qWarning() << "Compliance had non-setting event:" << (int) e->m_type;
|
||||||
@ -6588,16 +6576,16 @@ bool PRS1DataChunk::ParseSettingsF5V3(const unsigned char* data, int size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void PRS1Import::ImportSlice(qint64 start, PRS1ParsedEvent* e)
|
void PRS1Import::AddSlice(qint64 start, PRS1ParsedEvent* e)
|
||||||
{
|
{
|
||||||
// TODO: See other comments re. filtering out empty events or anything other than mask-on/off
|
// Cache all slices and incrementally calculate their durations.
|
||||||
PRS1ParsedSliceEvent* s = (PRS1ParsedSliceEvent*) e;
|
PRS1ParsedSliceEvent* s = (PRS1ParsedSliceEvent*) e;
|
||||||
qint64 tt = start + qint64(s->m_start) * 1000L;
|
qint64 tt = start + qint64(s->m_start) * 1000L;
|
||||||
if (!session->m_slices.isEmpty()) {
|
if (!m_slices.isEmpty()) {
|
||||||
SessionSlice & prevSlice = session->m_slices.last();
|
SessionSlice & prevSlice = m_slices.last();
|
||||||
prevSlice.end = tt;
|
prevSlice.end = tt;
|
||||||
}
|
}
|
||||||
session->m_slices.append(SessionSlice(tt, tt, (SliceStatus) s->m_value));
|
m_slices.append(SessionSlice(tt, tt, (SliceStatus) s->m_value));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -6629,7 +6617,7 @@ bool PRS1Import::ImportSummary()
|
|||||||
for (int i=0; i < summary->m_parsedData.count(); i++) {
|
for (int i=0; i < summary->m_parsedData.count(); i++) {
|
||||||
PRS1ParsedEvent* e = summary->m_parsedData.at(i);
|
PRS1ParsedEvent* e = summary->m_parsedData.at(i);
|
||||||
if (e->m_type == PRS1ParsedSliceEvent::TYPE) {
|
if (e->m_type == PRS1ParsedSliceEvent::TYPE) {
|
||||||
ImportSlice(start, e);
|
AddSlice(start, e);
|
||||||
continue;
|
continue;
|
||||||
} else if (e->m_type != PRS1ParsedSettingEvent::TYPE) {
|
} else if (e->m_type != PRS1ParsedSettingEvent::TYPE) {
|
||||||
qWarning() << "Summary had non-setting event:" << (int) e->m_type;
|
qWarning() << "Summary had non-setting event:" << (int) e->m_type;
|
||||||
@ -6903,7 +6891,8 @@ bool PRS1DataChunk::ParseEvents()
|
|||||||
|
|
||||||
bool PRS1Import::ImportEvents()
|
bool PRS1Import::ImportEvents()
|
||||||
{
|
{
|
||||||
bool ok = CreateEventChannels(m_event_chunks.first());
|
bool ok = true;
|
||||||
|
CreateEventChannels(m_event_chunks.first());
|
||||||
|
|
||||||
if (ok) {
|
if (ok) {
|
||||||
for (auto & event : m_event_chunks.values()) {
|
for (auto & event : m_event_chunks.values()) {
|
||||||
@ -7197,9 +7186,19 @@ bool PRS1Import::ParseSession(void)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: filter out 0-length slices, since they cause problems for Day::total_time()
|
// Import the slices into the session
|
||||||
// and possibly filter out everything except mask on/off, since the gSessionTimesChart::paint
|
for (auto & slice : m_slices) {
|
||||||
// assumes that assumes that. Or rework the slice system to be more robust.
|
// Filter out 0-length slices, since they cause problems for Day::total_time().
|
||||||
|
if (slice.end > slice.start) {
|
||||||
|
// Filter out everything except mask on/off, since gSessionTimesChart::paint assumes those are the only options.
|
||||||
|
if (slice.status == MaskOn) {
|
||||||
|
session->m_slices.append(slice);
|
||||||
|
} else if (slice.status == MaskOff) {
|
||||||
|
// TODO: Create BND event
|
||||||
|
session->m_slices.append(slice);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (m_event_chunks.count() > 0) {
|
if (m_event_chunks.count() > 0) {
|
||||||
ok = ImportEvents();
|
ok = ImportEvents();
|
||||||
|
@ -327,8 +327,9 @@ protected:
|
|||||||
//! \brief Save parsed session data to the database
|
//! \brief Save parsed session data to the database
|
||||||
void SaveSessionToDatabase(void);
|
void SaveSessionToDatabase(void);
|
||||||
|
|
||||||
//! \brief Import a single slice from a summary or compliance chunk.
|
//! \brief Cache a single slice from a summary or compliance chunk.
|
||||||
void ImportSlice(qint64 chunk_start, PRS1ParsedEvent* e);
|
void AddSlice(qint64 chunk_start, PRS1ParsedEvent* e);
|
||||||
|
QVector<SessionSlice> m_slices;
|
||||||
|
|
||||||
//! \brief Import a single event from a data chunk.
|
//! \brief Import a single event from a data chunk.
|
||||||
void ImportEvent(qint64 t, PRS1ParsedEvent* event);
|
void ImportEvent(qint64 t, PRS1ParsedEvent* event);
|
||||||
@ -341,11 +342,11 @@ protected:
|
|||||||
//! \brief Import a single data chunk from a .002 file containing event data.
|
//! \brief Import a single data chunk from a .002 file containing event data.
|
||||||
bool ImportEventChunk(PRS1DataChunk* event);
|
bool ImportEventChunk(PRS1DataChunk* event);
|
||||||
//! \brief Create all supported channels (except for on-demand ones that only get created if an event appears).
|
//! \brief Create all supported channels (except for on-demand ones that only get created if an event appears).
|
||||||
bool CreateEventChannels(const PRS1DataChunk* event);
|
void CreateEventChannels(const PRS1DataChunk* event);
|
||||||
//! \brief Get the EventList* for the import channel, creating it if necessary.
|
//! \brief Get the EventList* for the import channel, creating it if necessary.
|
||||||
EventList* GetImportChannel(ChannelID channel);
|
EventList* GetImportChannel(ChannelID channel);
|
||||||
//! \brief Import a single event to a channel, creating the channel if necessary.
|
//! \brief Import a single event to a channel, creating the channel if necessary.
|
||||||
bool AddEvent(ChannelID channel, qint64 t, float value, float gain);
|
void AddEvent(ChannelID channel, qint64 t, float value, float gain);
|
||||||
};
|
};
|
||||||
|
|
||||||
/*! \class PRS1Loader
|
/*! \class PRS1Loader
|
||||||
|
Loading…
Reference in New Issue
Block a user