]> sigrok.org Git - pulseview.git/blame - pv/data/decodesignal.hpp
DecodeSignal: Use signals for new data notification, not session
[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
SA
23#include <atomic>
24#include <condition_variable>
132a5c6d 25#include <unordered_set>
ecd07c20
SA
26#include <vector>
27
47747218 28#include <QSettings>
ecd07c20
SA
29#include <QString>
30
ad908057
SA
31#include <libsigrokdecode/libsigrokdecode.h>
32
47747218
SA
33#include <pv/data/decode/row.hpp>
34#include <pv/data/decode/rowdata.hpp>
ad908057 35#include <pv/data/signalbase.hpp>
946b52e1 36#include <pv/util.hpp>
ad908057 37
47747218
SA
38using std::atomic;
39using std::condition_variable;
40using std::map;
41using std::mutex;
42using std::pair;
132a5c6d 43using std::unordered_set;
ecd07c20 44using std::vector;
ad908057
SA
45using std::shared_ptr;
46
47namespace pv {
47747218
SA
48class Session;
49
ad908057
SA
50namespace data {
51
ecd07c20
SA
52namespace decode {
53class Annotation;
54class Decoder;
55class Row;
56}
57
ad908057 58class Logic;
47747218 59class LogicSegment;
9f97b357 60class SignalBase;
ad908057
SA
61class SignalData;
62
9f97b357
SA
63struct DecodeChannel
64{
65 uint16_t id; // Also 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_;
72};
73
ad908057
SA
74class DecodeSignal : public SignalBase
75{
76 Q_OBJECT
77
47747218
SA
78private:
79 static const double DecodeMargin;
80 static const double DecodeThreshold;
81 static const int64_t DecodeChunkLength;
82 static const unsigned int DecodeNotifyPeriod;
83
ad908057 84public:
47747218 85 DecodeSignal(pv::Session &session);
ad908057
SA
86 virtual ~DecodeSignal();
87
88 bool is_decode_signal() const;
47747218 89 const vector< shared_ptr<data::decode::Decoder> >& decoder_stack() const;
ad908057
SA
90
91 void stack_decoder(srd_decoder *decoder);
92 void remove_decoder(int index);
93 bool toggle_decoder_visibility(int index);
94
47747218 95 void reset_decode();
946b52e1 96 void begin_decode();
ecd07c20
SA
97 QString error_message() const;
98
47747218 99 const vector<data::DecodeChannel> get_channels() const;
132a5c6d 100 void auto_assign_signals();
9f97b357 101 void assign_signal(const uint16_t channel_id, const SignalBase *signal);
27a3f09b 102 int get_assigned_signal_count() const;
9f97b357
SA
103
104 void set_initial_pin_state(const uint16_t channel_id, const int init_state);
105
ff83d980
SA
106 double samplerate() const;
107 const pv::util::Timestamp& start_time() const;
0c5fe73e
SA
108
109 /**
110 * Returns the number of samples that can be worked on,
111 * i.e. the number of samples where samples are available
112 * for all connected channels.
113 */
114 int64_t get_working_sample_count() const;
115
116 int64_t get_decoded_sample_count() const;
ff83d980 117
ecd07c20
SA
118 vector<decode::Row> visible_rows() const;
119
120 /**
121 * Extracts sorted annotations between two period into a vector.
122 */
123 void get_annotation_subset(
124 vector<pv::data::decode::Annotation> &dest,
125 const decode::Row &row, uint64_t start_sample,
126 uint64_t end_sample) const;
127
47747218
SA
128 virtual void save_settings(QSettings &settings) const;
129
130 virtual void restore_settings(QSettings &settings);
131
132 /**
133 * Helper function for static annotation_callback(),
134 * must be public so the function can access it.
135 * Don't use from outside this class.
136 */
137 uint64_t inc_annotation_count();
138
9f97b357
SA
139private:
140 void update_channel_list();
141
27a3f09b 142 void commit_decoder_channels();
47747218 143
27a3f09b
SA
144 void mux_logic_samples(const int64_t start, const int64_t end);
145
146 void logic_mux_proc();
47747218 147
e91883bb 148 void decode_data(const int64_t abs_start_samplenum, const int64_t sample_count);
47747218
SA
149
150 void decode_proc();
151
e91883bb
SA
152 void start_srd_session();
153 void stop_srd_session();
154
a8a9222d
SA
155 void connect_input_notifiers();
156
47747218
SA
157 static void annotation_callback(srd_proto_data *pdata, void *decode_signal);
158
ad908057
SA
159Q_SIGNALS:
160 void new_annotations();
9f97b357 161 void channels_updated();
ad908057
SA
162
163private Q_SLOTS:
47747218
SA
164 void on_capture_state_changed(int state);
165 void on_data_received();
ad908057
SA
166
167private:
47747218
SA
168 pv::Session &session_;
169
170 vector<data::DecodeChannel> channels_;
171
e91883bb
SA
172 struct srd_session *srd_session_;
173
47747218
SA
174 shared_ptr<Logic> logic_mux_data_;
175 shared_ptr<LogicSegment> segment_;
176 bool logic_mux_data_invalid_;
177
178 pv::util::Timestamp start_time_;
179 double samplerate_;
180
27a3f09b 181 int64_t annotation_count_, samples_decoded_;
47747218
SA
182
183 vector< shared_ptr<decode::Decoder> > stack_;
184 map<const decode::Row, decode::RowData> rows_;
185 map<pair<const srd_decoder*, int>, decode::Row> class_rows_;
186
187 /**
188 * This mutex prevents more than one thread from accessing
189 * libsigrokdecode concurrently.
190 * @todo A proper solution should be implemented to allow multiple
191 * decode operations in parallel.
192 */
193 static mutex global_srd_mutex_;
194
27a3f09b 195 mutable mutex input_mutex_, output_mutex_, logic_mux_mutex_;
47747218
SA
196 mutable condition_variable decode_input_cond_, logic_mux_cond_;
197 bool frame_complete_;
198
199 std::thread decode_thread_, logic_mux_thread_;
200 atomic<bool> decode_interrupt_, logic_mux_interrupt_;
201
202 QString error_message_;
ad908057
SA
203};
204
205} // namespace data
206} // namespace pv
207
208#endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP