X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecoderstack.cpp;h=9707d8d2cb605ddf61361bd48c648c4b48d65714;hb=a5ea63c219065d019195171f3c7694ee0123d5ed;hp=323f5cc2cd4b45397cf18e1cd59560dc0ef17f33;hpb=f9101a91fc942a28515872ae6c7285973bd54b91;p=pulseview.git diff --git a/pv/data/decoderstack.cpp b/pv/data/decoderstack.cpp index 323f5cc..9707d8d 100644 --- a/pv/data/decoderstack.cpp +++ b/pv/data/decoderstack.cpp @@ -67,8 +67,10 @@ DecoderStack::DecoderStack(const srd_decoder *const dec) : DecoderStack::~DecoderStack() { - _decode_thread.interrupt(); - _decode_thread.join(); + if (_decode_thread.joinable()) { + _decode_thread.interrupt(); + _decode_thread.join(); + } } const std::list< boost::shared_ptr >& @@ -103,7 +105,7 @@ int64_t DecoderStack::samples_decoded() const return _samples_decoded; } -std::vector DecoderStack::get_rows() const +std::vector DecoderStack::get_visible_rows() const { lock_guard lock(_mutex); @@ -112,6 +114,9 @@ std::vector DecoderStack::get_rows() const BOOST_FOREACH (const shared_ptr &dec, _stack) { assert(dec); + if (!dec->shown()) + continue; + const srd_decoder *const decc = dec->decoder(); assert(dec->decoder()); @@ -165,8 +170,10 @@ void DecoderStack::begin_decode() shared_ptr logic_signal; shared_ptr data; - _decode_thread.interrupt(); - _decode_thread.join(); + if (_decode_thread.joinable()) { + _decode_thread.interrupt(); + _decode_thread.join(); + } clear(); @@ -243,16 +250,23 @@ void DecoderStack::decode_proc(shared_ptr data) assert(data); + // Check we have a snapshot of data const deque< shared_ptr > &snapshots = data->get_snapshots(); if (snapshots.empty()) return; + // Check that all decoders have the required probes + BOOST_FOREACH(const shared_ptr &dec, _stack) + if (!dec->have_required_probes()) + return; + const shared_ptr &snapshot = snapshots.front(); const int64_t sample_count = snapshot->get_sample_count(); + const unsigned int unit_size = snapshot->unit_size(); const unsigned int chunk_sample_count = - DecodeChunkLength / snapshot->unit_size(); + DecodeChunkLength / unit_size; // Create the session srd_session_new(&session); @@ -261,7 +275,7 @@ void DecoderStack::decode_proc(shared_ptr data) // Create the decoders BOOST_FOREACH(const shared_ptr &dec, _stack) { - srd_decoder_inst *const di = dec->create_decoder_inst(session); + srd_decoder_inst *const di = dec->create_decoder_inst(session, unit_size); if (!di) { @@ -296,8 +310,8 @@ void DecoderStack::decode_proc(shared_ptr data) i + chunk_sample_count, sample_count); snapshot->get_samples(chunk, i, chunk_end); - if (srd_session_send(session, i, i + sample_count, - chunk, chunk_end - i) != SRD_OK) { + if (srd_session_send(session, i, i + sample_count, chunk, + (chunk_end - i) * unit_size) != SRD_OK) { _error_message = tr("Decoder reported an error"); break; }