]> sigrok.org Git - pulseview.git/blame - pv/data/decode/rowdata.hpp
Session: Fix issue #67 by improving error handling
[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
9a5ef9a0 26#include <QtGlobal>
1dcd9b18
SA
27#include <QHash>
28#include <QString>
29
1becee23
UH
30#include <libsigrokdecode/libsigrokdecode.h>
31
6a26fc44 32#include <pv/data/decode/annotation.hpp>
f9101a91 33
5a9146ac 34using std::deque;
1dcd9b18
SA
35using std::unordered_map;
36
9a5ef9a0 37#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
1dcd9b18 38namespace std {
39debd2f
UH
39 template<> struct hash<QString> {
40 std::size_t operator()(const QString& s) const noexcept {
41 return (size_t) qHash(s);
42 }
43 };
1dcd9b18 44}
9a5ef9a0 45#endif
6f925ba9 46
f9101a91
JH
47namespace pv {
48namespace data {
49namespace decode {
50
5a914348
SA
51class Row;
52
f9101a91
JH
53class RowData
54{
55public:
6a26fc44 56 RowData(Row* row);
f9101a91 57
1dcd9b18
SA
58 const Row* row() const;
59
f9101a91
JH
60 uint64_t get_max_sample() const;
61
f994f496
SA
62 uint64_t get_annotation_count() const;
63
f9101a91 64 /**
4caaaace
SA
65 * Extracts annotations between the given sample range into a vector.
66 * Note: The annotations are unsorted and only annotations that fully
67 * fit into the sample range are considered.
f9101a91 68 */
462941e2 69 void get_annotation_subset(deque<const pv::data::decode::Annotation*> &dest,
f9101a91
JH
70 uint64_t start_sample, uint64_t end_sample) const;
71
88a25978
SA
72 const deque<Annotation>& annotations() const;
73
f54e68b0 74 const Annotation* emplace_annotation(srd_proto_data *pdata);
f9101a91
JH
75
76private:
5a9146ac 77 deque<Annotation> annotations_;
1dcd9b18 78 unordered_map<QString, vector<QString> > ann_texts_; // unordered_map since pointers must not change
5a9146ac
SA
79 Row* row_;
80 uint64_t prev_ann_start_sample_;
f9101a91
JH
81};
82
870ea3db
UH
83} // namespace decode
84} // namespace data
85} // namespace pv
f9101a91 86
7a01bd36 87#endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP