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