]> sigrok.org Git - pulseview.git/blame - pv/data/decode/rowdata.hpp
Add row colors and some fixes
[pulseview.git] / pv / data / decode / rowdata.hpp
CommitLineData
f9101a91
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2014 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
f9101a91
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP
21#define PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP
f9101a91 22
1dcd9b18 23#include <unordered_map>
f9101a91
JH
24#include <vector>
25
1dcd9b18
SA
26#include <QHash>
27#include <QString>
28
1becee23
UH
29#include <libsigrokdecode/libsigrokdecode.h>
30
6a26fc44 31#include <pv/data/decode/annotation.hpp>
f9101a91 32
5a9146ac 33using std::deque;
1dcd9b18
SA
34using std::unordered_map;
35
36namespace std {
37 template<> struct hash<QString> {
38 std::size_t operator()(const QString& s) const noexcept {
39 return (size_t) qHash(s);
40 }
41 };
42}
6f925ba9 43
f9101a91
JH
44namespace pv {
45namespace data {
46namespace decode {
47
5a914348
SA
48class Row;
49
f9101a91
JH
50class RowData
51{
52public:
6a26fc44 53 RowData(Row* row);
f9101a91 54
1dcd9b18
SA
55 const Row* row() const;
56
f9101a91
JH
57 uint64_t get_max_sample() const;
58
f994f496
SA
59 uint64_t get_annotation_count() const;
60
f9101a91 61 /**
4caaaace
SA
62 * Extracts annotations between the given sample range into a vector.
63 * Note: The annotations are unsorted and only annotations that fully
64 * fit into the sample range are considered.
f9101a91 65 */
462941e2 66 void get_annotation_subset(deque<const pv::data::decode::Annotation*> &dest,
f9101a91
JH
67 uint64_t start_sample, uint64_t end_sample) const;
68
88a25978
SA
69 const deque<Annotation>& annotations() const;
70
f54e68b0 71 const Annotation* emplace_annotation(srd_proto_data *pdata);
f9101a91
JH
72
73private:
5a9146ac 74 deque<Annotation> annotations_;
1dcd9b18 75 unordered_map<QString, vector<QString> > ann_texts_; // unordered_map since pointers must not change
5a9146ac
SA
76 Row* row_;
77 uint64_t prev_ann_start_sample_;
f9101a91
JH
78};
79
870ea3db
UH
80} // namespace decode
81} // namespace data
82} // namespace pv
f9101a91 83
7a01bd36 84#endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP