2 * This file is part of the PulseView project.
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
21 #define PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
24 #include <condition_variable>
25 #include <unordered_set>
31 #include <libsigrokdecode/libsigrokdecode.h>
33 #include <pv/data/decode/row.hpp>
34 #include <pv/data/decode/rowdata.hpp>
35 #include <pv/data/signalbase.hpp>
36 #include <pv/util.hpp>
39 using std::condition_variable;
44 using std::shared_ptr;
64 uint16_t id; ///< Global numerical ID for the decode channels in the stack
65 uint16_t bit_id; ///< Tells which bit within a sample represents this channel
66 const bool is_optional;
67 const pv::data::SignalBase *assigned_signal;
68 const QString name, desc;
69 int initial_pin_state;
70 const shared_ptr<pv::data::decode::Decoder> decoder_;
71 const srd_channel *pdch_;
76 map<const decode::Row, decode::RowData> annotation_rows;
77 pv::util::Timestamp start_time;
79 int64_t samples_decoded_incl, samples_decoded_excl;
82 class DecodeSignal : public SignalBase
87 static const double DecodeMargin;
88 static const double DecodeThreshold;
89 static const int64_t DecodeChunkLength;
92 DecodeSignal(pv::Session &session);
93 virtual ~DecodeSignal();
95 bool is_decode_signal() const;
96 const vector< shared_ptr<data::decode::Decoder> >& decoder_stack() const;
98 void stack_decoder(const srd_decoder *decoder);
99 void remove_decoder(int index);
100 bool toggle_decoder_visibility(int index);
102 void reset_decode(bool shutting_down = false);
105 void resume_decode();
106 bool is_paused() const;
107 QString error_message() const;
109 const vector<data::DecodeChannel> get_channels() const;
110 void auto_assign_signals(const shared_ptr<pv::data::decode::Decoder> dec);
111 void assign_signal(const uint16_t channel_id, const SignalBase *signal);
112 int get_assigned_signal_count() const;
114 void set_initial_pin_state(const uint16_t channel_id, const int init_state);
116 double samplerate() const;
117 const pv::util::Timestamp start_time() const;
120 * Returns the number of samples that can be worked on,
121 * i.e. the number of samples where samples are available
122 * for all connected channels.
124 int64_t get_working_sample_count(uint32_t segment_id) const;
127 * Returns the number of processed samples. Newly generated annotations will
128 * have sample numbers greater than this.
130 * If include_processing is true, this number will include the ones being
131 * currently processed (in case the decoder stack is running). In this case,
132 * newly generated annotations will have sample numbers smaller than this.
134 int64_t get_decoded_sample_count(uint32_t segment_id,
135 bool include_processing) const;
137 vector<decode::Row> visible_rows() const;
140 * Extracts annotations from a single row into a vector.
141 * Note: The annotations may be unsorted and only annotations that fully
142 * fit into the sample range are considered.
144 void get_annotation_subset(
145 vector<pv::data::decode::Annotation> &dest,
146 const decode::Row &row, uint32_t segment_id, uint64_t start_sample,
147 uint64_t end_sample) const;
150 * Extracts annotations from all rows into a vector.
151 * Note: The annotations may be unsorted and only annotations that fully
152 * fit into the sample range are considered.
154 void get_annotation_subset(
155 vector<pv::data::decode::Annotation> &dest,
156 uint32_t segment_id, uint64_t start_sample, uint64_t end_sample) const;
158 virtual void save_settings(QSettings &settings) const;
160 virtual void restore_settings(QSettings &settings);
163 void set_error_message(QString msg);
165 uint32_t get_input_segment_count() const;
167 uint32_t get_input_samplerate(uint32_t segment_id) const;
169 void update_channel_list();
171 void commit_decoder_channels();
173 void mux_logic_samples(uint32_t segment_id, const int64_t start, const int64_t end);
175 void logic_mux_proc();
177 void decode_data(const int64_t abs_start_samplenum, const int64_t sample_count,
178 const shared_ptr<LogicSegment> input_segment);
182 void start_srd_session();
183 void terminate_srd_session();
184 void stop_srd_session();
186 void connect_input_notifiers();
188 void create_decode_segment();
190 static void annotation_callback(srd_proto_data *pdata, void *decode_signal);
193 void new_annotations(); // TODO Supply segment for which they belong to
195 void decode_finished();
196 void channels_updated();
199 void on_capture_state_changed(int state);
200 void on_data_cleared();
201 void on_data_received();
204 pv::Session &session_;
206 vector<data::DecodeChannel> channels_;
208 struct srd_session *srd_session_;
210 shared_ptr<Logic> logic_mux_data_;
211 uint32_t logic_mux_unit_size_;
212 bool logic_mux_data_invalid_;
214 vector< shared_ptr<decode::Decoder> > stack_;
215 bool stack_config_changed_;
216 map<pair<const srd_decoder*, int>, decode::Row> class_rows_;
218 vector<DecodeSegment> segments_;
219 uint32_t current_segment_id_;
221 mutable mutex input_mutex_, output_mutex_, decode_pause_mutex_, logic_mux_mutex_;
222 mutable condition_variable decode_input_cond_, decode_pause_cond_,
225 std::thread decode_thread_, logic_mux_thread_;
226 atomic<bool> decode_interrupt_, logic_mux_interrupt_;
230 QString error_message_;
236 #endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP