]> sigrok.org Git - pulseview.git/blame - pv/data/decodesignal.hpp
Adjust trace view header width when signal names change
[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;
ecd07c20 43using std::vector;
ad908057
SA
44using std::shared_ptr;
45
46namespace pv {
47747218
SA
47class Session;
48
ad908057
SA
49namespace data {
50
ecd07c20
SA
51namespace decode {
52class Annotation;
53class Decoder;
54class Row;
55}
56
ad908057 57class Logic;
47747218 58class LogicSegment;
9f97b357 59class SignalBase;
ad908057
SA
60class SignalData;
61
9f97b357
SA
62struct DecodeChannel
63{
6e7a4a00
SA
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
9f97b357
SA
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;
47747218 82
ad908057 83public:
47747218 84 DecodeSignal(pv::Session &session);
ad908057
SA
85 virtual ~DecodeSignal();
86
87 bool is_decode_signal() const;
47747218 88 const vector< shared_ptr<data::decode::Decoder> >& decoder_stack() const;
ad908057 89
c8e60bdf 90 void stack_decoder(const srd_decoder *decoder);
ad908057
SA
91 void remove_decoder(int index);
92 bool toggle_decoder_visibility(int index);
93
47747218 94 void reset_decode();
946b52e1 95 void begin_decode();
ecd07c20
SA
96 QString error_message() const;
97
47747218 98 const vector<data::DecodeChannel> get_channels() const;
762ab7a4 99 void auto_assign_signals(const shared_ptr<pv::data::decode::Decoder> dec);
9f97b357 100 void assign_signal(const uint16_t channel_id, const SignalBase *signal);
27a3f09b 101 int get_assigned_signal_count() const;
9f97b357
SA
102
103 void set_initial_pin_state(const uint16_t channel_id, const int init_state);
104
ff83d980
SA
105 double samplerate() const;
106 const pv::util::Timestamp& start_time() const;
0c5fe73e
SA
107
108 /**
109 * Returns the number of samples that can be worked on,
110 * i.e. the number of samples where samples are available
111 * for all connected channels.
112 */
113 int64_t get_working_sample_count() const;
114
115 int64_t get_decoded_sample_count() const;
ff83d980 116
ecd07c20
SA
117 vector<decode::Row> visible_rows() const;
118
119 /**
120 * Extracts sorted annotations between two period into a vector.
121 */
122 void get_annotation_subset(
123 vector<pv::data::decode::Annotation> &dest,
124 const decode::Row &row, uint64_t start_sample,
125 uint64_t end_sample) const;
126
47747218
SA
127 virtual void save_settings(QSettings &settings) const;
128
129 virtual void restore_settings(QSettings &settings);
130
9f97b357
SA
131private:
132 void update_channel_list();
133
27a3f09b 134 void commit_decoder_channels();
47747218 135
27a3f09b
SA
136 void mux_logic_samples(const int64_t start, const int64_t end);
137
138 void logic_mux_proc();
47747218 139
a3ebd556
SA
140 void query_input_metadata();
141
e91883bb 142 void decode_data(const int64_t abs_start_samplenum, const int64_t sample_count);
47747218
SA
143
144 void decode_proc();
145
e91883bb
SA
146 void start_srd_session();
147 void stop_srd_session();
148
a8a9222d
SA
149 void connect_input_notifiers();
150
4913560f 151 void prepare_annotation_segment();
47747218
SA
152 static void annotation_callback(srd_proto_data *pdata, void *decode_signal);
153
ad908057
SA
154Q_SIGNALS:
155 void new_annotations();
eee3eab9 156 void decode_reset();
1b56c646 157 void decode_finished();
9f97b357 158 void channels_updated();
ad908057
SA
159
160private Q_SLOTS:
47747218 161 void on_capture_state_changed(int state);
1b56c646 162 void on_data_cleared();
47747218 163 void on_data_received();
ad908057
SA
164
165private:
47747218
SA
166 pv::Session &session_;
167
168 vector<data::DecodeChannel> channels_;
169
e91883bb
SA
170 struct srd_session *srd_session_;
171
47747218 172 shared_ptr<Logic> logic_mux_data_;
83b9c07b 173 shared_ptr<LogicSegment> logic_mux_segment_;
47747218
SA
174 bool logic_mux_data_invalid_;
175
176 pv::util::Timestamp start_time_;
177 double samplerate_;
178
5b6ae103 179 int64_t samples_decoded_;
47747218
SA
180
181 vector< shared_ptr<decode::Decoder> > stack_;
47747218
SA
182 map<pair<const srd_decoder*, int>, decode::Row> class_rows_;
183
4913560f
SA
184 /// Annotations for all segments
185 vector< map<const decode::Row, decode::RowData>> rows_;
186
187 /// Set of annotations for current segment
188 map<const decode::Row, decode::RowData> *current_rows_;
189
27a3f09b 190 mutable mutex input_mutex_, output_mutex_, logic_mux_mutex_;
47747218
SA
191 mutable condition_variable decode_input_cond_, logic_mux_cond_;
192 bool frame_complete_;
193
194 std::thread decode_thread_, logic_mux_thread_;
195 atomic<bool> decode_interrupt_, logic_mux_interrupt_;
196
197 QString error_message_;
ad908057
SA
198};
199
200} // namespace data
201} // namespace pv
202
203#endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP