]> sigrok.org Git - pulseview.git/blame - pv/data/signalbase.hpp
SignalBase: Minor doxygen comments
[pulseview.git] / pv / data / signalbase.hpp
CommitLineData
bf0edd2b
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 * Copyright (C) 2016 Soeren Apel <soeren@apelpie.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
efdec55a 18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bf0edd2b
SA
19 */
20
21#ifndef PULSEVIEW_PV_DATA_SIGNALBASE_HPP
22#define PULSEVIEW_PV_DATA_SIGNALBASE_HPP
23
27a3f09b
SA
24#include <atomic>
25#include <condition_variable>
12ea3616
SA
26#include <thread>
27
bf0edd2b
SA
28#include <QColor>
29#include <QObject>
6de38b17 30#include <QSettings>
bf0edd2b
SA
31#include <QString>
32
33#include <libsigrokcxx/libsigrokcxx.hpp>
34
27a3f09b
SA
35using std::atomic;
36using std::condition_variable;
37using std::mutex;
6f925ba9 38using std::shared_ptr;
bf0edd2b
SA
39
40namespace sigrok {
41class Channel;
bf0edd2b
SA
42}
43
44namespace pv {
45namespace data {
46
cbd2a2de 47class Analog;
bb7dd726 48class DecoderStack;
cbd2a2de
SA
49class Logic;
50class SignalData;
51
bf0edd2b
SA
52class SignalBase : public QObject
53{
54 Q_OBJECT
55
472a80c5
SA
56public:
57 enum ChannelType {
64845ac2
SA
58 AnalogChannel = 1, ///< Analog data
59 LogicChannel, ///< Logic data
60 DecodeChannel, ///< Protocol Decoder channel using libsigrokdecode
61 A2LChannel, ///< Analog converted to logic, joint representation
62 MathChannel ///< Virtual channel generated by math operations
472a80c5
SA
63 };
64
12ea3616
SA
65 enum ConversionType {
66 NoConversion = 0,
67 A2LConversionByTreshold = 1,
68 A2LConversionBySchmittTrigger = 2
69 };
70
bf0edd2b
SA
71private:
72 static const int ColourBGAlpha;
bcaf0334 73 static const uint64_t ConversionBlockSize;
bf0edd2b
SA
74
75public:
472a80c5 76 SignalBase(shared_ptr<sigrok::Channel> channel, ChannelType channel_type);
12ea3616 77 virtual ~SignalBase();
bf0edd2b
SA
78
79public:
80 /**
81 * Returns the underlying SR channel.
82 */
6f925ba9 83 shared_ptr<sigrok::Channel> channel() const;
bf0edd2b
SA
84
85 /**
86 * Returns enabled status of this channel.
87 */
88 bool enabled() const;
89
90 /**
91 * Sets the enabled status of this channel.
92 * @param value Boolean value to set.
93 */
94 void set_enabled(bool value);
95
96 /**
97 * Gets the type of this channel.
98 */
472a80c5 99 ChannelType type() const;
bf0edd2b
SA
100
101 /**
27a3f09b
SA
102 * Gets the index number of this channel, i.e. a unique ID assigned by
103 * the device driver.
bf0edd2b
SA
104 */
105 unsigned int index() const;
106
27a3f09b
SA
107 /**
108 * Returns which bit of a given sample for this signal represents the
109 * signal itself. This is relevant for compound signals like logic,
110 * rather meaningless for everything else but provided in case there
111 * is a conversion active that provides a digital signal using bit #0.
112 */
113 unsigned int logic_bit_index() const;
114
bf0edd2b
SA
115 /**
116 * Gets the name of this signal.
117 */
118 QString name() const;
119
050b5a6c
SA
120 /**
121 * Gets the internal name of this signal, i.e. how the device calls it.
122 */
123 QString internal_name() const;
124
bf0edd2b
SA
125 /**
126 * Sets the name of the signal.
127 */
128 virtual void set_name(QString name);
129
130 /**
131 * Get the colour of the signal.
132 */
133 QColor colour() const;
134
135 /**
136 * Set the colour of the signal.
137 */
138 void set_colour(QColor colour);
139
140 /**
141 * Get the background colour of the signal.
142 */
143 QColor bgcolour() const;
144
cbd2a2de
SA
145 /**
146 * Sets the internal data object.
147 */
6f925ba9 148 void set_data(shared_ptr<pv::data::SignalData> data);
cbd2a2de
SA
149
150 /**
151 * Get the internal data as analog data object in case of analog type.
152 */
6f925ba9 153 shared_ptr<pv::data::Analog> analog_data() const;
cbd2a2de
SA
154
155 /**
156 * Get the internal data as logic data object in case of logic type.
157 */
6f925ba9 158 shared_ptr<pv::data::Logic> logic_data() const;
cbd2a2de 159
12ea3616
SA
160 /**
161 * Changes the kind of conversion performed on this channel.
162 */
163 void set_conversion_type(ConversionType t);
164
bb7dd726 165#ifdef ENABLE_DECODE
47747218 166 bool is_decode_signal() const;
bb7dd726 167#endif
cbd2a2de 168
47747218 169 virtual void save_settings(QSettings &settings) const;
6de38b17 170
47747218 171 virtual void restore_settings(QSettings &settings);
6de38b17 172
12ea3616 173private:
ccccb914
SA
174 bool conversion_is_a2l() const;
175
12ea3616 176 uint8_t convert_a2l_threshold(float threshold, float value);
5d9fe823
SA
177 uint8_t convert_a2l_schmitt_trigger(float lo_thr, float hi_thr,
178 float value, uint8_t &state);
12ea3616 179
27a3f09b
SA
180 void conversion_thread_proc(QObject* segment);
181
182 void start_conversion();
183 void stop_conversion();
12ea3616 184
bf0edd2b
SA
185Q_SIGNALS:
186 void enabled_changed(const bool &value);
187
188 void name_changed(const QString &name);
189
190 void colour_changed(const QColor &colour);
191
12ea3616
SA
192 void conversion_type_changed(const ConversionType t);
193
eae3bbbb
SA
194 void samples_cleared();
195
196 void samples_added(QObject* segment, uint64_t start_sample,
197 uint64_t end_sample);
198
12ea3616
SA
199private Q_SLOTS:
200 void on_samples_cleared();
201
202 void on_samples_added(QObject* segment, uint64_t start_sample,
203 uint64_t end_sample);
204
205 void on_capture_state_changed(int state);
206
ad908057 207protected:
6f925ba9 208 shared_ptr<sigrok::Channel> channel_;
472a80c5 209 ChannelType channel_type_;
6f925ba9 210 shared_ptr<pv::data::SignalData> data_;
12ea3616
SA
211 shared_ptr<pv::data::SignalData> converted_data_;
212 int conversion_type_;
cbd2a2de 213
12ea3616 214 std::thread conversion_thread_;
27a3f09b
SA
215 atomic<bool> conversion_interrupt_;
216 mutex conversion_input_mutex_;
217 condition_variable conversion_input_cond_;
12ea3616 218
050b5a6c 219 QString internal_name_, name_;
bf0edd2b
SA
220 QColor colour_, bgcolour_;
221};
222
223} // namespace data
224} // namespace pv
225
226#endif // PULSEVIEW_PV_DATA_SIGNALBASE_HPP