]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decodesignal.hpp
Implement binary class selector
[pulseview.git] / pv / data / decodesignal.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
21#define PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
22
23#include <atomic>
24#include <condition_variable>
25#include <unordered_set>
26#include <vector>
27
28#include <QSettings>
29#include <QString>
30
31#include <libsigrokdecode/libsigrokdecode.h>
32
33#include <pv/data/decode/decoder.hpp>
34#include <pv/data/decode/row.hpp>
35#include <pv/data/decode/rowdata.hpp>
36#include <pv/data/signalbase.hpp>
37#include <pv/util.hpp>
38
39using std::atomic;
40using std::condition_variable;
41using std::map;
42using std::mutex;
43using std::pair;
44using std::vector;
45using std::shared_ptr;
46
47namespace pv {
48class Session;
49
50namespace data {
51
52namespace decode {
53class Annotation;
54class Decoder;
55class Row;
56}
57
58class Logic;
59class LogicSegment;
60class SignalBase;
61class SignalData;
62
63struct DecodeBinaryDataChunk
64{
65 vector<uint8_t> data;
66 uint64_t sample; ///< Number of the sample where this data was provided by the PD
67};
68
69struct DecodeBinaryClass
70{
71 const decode::Decoder* decoder;
72 const decode::DecodeBinaryClassInfo* info;
73 vector<DecodeBinaryDataChunk> chunks;
74};
75
76struct DecodeSegment
77{
78 map<const decode::Row, decode::RowData> annotation_rows;
79 pv::util::Timestamp start_time;
80 double samplerate;
81 int64_t samples_decoded_incl, samples_decoded_excl;
82 vector<DecodeBinaryClass> binary_classes;
83};
84
85class DecodeSignal : public SignalBase
86{
87 Q_OBJECT
88
89private:
90 static const double DecodeMargin;
91 static const double DecodeThreshold;
92 static const int64_t DecodeChunkLength;
93
94public:
95 DecodeSignal(pv::Session &session);
96 virtual ~DecodeSignal();
97
98 bool is_decode_signal() const;
99 const vector< shared_ptr<data::decode::Decoder> >& decoder_stack() const;
100
101 void stack_decoder(const srd_decoder *decoder);
102 void remove_decoder(int index);
103 bool toggle_decoder_visibility(int index);
104
105 void reset_decode(bool shutting_down = false);
106 void begin_decode();
107 void pause_decode();
108 void resume_decode();
109 bool is_paused() const;
110 QString error_message() const;
111
112 const vector<data::decode::DecodeChannel> get_channels() const;
113 void auto_assign_signals(const shared_ptr<pv::data::decode::Decoder> dec);
114 void assign_signal(const uint16_t channel_id, const SignalBase *signal);
115 int get_assigned_signal_count() const;
116
117 void set_initial_pin_state(const uint16_t channel_id, const int init_state);
118
119 double samplerate() const;
120 const pv::util::Timestamp start_time() const;
121
122 /**
123 * Returns the number of samples that can be worked on,
124 * i.e. the number of samples where samples are available
125 * for all connected channels.
126 */
127 int64_t get_working_sample_count(uint32_t segment_id) const;
128
129 /**
130 * Returns the number of processed samples. Newly generated annotations will
131 * have sample numbers greater than this.
132 *
133 * If include_processing is true, this number will include the ones being
134 * currently processed (in case the decoder stack is running). In this case,
135 * newly generated annotations will have sample numbers smaller than this.
136 */
137 int64_t get_decoded_sample_count(uint32_t segment_id,
138 bool include_processing) const;
139
140 vector<decode::Row> get_rows(bool visible_only) const;
141
142 /**
143 * Extracts annotations from a single row into a vector.
144 * Note: The annotations may be unsorted and only annotations that fully
145 * fit into the sample range are considered.
146 */
147 void get_annotation_subset(
148 vector<pv::data::decode::Annotation> &dest,
149 const decode::Row &row, uint32_t segment_id, uint64_t start_sample,
150 uint64_t end_sample) const;
151
152 /**
153 * Extracts annotations from all rows into a vector.
154 * Note: The annotations may be unsorted and only annotations that fully
155 * fit into the sample range are considered.
156 */
157 void get_annotation_subset(
158 vector<pv::data::decode::Annotation> &dest,
159 uint32_t segment_id, uint64_t start_sample, uint64_t end_sample) const;
160
161 uint32_t get_binary_data_chunk_count(uint32_t segment_id,
162 const data::decode::Decoder* dec, uint8_t bin_class_id) const;
163 void get_binary_data_chunk(uint32_t segment_id, const data::decode::Decoder* dec,
164 uint8_t bin_class_id, uint32_t chunk_id, const vector<uint8_t> **dest,
165 uint64_t *size);
166 void get_binary_data_chunks_merged(uint32_t segment_id, const data::decode::Decoder* dec,
167 uint8_t bin_class_id, uint64_t start_sample, uint64_t end_sample,
168 vector<uint8_t> *dest) const;
169
170 virtual void save_settings(QSettings &settings) const;
171
172 virtual void restore_settings(QSettings &settings);
173
174private:
175 void set_error_message(QString msg);
176
177 uint32_t get_input_segment_count() const;
178
179 uint32_t get_input_samplerate(uint32_t segment_id) const;
180
181 void update_channel_list();
182
183 void commit_decoder_channels();
184
185 void mux_logic_samples(uint32_t segment_id, const int64_t start, const int64_t end);
186
187 void logic_mux_proc();
188
189 void decode_data(const int64_t abs_start_samplenum, const int64_t sample_count,
190 const shared_ptr<LogicSegment> input_segment);
191
192 void decode_proc();
193
194 void start_srd_session();
195 void terminate_srd_session();
196 void stop_srd_session();
197
198 void connect_input_notifiers();
199
200 void create_decode_segment();
201
202 static void annotation_callback(srd_proto_data *pdata, void *decode_signal);
203 static void binary_callback(srd_proto_data *pdata, void *decode_signal);
204
205Q_SIGNALS:
206 void decoder_stacked(void* decoder); ///< decoder is of type decode::Decoder*
207 void decoder_removed(void* decoder); ///< decoder is of type decode::Decoder*
208 void new_annotations(); // TODO Supply segment for which they belong to
209 void new_binary_data(unsigned int segment_id, void* decoder, unsigned int bin_class_id);
210 void decode_reset();
211 void decode_finished();
212 void channels_updated();
213
214private Q_SLOTS:
215 void on_capture_state_changed(int state);
216 void on_data_cleared();
217 void on_data_received();
218
219private:
220 pv::Session &session_;
221
222 vector<data::decode::DecodeChannel> channels_;
223
224 struct srd_session *srd_session_;
225
226 shared_ptr<Logic> logic_mux_data_;
227 uint32_t logic_mux_unit_size_;
228 bool logic_mux_data_invalid_;
229
230 vector< shared_ptr<decode::Decoder> > stack_;
231 bool stack_config_changed_;
232 map<pair<const srd_decoder*, int>, decode::Row> class_rows_;
233
234 vector<DecodeSegment> segments_;
235 uint32_t current_segment_id_;
236
237 mutable mutex input_mutex_, output_mutex_, decode_pause_mutex_, logic_mux_mutex_;
238 mutable condition_variable decode_input_cond_, decode_pause_cond_,
239 logic_mux_cond_;
240
241 std::thread decode_thread_, logic_mux_thread_;
242 atomic<bool> decode_interrupt_, logic_mux_interrupt_;
243
244 bool decode_paused_;
245
246 QString error_message_;
247};
248
249} // namespace data
250} // namespace pv
251
252#endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP