]> sigrok.org Git - pulseview.git/blame - pv/views/trace/decodetrace.cpp
DecodeTrace: Various fixes after the refactoring
[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
99ba5f28 24#include <limits>
c3a740dd 25#include <mutex>
5c48ce32 26#include <tuple>
c3a740dd 27
06bb4e6a
JH
28#include <extdef.h>
29
a855d71e 30#include <boost/functional/hash.hpp>
b213ef09 31
c51482b3 32#include <QAction>
d7c0ca4a 33#include <QApplication>
c764c995 34#include <QClipboard>
4e5a4405 35#include <QComboBox>
be843692 36#include <QFileDialog>
4e5a4405
JH
37#include <QFormLayout>
38#include <QLabel>
b213ef09 39#include <QMenu>
be843692 40#include <QMessageBox>
ce94e4fd 41#include <QPushButton>
be843692 42#include <QTextStream>
e2f90c50 43#include <QToolTip>
c51482b3 44
2acdb232 45#include "decodetrace.hpp"
1573bf16
SA
46#include "view.hpp"
47#include "viewport.hpp"
2acdb232 48
1cc1c8de 49#include <pv/globalsettings.hpp>
ad908057
SA
50#include <pv/session.hpp>
51#include <pv/strnatcmp.hpp>
52#include <pv/data/decodesignal.hpp>
aca9aa83 53#include <pv/data/decode/annotation.hpp>
2acdb232
JH
54#include <pv/data/decode/decoder.hpp>
55#include <pv/data/logic.hpp>
f3d66e52 56#include <pv/data/logicsegment.hpp>
2acdb232
JH
57#include <pv/widgets/decodergroupbox.hpp>
58#include <pv/widgets/decodermenu.hpp>
119aff65 59
5c48ce32 60using std::abs;
84002113
SA
61using std::find_if;
62using std::lock_guard;
7f8517f6 63using std::make_pair;
819f4c25 64using std::max;
819f4c25 65using std::min;
99ba5f28 66using std::numeric_limits;
6f925ba9 67using std::out_of_range;
7f8517f6 68using std::pair;
f9abf97e 69using std::shared_ptr;
53e35b2d 70using std::tie;
819f4c25 71using std::vector;
55d3603d 72
ecd07c20
SA
73using pv::data::decode::Annotation;
74using pv::data::decode::Row;
a82325d1 75using pv::data::decode::DecodeChannel;
9f97b357 76using pv::data::DecodeSignal;
ecd07c20 77
55d3603d 78namespace pv {
f4e57597 79namespace views {
1573bf16 80namespace trace {
55d3603d 81
9ba13f5e
SA
82
83#define DECODETRACE_COLOR_SATURATION (180) /* 0-255 */
84#define DECODETRACE_COLOR_VALUE (170) /* 0-255 */
06bb4e6a 85
641574bc
SA
86const QColor DecodeTrace::ErrorBgColor = QColor(0xEF, 0x29, 0x29);
87const QColor DecodeTrace::NoDecodeColor = QColor(0x88, 0x8A, 0x85);
ad50ac1a 88
84002113 89const int DecodeTrace::ArrowSize = 7;
06e810f2 90const double DecodeTrace::EndCapWidth = 5;
aee9dcf3 91const int DecodeTrace::RowTitleMargin = 10;
06e810f2
JH
92const int DecodeTrace::DrawPadding = 100;
93
5b6ae103
SA
94const int DecodeTrace::MaxTraceUpdateRate = 1; // No more than 1 Hz
95
2b81ae46 96DecodeTrace::DecodeTrace(pv::Session &session,
bb7dd726 97 shared_ptr<data::SignalBase> signalbase, int index) :
bf0edd2b 98 Trace(signalbase),
8dbbc7f0 99 session_(session),
eee89ff8 100 max_visible_rows_(0),
8dbbc7f0
JH
101 delete_mapper_(this),
102 show_hide_mapper_(this)
55d3603d 103{
ad908057 104 decode_signal_ = dynamic_pointer_cast<data::DecodeSignal>(base_);
e0fc5810 105
ab185f78
SA
106 GlobalSettings settings;
107 always_show_all_rows_ = settings.value(GlobalSettings::Key_Dec_AlwaysShowAllRows).toBool();
108
109 GlobalSettings::add_change_handler(this);
110
752281db
SA
111 // Determine shortest string we want to see displayed in full
112 QFontMetrics m(QApplication::font());
113 min_useful_label_width_ = m.width("XX"); // e.g. two hex characters
114
84002113 115 default_row_height_ = (ViewItemPaintParams::text_height() * 6) / 4;
9741d6e0 116 annotation_height_ = (ViewItemPaintParams::text_height() * 5) / 4;
84002113 117
9ba13f5e
SA
118 // For the base color, we want to start at a very different color for
119 // every decoder stack, so multiply the index with a number that is
120 // rather close to 180 degrees of the color circle but not a dividend of 360
121 // Note: The offset equals the color of the first annotation
122 QColor color;
123 const int h = (120 + 160 * index) % 360;
124 const int s = DECODETRACE_COLOR_SATURATION;
125 const int v = DECODETRACE_COLOR_VALUE;
126 color.setHsv(h, s, v);
127 base_->set_color(color);
9cef9567 128
ad908057
SA
129 connect(decode_signal_.get(), SIGNAL(new_annotations()),
130 this, SLOT(on_new_annotations()));
eee3eab9
SA
131 connect(decode_signal_.get(), SIGNAL(decode_reset()),
132 this, SLOT(on_decode_reset()));
1b56c646
SA
133 connect(decode_signal_.get(), SIGNAL(decode_finished()),
134 this, SLOT(on_decode_finished()));
9f97b357
SA
135 connect(decode_signal_.get(), SIGNAL(channels_updated()),
136 this, SLOT(on_channels_updated()));
137
8dbbc7f0 138 connect(&delete_mapper_, SIGNAL(mapped(int)),
613d097c 139 this, SLOT(on_delete_decoder(int)));
8dbbc7f0 140 connect(&show_hide_mapper_, SIGNAL(mapped(int)),
dd048a7e 141 this, SLOT(on_show_hide_decoder(int)));
5b6ae103
SA
142
143 connect(&delayed_trace_updater_, SIGNAL(timeout()),
144 this, SLOT(on_delayed_trace_update()));
145 delayed_trace_updater_.setSingleShot(true);
146 delayed_trace_updater_.setInterval(1000 / MaxTraceUpdateRate);
55d3603d
JH
147}
148
ab185f78
SA
149DecodeTrace::~DecodeTrace()
150{
151 GlobalSettings::remove_change_handler(this);
152}
153
b9329558 154bool DecodeTrace::enabled() const
55d3603d
JH
155{
156 return true;
157}
158
6f925ba9 159shared_ptr<data::SignalBase> DecodeTrace::base() const
b6b267bb 160{
bb7dd726 161 return base_;
b6b267bb
JH
162}
163
a5d93c27
JH
164pair<int, int> DecodeTrace::v_extents() const
165{
e40a79cb 166 // Make an empty decode trace appear symmetrical
84002113
SA
167 if (max_visible_rows_ == 0)
168 return make_pair(-default_row_height_, default_row_height_);
169
170 unsigned int height = 0;
171 for (const RowData& r : rows_)
172 if (r.currently_visible)
173 height += r.height;
e40a79cb 174
84002113 175 return make_pair(-default_row_height_, height);
a5d93c27
JH
176}
177
60938e04 178void DecodeTrace::paint_back(QPainter &p, ViewItemPaintParams &pp)
fe08b6e8 179{
3eb29afd 180 Trace::paint_back(p, pp);
97904bf7 181 paint_axis(p, pp, get_visual_y());
fe08b6e8
JH
182}
183
60938e04 184void DecodeTrace::paint_mid(QPainter &p, ViewItemPaintParams &pp)
55d3603d 185{
84002113
SA
186 lock_guard<mutex> lock(row_modification_mutex_);
187
cd0c558b
SA
188 // Set default pen to allow for text width calculation
189 p.setPen(Qt::black);
190
67fb15bf 191 pair<uint64_t, uint64_t> sample_range = get_view_sample_range(pp.left(), pp.right());
b82908ab
SA
192
193 // Just because the view says we see a certain sample range it
194 // doesn't mean we have this many decoded samples, too, so crop
195 // the range to what has been decoded already
196 sample_range.second = min((int64_t)sample_range.second,
197 decode_signal_->get_decoded_sample_count(current_segment_, false));
5dfeb70f 198
84002113
SA
199 for (RowData& r : rows_)
200 r.currently_visible = false;
201 visible_rows_ = 0;
202 int y = get_visual_y();
aee9dcf3 203
84002113 204 for (RowData& r : rows_) {
9741d6e0
SA
205 // If an entire decoder is hidden, we don't want to fetch annotations
206 if (!r.decode_row.decoder()->shown()) {
207 r.currently_visible = false;
208 continue;
209 }
210
f9101a91 211 vector<Annotation> annotations;
84002113 212 decode_signal_->get_annotation_subset(annotations, r.decode_row,
72435789 213 current_segment_, sample_range.first, sample_range.second);
f994f496
SA
214
215 // Show row if there are visible annotations or when user wants to see
216 // all rows that have annotations somewhere and this one is one of them
84002113 217 size_t ann_count = decode_signal_->get_annotation_count(r.decode_row, current_segment_);
9741d6e0 218 r.currently_visible = !annotations.empty() || (always_show_all_rows_ && (ann_count > 0));
f994f496 219
84002113 220 if (r.currently_visible) {
9741d6e0 221 draw_annotations(annotations, p, annotation_height_, pp, y,
84002113
SA
222 get_row_color(r.decode_row.index()), r.title_width);
223 y += r.height;
224 visible_rows_++;
f9101a91 225 }
7e674e43 226 }
5dfeb70f 227
9741d6e0 228 draw_unresolved_period(p, annotation_height_, pp.left(), pp.right());
eee89ff8 229
84002113
SA
230 if (visible_rows_ > max_visible_rows_) {
231 max_visible_rows_ = visible_rows_;
a303c2d8 232
6d2802aa
SA
233 // Call order is important, otherwise the lazy event handler won't work
234 owner_->extents_changed(false, true);
235 owner_->row_item_appearance_changed(false, true);
236 }
1ae18301
SA
237
238 const QString err = decode_signal_->error_message();
239 if (!err.isEmpty())
240 draw_error(p, err, pp);
55d3603d
JH
241}
242
60938e04 243void DecodeTrace::paint_fore(QPainter &p, ViewItemPaintParams &pp)
88908838 244{
84002113 245 unsigned int y = get_visual_y();
88908838 246
84002113
SA
247 for (const RowData& r : rows_) {
248 if (!r.currently_visible)
249 continue;
88908838
JH
250
251 p.setPen(QPen(Qt::NoPen));
88908838 252
84002113
SA
253 if (r.expand_marker_highlighted)
254 p.setBrush(QApplication::palette().brush(QPalette::HighlightedText));
255 else
256 p.setBrush(QApplication::palette().brush(QPalette::WindowText));
257
258 // Draw expansion marker
259 const QPointF points[] = {
260 QPointF(pp.left(), y - ArrowSize),
261 QPointF(pp.left() + ArrowSize, y),
262 QPointF(pp.left(), y + ArrowSize)
263 };
264 p.drawPolygon(points, countof(points));
88908838 265
84002113
SA
266 p.setBrush(QApplication::palette().brush(QPalette::WindowText));
267
268 const QRect text_rect(pp.left() + ArrowSize * 2, y - r.height / 2,
269 pp.right() - pp.left(), r.height);
270 const QString h(r.decode_row.title());
88908838
JH
271 const int f = Qt::AlignLeft | Qt::AlignVCenter |
272 Qt::TextDontClip;
273
274 // Draw the outline
275 p.setPen(QApplication::palette().color(QPalette::Base));
276 for (int dx = -1; dx <= 1; dx++)
277 for (int dy = -1; dy <= 1; dy++)
278 if (dx != 0 && dy != 0)
84002113 279 p.drawText(text_rect.translated(dx, dy), f, h);
88908838
JH
280
281 // Draw the text
282 p.setPen(QApplication::palette().color(QPalette::WindowText));
84002113
SA
283 p.drawText(text_rect, f, h);
284
285 y += r.height;
88908838 286 }
1931b5f9
SA
287
288 if (show_hover_marker_)
289 paint_hover_marker(p);
88908838
JH
290}
291
cf0a3c9c
SA
292void DecodeTrace::update_stack_button()
293{
294 const vector< shared_ptr<data::decode::Decoder> > &stack = decode_signal_->decoder_stack();
295
296 // Only show decoders in the menu that can be stacked onto the last one in the stack
297 if (!stack.empty()) {
298 const srd_decoder* d = stack.back()->decoder();
299
300 if (d->outputs) {
301 pv::widgets::DecoderMenu *const decoder_menu =
302 new pv::widgets::DecoderMenu(stack_button_, (const char*)(d->outputs->data));
303 connect(decoder_menu, SIGNAL(decoder_selected(srd_decoder*)),
304 this, SLOT(on_stack_decoder(srd_decoder*)));
305
15784350
SA
306 decoder_menu->setStyleSheet("QMenu { menu-scrollable: 1; }");
307
cf0a3c9c
SA
308 stack_button_->setMenu(decoder_menu);
309 stack_button_->show();
310 return;
311 }
312 }
313
314 // No decoders available for stacking
315 stack_button_->setMenu(nullptr);
316 stack_button_->hide();
317}
318
b9329558 319void DecodeTrace::populate_popup_form(QWidget *parent, QFormLayout *form)
4e5a4405 320{
613d097c
JH
321 using pv::data::decode::Decoder;
322
4e5a4405 323 assert(form);
4e5a4405 324
7491a29f 325 // Add the standard options
4e5a4405
JH
326 Trace::populate_popup_form(parent, form);
327
7491a29f 328 // Add the decoder options
8dbbc7f0 329 bindings_.clear();
9f97b357
SA
330 channel_id_map_.clear();
331 init_state_map_.clear();
8dbbc7f0 332 decoder_forms_.clear();
4e5a4405 333
47747218 334 const vector< shared_ptr<Decoder> > &stack = decode_signal_->decoder_stack();
4e5a4405 335
2ad82c2e 336 if (stack.empty()) {
5069084a
JH
337 QLabel *const l = new QLabel(
338 tr("<p><i>No decoders in the stack</i></p>"));
339 l->setAlignment(Qt::AlignCenter);
340 form->addRow(l);
2ad82c2e 341 } else {
f46e495e 342 auto iter = stack.cbegin();
5069084a
JH
343 for (int i = 0; i < (int)stack.size(); i++, iter++) {
344 shared_ptr<Decoder> dec(*iter);
345 create_decoder_form(i, dec, parent, form);
346 }
347
348 form->addRow(new QLabel(
8bd26d8b 349 tr("<i>* Required channels</i>"), parent));
5069084a 350 }
4e5a4405 351
ce94e4fd 352 // Add stacking button
cf0a3c9c
SA
353 stack_button_ = new QPushButton(tr("Stack Decoder"), parent);
354 stack_button_->setToolTip(tr("Stack a higher-level decoder on top of this one"));
355 update_stack_button();
ce94e4fd
JH
356
357 QHBoxLayout *stack_button_box = new QHBoxLayout;
cf0a3c9c 358 stack_button_box->addWidget(stack_button_, 0, Qt::AlignRight);
ce94e4fd 359 form->addRow(stack_button_box);
4e5a4405
JH
360}
361
9e773fec 362QMenu* DecodeTrace::create_header_context_menu(QWidget *parent)
c51482b3 363{
9e773fec 364 QMenu *const menu = Trace::create_header_context_menu(parent);
c51482b3
JH
365
366 menu->addSeparator();
367
368 QAction *const del = new QAction(tr("Delete"), this);
a2d21018 369 del->setShortcuts(QKeySequence::Delete);
c51482b3
JH
370 connect(del, SIGNAL(triggered()), this, SLOT(on_delete()));
371 menu->addAction(del);
372
373 return menu;
374}
375
be843692
SA
376QMenu* DecodeTrace::create_view_context_menu(QWidget *parent, QPoint &click_pos)
377{
79b53a1a
SA
378 // Get entries from default menu before adding our own
379 QMenu *const menu = new QMenu(parent);
380
381 QMenu* default_menu = Trace::create_view_context_menu(parent, click_pos);
382 if (default_menu) {
7a0d99e6 383 for (QAction *action : default_menu->actions()) { // clazy:exclude=range-loop
79b53a1a
SA
384 menu->addAction(action);
385 if (action->parent() == default_menu)
386 action->setParent(menu);
387 }
388 delete default_menu;
389
390 // Add separator if needed
391 if (menu->actions().length() > 0)
392 menu->addSeparator();
393 }
394
84002113
SA
395 selected_row_ = nullptr;
396 const RowData* r = get_row_at_point(click_pos);
397 if (r)
398 selected_row_ = &(r->decode_row);
be843692 399
c764c995
SA
400 const View *const view = owner_->view();
401 assert(view);
402 QPoint pos = view->viewport()->mapFrom(parent, click_pos);
403
99ba5f28 404 // Default sample range is "from here"
c764c995 405 const pair<uint64_t, uint64_t> sample_range = get_view_sample_range(pos.x(), pos.x() + 1);
99ba5f28 406 selected_sample_range_ = make_pair(sample_range.first, numeric_limits<uint64_t>::max());
be843692 407
556259d2
SA
408 if (decode_signal_->is_paused()) {
409 QAction *const resume =
410 new QAction(tr("Resume decoding"), this);
411 resume->setIcon(QIcon::fromTheme("media-playback-start",
412 QIcon(":/icons/media-playback-start.png")));
413 connect(resume, SIGNAL(triggered()), this, SLOT(on_pause_decode()));
414 menu->addAction(resume);
415 } else {
416 QAction *const pause =
417 new QAction(tr("Pause decoding"), this);
418 pause->setIcon(QIcon::fromTheme("media-playback-pause",
419 QIcon(":/icons/media-playback-pause.png")));
420 connect(pause, SIGNAL(triggered()), this, SLOT(on_pause_decode()));
421 menu->addAction(pause);
422 }
423
c764c995
SA
424 QAction *const copy_annotation_to_clipboard =
425 new QAction(tr("Copy annotation text to clipboard"), this);
426 copy_annotation_to_clipboard->setIcon(QIcon::fromTheme("edit-paste",
d01fcb19 427 QIcon(":/icons/edit-paste.svg")));
c764c995
SA
428 connect(copy_annotation_to_clipboard, SIGNAL(triggered()), this, SLOT(on_copy_annotation_to_clipboard()));
429 menu->addAction(copy_annotation_to_clipboard);
430
556259d2
SA
431 menu->addSeparator();
432
5a914348 433 QAction *const export_all_rows =
556259d2 434 new QAction(tr("Export all annotations"), this);
5a914348
SA
435 export_all_rows->setIcon(QIcon::fromTheme("document-save-as",
436 QIcon(":/icons/document-save-as.png")));
437 connect(export_all_rows, SIGNAL(triggered()), this, SLOT(on_export_all_rows()));
438 menu->addAction(export_all_rows);
439
be843692 440 QAction *const export_row =
556259d2 441 new QAction(tr("Export all annotations for this row"), this);
be843692
SA
442 export_row->setIcon(QIcon::fromTheme("document-save-as",
443 QIcon(":/icons/document-save-as.png")));
5a914348 444 connect(export_row, SIGNAL(triggered()), this, SLOT(on_export_row()));
be843692
SA
445 menu->addAction(export_row);
446
5a914348
SA
447 menu->addSeparator();
448
449 QAction *const export_all_rows_from_here =
450 new QAction(tr("Export all annotations, starting here"), this);
451 export_all_rows_from_here->setIcon(QIcon::fromTheme("document-save-as",
452 QIcon(":/icons/document-save-as.png")));
453 connect(export_all_rows_from_here, SIGNAL(triggered()), this, SLOT(on_export_all_rows_from_here()));
454 menu->addAction(export_all_rows_from_here);
455
be843692
SA
456 QAction *const export_row_from_here =
457 new QAction(tr("Export annotations for this row, starting here"), this);
458 export_row_from_here->setIcon(QIcon::fromTheme("document-save-as",
459 QIcon(":/icons/document-save-as.png")));
5a914348 460 connect(export_row_from_here, SIGNAL(triggered()), this, SLOT(on_export_row_from_here()));
be843692
SA
461 menu->addAction(export_row_from_here);
462
99ba5f28
SA
463 menu->addSeparator();
464
465 QAction *const export_all_rows_with_cursor =
466 new QAction(tr("Export all annotations within cursor range"), this);
467 export_all_rows_with_cursor->setIcon(QIcon::fromTheme("document-save-as",
468 QIcon(":/icons/document-save-as.png")));
469 connect(export_all_rows_with_cursor, SIGNAL(triggered()), this, SLOT(on_export_all_rows_with_cursor()));
470 menu->addAction(export_all_rows_with_cursor);
471
472 QAction *const export_row_with_cursor =
473 new QAction(tr("Export annotations for this row within cursor range"), this);
474 export_row_with_cursor->setIcon(QIcon::fromTheme("document-save-as",
475 QIcon(":/icons/document-save-as.png")));
476 connect(export_row_with_cursor, SIGNAL(triggered()), this, SLOT(on_export_row_with_cursor()));
477 menu->addAction(export_row_with_cursor);
478
99ba5f28
SA
479 if (!view->cursors()->enabled()) {
480 export_all_rows_with_cursor->setEnabled(false);
481 export_row_with_cursor->setEnabled(false);
482 }
483
be843692
SA
484 return menu;
485}
486
50631798
SA
487void DecodeTrace::draw_annotations(vector<pv::data::decode::Annotation> annotations,
488 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 489 QColor row_color, int row_title_width)
50631798
SA
490{
491 using namespace pv::data::decode;
492
20d90d22
SA
493 Annotation::Class block_class = 0;
494 bool block_class_uniform = true;
5c48ce32 495 qreal block_start = 0;
20d90d22
SA
496 int block_ann_count = 0;
497
498 const Annotation *prev_ann;
5c48ce32 499 qreal prev_end = INT_MIN;
20d90d22 500
5c48ce32 501 qreal a_end;
50631798
SA
502
503 double samples_per_pixel, pixels_offset;
504 tie(pixels_offset, samples_per_pixel) =
505 get_pixels_offset_samples_per_pixel();
506
bdc2a99b
SA
507 // Sort the annotations by start sample so that decoders
508 // can't confuse us by creating annotations out of order
509 stable_sort(annotations.begin(), annotations.end(),
510 [](const Annotation &a, const Annotation &b) {
511 return a.start_sample() < b.start_sample(); });
512
50631798
SA
513 // Gather all annotations that form a visual "block" and draw them as such
514 for (const Annotation &a : annotations) {
515
5c48ce32
SA
516 const qreal abs_a_start = a.start_sample() / samples_per_pixel;
517 const qreal abs_a_end = a.end_sample() / samples_per_pixel;
bdc2a99b 518
5c48ce32 519 const qreal a_start = abs_a_start - pixels_offset;
20d90d22
SA
520 a_end = abs_a_end - pixels_offset;
521
5c48ce32
SA
522 const qreal a_width = a_end - a_start;
523 const qreal delta = a_end - prev_end;
bdc2a99b
SA
524
525 bool a_is_separate = false;
526
527 // Annotation wider than the threshold for a useful label width?
752281db 528 if (a_width >= min_useful_label_width_) {
bdc2a99b 529 for (const QString &ann_text : a.annotations()) {
5c48ce32 530 const qreal w = p.boundingRect(QRectF(), 0, ann_text).width();
bdc2a99b
SA
531 // Annotation wide enough to fit a label? Don't put it in a block then
532 if (w <= a_width) {
533 a_is_separate = true;
534 break;
535 }
536 }
537 }
50631798 538
bdc2a99b
SA
539 // Were the previous and this annotation more than a pixel apart?
540 if ((abs(delta) > 1) || a_is_separate) {
541 // Block was broken, draw annotations that form the current block
20d90d22
SA
542 if (block_ann_count == 1)
543 draw_annotation(*prev_ann, p, h, pp, y, row_color,
aee9dcf3 544 row_title_width);
20d90d22
SA
545 else if (block_ann_count > 0)
546 draw_annotation_block(block_start, prev_end, block_class,
547 block_class_uniform, p, h, y, row_color);
50631798 548
20d90d22 549 block_ann_count = 0;
50631798
SA
550 }
551
bdc2a99b 552 if (a_is_separate) {
9ba13f5e 553 draw_annotation(a, p, h, pp, y, row_color, row_title_width);
bdc2a99b 554 // Next annotation must start a new block. delta will be > 1
20d90d22
SA
555 // because we set prev_end to INT_MIN but that's okay since
556 // block_ann_count will be 0 and nothing will be drawn
557 prev_end = INT_MIN;
5c48ce32 558 block_ann_count = 0;
bdc2a99b 559 } else {
20d90d22
SA
560 prev_end = a_end;
561 prev_ann = &a;
562
563 if (block_ann_count == 0) {
564 block_start = a_start;
565 block_class = a.ann_class();
566 block_class_uniform = true;
567 } else
568 if (a.ann_class() != block_class)
569 block_class_uniform = false;
570
571 block_ann_count++;
bdc2a99b 572 }
50631798
SA
573 }
574
20d90d22
SA
575 if (block_ann_count == 1)
576 draw_annotation(*prev_ann, p, h, pp, y, row_color, row_title_width);
577 else if (block_ann_count > 0)
578 draw_annotation_block(block_start, prev_end, block_class,
579 block_class_uniform, p, h, y, row_color);
50631798
SA
580}
581
287d607f 582void DecodeTrace::draw_annotation(const pv::data::decode::Annotation &a,
5b5fa4da 583 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 584 QColor row_color, int row_title_width) const
06e810f2 585{
53e35b2d
JH
586 double samples_per_pixel, pixels_offset;
587 tie(pixels_offset, samples_per_pixel) =
588 get_pixels_offset_samples_per_pixel();
7f8517f6 589
06e810f2
JH
590 const double start = a.start_sample() / samples_per_pixel -
591 pixels_offset;
c063290a 592 const double end = a.end_sample() / samples_per_pixel - pixels_offset;
287d607f 593
f228f00e 594 QColor color = get_annotation_color(row_color, a.ann_class());
9ba13f5e
SA
595 p.setPen(color.darker());
596 p.setBrush(color);
06e810f2 597
3eb29afd 598 if (start > pp.right() + DrawPadding || end < pp.left() - DrawPadding)
06e810f2
JH
599 return;
600
601 if (a.start_sample() == a.end_sample())
f765c3db 602 draw_instant(a, p, h, start, y);
06e810f2 603 else
c063290a 604 draw_range(a, p, h, start, end, y, pp, row_title_width);
06e810f2
JH
605}
606
5c48ce32 607void DecodeTrace::draw_annotation_block(qreal start, qreal end,
20d90d22 608 Annotation::Class ann_class, bool use_ann_format, QPainter &p, int h,
9ba13f5e 609 int y, QColor row_color) const
50631798 610{
33707990
SA
611 const double top = y + .5 - h / 2;
612 const double bottom = y + .5 + h / 2;
33707990 613
3082ee93
JH
614 const QRectF rect(start, top, end - start, bottom - top);
615 const int r = h / 4;
616
617 p.setPen(QPen(Qt::NoPen));
618 p.setBrush(Qt::white);
619 p.drawRoundedRect(rect, r, r);
620
20d90d22
SA
621 // If all annotations in this block are of the same type, we can use the
622 // one format that all of these annotations have. Otherwise, we should use
623 // a neutral color (i.e. gray)
624 if (use_ann_format) {
625 const QColor color = get_annotation_color(row_color, ann_class);
626 p.setPen(color.darker());
627 p.setBrush(QBrush(color, Qt::Dense4Pattern));
628 } else {
629 p.setPen(Qt::gray);
630 p.setBrush(QBrush(Qt::gray, Qt::Dense4Pattern));
631 }
632
3082ee93 633 p.drawRoundedRect(rect, r, r);
50631798
SA
634}
635
06e810f2 636void DecodeTrace::draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 637 int h, qreal x, int y) const
06e810f2
JH
638{
639 const QString text = a.annotations().empty() ?
640 QString() : a.annotations().back();
5c48ce32 641 const qreal w = min((qreal)p.boundingRect(QRectF(), 0, text).width(),
06e810f2
JH
642 0.0) + h;
643 const QRectF rect(x - w / 2, y - h / 2, w, h);
644
06e810f2
JH
645 p.drawRoundedRect(rect, h / 2, h / 2);
646
2a56e448 647 p.setPen(Qt::black);
06e810f2
JH
648 p.drawText(rect, Qt::AlignCenter | Qt::AlignVCenter, text);
649}
650
651void DecodeTrace::draw_range(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 652 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
f765c3db 653 int row_title_width) const
06e810f2 654{
5c48ce32
SA
655 const qreal top = y + .5 - h / 2;
656 const qreal bottom = y + .5 + h / 2;
06e810f2
JH
657 const vector<QString> annotations = a.annotations();
658
06e810f2 659 // If the two ends are within 1 pixel, draw a vertical line
2ad82c2e 660 if (start + 1.0 > end) {
06e810f2
JH
661 p.drawLine(QPointF(start, top), QPointF(start, bottom));
662 return;
663 }
664
5c48ce32 665 const qreal cap_width = min((end - start) / 4, EndCapWidth);
06e810f2
JH
666
667 QPointF pts[] = {
668 QPointF(start, y + .5f),
669 QPointF(start + cap_width, top),
670 QPointF(end - cap_width, top),
671 QPointF(end, y + .5f),
672 QPointF(end - cap_width, bottom),
673 QPointF(start + cap_width, bottom)
674 };
675
676 p.drawConvexPolygon(pts, countof(pts));
677
678 if (annotations.empty())
679 return;
680
7352be72
SA
681 const int ann_start = start + cap_width;
682 const int ann_end = end - cap_width;
683
6f925ba9
UH
684 const int real_start = max(ann_start, pp.left() + row_title_width);
685 const int real_end = min(ann_end, pp.right());
7352be72
SA
686 const int real_width = real_end - real_start;
687
688 QRectF rect(real_start, y - h / 2, real_width, h);
0f290e9b
JH
689 if (rect.width() <= 4)
690 return;
691
2a56e448 692 p.setPen(Qt::black);
06e810f2
JH
693
694 // Try to find an annotation that will fit
695 QString best_annotation;
696 int best_width = 0;
697
d9aecf1f 698 for (const QString &a : annotations) {
06e810f2
JH
699 const int w = p.boundingRect(QRectF(), 0, a).width();
700 if (w <= rect.width() && w > best_width)
701 best_annotation = a, best_width = w;
702 }
703
704 if (best_annotation.isEmpty())
705 best_annotation = annotations.back();
706
707 // If not ellide the last in the list
708 p.drawText(rect, Qt::AlignCenter, p.fontMetrics().elidedText(
709 best_annotation, Qt::ElideRight, rect.width()));
710}
711
b9329558 712void DecodeTrace::draw_error(QPainter &p, const QString &message,
5b5fa4da 713 const ViewItemPaintParams &pp)
ad50ac1a 714{
be9e7b4b 715 const int y = get_visual_y();
ad50ac1a 716
1ae18301
SA
717 double samples_per_pixel, pixels_offset;
718 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
719
641574bc
SA
720 p.setPen(ErrorBgColor.darker());
721 p.setBrush(ErrorBgColor);
ad50ac1a 722
1ae18301
SA
723 const QRectF bounding_rect = QRectF(pp.left(), INT_MIN / 2 + y, pp.right(), INT_MAX);
724
725 const QRectF text_rect = p.boundingRect(bounding_rect, Qt::AlignCenter, message);
5c48ce32 726 const qreal r = text_rect.height() / 4;
ad50ac1a 727
1ae18301 728 p.drawRoundedRect(text_rect.adjusted(-r, -r, r, r), r, r, Qt::AbsoluteSize);
ad50ac1a 729
2a56e448 730 p.setPen(Qt::black);
ad50ac1a
JH
731 p.drawText(text_rect, message);
732}
733
ff83d980 734void DecodeTrace::draw_unresolved_period(QPainter &p, int h, int left, int right) const
5dfeb70f
JH
735{
736 using namespace pv::data;
737 using pv::data::decode::Decoder;
738
53e35b2d
JH
739 double samples_per_pixel, pixels_offset;
740
5ecf957f 741 const int64_t sample_count = decode_signal_->get_working_sample_count(current_segment_);
5dfeb70f
JH
742 if (sample_count == 0)
743 return;
744
b82908ab 745 const int64_t samples_decoded = decode_signal_->get_decoded_sample_count(current_segment_, true);
5dfeb70f
JH
746 if (sample_count == samples_decoded)
747 return;
748
be9e7b4b 749 const int y = get_visual_y();
7f8517f6 750
ff83d980 751 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
7f8517f6 752
5dfeb70f
JH
753 const double start = max(samples_decoded /
754 samples_per_pixel - pixels_offset, left - 1.0);
755 const double end = min(sample_count / samples_per_pixel -
756 pixels_offset, right + 1.0);
e06cf18d 757 const QRectF no_decode_rect(start, y - (h / 2) - 0.5, end - start, h);
5dfeb70f
JH
758
759 p.setPen(QPen(Qt::NoPen));
760 p.setBrush(Qt::white);
761 p.drawRect(no_decode_rect);
762
641574bc
SA
763 p.setPen(NoDecodeColor);
764 p.setBrush(QBrush(NoDecodeColor, Qt::Dense6Pattern));
5dfeb70f
JH
765 p.drawRect(no_decode_rect);
766}
767
53e35b2d 768pair<double, double> DecodeTrace::get_pixels_offset_samples_per_pixel() const
7f8517f6 769{
8dbbc7f0 770 assert(owner_);
7f8517f6 771
8dbbc7f0 772 const View *view = owner_->view();
eae6e30a
JH
773 assert(view);
774
775 const double scale = view->scale();
7f8517f6
SA
776 assert(scale > 0);
777
53e35b2d 778 const double pixels_offset =
ff83d980 779 ((view->offset() - decode_signal_->start_time()) / scale).convert_to<double>();
7f8517f6 780
ff83d980 781 double samplerate = decode_signal_->samplerate();
7f8517f6
SA
782
783 // Show sample rate as 1Hz when it is unknown
784 if (samplerate == 0.0)
785 samplerate = 1.0;
786
53e35b2d 787 return make_pair(pixels_offset, samplerate * scale);
7f8517f6
SA
788}
789
67fb15bf 790pair<uint64_t, uint64_t> DecodeTrace::get_view_sample_range(
db1bf6bf 791 int x_start, int x_end) const
7f8517f6 792{
53e35b2d
JH
793 double samples_per_pixel, pixels_offset;
794 tie(pixels_offset, samples_per_pixel) =
795 get_pixels_offset_samples_per_pixel();
7f8517f6 796
db1bf6bf
JH
797 const uint64_t start = (uint64_t)max(
798 (x_start + pixels_offset) * samples_per_pixel, 0.0);
799 const uint64_t end = (uint64_t)max(
800 (x_end + pixels_offset) * samples_per_pixel, 0.0);
7f8517f6
SA
801
802 return make_pair(start, end);
803}
804
9ba13f5e
SA
805QColor DecodeTrace::get_row_color(int row_index) const
806{
807 // For each row color, use the base color hue and add an offset that's
808 // not a dividend of 360
809
810 QColor color;
811 const int h = (base_->color().toHsv().hue() + 20 * row_index) % 360;
812 const int s = DECODETRACE_COLOR_SATURATION;
813 const int v = DECODETRACE_COLOR_VALUE;
814 color.setHsl(h, s, v);
815
816 return color;
817}
818
819QColor DecodeTrace::get_annotation_color(QColor row_color, int annotation_index) const
820{
821 // For each row color, use the base color hue and add an offset that's
822 // not a dividend of 360 and not a multiple of the row offset
823
824 QColor color(row_color);
825 const int h = (color.toHsv().hue() + 55 * annotation_index) % 360;
826 const int s = DECODETRACE_COLOR_SATURATION;
827 const int v = DECODETRACE_COLOR_VALUE;
828 color.setHsl(h, s, v);
829
830 return color;
831}
832
84002113 833unsigned int DecodeTrace::get_row_y(const RowData* row) const
e2f90c50 834{
84002113 835 assert(row);
e2f90c50 836
84002113 837 unsigned int y = get_visual_y();
99029fda 838
9741d6e0
SA
839 for (const RowData& r : rows_) {
840 if (!r.currently_visible)
841 continue;
842
843 if (row->decode_row == r.decode_row)
84002113 844 break;
9741d6e0
SA
845 else
846 y += r.height;
847 }
99029fda 848
84002113
SA
849 return y;
850}
99029fda 851
84002113
SA
852RowData* DecodeTrace::get_row_at_point(const QPoint &point)
853{
9741d6e0 854 int y = get_visual_y() - (default_row_height_ / 2);
84002113
SA
855
856 for (RowData& r : rows_) {
857 if (!r.currently_visible)
858 continue;
859
860 if ((point.y() >= y) && (point.y() < (int)(y + r.height)))
861 return &r;
862
863 y += r.height;
864 }
e2f90c50 865
84002113 866 return nullptr;
e2f90c50
SA
867}
868
117cdea3 869const QString DecodeTrace::get_annotation_at_point(const QPoint &point)
e2f90c50
SA
870{
871 using namespace pv::data::decode;
872
117cdea3
JH
873 if (!enabled())
874 return QString();
e2f90c50 875
117cdea3 876 const pair<uint64_t, uint64_t> sample_range =
67fb15bf 877 get_view_sample_range(point.x(), point.x() + 1);
84002113
SA
878 const RowData* r = get_row_at_point(point);
879
880 if (!r)
117cdea3 881 return QString();
e2f90c50 882
9741d6e0
SA
883 if (point.y() > (int)(get_row_y(r) + (annotation_height_ / 2)))
884 return QString();
885
be843692 886 vector<Annotation> annotations;
e2f90c50 887
84002113 888 decode_signal_->get_annotation_subset(annotations, r->decode_row,
72435789 889 current_segment_, sample_range.first, sample_range.second);
e2f90c50
SA
890
891 return (annotations.empty()) ?
892 QString() : annotations[0].annotations().front();
893}
894
873e8035 895void DecodeTrace::hover_point_changed(const QPoint &hp)
117cdea3 896{
0cbadf1c
SA
897 Trace::hover_point_changed(hp);
898
8dbbc7f0 899 assert(owner_);
eae6e30a 900
84002113 901 RowData* hover_row = get_row_at_point(hp);
eae6e30a 902
9741d6e0 903 // Row expansion marker handling
84002113
SA
904 for (RowData& r : rows_)
905 r.expand_marker_highlighted = false;
906
907 if (hover_row) {
908 int row_y = get_row_y(hover_row);
909 if ((hp.x() > 0) && (hp.x() < ArrowSize) &&
910 (hp.y() > (int)(row_y - ArrowSize)) && (hp.y() < (int)(row_y + ArrowSize)))
911 hover_row->expand_marker_highlighted = true;
53b652bd
SA
912 }
913
84002113
SA
914 // Tooltip handling
915 if (hp.x() > 0) {
916 QString ann = get_annotation_at_point(hp);
e2f90c50 917
9741d6e0
SA
918 if (!ann.isEmpty()) {
919 QFontMetrics m(QToolTip::font());
920 const QRect text_size = m.boundingRect(QRect(), 0, ann);
6e6881e2 921
9741d6e0
SA
922 // This is OS-specific and unfortunately we can't query it, so
923 // use an approximation to at least try to minimize the error.
924 const int padding = default_row_height_ + 8;
6e6881e2 925
9741d6e0
SA
926 // Make sure the tool tip doesn't overlap with the mouse cursor.
927 // If it did, the tool tip would constantly hide and re-appear.
928 // We also push it up by one row so that it appears above the
929 // decode trace, not below.
930 QPoint p = hp;
931 p.setX(hp.x() - (text_size.width() / 2) - padding);
e2f90c50 932
9741d6e0
SA
933 p.setY(get_row_y(hover_row) - default_row_height_ -
934 text_size.height() - padding);
6e6881e2 935
9741d6e0
SA
936 const View *const view = owner_->view();
937 assert(view);
938 QToolTip::showText(view->viewport()->mapToGlobal(p), ann);
6e6881e2 939
9741d6e0
SA
940 } else
941 QToolTip::hideText();
e2f90c50 942
84002113
SA
943 } else
944 QToolTip::hideText();
9555ca8b
SA
945}
946
613d097c
JH
947void DecodeTrace::create_decoder_form(int index,
948 shared_ptr<data::decode::Decoder> &dec, QWidget *parent,
949 QFormLayout *form)
7491a29f 950{
1cc1c8de 951 GlobalSettings settings;
7491a29f
JH
952
953 assert(dec);
954 const srd_decoder *const decoder = dec->decoder();
955 assert(decoder);
956
ff59fa2c
SA
957 const bool decoder_deletable = index > 0;
958
204bae45 959 pv::widgets::DecoderGroupBox *const group =
27e8df22 960 new pv::widgets::DecoderGroupBox(
580b4f25
UH
961 QString::fromUtf8(decoder->name),
962 tr("%1:\n%2").arg(QString::fromUtf8(decoder->longname),
963 QString::fromUtf8(decoder->desc)),
964 nullptr, decoder_deletable);
dd048a7e 965 group->set_decoder_visible(dec->shown());
613d097c 966
ff59fa2c
SA
967 if (decoder_deletable) {
968 delete_mapper_.setMapping(group, index);
969 connect(group, SIGNAL(delete_decoder()), &delete_mapper_, SLOT(map()));
970 }
613d097c 971
8dbbc7f0 972 show_hide_mapper_.setMapping(group, index);
dd048a7e 973 connect(group, SIGNAL(show_hide_decoder()),
8dbbc7f0 974 &show_hide_mapper_, SLOT(map()));
dd048a7e 975
204bae45
JH
976 QFormLayout *const decoder_form = new QFormLayout;
977 group->add_layout(decoder_form);
7491a29f 978
47747218 979 const vector<DecodeChannel> channels = decode_signal_->get_channels();
407c9ebe 980
9f97b357 981 // Add the channels
7a0d99e6 982 for (const DecodeChannel& ch : channels) {
9f97b357
SA
983 // Ignore channels not part of the decoder we create the form for
984 if (ch.decoder_ != dec)
985 continue;
407c9ebe 986
9f97b357
SA
987 QComboBox *const combo = create_channel_selector(parent, &ch);
988 QComboBox *const combo_init_state = create_channel_selector_init_state(parent, &ch);
407c9ebe 989
9f97b357
SA
990 channel_id_map_[combo] = ch.id;
991 init_state_map_[combo_init_state] = ch.id;
407c9ebe 992
7491a29f 993 connect(combo, SIGNAL(currentIndexChanged(int)),
6ac6242b 994 this, SLOT(on_channel_selected(int)));
9f97b357
SA
995 connect(combo_init_state, SIGNAL(currentIndexChanged(int)),
996 this, SLOT(on_init_state_changed(int)));
407c9ebe
UH
997
998 QHBoxLayout *const hlayout = new QHBoxLayout;
999 hlayout->addWidget(combo);
9f97b357 1000 hlayout->addWidget(combo_init_state);
407c9ebe 1001
1cc1c8de 1002 if (!settings.value(GlobalSettings::Key_Dec_InitialStateConfigurable).toBool())
9f97b357 1003 combo_init_state->hide();
7491a29f 1004
9f97b357
SA
1005 const QString required_flag = ch.is_optional ? QString() : QString("*");
1006 decoder_form->addRow(tr("<b>%1</b> (%2) %3")
1007 .arg(ch.name, ch.desc, required_flag), hlayout);
7491a29f
JH
1008 }
1009
1010 // Add the options
3cc9ad7b 1011 shared_ptr<binding::Decoder> binding(
946b52e1 1012 new binding::Decoder(decode_signal_, dec));
204bae45 1013 binding->add_properties_to_form(decoder_form, true);
7491a29f 1014
8dbbc7f0 1015 bindings_.push_back(binding);
204bae45
JH
1016
1017 form->addRow(group);
8dbbc7f0 1018 decoder_forms_.push_back(group);
7491a29f
JH
1019}
1020
9f97b357 1021QComboBox* DecodeTrace::create_channel_selector(QWidget *parent, const DecodeChannel *ch)
4e5a4405 1022{
47e9e7bb 1023 const auto sigs(session_.signalbases());
78b0af3e 1024
9f97b357 1025 // Sort signals in natural order
47e9e7bb 1026 vector< shared_ptr<data::SignalBase> > sig_list(sigs.begin(), sigs.end());
6f925ba9 1027 sort(sig_list.begin(), sig_list.end(),
47e9e7bb
SA
1028 [](const shared_ptr<data::SignalBase> &a,
1029 const shared_ptr<data::SignalBase> &b) {
1030 return strnatcasecmp(a->name().toStdString(),
1031 b->name().toStdString()) < 0; });
4e5a4405 1032
4e5a4405
JH
1033 QComboBox *selector = new QComboBox(parent);
1034
4c60462b 1035 selector->addItem("-", qVariantFromValue((void*)nullptr));
4e5a4405 1036
9f97b357 1037 if (!ch->assigned_signal)
4e5a4405
JH
1038 selector->setCurrentIndex(0);
1039
47e9e7bb
SA
1040 for (const shared_ptr<data::SignalBase> &b : sig_list) {
1041 assert(b);
79c4a9c8 1042 if (b->logic_data() && b->enabled()) {
47e9e7bb
SA
1043 selector->addItem(b->name(),
1044 qVariantFromValue((void*)b.get()));
5da5d081 1045
9f97b357
SA
1046 if (ch->assigned_signal == b.get())
1047 selector->setCurrentIndex(selector->count() - 1);
4e5a4405
JH
1048 }
1049 }
1050
1051 return selector;
1052}
1053
9f97b357
SA
1054QComboBox* DecodeTrace::create_channel_selector_init_state(QWidget *parent,
1055 const DecodeChannel *ch)
407c9ebe
UH
1056{
1057 QComboBox *selector = new QComboBox(parent);
1058
1059 selector->addItem("0", qVariantFromValue((int)SRD_INITIAL_PIN_LOW));
1060 selector->addItem("1", qVariantFromValue((int)SRD_INITIAL_PIN_HIGH));
7df44935 1061 selector->addItem("X", qVariantFromValue((int)SRD_INITIAL_PIN_SAME_AS_SAMPLE0));
407c9ebe 1062
9f97b357 1063 selector->setCurrentIndex(ch->initial_pin_state);
407c9ebe
UH
1064
1065 selector->setToolTip("Initial (assumed) pin value before the first sample");
1066
1067 return selector;
1068}
1069
5a914348
SA
1070void DecodeTrace::export_annotations(vector<Annotation> *annotations) const
1071{
1072 using namespace pv::data::decode;
1073
1074 GlobalSettings settings;
1075 const QString dir = settings.value("MainWindow/SaveDirectory").toString();
1076
1077 const QString file_name = QFileDialog::getSaveFileName(
1078 owner_->view(), tr("Export annotations"), dir, tr("Text Files (*.txt);;All Files (*)"));
1079
1080 if (file_name.isEmpty())
1081 return;
1082
1083 QString format = settings.value(GlobalSettings::Key_Dec_ExportFormat).toString();
1084 const QString quote = format.contains("%q") ? "\"" : "";
1085 format = format.remove("%q");
1086
1087 QFile file(file_name);
1088 if (file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {
1089 QTextStream out_stream(&file);
1090
1091 for (Annotation &ann : *annotations) {
1092 const QString sample_range = QString("%1-%2") \
1093 .arg(QString::number(ann.start_sample()), QString::number(ann.end_sample()));
1094
1095 const QString class_name = quote + ann.row()->class_name() + quote;
1096
1097 QString all_ann_text;
1098 for (const QString &s : ann.annotations())
1099 all_ann_text = all_ann_text + quote + s + quote + ",";
1100 all_ann_text.chop(1);
1101
1102 const QString first_ann_text = quote + ann.annotations().front() + quote;
1103
1104 QString out_text = format;
1105 out_text = out_text.replace("%s", sample_range);
1106 out_text = out_text.replace("%d",
cbb2e4da 1107 quote + QString::fromUtf8(ann.row()->decoder()->name()) + quote);
5a914348
SA
1108 out_text = out_text.replace("%c", class_name);
1109 out_text = out_text.replace("%1", first_ann_text);
1110 out_text = out_text.replace("%a", all_ann_text);
1111 out_stream << out_text << '\n';
1112 }
1113
1114 if (out_stream.status() == QTextStream::Ok)
1115 return;
1116 }
1117
1118 QMessageBox msg(owner_->view());
970fca0d 1119 msg.setText(tr("Error") + "\n\n" + tr("File %1 could not be written to.").arg(file_name));
5a914348
SA
1120 msg.setStandardButtons(QMessageBox::Ok);
1121 msg.setIcon(QMessageBox::Warning);
1122 msg.exec();
1123}
1124
84002113
SA
1125void DecodeTrace::update_rows()
1126{
1127 lock_guard<mutex> lock(row_modification_mutex_);
1128
1129 QFontMetrics m(QApplication::font());
1130
1131 for (RowData& r : rows_)
1132 r.exists = false;
1133
1134 for (const Row& decode_row : decode_signal_->get_rows()) {
1135 // Find row in our list
1136 auto r_it = find_if(rows_.begin(), rows_.end(),
1137 [&](RowData& r){ return r.decode_row == decode_row; });
1138
1139 RowData* r = nullptr;
1140 if (r_it == rows_.end()) {
1141 // Row doesn't exist yet, create and append it
1142 RowData nr;
1143 nr.decode_row = decode_row;
1144 nr.height = default_row_height_;
1145 nr.currently_visible = false;
1146 nr.expand_marker_highlighted = false;
1147 nr.expanded = false;
1148
1149 rows_.push_back(nr);
1150 r = &rows_.back();
1151 } else
1152 r = &(*r_it);
1153
1154 r->exists = true;
1155
1156 const int w = m.boundingRect(r->decode_row.title()).width() + RowTitleMargin;
1157 r->title_width = w;
1158 }
1159
1160 // Remove any rows that no longer exist, obeying that iterators are invalidated
1161 bool any_exists;
1162 do {
1163 any_exists = false;
1164
1165 for (unsigned int i = 0; i < rows_.size(); i++)
1166 if (!rows_[i].exists) {
1167 rows_.erase(rows_.begin() + i);
1168 any_exists = true;
1169 break;
1170 }
1171 } while (any_exists);
1172}
1173
ab185f78
SA
1174void DecodeTrace::on_setting_changed(const QString &key, const QVariant &value)
1175{
945238ca
SA
1176 Trace::on_setting_changed(key, value);
1177
ab185f78 1178 if (key == GlobalSettings::Key_Dec_AlwaysShowAllRows) {
ab185f78
SA
1179 max_visible_rows_ = 0;
1180 always_show_all_rows_ = value.toBool();
1181 }
1182}
1183
ad908057 1184void DecodeTrace::on_new_annotations()
5b6ae103
SA
1185{
1186 if (!delayed_trace_updater_.isActive())
1187 delayed_trace_updater_.start();
1188}
1189
1190void DecodeTrace::on_delayed_trace_update()
9cef9567 1191{
8dbbc7f0 1192 if (owner_)
6e2c3c85 1193 owner_->row_item_appearance_changed(false, true);
9cef9567
JH
1194}
1195
eee3eab9
SA
1196void DecodeTrace::on_decode_reset()
1197{
eee3eab9 1198 max_visible_rows_ = 0;
84002113 1199 update_rows();
eee3eab9
SA
1200
1201 if (owner_)
1202 owner_->row_item_appearance_changed(false, true);
1203}
1204
1b56c646
SA
1205void DecodeTrace::on_decode_finished()
1206{
1207 if (owner_)
1208 owner_->row_item_appearance_changed(false, true);
1209}
1210
556259d2
SA
1211void DecodeTrace::on_pause_decode()
1212{
1213 if (decode_signal_->is_paused())
1214 decode_signal_->resume_decode();
1215 else
1216 decode_signal_->pause_decode();
1217}
1218
b9329558 1219void DecodeTrace::delete_pressed()
5ed1adf5
JH
1220{
1221 on_delete();
1222}
1223
b9329558 1224void DecodeTrace::on_delete()
c51482b3 1225{
ad908057 1226 session_.remove_decode_signal(decode_signal_);
c51482b3
JH
1227}
1228
6ac6242b 1229void DecodeTrace::on_channel_selected(int)
4e5a4405 1230{
9f97b357
SA
1231 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
1232
1233 // Determine signal that was selected
1234 const data::SignalBase *signal =
1235 (data::SignalBase*)cb->itemData(cb->currentIndex()).value<void*>();
1236
1237 // Determine decode channel ID this combo box is the channel selector for
1238 const uint16_t id = channel_id_map_.at(cb);
1239
1240 decode_signal_->assign_signal(id, signal);
1241}
1242
1243void DecodeTrace::on_channels_updated()
1244{
1245 if (owner_)
1246 owner_->row_item_appearance_changed(false, true);
4e5a4405
JH
1247}
1248
9f97b357 1249void DecodeTrace::on_init_state_changed(int)
407c9ebe 1250{
9f97b357
SA
1251 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
1252
1253 // Determine inital pin state that was selected
1254 int init_state = cb->itemData(cb->currentIndex()).value<int>();
1255
1256 // Determine decode channel ID this combo box is the channel selector for
1257 const uint16_t id = init_state_map_.at(cb);
1258
1259 decode_signal_->set_initial_pin_state(id, init_state);
407c9ebe
UH
1260}
1261
7491a29f
JH
1262void DecodeTrace::on_stack_decoder(srd_decoder *decoder)
1263{
ad908057 1264 decode_signal_->stack_decoder(decoder);
84002113 1265 update_rows();
37fd11b1
JH
1266
1267 create_popup_form();
7491a29f
JH
1268}
1269
613d097c
JH
1270void DecodeTrace::on_delete_decoder(int index)
1271{
ad908057 1272 decode_signal_->remove_decoder(index);
84002113 1273 update_rows();
613d097c 1274
84002113 1275 // Force re-calculation of the trace height
ded43869
SA
1276 max_visible_rows_ = 0;
1277 owner_->extents_changed(false, true);
1278
c063290a 1279 create_popup_form();
613d097c
JH
1280}
1281
dd048a7e
JH
1282void DecodeTrace::on_show_hide_decoder(int index)
1283{
ad908057 1284 const bool state = decode_signal_->toggle_decoder_visibility(index);
dd048a7e 1285
8dbbc7f0 1286 assert(index < (int)decoder_forms_.size());
ad908057 1287 decoder_forms_[index]->set_decoder_visible(state);
dd048a7e 1288
ded43869
SA
1289 if (!state) {
1290 // Force re-calculation of the trace height, see paint_mid()
1291 max_visible_rows_ = 0;
1292 owner_->extents_changed(false, true);
1293 }
1294
8dbbc7f0 1295 if (owner_)
6e2c3c85 1296 owner_->row_item_appearance_changed(false, true);
dd048a7e
JH
1297}
1298
c764c995
SA
1299void DecodeTrace::on_copy_annotation_to_clipboard()
1300{
1301 using namespace pv::data::decode;
1302
1303 if (!selected_row_)
1304 return;
1305
1306 vector<Annotation> *annotations = new vector<Annotation>();
1307
1308 decode_signal_->get_annotation_subset(*annotations, *selected_row_,
1309 current_segment_, selected_sample_range_.first, selected_sample_range_.first);
1310
1311 if (annotations->empty())
1312 return;
1313
628b45cc 1314 QClipboard *clipboard = QApplication::clipboard();
41aaa675
SA
1315 clipboard->setText(annotations->front().annotations().front(), QClipboard::Clipboard);
1316
1317 if (clipboard->supportsSelection())
1318 clipboard->setText(annotations->front().annotations().front(), QClipboard::Selection);
c764c995
SA
1319
1320 delete annotations;
1321}
1322
be843692
SA
1323void DecodeTrace::on_export_row()
1324{
99ba5f28 1325 selected_sample_range_ = make_pair(0, numeric_limits<uint64_t>::max());
be843692
SA
1326 on_export_row_from_here();
1327}
1328
5a914348
SA
1329void DecodeTrace::on_export_all_rows()
1330{
99ba5f28
SA
1331 selected_sample_range_ = make_pair(0, numeric_limits<uint64_t>::max());
1332 on_export_all_rows_from_here();
1333}
1334
1335void DecodeTrace::on_export_row_with_cursor()
1336{
1337 const View *view = owner_->view();
1338 assert(view);
1339
1340 if (!view->cursors()->enabled())
1341 return;
1342
1343 const double samplerate = session_.get_samplerate();
1344
1345 const pv::util::Timestamp& start_time = view->cursors()->first()->time();
1346 const pv::util::Timestamp& end_time = view->cursors()->second()->time();
1347
1348 const uint64_t start_sample = (uint64_t)max(
a20c1fcc 1349 0.0, start_time.convert_to<double>() * samplerate);
99ba5f28 1350 const uint64_t end_sample = (uint64_t)max(
a20c1fcc 1351 0.0, end_time.convert_to<double>() * samplerate);
99ba5f28
SA
1352
1353 // Are both cursors negative and thus were clamped to 0?
1354 if ((start_sample == 0) && (end_sample == 0))
1355 return;
1356
1357 selected_sample_range_ = make_pair(start_sample, end_sample);
1358 on_export_row_from_here();
1359}
1360
1361void DecodeTrace::on_export_all_rows_with_cursor()
1362{
1363 const View *view = owner_->view();
1364 assert(view);
1365
1366 if (!view->cursors()->enabled())
1367 return;
1368
1369 const double samplerate = session_.get_samplerate();
1370
1371 const pv::util::Timestamp& start_time = view->cursors()->first()->time();
1372 const pv::util::Timestamp& end_time = view->cursors()->second()->time();
1373
1374 const uint64_t start_sample = (uint64_t)max(
a20c1fcc 1375 0.0, start_time.convert_to<double>() * samplerate);
99ba5f28 1376 const uint64_t end_sample = (uint64_t)max(
a20c1fcc 1377 0.0, end_time.convert_to<double>() * samplerate);
99ba5f28
SA
1378
1379 // Are both cursors negative and thus were clamped to 0?
1380 if ((start_sample == 0) && (end_sample == 0))
1381 return;
1382
1383 selected_sample_range_ = make_pair(start_sample, end_sample);
5a914348
SA
1384 on_export_all_rows_from_here();
1385}
1386
be843692
SA
1387void DecodeTrace::on_export_row_from_here()
1388{
1389 using namespace pv::data::decode;
1390
1391 if (!selected_row_)
1392 return;
1393
5a914348 1394 vector<Annotation> *annotations = new vector<Annotation>();
be843692 1395
5a914348 1396 decode_signal_->get_annotation_subset(*annotations, *selected_row_,
99ba5f28 1397 current_segment_, selected_sample_range_.first, selected_sample_range_.second);
be843692 1398
5a914348 1399 if (annotations->empty())
be843692
SA
1400 return;
1401
5a914348
SA
1402 export_annotations(annotations);
1403 delete annotations;
1404}
1ed996b4 1405
5a914348
SA
1406void DecodeTrace::on_export_all_rows_from_here()
1407{
1408 using namespace pv::data::decode;
1ed996b4 1409
5a914348 1410 vector<Annotation> *annotations = new vector<Annotation>();
1ed996b4 1411
5a914348 1412 decode_signal_->get_annotation_subset(*annotations, current_segment_,
99ba5f28 1413 selected_sample_range_.first, selected_sample_range_.second);
be843692 1414
5a914348
SA
1415 if (!annotations->empty())
1416 export_annotations(annotations);
be843692 1417
5a914348 1418 delete annotations;
be843692
SA
1419}
1420
1573bf16 1421} // namespace trace
f4e57597 1422} // namespace views
55d3603d 1423} // namespace pv