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