]> sigrok.org Git - pulseview.git/commitdiff
DecodeSignal: Add binary data callback
authorSoeren Apel <redacted>
Thu, 5 Dec 2019 22:22:46 +0000 (23:22 +0100)
committerSoeren Apel <redacted>
Tue, 10 Dec 2019 10:15:05 +0000 (11:15 +0100)
pv/data/decodesignal.cpp
pv/data/decodesignal.hpp

index 4a7d6ed8c60a7593773d50bf17026176f018678b..2f14914529e2fcf348ab0a0d1cede95f62769af0 100644 (file)
@@ -17,6 +17,7 @@
  * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <cstring>
 #include <forward_list>
 #include <limits>
 
@@ -528,6 +529,61 @@ void DecodeSignal::get_annotation_subset(
        delete all_ann_list;
 }
 
+uint32_t DecodeSignal::get_binary_data_chunk_count(uint32_t segment_id) const
+{
+       uint32_t count = 0;
+
+       try {
+               const DecodeSegment *segment = &(segments_.at(segment_id));
+               count = segment->binary_data.size();
+       } catch (out_of_range&) {
+               // Do nothing
+       }
+
+       return count;
+}
+
+void DecodeSignal::get_binary_data_chunk(uint32_t segment_id, uint32_t chunk_id,
+       const vector<uint8_t> **dest, uint64_t *size)
+{
+       try {
+               const DecodeSegment *segment = &(segments_.at(segment_id));
+               if (dest)
+                       *dest = &(segment->binary_data.at(chunk_id).data);
+               if (size)
+                       *size = segment->binary_data.at(chunk_id).data.size();
+       } catch (out_of_range&) {
+               // Do nothing
+       }
+}
+
+void DecodeSignal::get_binary_data_chunks_merged(uint32_t segment_id,
+       uint64_t start_sample, uint64_t end_sample, vector<uint8_t> *dest) const
+{
+       assert(dest != nullptr);
+
+       try {
+               const DecodeSegment *segment = &(segments_.at(segment_id));
+
+               // Determine overall size before copying to resize dest vector only once
+               uint64_t size = 0;
+               for (const DecodeBinaryData& d : segment->binary_data)
+                       if ((d.sample >= start_sample) && (d.sample < end_sample))
+                               size += d.data.size();
+               dest->reserve(size);
+
+               uint64_t index = 0;
+               for (const DecodeBinaryData& d : segment->binary_data)
+                       if ((d.sample >= start_sample) && (d.sample < end_sample)) {
+                               memcpy(dest->data() + index, d.data.data(), d.data.size());
+                               index += d.data.size();
+                       }
+       } catch (out_of_range&) {
+               // Do nothing
+       }
+}
+
+
 void DecodeSignal::save_settings(QSettings &settings) const
 {
        SignalBase::save_settings(settings);
@@ -1154,6 +1210,9 @@ void DecodeSignal::start_srd_session()
        srd_pd_output_callback_add(srd_session_, SRD_OUTPUT_ANN,
                DecodeSignal::annotation_callback, this);
 
+       srd_pd_output_callback_add(srd_session_, SRD_OUTPUT_BINARY,
+               DecodeSignal::binary_callback, this);
+
        srd_session_start(srd_session_);
 
        // We just recreated the srd session, so all stack changes are applied now
@@ -1259,19 +1318,19 @@ void DecodeSignal::annotation_callback(srd_proto_data *pdata, void *decode_signa
 
        lock_guard<mutex> lock(ds->output_mutex_);
 
-       // Find the row
+       // Get the decoder and the annotation data
        assert(pdata->pdo);
        assert(pdata->pdo->di);
        const srd_decoder *const decc = pdata->pdo->di->decoder;
        assert(decc);
 
-       const srd_proto_data_annotation *const pda =
-               (const srd_proto_data_annotation*)pdata->data;
+       const srd_proto_data_annotation *const pda = (const srd_proto_data_annotation*)pdata->data;
        assert(pda);
 
+       // Find the row
        auto row_iter = ds->segments_.at(ds->current_segment_id_).annotation_rows.end();
 
-       // Try looking up the sub-row of this class
+       // Try finding a better row match than the default by looking up the sub-row of this class
        const auto format = pda->ann_class;
        const auto r = ds->class_rows_.find(make_pair(decc, format));
        if (r != ds->class_rows_.end())
@@ -1292,6 +1351,32 @@ void DecodeSignal::annotation_callback(srd_proto_data *pdata, void *decode_signa
        (*row_iter).second.emplace_annotation(pdata, &((*row_iter).first));
 }
 
+void DecodeSignal::binary_callback(srd_proto_data *pdata, void *decode_signal)
+{
+       assert(pdata);
+       assert(decode_signal);
+
+       DecodeSignal *const ds = (DecodeSignal*)decode_signal;
+       assert(ds);
+
+       if (ds->decode_interrupt_)
+               return;
+
+       const srd_proto_data_binary *const pdb = (const srd_proto_data_binary*)pdata->data;
+       assert(pdb);
+
+       DecodeSegment* segment = &(ds->segments_.at(ds->current_segment_id_));
+
+       segment->binary_data.emplace_back();
+       DecodeBinaryData* bin_data = &(segment->binary_data.back());
+
+       bin_data->sample = pdata->start_sample;
+       bin_data->data.reserve(pdb->size);
+       memcpy(bin_data->data.data(), pdb->data, pdb->size);
+
+       ds->new_binary_data(ds->current_segment_id_);
+}
+
 void DecodeSignal::on_capture_state_changed(int state)
 {
        // If a new acquisition was started, we need to start decoding from scratch
index da66d5289c494703615410d63b78d635c3deeced..cd0f6faa4b3e472a7b2ca70378b363ea0a60a5e8 100644 (file)
@@ -71,12 +71,19 @@ struct DecodeChannel
        const srd_channel *pdch_;
 };
 
+struct DecodeBinaryData
+{
+       vector<uint8_t> data;
+       uint64_t sample;   ///< Number of the sample where this data was provided by the PD
+};
+
 struct DecodeSegment
 {
        map<const decode::Row, decode::RowData> annotation_rows;
        pv::util::Timestamp start_time;
        double samplerate;
        int64_t samples_decoded_incl, samples_decoded_excl;
+       vector<DecodeBinaryData> binary_data;
 };
 
 class DecodeSignal : public SignalBase
@@ -155,6 +162,12 @@ public:
                vector<pv::data::decode::Annotation> &dest,
                uint32_t segment_id, uint64_t start_sample, uint64_t end_sample) const;
 
+       uint32_t get_binary_data_chunk_count(uint32_t segment_id) const;
+       void get_binary_data_chunk(uint32_t segment_id, uint32_t chunk_id,
+               const vector<uint8_t> **dest, uint64_t *size);
+       void get_binary_data_chunks_merged(uint32_t segment_id,
+               uint64_t start_sample, uint64_t end_sample, vector<uint8_t> *dest) const;
+
        virtual void save_settings(QSettings &settings) const;
 
        virtual void restore_settings(QSettings &settings);
@@ -188,9 +201,11 @@ private:
        void create_decode_segment();
 
        static void annotation_callback(srd_proto_data *pdata, void *decode_signal);
+       static void binary_callback(srd_proto_data *pdata, void *decode_signal);
 
 Q_SIGNALS:
        void new_annotations(); // TODO Supply segment for which they belong to
+       void new_binary_data(uint32_t segment_id);
        void decode_reset();
        void decode_finished();
        void channels_updated();