X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=48b6a41a68a260783dd0740b8ac57f63448eb4e9;hp=3cb69b3ef1b5ad84ad95581c961c9a4f9694850f;hb=f54e68b03d5d24c7787962fcc701d8d52b0ec8ab;hpb=870ea3dbf35b182e120c5d84ab89bf9cb7691232 diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index 3cb69b3e..48b6a41a 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -22,33 +22,42 @@ #include -#include "annotation.hpp" +#include +#include + +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 &dest, + void get_annotation_subset(deque &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 annotations_; + deque annotations_; + Row* row_; + uint64_t prev_ann_start_sample_; }; } // namespace decode