]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/signalbase.hpp
Make get_raw_samples() use provided mem instead of allocating
[pulseview.git] / pv / data / signalbase.hpp
... / ...
CommitLineData
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
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef PULSEVIEW_PV_DATA_SIGNALBASE_HPP
22#define PULSEVIEW_PV_DATA_SIGNALBASE_HPP
23
24#include <atomic>
25#include <condition_variable>
26#include <thread>
27
28#include <QColor>
29#include <QObject>
30#include <QSettings>
31#include <QString>
32
33#include <libsigrokcxx/libsigrokcxx.hpp>
34
35using std::atomic;
36using std::condition_variable;
37using std::mutex;
38using std::shared_ptr;
39
40namespace sigrok {
41class Channel;
42}
43
44namespace pv {
45namespace data {
46
47class Analog;
48class DecoderStack;
49class Logic;
50class SignalData;
51
52class SignalBase : public QObject
53{
54 Q_OBJECT
55
56public:
57 enum ChannelType {
58 AnalogChannel = 1,
59 LogicChannel,
60 DecodeChannel,
61 A2LChannel, // Analog converted to logic, joint representation
62 MathChannel
63 };
64
65 enum ConversionType {
66 NoConversion = 0,
67 A2LConversionByTreshold = 1,
68 A2LConversionBySchmittTrigger = 2
69 };
70
71private:
72 static const int ColourBGAlpha;
73 static const uint64_t ConversionBlockSize;
74
75public:
76 SignalBase(shared_ptr<sigrok::Channel> channel, ChannelType channel_type);
77 virtual ~SignalBase();
78
79public:
80 /**
81 * Returns the underlying SR channel.
82 */
83 shared_ptr<sigrok::Channel> channel() const;
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 */
99 ChannelType type() const;
100
101 /**
102 * Gets the index number of this channel, i.e. a unique ID assigned by
103 * the device driver.
104 */
105 unsigned int index() const;
106
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
115 /**
116 * Gets the name of this signal.
117 */
118 QString name() const;
119
120 /**
121 * Gets the internal name of this signal, i.e. how the device calls it.
122 */
123 QString internal_name() const;
124
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
145 /**
146 * Sets the internal data object.
147 */
148 void set_data(shared_ptr<pv::data::SignalData> data);
149
150 /**
151 * Get the internal data as analog data object in case of analog type.
152 */
153 shared_ptr<pv::data::Analog> analog_data() const;
154
155 /**
156 * Get the internal data as logic data object in case of logic type.
157 */
158 shared_ptr<pv::data::Logic> logic_data() const;
159
160 /**
161 * Changes the kind of conversion performed on this channel.
162 */
163 void set_conversion_type(ConversionType t);
164
165#ifdef ENABLE_DECODE
166 bool is_decode_signal() const;
167#endif
168
169 virtual void save_settings(QSettings &settings) const;
170
171 virtual void restore_settings(QSettings &settings);
172
173private:
174 bool conversion_is_a2l() const;
175
176 uint8_t convert_a2l_threshold(float threshold, float value);
177 uint8_t convert_a2l_schmitt_trigger(float lo_thr, float hi_thr,
178 float value, uint8_t &state);
179
180 void conversion_thread_proc(QObject* segment);
181
182 void start_conversion();
183 void stop_conversion();
184
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
192 void conversion_type_changed(const ConversionType t);
193
194 void samples_cleared();
195
196 void samples_added(QObject* segment, uint64_t start_sample,
197 uint64_t end_sample);
198
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
207protected:
208 shared_ptr<sigrok::Channel> channel_;
209 ChannelType channel_type_;
210 shared_ptr<pv::data::SignalData> data_;
211 shared_ptr<pv::data::SignalData> converted_data_;
212 int conversion_type_;
213
214 std::thread conversion_thread_;
215 atomic<bool> conversion_interrupt_;
216 mutex conversion_input_mutex_;
217 condition_variable conversion_input_cond_;
218
219 QString internal_name_, name_;
220 QColor colour_, bgcolour_;
221};
222
223} // namespace data
224} // namespace pv
225
226#endif // PULSEVIEW_PV_DATA_SIGNALBASE_HPP