]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/view.cpp
View: Change the type of tick_period to pv::util::Timestamp
[pulseview.git] / pv / view / view.cpp
... / ...
CommitLineData
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifdef ENABLE_DECODE
22#include <libsigrokdecode/libsigrokdecode.h>
23#endif
24
25#include <extdef.h>
26
27#include <algorithm>
28#include <cassert>
29#include <climits>
30#include <cmath>
31#include <iterator>
32#include <mutex>
33#include <unordered_set>
34
35#include <QApplication>
36#include <QEvent>
37#include <QFontMetrics>
38#include <QMouseEvent>
39#include <QScrollBar>
40
41#include <libsigrokcxx/libsigrokcxx.hpp>
42
43#include "decodetrace.hpp"
44#include "header.hpp"
45#include "logicsignal.hpp"
46#include "ruler.hpp"
47#include "signal.hpp"
48#include "tracegroup.hpp"
49#include "view.hpp"
50#include "viewport.hpp"
51
52#include "pv/session.hpp"
53#include "pv/devices/device.hpp"
54#include "pv/data/logic.hpp"
55#include "pv/data/logicsegment.hpp"
56#include "pv/util.hpp"
57
58using boost::shared_lock;
59using boost::shared_mutex;
60
61using pv::data::SignalData;
62using pv::data::Segment;
63using pv::util::format_time;
64using pv::util::TimeUnit;
65using pv::util::Timestamp;
66
67using std::deque;
68using std::dynamic_pointer_cast;
69using std::inserter;
70using std::list;
71using std::lock_guard;
72using std::max;
73using std::make_pair;
74using std::min;
75using std::pair;
76using std::set;
77using std::set_difference;
78using std::shared_ptr;
79using std::unordered_map;
80using std::unordered_set;
81using std::vector;
82using std::weak_ptr;
83
84namespace pv {
85namespace view {
86
87const Timestamp View::MaxScale("1e9");
88const Timestamp View::MinScale("1e-12");
89
90const int View::MaxScrollValue = INT_MAX / 2;
91const int View::MaxViewAutoUpdateRate = 25; // No more than 25 Hz with sticky scrolling
92
93const int View::ScaleUnits[3] = {1, 2, 5};
94
95View::View(Session &session, QWidget *parent) :
96 QAbstractScrollArea(parent),
97 session_(session),
98 viewport_(new Viewport(*this)),
99 ruler_(new Ruler(*this)),
100 header_(new Header(*this)),
101 scale_(1e-3),
102 offset_(0),
103 updating_scroll_(false),
104 sticky_scrolling_(false), // Default setting is set in MainWindow::setup_ui()
105 always_zoom_to_fit_(false),
106 tick_period_(0),
107 tick_prefix_(pv::util::SIPrefix::yocto),
108 tick_precision_(0),
109 time_unit_(util::TimeUnit::Time),
110 show_cursors_(false),
111 cursors_(new CursorPair(*this)),
112 next_flag_text_('A'),
113 hover_point_(-1, -1)
114{
115 connect(horizontalScrollBar(), SIGNAL(valueChanged(int)),
116 this, SLOT(h_scroll_value_changed(int)));
117 connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
118 this, SLOT(v_scroll_value_changed()));
119
120 connect(&session_, SIGNAL(signals_changed()),
121 this, SLOT(signals_changed()));
122 connect(&session_, SIGNAL(capture_state_changed(int)),
123 this, SLOT(capture_state_updated(int)));
124 connect(&session_, SIGNAL(data_received()),
125 this, SLOT(data_updated()));
126 connect(&session_, SIGNAL(frame_ended()),
127 this, SLOT(data_updated()));
128
129 connect(header_, SIGNAL(selection_changed()),
130 ruler_, SLOT(clear_selection()));
131 connect(ruler_, SIGNAL(selection_changed()),
132 header_, SLOT(clear_selection()));
133
134 connect(header_, SIGNAL(selection_changed()),
135 this, SIGNAL(selection_changed()));
136 connect(ruler_, SIGNAL(selection_changed()),
137 this, SIGNAL(selection_changed()));
138
139 connect(this, SIGNAL(hover_point_changed()),
140 this, SLOT(on_hover_point_changed()));
141
142 connect(&lazy_event_handler_, SIGNAL(timeout()),
143 this, SLOT(process_sticky_events()));
144 lazy_event_handler_.setSingleShot(true);
145
146 connect(&delayed_view_updater_, SIGNAL(timeout()),
147 this, SLOT(perform_delayed_view_update()));
148 delayed_view_updater_.setSingleShot(true);
149 delayed_view_updater_.setInterval(1000 / MaxViewAutoUpdateRate);
150
151 setViewport(viewport_);
152
153 viewport_->installEventFilter(this);
154 ruler_->installEventFilter(this);
155 header_->installEventFilter(this);
156
157 // Trigger the initial event manually. The default device has signals
158 // which were created before this object came into being
159 signals_changed();
160
161 // make sure the transparent widgets are on the top
162 ruler_->raise();
163 header_->raise();
164
165 // Update the zoom state
166 calculate_tick_spacing();
167}
168
169Session& View::session()
170{
171 return session_;
172}
173
174const Session& View::session() const
175{
176 return session_;
177}
178
179View* View::view()
180{
181 return this;
182}
183
184const View* View::view() const
185{
186 return this;
187}
188
189Viewport* View::viewport()
190{
191 return viewport_;
192}
193
194const Viewport* View::viewport() const
195{
196 return viewport_;
197}
198
199vector< shared_ptr<TimeItem> > View::time_items() const
200{
201 const vector<shared_ptr<Flag>> f(flags());
202 vector<shared_ptr<TimeItem>> items(f.begin(), f.end());
203 items.push_back(cursors_);
204 items.push_back(cursors_->first());
205 items.push_back(cursors_->second());
206 return items;
207}
208
209double View::scale() const
210{
211 return scale_;
212}
213
214void View::set_scale(double scale)
215{
216 if (scale_ != scale) {
217 scale_ = scale;
218 Q_EMIT scale_changed();
219 }
220}
221
222const Timestamp& View::offset() const
223{
224 return offset_;
225}
226
227void View::set_offset(const pv::util::Timestamp& offset)
228{
229 if (offset_ != offset) {
230 offset_ = offset;
231 Q_EMIT offset_changed();
232 }
233}
234
235int View::owner_visual_v_offset() const
236{
237 return -verticalScrollBar()->sliderPosition();
238}
239
240void View::set_v_offset(int offset)
241{
242 verticalScrollBar()->setSliderPosition(offset);
243 header_->update();
244 viewport_->update();
245}
246
247unsigned int View::depth() const
248{
249 return 0;
250}
251
252pv::util::SIPrefix View::tick_prefix() const
253{
254 return tick_prefix_;
255}
256
257void View::set_tick_prefix(pv::util::SIPrefix tick_prefix)
258{
259 if (tick_prefix_ != tick_prefix) {
260 tick_prefix_ = tick_prefix;
261 Q_EMIT tick_prefix_changed();
262 }
263}
264
265unsigned int View::tick_precision() const
266{
267 return tick_precision_;
268}
269
270void View::set_tick_precision(unsigned tick_precision)
271{
272 if (tick_precision_ != tick_precision) {
273 tick_precision_ = tick_precision;
274 Q_EMIT tick_precision_changed();
275 }
276}
277
278const pv::util::Timestamp& View::tick_period() const
279{
280 return tick_period_;
281}
282
283void View::set_tick_period(const pv::util::Timestamp& tick_period)
284{
285 if (tick_period_ != tick_period) {
286 tick_period_ = tick_period;
287 Q_EMIT tick_period_changed();
288 }
289}
290
291TimeUnit View::time_unit() const
292{
293 return time_unit_;
294}
295
296void View::set_time_unit(pv::util::TimeUnit time_unit)
297{
298 if (time_unit_ != time_unit) {
299 time_unit_ = time_unit;
300 Q_EMIT time_unit_changed();
301 }
302}
303
304void View::zoom(double steps)
305{
306 zoom(steps, viewport_->width() / 2);
307}
308
309void View::zoom(double steps, int offset)
310{
311 set_zoom(scale_ * pow(3.0/2.0, -steps), offset);
312}
313
314void View::zoom_fit(bool gui_state)
315{
316 // Act as one-shot when stopped, toggle along with the GUI otherwise
317 if (session_.get_capture_state() == Session::Stopped) {
318 always_zoom_to_fit_ = false;
319 always_zoom_to_fit_changed(false);
320 } else {
321 always_zoom_to_fit_ = gui_state;
322 always_zoom_to_fit_changed(gui_state);
323 }
324
325 const pair<Timestamp, Timestamp> extents = get_time_extents();
326 const Timestamp delta = extents.second - extents.first;
327 if (delta < Timestamp("1e-12"))
328 return;
329
330 assert(viewport_);
331 const int w = viewport_->width();
332 if (w <= 0)
333 return;
334
335 const Timestamp scale = max(min(delta / w, MaxScale), MinScale);
336 set_scale_offset(scale.convert_to<double>(), extents.first);
337}
338
339void View::zoom_one_to_one()
340{
341 using pv::data::SignalData;
342
343 // Make a set of all the visible data objects
344 set< shared_ptr<SignalData> > visible_data = get_visible_data();
345 if (visible_data.empty())
346 return;
347
348 double samplerate = 0.0;
349 for (const shared_ptr<SignalData> d : visible_data) {
350 assert(d);
351 const vector< shared_ptr<Segment> > segments =
352 d->segments();
353 for (const shared_ptr<Segment> &s : segments)
354 samplerate = max(samplerate, s->samplerate());
355 }
356
357 if (samplerate == 0.0)
358 return;
359
360 assert(viewport_);
361 const int w = viewport_->width();
362 if (w <= 0)
363 return;
364
365 set_zoom(1.0 / samplerate, w / 2);
366}
367
368void View::set_scale_offset(double scale, const Timestamp& offset)
369{
370 // Disable sticky scrolling / always zoom to fit when acquisition runs
371 // and user drags the viewport
372 if ((scale_ == scale) && (offset_ != offset) &&
373 (session_.get_capture_state() == Session::Running)) {
374
375 if (sticky_scrolling_) {
376 sticky_scrolling_ = false;
377 sticky_scrolling_changed(false);
378 }
379
380 if (always_zoom_to_fit_) {
381 always_zoom_to_fit_ = false;
382 always_zoom_to_fit_changed(false);
383 }
384 }
385
386 set_scale(scale);
387 set_offset(offset);
388
389 calculate_tick_spacing();
390
391 update_scroll();
392 ruler_->update();
393 viewport_->update();
394}
395
396set< shared_ptr<SignalData> > View::get_visible_data() const
397{
398 shared_lock<shared_mutex> lock(session().signals_mutex());
399 const unordered_set< shared_ptr<Signal> > &sigs(session().signals());
400
401 // Make a set of all the visible data objects
402 set< shared_ptr<SignalData> > visible_data;
403 for (const shared_ptr<Signal> sig : sigs)
404 if (sig->enabled())
405 visible_data.insert(sig->data());
406
407 return visible_data;
408}
409
410pair<Timestamp, Timestamp> View::get_time_extents() const
411{
412 boost::optional<Timestamp> left_time, right_time;
413 const set< shared_ptr<SignalData> > visible_data = get_visible_data();
414 for (const shared_ptr<SignalData> d : visible_data)
415 {
416 const vector< shared_ptr<Segment> > segments =
417 d->segments();
418 for (const shared_ptr<Segment> &s : segments) {
419 double samplerate = s->samplerate();
420 samplerate = (samplerate <= 0.0) ? 1.0 : samplerate;
421
422 const Timestamp start_time = s->start_time();
423 left_time = left_time ?
424 min(*left_time, start_time) :
425 start_time;
426 right_time = right_time ?
427 max(*right_time, start_time + d->max_sample_count() / samplerate) :
428 start_time + d->max_sample_count() / samplerate;
429 }
430 }
431
432 if (!left_time || !right_time)
433 return make_pair(0, 0);
434
435 assert(*left_time < *right_time);
436 return make_pair(*left_time, *right_time);
437}
438
439void View::enable_sticky_scrolling(bool state)
440{
441 sticky_scrolling_ = state;
442}
443
444bool View::cursors_shown() const
445{
446 return show_cursors_;
447}
448
449void View::show_cursors(bool show)
450{
451 show_cursors_ = show;
452 ruler_->update();
453 viewport_->update();
454}
455
456void View::centre_cursors()
457{
458 const double time_width = scale_ * viewport_->width();
459 cursors_->first()->set_time(offset_ + time_width * 0.4);
460 cursors_->second()->set_time(offset_ + time_width * 0.6);
461 ruler_->update();
462 viewport_->update();
463}
464
465std::shared_ptr<CursorPair> View::cursors() const
466{
467 return cursors_;
468}
469
470void View::add_flag(const Timestamp& time)
471{
472 flags_.push_back(shared_ptr<Flag>(new Flag(*this, time,
473 QString("%1").arg(next_flag_text_))));
474 next_flag_text_ = (next_flag_text_ >= 'Z') ? 'A' :
475 (next_flag_text_ + 1);
476 time_item_appearance_changed(true, true);
477}
478
479void View::remove_flag(std::shared_ptr<Flag> flag)
480{
481 flags_.remove(flag);
482 time_item_appearance_changed(true, true);
483}
484
485vector< std::shared_ptr<Flag> > View::flags() const
486{
487 vector< std::shared_ptr<Flag> > flags(flags_.begin(), flags_.end());
488 stable_sort(flags.begin(), flags.end(),
489 [](const shared_ptr<Flag> &a, const shared_ptr<Flag> &b) {
490 return a->time() < b->time();
491 });
492
493 return flags;
494}
495
496const QPoint& View::hover_point() const
497{
498 return hover_point_;
499}
500
501void View::update_viewport()
502{
503 assert(viewport_);
504 viewport_->update();
505 header_->update();
506}
507
508void View::restack_all_row_items()
509{
510 // Make a list of owners that is sorted from deepest first
511 const auto owners = list_row_item_owners();
512 vector< RowItemOwner* > sorted_owners(owners.begin(), owners.end());
513 sort(sorted_owners.begin(), sorted_owners.end(),
514 [](const RowItemOwner* a, const RowItemOwner *b) {
515 return a->depth() > b->depth(); });
516
517 // Restack the items recursively
518 for (auto &o : sorted_owners)
519 o->restack_items();
520
521 // Animate the items to their destination
522 for (const auto &r : *this)
523 r->animate_to_layout_v_offset();
524}
525
526void View::get_scroll_layout(double &length, Timestamp &offset) const
527{
528 const pair<Timestamp, Timestamp> extents = get_time_extents();
529 length = ((extents.second - extents.first) / scale_).convert_to<double>();
530 offset = offset_ / scale_;
531}
532
533void View::set_zoom(double scale, int offset)
534{
535 // Reset the "always zoom to fit" feature as the user changed the zoom
536 always_zoom_to_fit_ = false;
537 always_zoom_to_fit_changed(false);
538
539 const Timestamp cursor_offset = offset_ + scale_ * offset;
540 const Timestamp new_scale = max(min(Timestamp(scale), MaxScale), MinScale);
541 const Timestamp new_offset = cursor_offset - new_scale * offset;
542 set_scale_offset(new_scale.convert_to<double>(), new_offset);
543}
544
545void View::calculate_tick_spacing()
546{
547 const double SpacingIncrement = 10.0f;
548 const double MinValueSpacing = 40.0f;
549
550 // Figure out the highest numeric value visible on a label
551 const QSize areaSize = viewport_->size();
552 const Timestamp max_time = max(fabs(offset_),
553 fabs(offset_ + scale_ * areaSize.width()));
554
555 double min_width = SpacingIncrement;
556 double label_width, tick_period_width;
557
558 QFontMetrics m(QApplication::font());
559
560 do {
561 const double min_period = scale_ * min_width;
562
563 const int order = (int)floorf(log10f(min_period));
564 const pv::util::Timestamp order_decimal =
565 pow(pv::util::Timestamp(10), order);
566
567 // Allow for a margin of error so that a scale unit of 1 can be used.
568 // Otherwise, for a SU of 1 the tick period will almost always be below
569 // the min_period by a small amount - and thus skipped in favor of 2.
570 // Note: margin assumes that SU[0] and SU[1] contain the smallest values
571 double tp_margin = (ScaleUnits[0] + ScaleUnits[1]) / 2.0;
572 double tp_with_margin;
573 unsigned int unit = 0;
574
575 do {
576 tp_with_margin = order_decimal.convert_to<double>() *
577 (ScaleUnits[unit++] + tp_margin);
578 } while (tp_with_margin < min_period && unit < countof(ScaleUnits));
579
580 set_tick_period(order_decimal * ScaleUnits[unit - 1]);
581 set_tick_prefix(static_cast<pv::util::SIPrefix>(
582 (order - pv::util::exponent(pv::util::SIPrefix::yocto)) / 3));
583
584 // Precision is the number of fractional digits required, not
585 // taking the prefix into account (and it must never be negative)
586 set_tick_precision(std::max(
587 ceil(log10(1 / tick_period_)).convert_to<int>(), 0));
588
589 tick_period_width = (tick_period_ / scale_).convert_to<double>();
590
591 const QString label_text =
592 format_time(max_time, tick_prefix_, time_unit_, tick_precision_);
593
594 label_width = m.boundingRect(0, 0, INT_MAX, INT_MAX,
595 Qt::AlignLeft | Qt::AlignTop, label_text).width() +
596 MinValueSpacing;
597
598 min_width += SpacingIncrement;
599 } while (tick_period_width < label_width);
600}
601
602void View::update_scroll()
603{
604 assert(viewport_);
605
606 const QSize areaSize = viewport_->size();
607
608 // Set the horizontal scroll bar
609 double length = 0;
610 Timestamp offset;
611 get_scroll_layout(length, offset);
612 length = max(length - areaSize.width(), 0.0);
613
614 int major_tick_distance = (tick_period_ / scale_).convert_to<int>();
615
616 horizontalScrollBar()->setPageStep(areaSize.width() / 2);
617 horizontalScrollBar()->setSingleStep(major_tick_distance);
618
619 updating_scroll_ = true;
620
621 if (length < MaxScrollValue) {
622 horizontalScrollBar()->setRange(0, length);
623 horizontalScrollBar()->setSliderPosition(offset.convert_to<double>());
624 } else {
625 horizontalScrollBar()->setRange(0, MaxScrollValue);
626 horizontalScrollBar()->setSliderPosition(
627 (offset_ * MaxScrollValue / (scale_ * length)).convert_to<double>());
628 }
629
630 updating_scroll_ = false;
631
632 // Set the vertical scrollbar
633 verticalScrollBar()->setPageStep(areaSize.height());
634 verticalScrollBar()->setSingleStep(areaSize.height() / 8);
635
636 const pair<int, int> extents = v_extents();
637 verticalScrollBar()->setRange(extents.first - (areaSize.height() / 2),
638 extents.second - (areaSize.height() / 2));
639}
640
641void View::update_layout()
642{
643 setViewportMargins(
644 header_->sizeHint().width() - pv::view::Header::BaselineOffset,
645 ruler_->sizeHint().height(), 0, 0);
646 ruler_->setGeometry(viewport_->x(), 0,
647 viewport_->width(), ruler_->extended_size_hint().height());
648 header_->setGeometry(0, viewport_->y(),
649 header_->extended_size_hint().width(), viewport_->height());
650 update_scroll();
651}
652
653void View::paint_label(QPainter &p, const QRect &rect, bool hover)
654{
655 (void)p;
656 (void)rect;
657 (void)hover;
658}
659
660QRectF View::label_rect(const QRectF &rect)
661{
662 (void)rect;
663 return QRectF();
664}
665
666RowItemOwner* View::find_prevalent_trace_group(
667 const shared_ptr<sigrok::ChannelGroup> &group,
668 const unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
669 &signal_map)
670{
671 assert(group);
672
673 unordered_set<RowItemOwner*> owners;
674 vector<RowItemOwner*> owner_list;
675
676 // Make a set and a list of all the owners
677 for (const auto &channel : group->channels()) {
678 const auto iter = signal_map.find(channel);
679 if (iter == signal_map.end())
680 continue;
681
682 RowItemOwner *const o = (*iter).second->owner();
683 owner_list.push_back(o);
684 owners.insert(o);
685 }
686
687 // Iterate through the list of owners, and find the most prevalent
688 size_t max_prevalence = 0;
689 RowItemOwner *prevalent_owner = nullptr;
690 for (RowItemOwner *owner : owners) {
691 const size_t prevalence = std::count_if(
692 owner_list.begin(), owner_list.end(),
693 [&](RowItemOwner *o) { return o == owner; });
694 if (prevalence > max_prevalence) {
695 max_prevalence = prevalence;
696 prevalent_owner = owner;
697 }
698 }
699
700 return prevalent_owner;
701}
702
703vector< shared_ptr<Trace> > View::extract_new_traces_for_channels(
704 const vector< shared_ptr<sigrok::Channel> > &channels,
705 const unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
706 &signal_map,
707 set< shared_ptr<Trace> > &add_list)
708{
709 vector< shared_ptr<Trace> > filtered_traces;
710
711 for (const auto &channel : channels)
712 {
713 const auto map_iter = signal_map.find(channel);
714 if (map_iter == signal_map.end())
715 continue;
716
717 shared_ptr<Trace> trace = (*map_iter).second;
718 const auto list_iter = add_list.find(trace);
719 if (list_iter == add_list.end())
720 continue;
721
722 filtered_traces.push_back(trace);
723 add_list.erase(list_iter);
724 }
725
726 return filtered_traces;
727}
728
729void View::determine_time_unit()
730{
731 // Check whether we know the sample rate and hence can use time as the unit
732 if (time_unit_ == util::TimeUnit::Samples) {
733 shared_lock<shared_mutex> lock(session().signals_mutex());
734 const unordered_set< shared_ptr<Signal> > &sigs(session().signals());
735
736 // Check all signals but...
737 for (const shared_ptr<Signal> signal : sigs) {
738 const shared_ptr<SignalData> data = signal->data();
739
740 // ...only check first segment of each
741 const vector< shared_ptr<Segment> > segments = data->segments();
742 if (!segments.empty())
743 if (segments[0]->samplerate()) {
744 set_time_unit(util::TimeUnit::Time);
745 break;
746 }
747 }
748 }
749}
750
751bool View::eventFilter(QObject *object, QEvent *event)
752{
753 const QEvent::Type type = event->type();
754 if (type == QEvent::MouseMove) {
755
756 const QMouseEvent *const mouse_event = (QMouseEvent*)event;
757 if (object == viewport_)
758 hover_point_ = mouse_event->pos();
759 else if (object == ruler_)
760 hover_point_ = QPoint(mouse_event->x(), 0);
761 else if (object == header_)
762 hover_point_ = QPoint(0, mouse_event->y());
763 else
764 hover_point_ = QPoint(-1, -1);
765
766 hover_point_changed();
767
768 } else if (type == QEvent::Leave) {
769 hover_point_ = QPoint(-1, -1);
770 hover_point_changed();
771 }
772
773 return QObject::eventFilter(object, event);
774}
775
776bool View::viewportEvent(QEvent *e)
777{
778 switch(e->type()) {
779 case QEvent::Paint:
780 case QEvent::MouseButtonPress:
781 case QEvent::MouseButtonRelease:
782 case QEvent::MouseButtonDblClick:
783 case QEvent::MouseMove:
784 case QEvent::Wheel:
785 case QEvent::TouchBegin:
786 case QEvent::TouchUpdate:
787 case QEvent::TouchEnd:
788 return false;
789
790 default:
791 return QAbstractScrollArea::viewportEvent(e);
792 }
793}
794
795void View::resizeEvent(QResizeEvent*)
796{
797 update_layout();
798}
799
800void View::row_item_appearance_changed(bool label, bool content)
801{
802 if (label)
803 header_->update();
804 if (content)
805 viewport_->update();
806}
807
808void View::time_item_appearance_changed(bool label, bool content)
809{
810 if (label)
811 ruler_->update();
812 if (content)
813 viewport_->update();
814}
815
816void View::extents_changed(bool horz, bool vert)
817{
818 sticky_events_ |=
819 (horz ? RowItemHExtentsChanged : 0) |
820 (vert ? RowItemVExtentsChanged : 0);
821 lazy_event_handler_.start();
822}
823
824void View::h_scroll_value_changed(int value)
825{
826 if (updating_scroll_)
827 return;
828
829 // Disable sticky scrolling when user moves the horizontal scroll bar
830 // during a running acquisition
831 if (sticky_scrolling_ && (session_.get_capture_state() == Session::Running)) {
832 sticky_scrolling_ = false;
833 sticky_scrolling_changed(false);
834 }
835
836 const int range = horizontalScrollBar()->maximum();
837 if (range < MaxScrollValue)
838 set_offset(scale_ * value);
839 else {
840 double length = 0;
841 Timestamp offset;
842 get_scroll_layout(length, offset);
843 set_offset(scale_ * length * value / MaxScrollValue);
844 }
845
846 ruler_->update();
847 viewport_->update();
848}
849
850void View::v_scroll_value_changed()
851{
852 header_->update();
853 viewport_->update();
854}
855
856void View::signals_changed()
857{
858 vector< shared_ptr<RowItem> > new_top_level_items;
859
860 const auto device = session_.device();
861 if (!device)
862 return;
863
864 shared_ptr<sigrok::Device> sr_dev = device->device();
865 assert(sr_dev);
866
867 // Make a list of traces that are being added, and a list of traces
868 // that are being removed
869 const set<shared_ptr<Trace>> prev_traces = list_by_type<Trace>();
870
871 shared_lock<shared_mutex> lock(session_.signals_mutex());
872 const unordered_set< shared_ptr<Signal> > &sigs(session_.signals());
873
874 set< shared_ptr<Trace> > traces(sigs.begin(), sigs.end());
875
876#ifdef ENABLE_DECODE
877 const vector< shared_ptr<DecodeTrace> > decode_traces(
878 session().get_decode_signals());
879 traces.insert(decode_traces.begin(), decode_traces.end());
880#endif
881
882 set< shared_ptr<Trace> > add_traces;
883 set_difference(traces.begin(), traces.end(),
884 prev_traces.begin(), prev_traces.end(),
885 inserter(add_traces, add_traces.begin()));
886
887 set< shared_ptr<Trace> > remove_traces;
888 set_difference(prev_traces.begin(), prev_traces.end(),
889 traces.begin(), traces.end(),
890 inserter(remove_traces, remove_traces.begin()));
891
892 // Make a look-up table of sigrok Channels to pulseview Signals
893 unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
894 signal_map;
895 for (const shared_ptr<Signal> &sig : sigs)
896 signal_map[sig->channel()] = sig;
897
898 // Populate channel groups
899 for (auto entry : sr_dev->channel_groups())
900 {
901 const shared_ptr<sigrok::ChannelGroup> &group = entry.second;
902
903 if (group->channels().size() <= 1)
904 continue;
905
906 // Find best trace group to add to
907 RowItemOwner *owner = find_prevalent_trace_group(
908 group, signal_map);
909
910 // If there is no trace group, create one
911 shared_ptr<TraceGroup> new_trace_group;
912 if (!owner) {
913 new_trace_group.reset(new TraceGroup());
914 owner = new_trace_group.get();
915 }
916
917 // Extract traces for the trace group, removing them from
918 // the add list
919 const vector< shared_ptr<Trace> > new_traces_in_group =
920 extract_new_traces_for_channels(group->channels(),
921 signal_map, add_traces);
922
923 // Add the traces to the group
924 const pair<int, int> prev_v_extents = owner->v_extents();
925 int offset = prev_v_extents.second - prev_v_extents.first;
926 for (shared_ptr<Trace> trace : new_traces_in_group) {
927 assert(trace);
928 owner->add_child_item(trace);
929
930 const pair<int, int> extents = trace->v_extents();
931 if (trace->enabled())
932 offset += -extents.first;
933 trace->force_to_v_offset(offset);
934 if (trace->enabled())
935 offset += extents.second;
936 }
937
938 // If this is a new group, enqueue it in the new top level
939 // items list
940 if (!new_traces_in_group.empty() && new_trace_group)
941 new_top_level_items.push_back(new_trace_group);
942 }
943
944 // Enqueue the remaining channels as free ungrouped traces
945 const vector< shared_ptr<Trace> > new_top_level_signals =
946 extract_new_traces_for_channels(sr_dev->channels(),
947 signal_map, add_traces);
948 new_top_level_items.insert(new_top_level_items.end(),
949 new_top_level_signals.begin(), new_top_level_signals.end());
950
951 // Enqueue any remaining traces i.e. decode traces
952 new_top_level_items.insert(new_top_level_items.end(),
953 add_traces.begin(), add_traces.end());
954
955 // Remove any removed traces
956 for (shared_ptr<Trace> trace : remove_traces) {
957 RowItemOwner *const owner = trace->owner();
958 assert(owner);
959 owner->remove_child_item(trace);
960 }
961
962 // Add and position the pending top levels items
963 for (auto item : new_top_level_items) {
964 add_child_item(item);
965
966 // Position the item after the last present item
967 int offset = v_extents().second;
968 const pair<int, int> extents = item->v_extents();
969 if (item->enabled())
970 offset += -extents.first;
971 item->force_to_v_offset(offset);
972 if (item->enabled())
973 offset += extents.second;
974 }
975
976 update_layout();
977
978 header_->update();
979 viewport_->update();
980}
981
982void View::capture_state_updated(int state)
983{
984 if (state == Session::Running)
985 set_time_unit(util::TimeUnit::Samples);
986
987 if (state == Session::Stopped) {
988 // After acquisition has stopped we need to re-calculate the ticks once
989 // as it's otherwise done when the user pans or zooms, which is too late
990 calculate_tick_spacing();
991
992 // Reset "always zoom to fit", the acquisition has stopped
993 if (always_zoom_to_fit_) {
994 always_zoom_to_fit_ = false;
995 always_zoom_to_fit_changed(false);
996 }
997 }
998}
999
1000void View::data_updated()
1001{
1002 if (always_zoom_to_fit_ || sticky_scrolling_) {
1003 if (!delayed_view_updater_.isActive())
1004 delayed_view_updater_.start();
1005 } else {
1006 determine_time_unit();
1007 update_scroll();
1008 ruler_->update();
1009 viewport_->update();
1010 }
1011}
1012
1013void View::perform_delayed_view_update()
1014{
1015 if (always_zoom_to_fit_)
1016 zoom_fit(true);
1017
1018 if (sticky_scrolling_) {
1019 // Make right side of the view sticky
1020 double length = 0;
1021 Timestamp offset;
1022 get_scroll_layout(length, offset);
1023
1024 const QSize areaSize = viewport_->size();
1025 length = max(length - areaSize.width(), 0.0);
1026
1027 set_offset(scale_ * length);
1028 }
1029
1030 determine_time_unit();
1031 update_scroll();
1032 ruler_->update();
1033 viewport_->update();
1034}
1035
1036void View::process_sticky_events()
1037{
1038 if (sticky_events_ & RowItemHExtentsChanged)
1039 update_layout();
1040 if (sticky_events_ & RowItemVExtentsChanged) {
1041 restack_all_row_items();
1042 update_scroll();
1043 }
1044
1045 // Clear the sticky events
1046 sticky_events_ = 0;
1047}
1048
1049void View::on_hover_point_changed()
1050{
1051 for (shared_ptr<RowItem> r : *this)
1052 r->hover_point_changed();
1053}
1054
1055} // namespace view
1056} // namespace pv