]> sigrok.org Git - pulseview.git/blame - pv/view/logicsignal.cpp
Header: Moved drag functionality into SelectableItem
[pulseview.git] / pv / view / logicsignal.cpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
cef18fc6 21#include <extdef.h>
7cd5faf8 22
d2344534
JH
23#include <cassert>
24#include <cmath>
3e46726a 25
640bd149
PZ
26#include <algorithm>
27
b213ef09
JH
28#include <QFormLayout>
29#include <QToolBar>
30
28a4c9c5 31#include "logicsignal.h"
2658961b 32#include "view.h"
0a78bcaf 33
19adbc2c 34#include <pv/sigsession.h>
640bd149 35#include <pv/devicemanager.h>
19adbc2c
JH
36#include <pv/data/logic.h>
37#include <pv/data/logicsnapshot.h>
38#include <pv/view/view.h>
28a4c9c5 39
e8d00928
ML
40#include <libsigrok/libsigrok.hpp>
41
819f4c25
JH
42using std::deque;
43using std::max;
44using std::min;
45using std::pair;
f9abf97e 46using std::shared_ptr;
819f4c25 47using std::vector;
81a635d1 48
e8d00928
ML
49using sigrok::Channel;
50using sigrok::ConfigKey;
51using sigrok::Device;
52using sigrok::Error;
53using sigrok::Trigger;
640bd149
PZ
54using sigrok::TriggerStage;
55using sigrok::TriggerMatch;
e8d00928
ML
56using sigrok::TriggerMatchType;
57
51e77110 58namespace pv {
8d634081 59namespace view {
51e77110 60
17d94d7c 61const float LogicSignal::Oversampling = 2.0f;
131e8012 62
64b60583
JH
63const QColor LogicSignal::EdgeColour(0x80, 0x80, 0x80);
64const QColor LogicSignal::HighColour(0x00, 0xC0, 0x00);
65const QColor LogicSignal::LowColour(0xC0, 0x00, 0x00);
131e8012 66
299d0e75 67const QColor LogicSignal::SignalColours[10] = {
3e46726a
JH
68 QColor(0x16, 0x19, 0x1A), // Black
69 QColor(0x8F, 0x52, 0x02), // Brown
70 QColor(0xCC, 0x00, 0x00), // Red
71 QColor(0xF5, 0x79, 0x00), // Orange
72 QColor(0xED, 0xD4, 0x00), // Yellow
73 QColor(0x73, 0xD2, 0x16), // Green
74 QColor(0x34, 0x65, 0xA4), // Blue
75 QColor(0x75, 0x50, 0x7B), // Violet
76 QColor(0x88, 0x8A, 0x85), // Grey
77 QColor(0xEE, 0xEE, 0xEC), // White
78};
79
b86aa8f4
JH
80LogicSignal::LogicSignal(
81 pv::SigSession &session,
82 shared_ptr<Device> device,
83 shared_ptr<Channel> channel,
84 shared_ptr<data::Logic> data) :
85 Signal(session, channel),
e8d00928 86 _device(device),
4145b248 87 _data(data),
ef8311a4
JH
88 _trigger_none(NULL),
89 _trigger_rising(NULL),
90 _trigger_high(NULL),
91 _trigger_falling(NULL),
92 _trigger_low(NULL),
93 _trigger_change(NULL)
28a4c9c5 94{
e8d00928 95 shared_ptr<Trigger> trigger;
b1e8c93d 96
e8d00928 97 _colour = SignalColours[channel->index() % countof(SignalColours)];
b1e8c93d
BV
98
99 /* Populate this channel's trigger setting with whatever we
100 * find in the current session trigger, if anything. */
e8d00928 101 _trigger_match = nullptr;
1f4caa77 102 if ((trigger = _session.session()->trigger()))
e8d00928
ML
103 for (auto stage : trigger->stages())
104 for (auto match : stage->matches())
105 if (match->channel() == _channel)
106 _trigger_match = match->type();
ef8311a4
JH
107}
108
109LogicSignal::~LogicSignal()
110{
111}
4145b248 112
748dd753 113shared_ptr<pv::data::SignalData> LogicSignal::data() const
9a0cd293
JH
114{
115 return _data;
116}
117
748dd753 118shared_ptr<pv::data::Logic> LogicSignal::logic_data() const
e0fc5810
JH
119{
120 return _data;
121}
122
fe08b6e8
JH
123void LogicSignal::paint_back(QPainter &p, int left, int right)
124{
e8d00928 125 if (_channel->enabled())
fe08b6e8
JH
126 paint_axis(p, get_y(), left, right);
127}
128
129void LogicSignal::paint_mid(QPainter &p, int left, int right)
e3f65ace 130{
2658961b
JH
131 using pv::view::View;
132
64b60583 133 QLineF *line;
2858b391
JH
134
135 vector< pair<int64_t, bool> > edges;
136
6ac6242b 137 assert(_channel);
2858b391 138 assert(_data);
2658961b 139 assert(right >= left);
eae6e30a 140 assert(_owner);
2858b391 141
d5d1f925 142 const int y = get_y();
eae6e30a
JH
143
144 const View *const view = _owner->view();
145 assert(view);
d5d1f925 146
eae6e30a 147 const double scale = view->scale();
01fd3263 148 assert(scale > 0);
ece37fe8 149
eae6e30a 150 const double offset = view->offset();
01fd3263 151
e8d00928 152 if (!_channel->enabled())
cec48d16
JH
153 return;
154
2658961b
JH
155 const float high_offset = y - View::SignalHeight + 0.5f;
156 const float low_offset = y + 0.5f;
131e8012 157
1b1ec774 158 const deque< shared_ptr<pv::data::LogicSnapshot> > &snapshots =
2858b391 159 _data->get_snapshots();
333d5bbc 160 if (snapshots.empty())
2858b391
JH
161 return;
162
1b1ec774 163 const shared_ptr<pv::data::LogicSnapshot> &snapshot =
8d634081 164 snapshots.front();
2858b391 165
9d28da5a 166 double samplerate = _data->samplerate();
9d4e5cd8
JH
167
168 // Show sample rate as 1Hz when it is unknown
9ba4ca35 169 if (samplerate == 0.0)
9d4e5cd8
JH
170 samplerate = 1.0;
171
fb0d32cb 172 const double pixels_offset = offset / scale;
fb0d32cb 173 const double start_time = _data->get_start_time();
652010ea 174 const int64_t last_sample = snapshot->get_sample_count() - 1;
fb0d32cb 175 const double samples_per_pixel = samplerate * scale;
652010ea 176 const double start = samplerate * (offset - start_time);
2658961b 177 const double end = start + samples_per_pixel * (right - left);
2858b391 178
652010ea
JH
179 snapshot->get_subsampled_edges(edges,
180 min(max((int64_t)floor(start), (int64_t)0), last_sample),
181 min(max((int64_t)ceil(end), (int64_t)0), last_sample),
e8d00928 182 samples_per_pixel / Oversampling, _channel->index());
c352ce60 183 assert(edges.size() >= 2);
2858b391
JH
184
185 // Paint the edges
64b60583
JH
186 const unsigned int edge_count = edges.size() - 2;
187 QLineF *const edge_lines = new QLineF[edge_count];
188 line = edge_lines;
189
f46e495e 190 for (auto i = edges.cbegin() + 1; i != edges.cend() - 1; i++) {
ce6e73a8 191 const float x = ((*i).first / samples_per_pixel -
2658961b 192 pixels_offset) + left;
64b60583 193 *line++ = QLineF(x, high_offset, x, low_offset);
2858b391 194 }
81a635d1 195
64b60583
JH
196 p.setPen(EdgeColour);
197 p.drawLines(edge_lines, edge_count);
198 delete[] edge_lines;
2858b391
JH
199
200 // Paint the caps
175d6573 201 const unsigned int max_cap_line_count = edges.size();
64b60583 202 QLineF *const cap_lines = new QLineF[max_cap_line_count];
2858b391 203
64b60583
JH
204 p.setPen(HighColour);
205 paint_caps(p, cap_lines, edges, true, samples_per_pixel,
2658961b 206 pixels_offset, left, high_offset);
64b60583
JH
207 p.setPen(LowColour);
208 paint_caps(p, cap_lines, edges, false, samples_per_pixel,
2658961b 209 pixels_offset, left, low_offset);
2858b391 210
64b60583 211 delete[] cap_lines;
131e8012 212}
2858b391 213
f4270878 214void LogicSignal::paint_caps(QPainter &p, QLineF *const lines,
131e8012 215 vector< pair<int64_t, bool> > &edges, bool level,
ce6e73a8
JH
216 double samples_per_pixel, double pixels_offset, float x_offset,
217 float y_offset)
131e8012 218{
64b60583 219 QLineF *line = lines;
2858b391 220
f46e495e 221 for (auto i = edges.begin(); i != (edges.end() - 1); i++)
333d5bbc 222 if ((*i).second == level) {
64b60583 223 *line++ = QLineF(
ce6e73a8 224 ((*i).first / samples_per_pixel -
64b60583 225 pixels_offset) + x_offset, y_offset,
ce6e73a8 226 ((*(i+1)).first / samples_per_pixel -
64b60583 227 pixels_offset) + x_offset, y_offset);
131e8012
JH
228 }
229
64b60583 230 p.drawLines(lines, line - lines);
e3f65ace 231}
3e46726a 232
767281c8
JH
233void LogicSignal::init_trigger_actions(QWidget *parent)
234{
235 _trigger_none = new QAction(QIcon(":/icons/trigger-none.svg"),
236 tr("No trigger"), parent);
237 _trigger_none->setCheckable(true);
b1e8c93d 238 connect(_trigger_none, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
239
240 _trigger_rising = new QAction(QIcon(":/icons/trigger-rising.svg"),
241 tr("Trigger on rising edge"), parent);
242 _trigger_rising->setCheckable(true);
b1e8c93d 243 connect(_trigger_rising, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
244
245 _trigger_high = new QAction(QIcon(":/icons/trigger-high.svg"),
246 tr("Trigger on high level"), parent);
247 _trigger_high->setCheckable(true);
b1e8c93d 248 connect(_trigger_high, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
249
250 _trigger_falling = new QAction(QIcon(":/icons/trigger-falling.svg"),
251 tr("Trigger on falling edge"), parent);
252 _trigger_falling->setCheckable(true);
b1e8c93d 253 connect(_trigger_falling, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
254
255 _trigger_low = new QAction(QIcon(":/icons/trigger-low.svg"),
256 tr("Trigger on low level"), parent);
257 _trigger_low->setCheckable(true);
b1e8c93d 258 connect(_trigger_low, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
259
260 _trigger_change = new QAction(QIcon(":/icons/trigger-change.svg"),
261 tr("Trigger on rising or falling edge"), parent);
262 _trigger_change->setCheckable(true);
b1e8c93d 263 connect(_trigger_change, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
264}
265
e8d00928 266QAction* LogicSignal::match_action(const TriggerMatchType *type)
767281c8 267{
b1e8c93d
BV
268 QAction *action;
269
270 action = _trigger_none;
640bd149
PZ
271 if (type) {
272 switch (type->id()) {
273 case SR_TRIGGER_ZERO:
274 action = _trigger_low;
275 break;
276 case SR_TRIGGER_ONE:
277 action = _trigger_high;
278 break;
279 case SR_TRIGGER_RISING:
280 action = _trigger_rising;
281 break;
282 case SR_TRIGGER_FALLING:
283 action = _trigger_falling;
284 break;
285 case SR_TRIGGER_EDGE:
286 action = _trigger_change;
287 break;
288 default:
289 assert(0);
290 }
767281c8 291 }
767281c8 292
b1e8c93d 293 return action;
767281c8
JH
294}
295
e8d00928 296const TriggerMatchType *LogicSignal::action_match(QAction *action)
139fef92 297{
b1e8c93d 298 if (action == _trigger_low)
e8d00928 299 return TriggerMatchType::ZERO;
b1e8c93d 300 else if (action == _trigger_high)
e8d00928 301 return TriggerMatchType::ONE;
b1e8c93d 302 else if (action == _trigger_rising)
e8d00928 303 return TriggerMatchType::RISING;
b1e8c93d 304 else if (action == _trigger_falling)
e8d00928 305 return TriggerMatchType::FALLING;
b1e8c93d 306 else if (action == _trigger_change)
e8d00928 307 return TriggerMatchType::EDGE;
b1e8c93d 308 else
e8d00928 309 return nullptr;
139fef92
JH
310}
311
b1e8c93d 312void LogicSignal::populate_popup_form(QWidget *parent, QFormLayout *form)
b08d7222 313{
e8d00928
ML
314 Glib::VariantContainerBase gvar;
315 vector<int32_t> trig_types;
19adbc2c 316
b1e8c93d 317 Signal::populate_popup_form(parent, form);
b08d7222 318
e8d00928
ML
319 try {
320 gvar = _device->config_list(ConfigKey::TRIGGER_MATCH);
321 } catch (Error e) {
b1e8c93d 322 return;
e8d00928 323 }
b08d7222 324
b1e8c93d
BV
325 _trigger_bar = new QToolBar(parent);
326 init_trigger_actions(_trigger_bar);
327 _trigger_bar->addAction(_trigger_none);
640bd149 328 _trigger_none->setChecked(!_trigger_match);
e8d00928
ML
329 trig_types =
330 Glib::VariantBase::cast_dynamic<Glib::Variant<vector<int32_t>>>(
331 gvar).get();
332 for (auto type_id : trig_types) {
333 auto type = TriggerMatchType::get(type_id);
334 _trigger_bar->addAction(match_action(type));
7c4b01a1 335 match_action(type)->setChecked(_trigger_match == type);
b08d7222 336 }
b1e8c93d 337 form->addRow(tr("Trigger"), _trigger_bar);
139fef92 338
b08d7222
JH
339}
340
640bd149
PZ
341void LogicSignal::modify_trigger()
342{
343 auto trigger = _session.session()->trigger();
344 auto new_trigger = _session.device_manager().context()->create_trigger("pulseview");
345
346 if (trigger) {
347 for (auto stage : trigger->stages()) {
348 const auto &matches = stage->matches();
349 if (std::none_of(begin(matches), end(matches),
350 [&](shared_ptr<TriggerMatch> match) {
351 return match->channel() != _channel; }))
352 continue;
353
354 auto new_stage = new_trigger->add_stage();
355 for (auto match : stage->matches()) {
356 if (match->channel() == _channel)
357 continue;
358 new_stage->add_match(match->channel(), match->type());
359 }
360 }
361 }
362
363 if (_trigger_match)
364 new_trigger->add_stage()->add_match(_channel, _trigger_match);
365
366 _session.session()->set_trigger(
367 new_trigger->stages().empty() ? nullptr : new_trigger);
368}
369
b1e8c93d 370void LogicSignal::on_trigger()
b08d7222 371{
b1e8c93d 372 QAction *action;
b08d7222 373
923f8b22 374 match_action(_trigger_match)->setChecked(false);
b08d7222 375
b1e8c93d 376 action = (QAction *)sender();
923f8b22 377 action->setChecked(true);
b1e8c93d 378 _trigger_match = action_match(action);
b08d7222 379
640bd149 380 modify_trigger();
b08d7222
JH
381}
382
8d634081 383} // namespace view
51e77110 384} // namespace pv