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