]> sigrok.org Git - pulseview.git/blame - pv/data/decodesignal.hpp
DecodeSignal: Update thread handling to match previous changes
[pulseview.git] / pv / data / decodesignal.hpp
CommitLineData
ad908057
SA
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
47747218 23#include <atomic>
c8a6db0e 24#include <deque>
47747218 25#include <condition_variable>
132a5c6d 26#include <unordered_set>
ecd07c20
SA
27#include <vector>
28
47747218 29#include <QSettings>
ecd07c20 30
ad908057
SA
31#include <libsigrokdecode/libsigrokdecode.h>
32
a82325d1 33#include <pv/data/decode/decoder.hpp>
47747218
SA
34#include <pv/data/decode/row.hpp>
35#include <pv/data/decode/rowdata.hpp>
ad908057 36#include <pv/data/signalbase.hpp>
946b52e1 37#include <pv/util.hpp>
ad908057 38
47747218
SA
39using std::atomic;
40using std::condition_variable;
c8a6db0e 41using std::deque;
47747218
SA
42using std::map;
43using std::mutex;
ecd07c20 44using std::vector;
ad908057
SA
45using std::shared_ptr;
46
6a26fc44
SA
47using pv::data::decode::Annotation;
48using pv::data::decode::DecodeBinaryClassInfo;
49using pv::data::decode::DecodeChannel;
50using pv::data::decode::Decoder;
51using pv::data::decode::Row;
52using pv::data::decode::RowData;
53
ad908057 54namespace pv {
47747218
SA
55class Session;
56
ad908057
SA
57namespace data {
58
ad908057 59class Logic;
47747218 60class LogicSegment;
9f97b357 61class SignalBase;
ad908057
SA
62class SignalData;
63
e77de61f 64struct DecodeBinaryDataChunk
c0c3e62a
SA
65{
66 vector<uint8_t> data;
67 uint64_t sample; ///< Number of the sample where this data was provided by the PD
68};
69
e77de61f
SA
70struct DecodeBinaryClass
71{
6a26fc44
SA
72 const Decoder* decoder;
73 const DecodeBinaryClassInfo* info;
c8a6db0e 74 deque<DecodeBinaryDataChunk> chunks;
e77de61f
SA
75};
76
72435789
SA
77struct DecodeSegment
78{
f54e68b0
SA
79 // Constructor is a no-op
80 DecodeSegment() { };
81 // Copy constructor is a no-op
82 DecodeSegment(DecodeSegment&& ds) { (void)ds; };
83
1dcd9b18 84 map<const Row*, RowData> annotation_rows; // Note: Row is the same for all segments while RowData is not
72435789
SA
85 pv::util::Timestamp start_time;
86 double samplerate;
b82908ab 87 int64_t samples_decoded_incl, samples_decoded_excl;
e77de61f 88 vector<DecodeBinaryClass> binary_classes;
f54e68b0 89 deque<const Annotation*> all_annotations;
72435789
SA
90};
91
ad908057
SA
92class DecodeSignal : public SignalBase
93{
94 Q_OBJECT
95
47747218
SA
96private:
97 static const double DecodeMargin;
98 static const double DecodeThreshold;
99 static const int64_t DecodeChunkLength;
47747218 100
ad908057 101public:
47747218 102 DecodeSignal(pv::Session &session);
ad908057
SA
103 virtual ~DecodeSignal();
104
105 bool is_decode_signal() const;
6a26fc44 106 const vector< shared_ptr<Decoder> >& decoder_stack() const;
ad908057 107
ed75426f 108 void stack_decoder(const srd_decoder *decoder, bool restart_decode=true);
ad908057
SA
109 void remove_decoder(int index);
110 bool toggle_decoder_visibility(int index);
111
8ce0e732 112 void reset_decode(bool shutting_down = false);
946b52e1 113 void begin_decode();
556259d2
SA
114 void pause_decode();
115 void resume_decode();
116 bool is_paused() const;
ecd07c20 117
6a26fc44
SA
118 const vector<decode::DecodeChannel> get_channels() const;
119 void auto_assign_signals(const shared_ptr<Decoder> dec);
cf1541a1 120 void assign_signal(const uint16_t channel_id, shared_ptr<const SignalBase> signal);
27a3f09b 121 int get_assigned_signal_count() const;
9f97b357
SA
122
123 void set_initial_pin_state(const uint16_t channel_id, const int init_state);
124
85125b0f 125 virtual double get_samplerate() const;
72435789 126 const pv::util::Timestamp start_time() const;
0c5fe73e
SA
127
128 /**
129 * Returns the number of samples that can be worked on,
130 * i.e. the number of samples where samples are available
131 * for all connected channels.
132 */
5ecf957f 133 int64_t get_working_sample_count(uint32_t segment_id) const;
0c5fe73e 134
b82908ab
SA
135 /**
136 * Returns the number of processed samples. Newly generated annotations will
137 * have sample numbers greater than this.
138 *
139 * If include_processing is true, this number will include the ones being
140 * currently processed (in case the decoder stack is running). In this case,
141 * newly generated annotations will have sample numbers smaller than this.
142 */
143 int64_t get_decoded_sample_count(uint32_t segment_id,
144 bool include_processing) const;
ff83d980 145
6a26fc44
SA
146 vector<Row*> get_rows(bool visible_only=false);
147 vector<const Row*> get_rows(bool visible_only=false) const;
f994f496 148
6a26fc44 149 uint64_t get_annotation_count(const Row* row, uint32_t segment_id) const;
ecd07c20
SA
150
151 /**
5a914348
SA
152 * Extracts annotations from a single row into a vector.
153 * Note: The annotations may be unsorted and only annotations that fully
4caaaace 154 * fit into the sample range are considered.
ecd07c20 155 */
462941e2 156 void get_annotation_subset(deque<const Annotation*> &dest, const Row* row,
6a26fc44 157 uint32_t segment_id, uint64_t start_sample, uint64_t end_sample) const;
ecd07c20 158
5a914348
SA
159 /**
160 * Extracts annotations from all rows into a vector.
161 * Note: The annotations may be unsorted and only annotations that fully
162 * fit into the sample range are considered.
163 */
462941e2 164 void get_annotation_subset(deque<const Annotation*> &dest, uint32_t segment_id,
6a26fc44 165 uint64_t start_sample, uint64_t end_sample) const;
5a914348 166
e77de61f 167 uint32_t get_binary_data_chunk_count(uint32_t segment_id,
6a26fc44
SA
168 const Decoder* dec, uint32_t bin_class_id) const;
169 void get_binary_data_chunk(uint32_t segment_id, const Decoder* dec,
ac9494ef 170 uint32_t bin_class_id, uint32_t chunk_id, const vector<uint8_t> **dest,
e77de61f 171 uint64_t *size);
13b726cd 172 void get_merged_binary_data_chunks_by_sample(uint32_t segment_id,
6a26fc44 173 const Decoder* dec, uint32_t bin_class_id,
13b726cd
SA
174 uint64_t start_sample, uint64_t end_sample,
175 vector<uint8_t> *dest) const;
176 void get_merged_binary_data_chunks_by_offset(uint32_t segment_id,
6a26fc44 177 const Decoder* dec, uint32_t bin_class_id,
13b726cd 178 uint64_t start, uint64_t end,
e77de61f 179 vector<uint8_t> *dest) const;
628b45cc 180 const DecodeBinaryClass* get_binary_data_class(uint32_t segment_id,
6a26fc44 181 const Decoder* dec, uint32_t bin_class_id) const;
c0c3e62a 182
f54e68b0
SA
183 const deque<const Annotation*>* get_all_annotations_by_segment(uint32_t segment_id) const;
184
47747218
SA
185 virtual void save_settings(QSettings &settings) const;
186
187 virtual void restore_settings(QSettings &settings);
188
9f97b357 189private:
144e72c9 190 bool all_input_segments_complete(uint32_t segment_id) const;
8a603e13 191 uint32_t get_input_segment_count() const;
2a12830c 192 double get_input_samplerate(uint32_t segment_id) const;
8a603e13 193
6a26fc44
SA
194 Decoder* get_decoder_by_instance(const srd_decoder *const srd_dec);
195
9f97b357
SA
196 void update_channel_list();
197
27a3f09b 198 void commit_decoder_channels();
47747218 199
ed535cd7 200 void mux_logic_samples(uint32_t segment_id, const int64_t start, const int64_t end);
27a3f09b 201 void logic_mux_proc();
47747218 202
8a603e13 203 void decode_data(const int64_t abs_start_samplenum, const int64_t sample_count,
cf1541a1 204 const shared_ptr<const LogicSegment> input_segment);
47747218
SA
205 void decode_proc();
206
e91883bb 207 void start_srd_session();
ce0b6a40 208 void terminate_srd_session();
e91883bb
SA
209 void stop_srd_session();
210
a8a9222d
SA
211 void connect_input_notifiers();
212
65efd025 213 void create_decode_segment();
72435789 214
47747218 215 static void annotation_callback(srd_proto_data *pdata, void *decode_signal);
c0c3e62a 216 static void binary_callback(srd_proto_data *pdata, void *decode_signal);
47747218 217
ad908057 218Q_SIGNALS:
e77de61f
SA
219 void decoder_stacked(void* decoder); ///< decoder is of type decode::Decoder*
220 void decoder_removed(void* decoder); ///< decoder is of type decode::Decoder*
5ecf957f 221 void new_annotations(); // TODO Supply segment for which they belong to
b2b18d3a 222 void new_binary_data(unsigned int segment_id, void* decoder, unsigned int bin_class_id);
eee3eab9 223 void decode_reset();
1b56c646 224 void decode_finished();
9f97b357 225 void channels_updated();
02078aa1 226 void annotation_visibility_changed();
ad908057
SA
227
228private Q_SLOTS:
47747218 229 void on_capture_state_changed(int state);
1b56c646 230 void on_data_cleared();
47747218 231 void on_data_received();
ad908057 232
02078aa1
SA
233 void on_annotation_visibility_changed();
234
ad908057 235private:
47747218
SA
236 pv::Session &session_;
237
6a26fc44 238 vector<decode::DecodeChannel> channels_;
47747218 239
e91883bb
SA
240 struct srd_session *srd_session_;
241
47747218 242 shared_ptr<Logic> logic_mux_data_;
ed535cd7 243 uint32_t logic_mux_unit_size_;
47747218
SA
244 bool logic_mux_data_invalid_;
245
6a26fc44 246 vector< shared_ptr<Decoder> > stack_;
e3202557 247 bool stack_config_changed_;
47747218 248
72435789
SA
249 vector<DecodeSegment> segments_;
250 uint32_t current_segment_id_;
4913560f 251
556259d2
SA
252 mutable mutex input_mutex_, output_mutex_, decode_pause_mutex_, logic_mux_mutex_;
253 mutable condition_variable decode_input_cond_, decode_pause_cond_,
254 logic_mux_cond_;
47747218
SA
255
256 std::thread decode_thread_, logic_mux_thread_;
257 atomic<bool> decode_interrupt_, logic_mux_interrupt_;
258
556259d2 259 bool decode_paused_;
ad908057
SA
260};
261
262} // namespace data
263} // namespace pv
264
265#endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP