]> sigrok.org Git - pulseview.git/blame - pv/data/decoderstack.hpp
MainWindow, View::View: Fix two memory errors reported by valgrind
[pulseview.git] / pv / data / decoderstack.hpp
CommitLineData
119aff65
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_DATA_DECODERSTACK_HPP
22#define PULSEVIEW_PV_DATA_DECODERSTACK_HPP
119aff65 23
2acdb232 24#include "signaldata.hpp"
119aff65 25
3b68d03d
JH
26#include <atomic>
27#include <condition_variable>
7491a29f 28#include <list>
3b68d03d 29#include <map>
f9abf97e 30#include <memory>
3b68d03d 31#include <thread>
708c5523 32
f70d8673 33#include <boost/optional.hpp>
708c5523 34
e0fc5810 35#include <QObject>
b6b267bb 36#include <QString>
e0fc5810 37
2acdb232
JH
38#include <pv/data/decode/row.hpp>
39#include <pv/data/decode/rowdata.hpp>
60d9b99a 40#include <pv/util.hpp>
f9101a91 41
119aff65 42struct srd_decoder;
f9101a91 43struct srd_decoder_annotation_row;
8bd26d8b 44struct srd_channel;
b213ef09 45struct srd_proto_data;
f67d9e9b 46struct srd_session;
b6b267bb 47
6e89374a 48namespace DecoderStackTest {
9e587572 49struct TwoDecoderStack;
b6b267bb 50}
119aff65
JH
51
52namespace pv {
708c5523 53
2b81ae46 54class Session;
bdc5c3b0 55
708c5523 56namespace view {
3045c869 57class LogicSignal;
708c5523
JH
58}
59
119aff65
JH
60namespace data {
61
f3d66e52 62class LogicSegment;
f67d9e9b 63
7491a29f 64namespace decode {
06e810f2 65class Annotation;
7491a29f
JH
66class Decoder;
67}
68
640d69ce
JH
69class Logic;
70
f054289f 71class DecoderStack : public QObject
119aff65 72{
e0fc5810
JH
73 Q_OBJECT
74
75private:
76 static const double DecodeMargin;
77 static const double DecodeThreshold;
78 static const int64_t DecodeChunkLength;
4c581c79 79 static const unsigned int DecodeNotifyPeriod;
e0fc5810 80
119aff65 81public:
520362f8 82 DecoderStack(pv::Session &session, const srd_decoder *const dec);
119aff65 83
6e89374a 84 virtual ~DecoderStack();
640d69ce 85
f9abf97e
JH
86 const std::list< std::shared_ptr<decode::Decoder> >& stack() const;
87 void push(std::shared_ptr<decode::Decoder> decoder);
613d097c 88 void remove(int index);
119aff65 89
f054289f
JH
90 double samplerate() const;
91
60d9b99a 92 const pv::util::Timestamp& start_time() const;
f054289f 93
5dfeb70f
JH
94 int64_t samples_decoded() const;
95
dd048a7e 96 std::vector<decode::Row> get_visible_rows() const;
f9101a91 97
92421299
JH
98 /**
99 * Extracts sorted annotations between two period into a vector.
100 */
101 void get_annotation_subset(
102 std::vector<pv::data::decode::Annotation> &dest,
f9101a91
JH
103 const decode::Row &row, uint64_t start_sample,
104 uint64_t end_sample) const;
640d69ce 105
b6b267bb
JH
106 QString error_message();
107
caabb84c 108 void clear();
119aff65 109
e45b13b5 110 uint64_t max_sample_count() const;
a007f5ad 111
e0fc5810
JH
112 void begin_decode();
113
7491a29f 114private:
f70d8673
JH
115 boost::optional<int64_t> wait_for_data() const;
116
117 void decode_data(const int64_t sample_count,
118 const unsigned int unit_size, srd_session *const session);
f67d9e9b 119
c1b2865e 120 void decode_proc();
640d69ce 121
e0fc5810
JH
122 static void annotation_callback(srd_proto_data *pdata,
123 void *decoder);
124
e9213170 125private Q_SLOTS:
82f50b10
JH
126 void on_new_frame();
127
f70d8673
JH
128 void on_data_received();
129
130 void on_frame_ended();
131
e9213170 132Q_SIGNALS:
9cef9567
JH
133 void new_decode_data();
134
119aff65 135private:
2b81ae46 136 pv::Session &session_;
fe89c961 137
60d9b99a 138 pv::util::Timestamp start_time_;
f054289f
JH
139 double samplerate_;
140
fe89c961 141 /**
a1a3656b
SA
142 * This mutex prevents more than one thread from accessing
143 * libsigrokdecode concurrently.
fe89c961 144 * @todo A proper solution should be implemented to allow multiple
a1a3656b 145 * decode operations in parallel.
fe89c961 146 */
a1a3656b 147 static std::mutex global_srd_mutex_;
fe89c961 148
8dbbc7f0 149 std::list< std::shared_ptr<decode::Decoder> > stack_;
e332f6d3 150
f3d66e52 151 std::shared_ptr<pv::data::LogicSegment> segment_;
f70d8673 152
8dbbc7f0
JH
153 mutable std::mutex input_mutex_;
154 mutable std::condition_variable input_cond_;
155 int64_t sample_count_;
156 bool frame_complete_;
f70d8673 157
8dbbc7f0
JH
158 mutable std::mutex output_mutex_;
159 int64_t samples_decoded_;
92421299 160
8dbbc7f0 161 std::map<const decode::Row, decode::RowData> rows_;
f9101a91 162
8dbbc7f0 163 std::map<std::pair<const srd_decoder*, int>, decode::Row> class_rows_;
92421299 164
8dbbc7f0 165 QString error_message_;
e0fc5810 166
8dbbc7f0
JH
167 std::thread decode_thread_;
168 std::atomic<bool> interrupt_;
b6b267bb 169
9e587572 170 friend struct DecoderStackTest::TwoDecoderStack;
119aff65
JH
171};
172
173} // namespace data
174} // namespace pv
175
7a01bd36 176#endif // PULSEVIEW_PV_DATA_DECODERSTACK_HPP