X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=e763302ec41acb26548cc4b71be5a41f39c93505;hb=9a5ef9a0d7966bf956f0b32bf3a57029a8d7d45a;hp=0012acd4523ecfc7339a5a30809ab78de2ddef57;hpb=6a26fc4417798ab21654197e105e707a14d462f0;p=pulseview.git diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index 0012acd4..e763302e 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -20,13 +20,29 @@ #ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP #define PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP +#include #include +#include +#include +#include + #include #include -using std::vector; +using std::deque; +using std::unordered_map; + +#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) +namespace std { + template<> struct hash { + std::size_t operator()(const QString& s) const noexcept { + return (size_t) qHash(s); + } + }; +} +#endif namespace pv { namespace data { @@ -39,7 +55,8 @@ class RowData public: RowData(Row* row); -public: + const Row* row() const; + uint64_t get_max_sample() const; uint64_t get_annotation_count() const; @@ -49,15 +66,18 @@ public: * 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 emplace_annotation(srd_proto_data *pdata); + const deque& annotations() const; + + const Annotation* emplace_annotation(srd_proto_data *pdata); private: - vector annotations_; - const Row* row_; + deque annotations_; + unordered_map > ann_texts_; // unordered_map since pointers must not change + Row* row_; + uint64_t prev_ann_start_sample_; }; } // namespace decode