X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=f01aa3ca81c2f71a24c61dc71f7b1d1ba67f7139;hb=1dcd9b18186741d3ce3164f7e8d6cb13abb578d3;hp=3c967ff70b1e8998d60903c39bcc35e2e8fcc2ce;hpb=f994f496908ed183c951ada303c4ba8d18b80b64;p=pulseview.git diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index 3c967ff7..f01aa3ca 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -20,13 +20,26 @@ #ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP #define PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP +#include #include +#include +#include + #include -#include "annotation.hpp" +#include + +using std::deque; +using std::unordered_map; -using std::vector; +namespace std { + template<> struct hash { + std::size_t operator()(const QString& s) const noexcept { + return (size_t) qHash(s); + } + }; +} namespace pv { namespace data { @@ -37,9 +50,10 @@ class Row; class RowData { public: - RowData() = default; + RowData(Row* row); + + const Row* row() const; -public: uint64_t get_max_sample() const; uint64_t get_annotation_count() const; @@ -49,14 +63,16 @@ 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 Row *row); + const Annotation* emplace_annotation(srd_proto_data *pdata); private: - vector annotations_; + deque annotations_; + unordered_map > ann_texts_; // unordered_map since pointers must not change + Row* row_; + uint64_t prev_ann_start_sample_; }; } // namespace decode