]> sigrok.org Git - pulseview.git/blame - pv/views/trace/decodetrace.cpp
Properly handle decoder errors
[pulseview.git] / pv / views / trace / decodetrace.cpp
CommitLineData
55d3603d
JH
1/*
2 * This file is part of the PulseView project.
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
55d3603d
JH
18 */
19
20extern "C" {
21#include <libsigrokdecode/libsigrokdecode.h>
22}
23
c3a740dd 24#include <mutex>
5c48ce32 25#include <tuple>
c3a740dd 26
06bb4e6a
JH
27#include <extdef.h>
28
a855d71e 29#include <boost/functional/hash.hpp>
b213ef09 30
c51482b3 31#include <QAction>
d7c0ca4a 32#include <QApplication>
4e5a4405
JH
33#include <QComboBox>
34#include <QFormLayout>
35#include <QLabel>
b213ef09 36#include <QMenu>
ce94e4fd 37#include <QPushButton>
e2f90c50 38#include <QToolTip>
c51482b3 39
2acdb232 40#include "decodetrace.hpp"
1573bf16
SA
41#include "view.hpp"
42#include "viewport.hpp"
2acdb232 43
1cc1c8de 44#include <pv/globalsettings.hpp>
ad908057
SA
45#include <pv/session.hpp>
46#include <pv/strnatcmp.hpp>
47#include <pv/data/decodesignal.hpp>
aca9aa83 48#include <pv/data/decode/annotation.hpp>
2acdb232
JH
49#include <pv/data/decode/decoder.hpp>
50#include <pv/data/logic.hpp>
f3d66e52 51#include <pv/data/logicsegment.hpp>
2acdb232
JH
52#include <pv/widgets/decodergroupbox.hpp>
53#include <pv/widgets/decodermenu.hpp>
119aff65 54
5c48ce32 55using std::abs;
7f8517f6 56using std::make_pair;
819f4c25 57using std::max;
819f4c25 58using std::min;
6f925ba9 59using std::out_of_range;
7f8517f6 60using std::pair;
f9abf97e 61using std::shared_ptr;
53e35b2d 62using std::tie;
819f4c25 63using std::vector;
55d3603d 64
ecd07c20
SA
65using pv::data::decode::Annotation;
66using pv::data::decode::Row;
9f97b357
SA
67using pv::data::DecodeChannel;
68using pv::data::DecodeSignal;
ecd07c20 69
55d3603d 70namespace pv {
f4e57597 71namespace views {
1573bf16 72namespace trace {
55d3603d 73
9ba13f5e
SA
74
75#define DECODETRACE_COLOR_SATURATION (180) /* 0-255 */
76#define DECODETRACE_COLOR_VALUE (170) /* 0-255 */
06bb4e6a 77
641574bc
SA
78const QColor DecodeTrace::ErrorBgColor = QColor(0xEF, 0x29, 0x29);
79const QColor DecodeTrace::NoDecodeColor = QColor(0x88, 0x8A, 0x85);
ad50ac1a 80
88908838 81const int DecodeTrace::ArrowSize = 4;
06e810f2 82const double DecodeTrace::EndCapWidth = 5;
aee9dcf3 83const int DecodeTrace::RowTitleMargin = 10;
06e810f2
JH
84const int DecodeTrace::DrawPadding = 100;
85
5b6ae103
SA
86const int DecodeTrace::MaxTraceUpdateRate = 1; // No more than 1 Hz
87
2b81ae46 88DecodeTrace::DecodeTrace(pv::Session &session,
bb7dd726 89 shared_ptr<data::SignalBase> signalbase, int index) :
bf0edd2b 90 Trace(signalbase),
8dbbc7f0 91 session_(session),
8dbbc7f0 92 row_height_(0),
eee89ff8 93 max_visible_rows_(0),
8dbbc7f0
JH
94 delete_mapper_(this),
95 show_hide_mapper_(this)
55d3603d 96{
ad908057 97 decode_signal_ = dynamic_pointer_cast<data::DecodeSignal>(base_);
e0fc5810 98
752281db
SA
99 // Determine shortest string we want to see displayed in full
100 QFontMetrics m(QApplication::font());
101 min_useful_label_width_ = m.width("XX"); // e.g. two hex characters
102
9ba13f5e
SA
103 // For the base color, we want to start at a very different color for
104 // every decoder stack, so multiply the index with a number that is
105 // rather close to 180 degrees of the color circle but not a dividend of 360
106 // Note: The offset equals the color of the first annotation
107 QColor color;
108 const int h = (120 + 160 * index) % 360;
109 const int s = DECODETRACE_COLOR_SATURATION;
110 const int v = DECODETRACE_COLOR_VALUE;
111 color.setHsv(h, s, v);
112 base_->set_color(color);
9cef9567 113
ad908057
SA
114 connect(decode_signal_.get(), SIGNAL(new_annotations()),
115 this, SLOT(on_new_annotations()));
eee3eab9
SA
116 connect(decode_signal_.get(), SIGNAL(decode_reset()),
117 this, SLOT(on_decode_reset()));
1b56c646
SA
118 connect(decode_signal_.get(), SIGNAL(decode_finished()),
119 this, SLOT(on_decode_finished()));
9f97b357
SA
120 connect(decode_signal_.get(), SIGNAL(channels_updated()),
121 this, SLOT(on_channels_updated()));
122
8dbbc7f0 123 connect(&delete_mapper_, SIGNAL(mapped(int)),
613d097c 124 this, SLOT(on_delete_decoder(int)));
8dbbc7f0 125 connect(&show_hide_mapper_, SIGNAL(mapped(int)),
dd048a7e 126 this, SLOT(on_show_hide_decoder(int)));
5b6ae103
SA
127
128 connect(&delayed_trace_updater_, SIGNAL(timeout()),
129 this, SLOT(on_delayed_trace_update()));
130 delayed_trace_updater_.setSingleShot(true);
131 delayed_trace_updater_.setInterval(1000 / MaxTraceUpdateRate);
55d3603d
JH
132}
133
b9329558 134bool DecodeTrace::enabled() const
55d3603d
JH
135{
136 return true;
137}
138
6f925ba9 139shared_ptr<data::SignalBase> DecodeTrace::base() const
b6b267bb 140{
bb7dd726 141 return base_;
b6b267bb
JH
142}
143
a5d93c27
JH
144pair<int, int> DecodeTrace::v_extents() const
145{
5b5fa4da 146 const int row_height = (ViewItemPaintParams::text_height() * 6) / 4;
796e1360 147
e40a79cb
SA
148 // Make an empty decode trace appear symmetrical
149 const int row_count = max(1, max_visible_rows_);
150
151 return make_pair(-row_height, row_height * row_count);
a5d93c27
JH
152}
153
60938e04 154void DecodeTrace::paint_back(QPainter &p, ViewItemPaintParams &pp)
fe08b6e8 155{
3eb29afd 156 Trace::paint_back(p, pp);
97904bf7 157 paint_axis(p, pp, get_visual_y());
fe08b6e8
JH
158}
159
60938e04 160void DecodeTrace::paint_mid(QPainter &p, ViewItemPaintParams &pp)
55d3603d 161{
0ce3d18c
JH
162 const int text_height = ViewItemPaintParams::text_height();
163 row_height_ = (text_height * 6) / 4;
164 const int annotation_height = (text_height * 5) / 4;
5dfeb70f 165
cd0c558b
SA
166 // Set default pen to allow for text width calculation
167 p.setPen(Qt::black);
168
f9101a91 169 // Iterate through the rows
be9e7b4b 170 int y = get_visual_y();
b82908ab
SA
171 pair<uint64_t, uint64_t> sample_range = get_sample_range(pp.left(), pp.right());
172
173 // Just because the view says we see a certain sample range it
174 // doesn't mean we have this many decoded samples, too, so crop
175 // the range to what has been decoded already
176 sample_range.second = min((int64_t)sample_range.second,
177 decode_signal_->get_decoded_sample_count(current_segment_, false));
5dfeb70f 178
ecd07c20 179 const vector<Row> rows = decode_signal_->visible_rows();
7f8517f6 180
8dbbc7f0 181 visible_rows_.clear();
4fb5fb99 182 for (const Row& row : rows) {
aee9dcf3
SA
183 // Cache the row title widths
184 int row_title_width;
185 try {
186 row_title_width = row_title_widths_.at(row);
30677c13 187 } catch (out_of_range&) {
aee9dcf3
SA
188 const int w = p.boundingRect(QRectF(), 0, row.title()).width() +
189 RowTitleMargin;
190 row_title_widths_[row] = w;
191 row_title_width = w;
192 }
193
f9101a91 194 vector<Annotation> annotations;
ecd07c20 195 decode_signal_->get_annotation_subset(annotations, row,
72435789 196 current_segment_, sample_range.first, sample_range.second);
f9101a91 197 if (!annotations.empty()) {
50631798 198 draw_annotations(annotations, p, annotation_height, pp, y,
9ba13f5e 199 get_row_color(visible_rows_.size()), row_title_width);
50631798 200
8dbbc7f0 201 y += row_height_;
4fb5fb99 202 visible_rows_.push_back(row);
f9101a91 203 }
7e674e43 204 }
5dfeb70f 205
3eb29afd 206 draw_unresolved_period(p, annotation_height, pp.left(), pp.right());
eee89ff8 207
6d2802aa
SA
208 if ((int)visible_rows_.size() > max_visible_rows_) {
209 max_visible_rows_ = (int)visible_rows_.size();
a303c2d8 210
6d2802aa
SA
211 // Call order is important, otherwise the lazy event handler won't work
212 owner_->extents_changed(false, true);
213 owner_->row_item_appearance_changed(false, true);
214 }
1ae18301
SA
215
216 const QString err = decode_signal_->error_message();
217 if (!err.isEmpty())
218 draw_error(p, err, pp);
55d3603d
JH
219}
220
60938e04 221void DecodeTrace::paint_fore(QPainter &p, ViewItemPaintParams &pp)
88908838 222{
8dbbc7f0 223 assert(row_height_);
88908838 224
2ad82c2e 225 for (size_t i = 0; i < visible_rows_.size(); i++) {
8dbbc7f0 226 const int y = i * row_height_ + get_visual_y();
88908838
JH
227
228 p.setPen(QPen(Qt::NoPen));
229 p.setBrush(QApplication::palette().brush(QPalette::WindowText));
230
2ad82c2e 231 if (i != 0) {
88908838 232 const QPointF points[] = {
3eb29afd
JH
233 QPointF(pp.left(), y - ArrowSize),
234 QPointF(pp.left() + ArrowSize, y),
235 QPointF(pp.left(), y + ArrowSize)
88908838
JH
236 };
237 p.drawPolygon(points, countof(points));
238 }
239
3eb29afd
JH
240 const QRect r(pp.left() + ArrowSize * 2, y - row_height_ / 2,
241 pp.right() - pp.left(), row_height_);
8dbbc7f0 242 const QString h(visible_rows_[i].title());
88908838
JH
243 const int f = Qt::AlignLeft | Qt::AlignVCenter |
244 Qt::TextDontClip;
245
246 // Draw the outline
247 p.setPen(QApplication::palette().color(QPalette::Base));
248 for (int dx = -1; dx <= 1; dx++)
249 for (int dy = -1; dy <= 1; dy++)
250 if (dx != 0 && dy != 0)
251 p.drawText(r.translated(dx, dy), f, h);
252
253 // Draw the text
254 p.setPen(QApplication::palette().color(QPalette::WindowText));
255 p.drawText(r, f, h);
256 }
1931b5f9
SA
257
258 if (show_hover_marker_)
259 paint_hover_marker(p);
88908838
JH
260}
261
b9329558 262void DecodeTrace::populate_popup_form(QWidget *parent, QFormLayout *form)
4e5a4405 263{
613d097c
JH
264 using pv::data::decode::Decoder;
265
4e5a4405 266 assert(form);
4e5a4405 267
7491a29f 268 // Add the standard options
4e5a4405
JH
269 Trace::populate_popup_form(parent, form);
270
7491a29f 271 // Add the decoder options
8dbbc7f0 272 bindings_.clear();
9f97b357
SA
273 channel_id_map_.clear();
274 init_state_map_.clear();
8dbbc7f0 275 decoder_forms_.clear();
4e5a4405 276
47747218 277 const vector< shared_ptr<Decoder> > &stack = decode_signal_->decoder_stack();
4e5a4405 278
2ad82c2e 279 if (stack.empty()) {
5069084a
JH
280 QLabel *const l = new QLabel(
281 tr("<p><i>No decoders in the stack</i></p>"));
282 l->setAlignment(Qt::AlignCenter);
283 form->addRow(l);
2ad82c2e 284 } else {
f46e495e 285 auto iter = stack.cbegin();
5069084a
JH
286 for (int i = 0; i < (int)stack.size(); i++, iter++) {
287 shared_ptr<Decoder> dec(*iter);
288 create_decoder_form(i, dec, parent, form);
289 }
290
291 form->addRow(new QLabel(
8bd26d8b 292 tr("<i>* Required channels</i>"), parent));
5069084a 293 }
4e5a4405 294
ce94e4fd 295 // Add stacking button
ce94e4fd
JH
296 pv::widgets::DecoderMenu *const decoder_menu =
297 new pv::widgets::DecoderMenu(parent);
7491a29f
JH
298 connect(decoder_menu, SIGNAL(decoder_selected(srd_decoder*)),
299 this, SLOT(on_stack_decoder(srd_decoder*)));
300
301 QPushButton *const stack_button =
302 new QPushButton(tr("Stack Decoder"), parent);
ce94e4fd 303 stack_button->setMenu(decoder_menu);
b14a9371 304 stack_button->setToolTip(tr("Stack a higher-level decoder on top of this one"));
ce94e4fd
JH
305
306 QHBoxLayout *stack_button_box = new QHBoxLayout;
307 stack_button_box->addWidget(stack_button, 0, Qt::AlignRight);
308 form->addRow(stack_button_box);
4e5a4405
JH
309}
310
b9329558 311QMenu* DecodeTrace::create_context_menu(QWidget *parent)
c51482b3
JH
312{
313 QMenu *const menu = Trace::create_context_menu(parent);
314
315 menu->addSeparator();
316
317 QAction *const del = new QAction(tr("Delete"), this);
a2d21018 318 del->setShortcuts(QKeySequence::Delete);
c51482b3
JH
319 connect(del, SIGNAL(triggered()), this, SLOT(on_delete()));
320 menu->addAction(del);
321
322 return menu;
323}
324
50631798
SA
325void DecodeTrace::draw_annotations(vector<pv::data::decode::Annotation> annotations,
326 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 327 QColor row_color, int row_title_width)
50631798
SA
328{
329 using namespace pv::data::decode;
330
20d90d22
SA
331 Annotation::Class block_class = 0;
332 bool block_class_uniform = true;
5c48ce32 333 qreal block_start = 0;
20d90d22
SA
334 int block_ann_count = 0;
335
336 const Annotation *prev_ann;
5c48ce32 337 qreal prev_end = INT_MIN;
20d90d22 338
5c48ce32 339 qreal a_end;
50631798
SA
340
341 double samples_per_pixel, pixels_offset;
342 tie(pixels_offset, samples_per_pixel) =
343 get_pixels_offset_samples_per_pixel();
344
bdc2a99b
SA
345 // Sort the annotations by start sample so that decoders
346 // can't confuse us by creating annotations out of order
347 stable_sort(annotations.begin(), annotations.end(),
348 [](const Annotation &a, const Annotation &b) {
349 return a.start_sample() < b.start_sample(); });
350
50631798
SA
351 // Gather all annotations that form a visual "block" and draw them as such
352 for (const Annotation &a : annotations) {
353
5c48ce32
SA
354 const qreal abs_a_start = a.start_sample() / samples_per_pixel;
355 const qreal abs_a_end = a.end_sample() / samples_per_pixel;
bdc2a99b 356
5c48ce32 357 const qreal a_start = abs_a_start - pixels_offset;
20d90d22
SA
358 a_end = abs_a_end - pixels_offset;
359
5c48ce32
SA
360 const qreal a_width = a_end - a_start;
361 const qreal delta = a_end - prev_end;
bdc2a99b
SA
362
363 bool a_is_separate = false;
364
365 // Annotation wider than the threshold for a useful label width?
752281db 366 if (a_width >= min_useful_label_width_) {
bdc2a99b 367 for (const QString &ann_text : a.annotations()) {
5c48ce32 368 const qreal w = p.boundingRect(QRectF(), 0, ann_text).width();
bdc2a99b
SA
369 // Annotation wide enough to fit a label? Don't put it in a block then
370 if (w <= a_width) {
371 a_is_separate = true;
372 break;
373 }
374 }
375 }
50631798 376
bdc2a99b
SA
377 // Were the previous and this annotation more than a pixel apart?
378 if ((abs(delta) > 1) || a_is_separate) {
379 // Block was broken, draw annotations that form the current block
20d90d22
SA
380 if (block_ann_count == 1)
381 draw_annotation(*prev_ann, p, h, pp, y, row_color,
aee9dcf3 382 row_title_width);
20d90d22
SA
383 else if (block_ann_count > 0)
384 draw_annotation_block(block_start, prev_end, block_class,
385 block_class_uniform, p, h, y, row_color);
50631798 386
20d90d22 387 block_ann_count = 0;
50631798
SA
388 }
389
bdc2a99b 390 if (a_is_separate) {
9ba13f5e 391 draw_annotation(a, p, h, pp, y, row_color, row_title_width);
bdc2a99b 392 // Next annotation must start a new block. delta will be > 1
20d90d22
SA
393 // because we set prev_end to INT_MIN but that's okay since
394 // block_ann_count will be 0 and nothing will be drawn
395 prev_end = INT_MIN;
5c48ce32 396 block_ann_count = 0;
bdc2a99b 397 } else {
20d90d22
SA
398 prev_end = a_end;
399 prev_ann = &a;
400
401 if (block_ann_count == 0) {
402 block_start = a_start;
403 block_class = a.ann_class();
404 block_class_uniform = true;
405 } else
406 if (a.ann_class() != block_class)
407 block_class_uniform = false;
408
409 block_ann_count++;
bdc2a99b 410 }
50631798
SA
411 }
412
20d90d22
SA
413 if (block_ann_count == 1)
414 draw_annotation(*prev_ann, p, h, pp, y, row_color, row_title_width);
415 else if (block_ann_count > 0)
416 draw_annotation_block(block_start, prev_end, block_class,
417 block_class_uniform, p, h, y, row_color);
50631798
SA
418}
419
287d607f 420void DecodeTrace::draw_annotation(const pv::data::decode::Annotation &a,
5b5fa4da 421 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 422 QColor row_color, int row_title_width) const
06e810f2 423{
53e35b2d
JH
424 double samples_per_pixel, pixels_offset;
425 tie(pixels_offset, samples_per_pixel) =
426 get_pixels_offset_samples_per_pixel();
7f8517f6 427
06e810f2
JH
428 const double start = a.start_sample() / samples_per_pixel -
429 pixels_offset;
c063290a 430 const double end = a.end_sample() / samples_per_pixel - pixels_offset;
287d607f 431
f228f00e 432 QColor color = get_annotation_color(row_color, a.ann_class());
9ba13f5e
SA
433 p.setPen(color.darker());
434 p.setBrush(color);
06e810f2 435
3eb29afd 436 if (start > pp.right() + DrawPadding || end < pp.left() - DrawPadding)
06e810f2
JH
437 return;
438
439 if (a.start_sample() == a.end_sample())
f765c3db 440 draw_instant(a, p, h, start, y);
06e810f2 441 else
c063290a 442 draw_range(a, p, h, start, end, y, pp, row_title_width);
06e810f2
JH
443}
444
5c48ce32 445void DecodeTrace::draw_annotation_block(qreal start, qreal end,
20d90d22 446 Annotation::Class ann_class, bool use_ann_format, QPainter &p, int h,
9ba13f5e 447 int y, QColor row_color) const
50631798 448{
33707990
SA
449 const double top = y + .5 - h / 2;
450 const double bottom = y + .5 + h / 2;
33707990 451
3082ee93
JH
452 const QRectF rect(start, top, end - start, bottom - top);
453 const int r = h / 4;
454
455 p.setPen(QPen(Qt::NoPen));
456 p.setBrush(Qt::white);
457 p.drawRoundedRect(rect, r, r);
458
20d90d22
SA
459 // If all annotations in this block are of the same type, we can use the
460 // one format that all of these annotations have. Otherwise, we should use
461 // a neutral color (i.e. gray)
462 if (use_ann_format) {
463 const QColor color = get_annotation_color(row_color, ann_class);
464 p.setPen(color.darker());
465 p.setBrush(QBrush(color, Qt::Dense4Pattern));
466 } else {
467 p.setPen(Qt::gray);
468 p.setBrush(QBrush(Qt::gray, Qt::Dense4Pattern));
469 }
470
3082ee93 471 p.drawRoundedRect(rect, r, r);
50631798
SA
472}
473
06e810f2 474void DecodeTrace::draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 475 int h, qreal x, int y) const
06e810f2
JH
476{
477 const QString text = a.annotations().empty() ?
478 QString() : a.annotations().back();
5c48ce32 479 const qreal w = min((qreal)p.boundingRect(QRectF(), 0, text).width(),
06e810f2
JH
480 0.0) + h;
481 const QRectF rect(x - w / 2, y - h / 2, w, h);
482
06e810f2
JH
483 p.drawRoundedRect(rect, h / 2, h / 2);
484
2a56e448 485 p.setPen(Qt::black);
06e810f2
JH
486 p.drawText(rect, Qt::AlignCenter | Qt::AlignVCenter, text);
487}
488
489void DecodeTrace::draw_range(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 490 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
f765c3db 491 int row_title_width) const
06e810f2 492{
5c48ce32
SA
493 const qreal top = y + .5 - h / 2;
494 const qreal bottom = y + .5 + h / 2;
06e810f2
JH
495 const vector<QString> annotations = a.annotations();
496
06e810f2 497 // If the two ends are within 1 pixel, draw a vertical line
2ad82c2e 498 if (start + 1.0 > end) {
06e810f2
JH
499 p.drawLine(QPointF(start, top), QPointF(start, bottom));
500 return;
501 }
502
5c48ce32 503 const qreal cap_width = min((end - start) / 4, EndCapWidth);
06e810f2
JH
504
505 QPointF pts[] = {
506 QPointF(start, y + .5f),
507 QPointF(start + cap_width, top),
508 QPointF(end - cap_width, top),
509 QPointF(end, y + .5f),
510 QPointF(end - cap_width, bottom),
511 QPointF(start + cap_width, bottom)
512 };
513
514 p.drawConvexPolygon(pts, countof(pts));
515
516 if (annotations.empty())
517 return;
518
7352be72
SA
519 const int ann_start = start + cap_width;
520 const int ann_end = end - cap_width;
521
6f925ba9
UH
522 const int real_start = max(ann_start, pp.left() + row_title_width);
523 const int real_end = min(ann_end, pp.right());
7352be72
SA
524 const int real_width = real_end - real_start;
525
526 QRectF rect(real_start, y - h / 2, real_width, h);
0f290e9b
JH
527 if (rect.width() <= 4)
528 return;
529
2a56e448 530 p.setPen(Qt::black);
06e810f2
JH
531
532 // Try to find an annotation that will fit
533 QString best_annotation;
534 int best_width = 0;
535
d9aecf1f 536 for (const QString &a : annotations) {
06e810f2
JH
537 const int w = p.boundingRect(QRectF(), 0, a).width();
538 if (w <= rect.width() && w > best_width)
539 best_annotation = a, best_width = w;
540 }
541
542 if (best_annotation.isEmpty())
543 best_annotation = annotations.back();
544
545 // If not ellide the last in the list
546 p.drawText(rect, Qt::AlignCenter, p.fontMetrics().elidedText(
547 best_annotation, Qt::ElideRight, rect.width()));
548}
549
b9329558 550void DecodeTrace::draw_error(QPainter &p, const QString &message,
5b5fa4da 551 const ViewItemPaintParams &pp)
ad50ac1a 552{
be9e7b4b 553 const int y = get_visual_y();
ad50ac1a 554
1ae18301
SA
555 double samples_per_pixel, pixels_offset;
556 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
557
641574bc
SA
558 p.setPen(ErrorBgColor.darker());
559 p.setBrush(ErrorBgColor);
ad50ac1a 560
1ae18301
SA
561 const QRectF bounding_rect = QRectF(pp.left(), INT_MIN / 2 + y, pp.right(), INT_MAX);
562
563 const QRectF text_rect = p.boundingRect(bounding_rect, Qt::AlignCenter, message);
5c48ce32 564 const qreal r = text_rect.height() / 4;
ad50ac1a 565
1ae18301 566 p.drawRoundedRect(text_rect.adjusted(-r, -r, r, r), r, r, Qt::AbsoluteSize);
ad50ac1a 567
2a56e448 568 p.setPen(Qt::black);
ad50ac1a
JH
569 p.drawText(text_rect, message);
570}
571
ff83d980 572void DecodeTrace::draw_unresolved_period(QPainter &p, int h, int left, int right) const
5dfeb70f
JH
573{
574 using namespace pv::data;
575 using pv::data::decode::Decoder;
576
53e35b2d
JH
577 double samples_per_pixel, pixels_offset;
578
5ecf957f 579 const int64_t sample_count = decode_signal_->get_working_sample_count(current_segment_);
5dfeb70f
JH
580 if (sample_count == 0)
581 return;
582
b82908ab 583 const int64_t samples_decoded = decode_signal_->get_decoded_sample_count(current_segment_, true);
5dfeb70f
JH
584 if (sample_count == samples_decoded)
585 return;
586
be9e7b4b 587 const int y = get_visual_y();
7f8517f6 588
ff83d980 589 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
7f8517f6 590
5dfeb70f
JH
591 const double start = max(samples_decoded /
592 samples_per_pixel - pixels_offset, left - 1.0);
593 const double end = min(sample_count / samples_per_pixel -
594 pixels_offset, right + 1.0);
e06cf18d 595 const QRectF no_decode_rect(start, y - (h / 2) - 0.5, end - start, h);
5dfeb70f
JH
596
597 p.setPen(QPen(Qt::NoPen));
598 p.setBrush(Qt::white);
599 p.drawRect(no_decode_rect);
600
641574bc
SA
601 p.setPen(NoDecodeColor);
602 p.setBrush(QBrush(NoDecodeColor, Qt::Dense6Pattern));
5dfeb70f
JH
603 p.drawRect(no_decode_rect);
604}
605
53e35b2d 606pair<double, double> DecodeTrace::get_pixels_offset_samples_per_pixel() const
7f8517f6 607{
8dbbc7f0 608 assert(owner_);
7f8517f6 609
8dbbc7f0 610 const View *view = owner_->view();
eae6e30a
JH
611 assert(view);
612
613 const double scale = view->scale();
7f8517f6
SA
614 assert(scale > 0);
615
53e35b2d 616 const double pixels_offset =
ff83d980 617 ((view->offset() - decode_signal_->start_time()) / scale).convert_to<double>();
7f8517f6 618
ff83d980 619 double samplerate = decode_signal_->samplerate();
7f8517f6
SA
620
621 // Show sample rate as 1Hz when it is unknown
622 if (samplerate == 0.0)
623 samplerate = 1.0;
624
53e35b2d 625 return make_pair(pixels_offset, samplerate * scale);
7f8517f6
SA
626}
627
db1bf6bf
JH
628pair<uint64_t, uint64_t> DecodeTrace::get_sample_range(
629 int x_start, int x_end) const
7f8517f6 630{
53e35b2d
JH
631 double samples_per_pixel, pixels_offset;
632 tie(pixels_offset, samples_per_pixel) =
633 get_pixels_offset_samples_per_pixel();
7f8517f6 634
db1bf6bf
JH
635 const uint64_t start = (uint64_t)max(
636 (x_start + pixels_offset) * samples_per_pixel, 0.0);
637 const uint64_t end = (uint64_t)max(
638 (x_end + pixels_offset) * samples_per_pixel, 0.0);
7f8517f6
SA
639
640 return make_pair(start, end);
641}
642
9ba13f5e
SA
643QColor DecodeTrace::get_row_color(int row_index) const
644{
645 // For each row color, use the base color hue and add an offset that's
646 // not a dividend of 360
647
648 QColor color;
649 const int h = (base_->color().toHsv().hue() + 20 * row_index) % 360;
650 const int s = DECODETRACE_COLOR_SATURATION;
651 const int v = DECODETRACE_COLOR_VALUE;
652 color.setHsl(h, s, v);
653
654 return color;
655}
656
657QColor DecodeTrace::get_annotation_color(QColor row_color, int annotation_index) const
658{
659 // For each row color, use the base color hue and add an offset that's
660 // not a dividend of 360 and not a multiple of the row offset
661
662 QColor color(row_color);
663 const int h = (color.toHsv().hue() + 55 * annotation_index) % 360;
664 const int s = DECODETRACE_COLOR_SATURATION;
665 const int v = DECODETRACE_COLOR_VALUE;
666 color.setHsl(h, s, v);
667
668 return color;
669}
670
117cdea3 671int DecodeTrace::get_row_at_point(const QPoint &point)
e2f90c50 672{
8dbbc7f0 673 if (!row_height_)
117cdea3 674 return -1;
e2f90c50 675
99029fda
SA
676 const int y = (point.y() - get_visual_y() + row_height_ / 2);
677
678 /* Integer divison of (x-1)/x would yield 0, so we check for this. */
679 if (y < 0)
680 return -1;
681
682 const int row = y / row_height_;
683
684 if (row >= (int)visible_rows_.size())
117cdea3 685 return -1;
e2f90c50 686
117cdea3 687 return row;
e2f90c50
SA
688}
689
117cdea3 690const QString DecodeTrace::get_annotation_at_point(const QPoint &point)
e2f90c50
SA
691{
692 using namespace pv::data::decode;
693
117cdea3
JH
694 if (!enabled())
695 return QString();
e2f90c50 696
117cdea3
JH
697 const pair<uint64_t, uint64_t> sample_range =
698 get_sample_range(point.x(), point.x() + 1);
699 const int row = get_row_at_point(point);
700 if (row < 0)
701 return QString();
e2f90c50
SA
702
703 vector<pv::data::decode::Annotation> annotations;
704
ff83d980 705 decode_signal_->get_annotation_subset(annotations, visible_rows_[row],
72435789 706 current_segment_, sample_range.first, sample_range.second);
e2f90c50
SA
707
708 return (annotations.empty()) ?
709 QString() : annotations[0].annotations().front();
710}
711
873e8035 712void DecodeTrace::hover_point_changed(const QPoint &hp)
117cdea3 713{
0cbadf1c
SA
714 Trace::hover_point_changed(hp);
715
8dbbc7f0 716 assert(owner_);
eae6e30a 717
8dbbc7f0 718 const View *const view = owner_->view();
eae6e30a
JH
719 assert(view);
720
53b652bd
SA
721 if (hp.x() == 0) {
722 QToolTip::hideText();
723 return;
724 }
725
117cdea3 726 QString ann = get_annotation_at_point(hp);
e2f90c50 727
eae6e30a 728 assert(view);
e2f90c50 729
8b9df0ad 730 if (!row_height_ || ann.isEmpty()) {
ebdfa094 731 QToolTip::hideText();
117cdea3
JH
732 return;
733 }
6e6881e2 734
117cdea3 735 const int hover_row = get_row_at_point(hp);
6e6881e2 736
117cdea3
JH
737 QFontMetrics m(QToolTip::font());
738 const QRect text_size = m.boundingRect(QRect(), 0, ann);
e2f90c50 739
117cdea3
JH
740 // This is OS-specific and unfortunately we can't query it, so
741 // use an approximation to at least try to minimize the error.
742 const int padding = 8;
6e6881e2 743
117cdea3
JH
744 // Make sure the tool tip doesn't overlap with the mouse cursor.
745 // If it did, the tool tip would constantly hide and re-appear.
746 // We also push it up by one row so that it appears above the
747 // decode trace, not below.
873e8035
SA
748 QPoint p = hp;
749 p.setX(hp.x() - (text_size.width() / 2) - padding);
6e6881e2 750
873e8035 751 p.setY(get_visual_y() - (row_height_ / 2) +
8dbbc7f0 752 (hover_row * row_height_) -
99029fda 753 row_height_ - text_size.height() - padding);
e2f90c50 754
873e8035 755 QToolTip::showText(view->viewport()->mapToGlobal(p), ann);
9555ca8b
SA
756}
757
613d097c
JH
758void DecodeTrace::create_decoder_form(int index,
759 shared_ptr<data::decode::Decoder> &dec, QWidget *parent,
760 QFormLayout *form)
7491a29f 761{
1cc1c8de 762 GlobalSettings settings;
7491a29f
JH
763
764 assert(dec);
765 const srd_decoder *const decoder = dec->decoder();
766 assert(decoder);
767
ff59fa2c
SA
768 const bool decoder_deletable = index > 0;
769
204bae45 770 pv::widgets::DecoderGroupBox *const group =
27e8df22 771 new pv::widgets::DecoderGroupBox(
580b4f25
UH
772 QString::fromUtf8(decoder->name),
773 tr("%1:\n%2").arg(QString::fromUtf8(decoder->longname),
774 QString::fromUtf8(decoder->desc)),
775 nullptr, decoder_deletable);
dd048a7e 776 group->set_decoder_visible(dec->shown());
613d097c 777
ff59fa2c
SA
778 if (decoder_deletable) {
779 delete_mapper_.setMapping(group, index);
780 connect(group, SIGNAL(delete_decoder()), &delete_mapper_, SLOT(map()));
781 }
613d097c 782
8dbbc7f0 783 show_hide_mapper_.setMapping(group, index);
dd048a7e 784 connect(group, SIGNAL(show_hide_decoder()),
8dbbc7f0 785 &show_hide_mapper_, SLOT(map()));
dd048a7e 786
204bae45
JH
787 QFormLayout *const decoder_form = new QFormLayout;
788 group->add_layout(decoder_form);
7491a29f 789
47747218 790 const vector<DecodeChannel> channels = decode_signal_->get_channels();
407c9ebe 791
9f97b357
SA
792 // Add the channels
793 for (DecodeChannel ch : channels) {
794 // Ignore channels not part of the decoder we create the form for
795 if (ch.decoder_ != dec)
796 continue;
407c9ebe 797
9f97b357
SA
798 QComboBox *const combo = create_channel_selector(parent, &ch);
799 QComboBox *const combo_init_state = create_channel_selector_init_state(parent, &ch);
407c9ebe 800
9f97b357
SA
801 channel_id_map_[combo] = ch.id;
802 init_state_map_[combo_init_state] = ch.id;
407c9ebe 803
7491a29f 804 connect(combo, SIGNAL(currentIndexChanged(int)),
6ac6242b 805 this, SLOT(on_channel_selected(int)));
9f97b357
SA
806 connect(combo_init_state, SIGNAL(currentIndexChanged(int)),
807 this, SLOT(on_init_state_changed(int)));
407c9ebe
UH
808
809 QHBoxLayout *const hlayout = new QHBoxLayout;
810 hlayout->addWidget(combo);
9f97b357 811 hlayout->addWidget(combo_init_state);
407c9ebe 812
1cc1c8de 813 if (!settings.value(GlobalSettings::Key_Dec_InitialStateConfigurable).toBool())
9f97b357 814 combo_init_state->hide();
7491a29f 815
9f97b357
SA
816 const QString required_flag = ch.is_optional ? QString() : QString("*");
817 decoder_form->addRow(tr("<b>%1</b> (%2) %3")
818 .arg(ch.name, ch.desc, required_flag), hlayout);
7491a29f
JH
819 }
820
821 // Add the options
3cc9ad7b 822 shared_ptr<binding::Decoder> binding(
946b52e1 823 new binding::Decoder(decode_signal_, dec));
204bae45 824 binding->add_properties_to_form(decoder_form, true);
7491a29f 825
8dbbc7f0 826 bindings_.push_back(binding);
204bae45
JH
827
828 form->addRow(group);
8dbbc7f0 829 decoder_forms_.push_back(group);
7491a29f
JH
830}
831
9f97b357 832QComboBox* DecodeTrace::create_channel_selector(QWidget *parent, const DecodeChannel *ch)
4e5a4405 833{
47e9e7bb 834 const auto sigs(session_.signalbases());
78b0af3e 835
9f97b357 836 // Sort signals in natural order
47e9e7bb 837 vector< shared_ptr<data::SignalBase> > sig_list(sigs.begin(), sigs.end());
6f925ba9 838 sort(sig_list.begin(), sig_list.end(),
47e9e7bb
SA
839 [](const shared_ptr<data::SignalBase> &a,
840 const shared_ptr<data::SignalBase> &b) {
841 return strnatcasecmp(a->name().toStdString(),
842 b->name().toStdString()) < 0; });
4e5a4405 843
4e5a4405
JH
844 QComboBox *selector = new QComboBox(parent);
845
4c60462b 846 selector->addItem("-", qVariantFromValue((void*)nullptr));
4e5a4405 847
9f97b357 848 if (!ch->assigned_signal)
4e5a4405
JH
849 selector->setCurrentIndex(0);
850
47e9e7bb
SA
851 for (const shared_ptr<data::SignalBase> &b : sig_list) {
852 assert(b);
79c4a9c8 853 if (b->logic_data() && b->enabled()) {
47e9e7bb
SA
854 selector->addItem(b->name(),
855 qVariantFromValue((void*)b.get()));
5da5d081 856
9f97b357
SA
857 if (ch->assigned_signal == b.get())
858 selector->setCurrentIndex(selector->count() - 1);
4e5a4405
JH
859 }
860 }
861
862 return selector;
863}
864
9f97b357
SA
865QComboBox* DecodeTrace::create_channel_selector_init_state(QWidget *parent,
866 const DecodeChannel *ch)
407c9ebe
UH
867{
868 QComboBox *selector = new QComboBox(parent);
869
870 selector->addItem("0", qVariantFromValue((int)SRD_INITIAL_PIN_LOW));
871 selector->addItem("1", qVariantFromValue((int)SRD_INITIAL_PIN_HIGH));
7df44935 872 selector->addItem("X", qVariantFromValue((int)SRD_INITIAL_PIN_SAME_AS_SAMPLE0));
407c9ebe 873
9f97b357 874 selector->setCurrentIndex(ch->initial_pin_state);
407c9ebe
UH
875
876 selector->setToolTip("Initial (assumed) pin value before the first sample");
877
878 return selector;
879}
880
ad908057 881void DecodeTrace::on_new_annotations()
5b6ae103
SA
882{
883 if (!delayed_trace_updater_.isActive())
884 delayed_trace_updater_.start();
885}
886
887void DecodeTrace::on_delayed_trace_update()
9cef9567 888{
8dbbc7f0 889 if (owner_)
6e2c3c85 890 owner_->row_item_appearance_changed(false, true);
9cef9567
JH
891}
892
eee3eab9
SA
893void DecodeTrace::on_decode_reset()
894{
895 visible_rows_.clear();
896 max_visible_rows_ = 0;
897
898 if (owner_)
899 owner_->row_item_appearance_changed(false, true);
900}
901
1b56c646
SA
902void DecodeTrace::on_decode_finished()
903{
904 if (owner_)
905 owner_->row_item_appearance_changed(false, true);
906}
907
b9329558 908void DecodeTrace::delete_pressed()
5ed1adf5
JH
909{
910 on_delete();
911}
912
b9329558 913void DecodeTrace::on_delete()
c51482b3 914{
ad908057 915 session_.remove_decode_signal(decode_signal_);
c51482b3
JH
916}
917
6ac6242b 918void DecodeTrace::on_channel_selected(int)
4e5a4405 919{
9f97b357
SA
920 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
921
922 // Determine signal that was selected
923 const data::SignalBase *signal =
924 (data::SignalBase*)cb->itemData(cb->currentIndex()).value<void*>();
925
926 // Determine decode channel ID this combo box is the channel selector for
927 const uint16_t id = channel_id_map_.at(cb);
928
929 decode_signal_->assign_signal(id, signal);
930}
931
932void DecodeTrace::on_channels_updated()
933{
934 if (owner_)
935 owner_->row_item_appearance_changed(false, true);
4e5a4405
JH
936}
937
9f97b357 938void DecodeTrace::on_init_state_changed(int)
407c9ebe 939{
9f97b357
SA
940 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
941
942 // Determine inital pin state that was selected
943 int init_state = cb->itemData(cb->currentIndex()).value<int>();
944
945 // Determine decode channel ID this combo box is the channel selector for
946 const uint16_t id = init_state_map_.at(cb);
947
948 decode_signal_->set_initial_pin_state(id, init_state);
407c9ebe
UH
949}
950
7491a29f
JH
951void DecodeTrace::on_stack_decoder(srd_decoder *decoder)
952{
ad908057 953 decode_signal_->stack_decoder(decoder);
37fd11b1
JH
954
955 create_popup_form();
7491a29f
JH
956}
957
613d097c
JH
958void DecodeTrace::on_delete_decoder(int index)
959{
ad908057 960 decode_signal_->remove_decoder(index);
613d097c 961
ded43869
SA
962 // Force re-calculation of the trace height, see paint_mid()
963 max_visible_rows_ = 0;
964 owner_->extents_changed(false, true);
965
613d097c 966 // Update the popup
c063290a 967 create_popup_form();
613d097c
JH
968}
969
dd048a7e
JH
970void DecodeTrace::on_show_hide_decoder(int index)
971{
ad908057 972 const bool state = decode_signal_->toggle_decoder_visibility(index);
dd048a7e 973
8dbbc7f0 974 assert(index < (int)decoder_forms_.size());
ad908057 975 decoder_forms_[index]->set_decoder_visible(state);
dd048a7e 976
ded43869
SA
977 if (!state) {
978 // Force re-calculation of the trace height, see paint_mid()
979 max_visible_rows_ = 0;
980 owner_->extents_changed(false, true);
981 }
982
8dbbc7f0 983 if (owner_)
6e2c3c85 984 owner_->row_item_appearance_changed(false, true);
dd048a7e
JH
985}
986
1573bf16 987} // namespace trace
f4e57597 988} // namespace views
55d3603d 989} // namespace pv