]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/rowdata.hpp
TabularDecView: Make the model/view work
[pulseview.git] / pv / data / decode / rowdata.hpp
index 3cb69b3ef1b5ad84ad95581c961c9a4f9694850f..48b6a41a68a260783dd0740b8ac57f63448eb4e9 100644 (file)
 
 #include <vector>
 
-#include "annotation.hpp"
+#include <libsigrokdecode/libsigrokdecode.h>
 
+#include <pv/data/decode/annotation.hpp>
+
+using std::deque;
 using std::vector;
 
 namespace pv {
 namespace data {
 namespace decode {
 
+class Row;
+
 class RowData
 {
 public:
-       RowData() = default;
+       RowData(Row* row);
 
-public:
        uint64_t get_max_sample() const;
 
+       uint64_t get_annotation_count() const;
+
        /**
-        * Extracts sorted annotations between two period into a vector.
+        * Extracts annotations between the given sample range into a vector.
+        * Note: The annotations are unsorted and only annotations that fully
+        * fit into the sample range are considered.
         */
-       void get_annotation_subset(
-               vector<pv::data::decode::Annotation> &dest,
+       void get_annotation_subset(deque<const pv::data::decode::Annotation*> &dest,
                uint64_t start_sample, uint64_t end_sample) const;
 
-       void push_annotation(const Annotation &a);
+       const Annotation* emplace_annotation(srd_proto_data *pdata);
 
 private:
-       vector<Annotation> annotations_;
+       deque<Annotation> annotations_;
+       Row* row_;
+       uint64_t prev_ann_start_sample_;
 };
 
 }  // namespace decode