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