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