]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decoderstack.hpp
Make the first view own the toolbar instead of the main window
[pulseview.git] / pv / data / decoderstack.hpp
... / ...
CommitLineData
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
21#ifndef PULSEVIEW_PV_DATA_DECODERSTACK_HPP
22#define PULSEVIEW_PV_DATA_DECODERSTACK_HPP
23
24#include "signaldata.hpp"
25
26#include <atomic>
27#include <condition_variable>
28#include <list>
29#include <map>
30#include <memory>
31#include <thread>
32
33#include <boost/optional.hpp>
34
35#include <QObject>
36#include <QString>
37
38#include <pv/data/decode/row.hpp>
39#include <pv/data/decode/rowdata.hpp>
40#include <pv/util.hpp>
41
42struct srd_decoder;
43struct srd_decoder_annotation_row;
44struct srd_channel;
45struct srd_proto_data;
46struct srd_session;
47
48namespace DecoderStackTest {
49struct TwoDecoderStack;
50}
51
52namespace pv {
53
54class Session;
55
56namespace view {
57class LogicSignal;
58}
59
60namespace data {
61
62class LogicSegment;
63
64namespace decode {
65class Annotation;
66class Decoder;
67}
68
69class Logic;
70
71class DecoderStack : public QObject
72{
73 Q_OBJECT
74
75private:
76 static const double DecodeMargin;
77 static const double DecodeThreshold;
78 static const int64_t DecodeChunkLength;
79 static const unsigned int DecodeNotifyPeriod;
80
81public:
82 DecoderStack(pv::Session &session, const srd_decoder *const dec);
83
84 virtual ~DecoderStack();
85
86 const std::list< std::shared_ptr<decode::Decoder> >& stack() const;
87 void push(std::shared_ptr<decode::Decoder> decoder);
88 void remove(int index);
89
90 double samplerate() const;
91
92 const pv::util::Timestamp& start_time() const;
93
94 int64_t samples_decoded() const;
95
96 std::vector<decode::Row> get_visible_rows() const;
97
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,
103 const decode::Row &row, uint64_t start_sample,
104 uint64_t end_sample) const;
105
106 QString error_message();
107
108 void clear();
109
110 uint64_t max_sample_count() const;
111
112 void begin_decode();
113
114private:
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);
119
120 void decode_proc();
121
122 static void annotation_callback(srd_proto_data *pdata,
123 void *decoder);
124
125private Q_SLOTS:
126 void on_new_frame();
127
128 void on_data_received();
129
130 void on_frame_ended();
131
132Q_SIGNALS:
133 void new_decode_data();
134
135private:
136 pv::Session &session_;
137
138 pv::util::Timestamp start_time_;
139 double samplerate_;
140
141 /**
142 * This mutex prevents more than one thread from accessing
143 * libsigrokdecode concurrently.
144 * @todo A proper solution should be implemented to allow multiple
145 * decode operations in parallel.
146 */
147 static std::mutex global_srd_mutex_;
148
149 std::list< std::shared_ptr<decode::Decoder> > stack_;
150
151 std::shared_ptr<pv::data::LogicSegment> segment_;
152
153 mutable std::mutex input_mutex_;
154 mutable std::condition_variable input_cond_;
155 int64_t sample_count_;
156 bool frame_complete_;
157
158 mutable std::mutex output_mutex_;
159 int64_t samples_decoded_;
160
161 std::map<const decode::Row, decode::RowData> rows_;
162
163 std::map<std::pair<const srd_decoder*, int>, decode::Row> class_rows_;
164
165 QString error_message_;
166
167 std::thread decode_thread_;
168 std::atomic<bool> interrupt_;
169
170 friend struct DecoderStackTest::TwoDecoderStack;
171};
172
173} // namespace data
174} // namespace pv
175
176#endif // PULSEVIEW_PV_DATA_DECODERSTACK_HPP