2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
22 #include <libsigrokdecode/libsigrokdecode.h>
31 #include <unordered_set>
33 #include <QApplication>
35 #include <QFontMetrics>
36 #include <QMouseEvent>
39 #include <libsigrok/libsigrok.hpp>
41 #include "cursorheader.hpp"
42 #include "decodetrace.hpp"
44 #include "logicsignal.hpp"
47 #include "tracegroup.hpp"
49 #include "viewport.hpp"
51 #include "pv/session.hpp"
52 #include "pv/data/logic.hpp"
53 #include "pv/data/logicsegment.hpp"
54 #include "pv/util.hpp"
56 using boost::shared_lock;
57 using boost::shared_mutex;
59 using pv::data::SignalData;
60 using pv::data::Segment;
61 using pv::util::format_time;
63 using std::back_inserter;
65 using std::dynamic_pointer_cast;
67 using std::lock_guard;
73 using std::shared_ptr;
74 using std::unordered_map;
75 using std::unordered_set;
82 const double View::MaxScale = 1e9;
83 const double View::MinScale = 1e-15;
85 const int View::MaxScrollValue = INT_MAX / 2;
87 const int View::ScaleUnits[3] = {1, 2, 5};
89 const QColor View::CursorAreaColour(220, 231, 243);
91 const QSizeF View::LabelPadding(4, 0);
93 View::View(Session &session, QWidget *parent) :
94 QAbstractScrollArea(parent),
96 viewport_(new Viewport(*this)),
97 ruler_(new Ruler(*this)),
98 cursorheader_(new CursorHeader(*this)),
99 header_(new Header(*this)),
103 updating_scroll_(false),
106 show_cursors_(false),
107 cursors_(new CursorPair(*this)),
110 connect(horizontalScrollBar(), SIGNAL(valueChanged(int)),
111 this, SLOT(h_scroll_value_changed(int)));
112 connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
113 this, SLOT(v_scroll_value_changed(int)));
115 connect(&session_, SIGNAL(signals_changed()),
116 this, SLOT(signals_changed()));
117 connect(&session_, SIGNAL(capture_state_changed(int)),
118 this, SLOT(data_updated()));
119 connect(&session_, SIGNAL(data_received()),
120 this, SLOT(data_updated()));
121 connect(&session_, SIGNAL(frame_ended()),
122 this, SLOT(data_updated()));
124 connect(cursors_->first().get(), SIGNAL(time_changed()),
125 this, SLOT(marker_time_changed()));
126 connect(cursors_->second().get(), SIGNAL(time_changed()),
127 this, SLOT(marker_time_changed()));
129 connect(header_, SIGNAL(signals_moved()),
130 this, SLOT(on_signals_moved()));
132 connect(header_, SIGNAL(selection_changed()),
133 cursorheader_, SLOT(clear_selection()));
134 connect(cursorheader_, SIGNAL(selection_changed()),
135 header_, SLOT(clear_selection()));
137 connect(header_, SIGNAL(selection_changed()),
138 this, SIGNAL(selection_changed()));
139 connect(cursorheader_, SIGNAL(selection_changed()),
140 this, SIGNAL(selection_changed()));
142 connect(this, SIGNAL(hover_point_changed()),
143 this, SLOT(on_hover_point_changed()));
145 connect(&lazy_event_handler_, SIGNAL(timeout()),
146 this, SLOT(process_sticky_events()));
147 lazy_event_handler_.setSingleShot(true);
149 setViewport(viewport_);
151 viewport_->installEventFilter(this);
152 ruler_->installEventFilter(this);
153 cursorheader_->installEventFilter(this);
154 header_->installEventFilter(this);
156 // Trigger the initial event manually. The default device has signals
157 // which were created before this object came into being
160 // make sure the transparent widgets are on the top
161 cursorheader_->raise();
164 // Update the zoom state
165 calculate_tick_spacing();
168 Session& View::session()
173 const Session& View::session() const
183 const View* View::view() const
188 Viewport* View::viewport()
193 const Viewport* View::viewport() const
198 vector< shared_ptr<TimeItem> > View::time_items() const
200 vector< shared_ptr<TimeItem> > items;
201 items.push_back(cursors_);
202 items.push_back(cursors_->first());
203 items.push_back(cursors_->second());
207 double View::scale() const
212 double View::offset() const
217 int View::owner_visual_v_offset() const
222 unsigned int View::depth() const
227 unsigned int View::tick_prefix() const
232 double View::tick_period() const
237 void View::zoom(double steps)
239 zoom(steps, viewport_->width() / 2);
242 void View::zoom(double steps, int offset)
244 set_zoom(scale_ * pow(3.0/2.0, -steps), offset);
247 void View::zoom_fit()
249 const pair<double, double> extents = get_time_extents();
250 const double delta = extents.second - extents.first;
255 const int w = viewport_->width();
259 const double scale = max(min(delta / w, MaxScale), MinScale);
260 set_scale_offset(scale, extents.first);
263 void View::zoom_one_to_one()
265 using pv::data::SignalData;
267 // Make a set of all the visible data objects
268 set< shared_ptr<SignalData> > visible_data = get_visible_data();
269 if (visible_data.empty())
272 double samplerate = 0.0;
273 for (const shared_ptr<SignalData> d : visible_data) {
275 const vector< shared_ptr<Segment> > segments =
277 for (const shared_ptr<Segment> &s : segments)
278 samplerate = max(samplerate, s->samplerate());
281 if (samplerate == 0.0)
285 const int w = viewport_->width();
289 set_zoom(1.0 / samplerate, w / 2);
292 void View::set_scale_offset(double scale, double offset)
297 calculate_tick_spacing();
301 cursorheader_->update();
303 scale_offset_changed();
306 set< shared_ptr<SignalData> > View::get_visible_data() const
308 shared_lock<shared_mutex> lock(session().signals_mutex());
309 const vector< shared_ptr<Signal> > &sigs(session().signals());
311 // Make a set of all the visible data objects
312 set< shared_ptr<SignalData> > visible_data;
313 for (const shared_ptr<Signal> sig : sigs)
315 visible_data.insert(sig->data());
320 pair<double, double> View::get_time_extents() const
322 double left_time = DBL_MAX, right_time = DBL_MIN;
323 const set< shared_ptr<SignalData> > visible_data = get_visible_data();
324 for (const shared_ptr<SignalData> d : visible_data)
326 const vector< shared_ptr<Segment> > segments =
328 for (const shared_ptr<Segment> &s : segments) {
329 double samplerate = s->samplerate();
330 samplerate = (samplerate <= 0.0) ? 1.0 : samplerate;
332 const double start_time = s->start_time();
333 left_time = min(left_time, start_time);
334 right_time = max(right_time, start_time +
335 d->get_max_sample_count() / samplerate);
339 if (left_time == DBL_MAX && right_time == DBL_MIN)
340 return make_pair(0.0, 0.0);
342 assert(left_time < right_time);
343 return make_pair(left_time, right_time);
346 bool View::cursors_shown() const
348 return show_cursors_;
351 void View::show_cursors(bool show)
353 show_cursors_ = show;
354 cursorheader_->update();
358 void View::centre_cursors()
360 const double time_width = scale_ * viewport_->width();
361 cursors_->first()->set_time(offset_ + time_width * 0.4);
362 cursors_->second()->set_time(offset_ + time_width * 0.6);
363 cursorheader_->update();
367 std::shared_ptr<CursorPair> View::cursors() const
372 const QPoint& View::hover_point() const
377 void View::update_viewport()
384 void View::restack_all_row_items()
386 // Make a set of owners
387 unordered_set< RowItemOwner* > owners;
388 for (const auto &r : *this)
389 owners.insert(r->owner());
391 // Make a list that is sorted from deepest first
392 vector< RowItemOwner* > sorted_owners(owners.begin(), owners.end());
393 sort(sorted_owners.begin(), sorted_owners.end(),
394 [](const RowItemOwner* a, const RowItemOwner *b) {
395 return a->depth() > b->depth(); });
397 // Restack the items recursively
398 for (auto &o : sorted_owners)
401 // Animate the items to their destination
402 for (const auto &r : *this)
403 r->animate_to_layout_v_offset();
406 void View::get_scroll_layout(double &length, double &offset) const
408 const pair<double, double> extents = get_time_extents();
409 length = (extents.second - extents.first) / scale_;
410 offset = offset_ / scale_;
413 void View::set_zoom(double scale, int offset)
415 const double cursor_offset = offset_ + scale_ * offset;
416 const double new_scale = max(min(scale, MaxScale), MinScale);
417 const double new_offset = cursor_offset - new_scale * offset;
418 set_scale_offset(new_scale, new_offset);
421 void View::calculate_tick_spacing()
423 const double SpacingIncrement = 32.0f;
424 const double MinValueSpacing = 32.0f;
426 double min_width = SpacingIncrement, typical_width;
428 QFontMetrics m(QApplication::font());
431 const double min_period = scale_ * min_width;
433 const int order = (int)floorf(log10f(min_period));
434 const double order_decimal = pow(10.0, order);
436 unsigned int unit = 0;
439 tick_period_ = order_decimal * ScaleUnits[unit++];
440 } while (tick_period_ < min_period &&
441 unit < countof(ScaleUnits));
443 tick_prefix_ = (order - pv::util::FirstSIPrefixPower) / 3;
445 typical_width = m.boundingRect(0, 0, INT_MAX, INT_MAX,
446 Qt::AlignLeft | Qt::AlignTop,
447 format_time(offset_, tick_prefix_)).width() +
450 min_width += SpacingIncrement;
452 } while(typical_width > tick_period_ / scale_);
455 void View::update_scroll()
459 const QSize areaSize = viewport_->size();
461 // Set the horizontal scroll bar
462 double length = 0, offset = 0;
463 get_scroll_layout(length, offset);
464 length = max(length - areaSize.width(), 0.0);
466 int major_tick_distance = tick_period_ / scale_;
468 horizontalScrollBar()->setPageStep(areaSize.width() / 2);
469 horizontalScrollBar()->setSingleStep(major_tick_distance);
471 updating_scroll_ = true;
473 if (length < MaxScrollValue) {
474 horizontalScrollBar()->setRange(0, length);
475 horizontalScrollBar()->setSliderPosition(offset);
477 horizontalScrollBar()->setRange(0, MaxScrollValue);
478 horizontalScrollBar()->setSliderPosition(
479 offset_ * MaxScrollValue / (scale_ * length));
482 updating_scroll_ = false;
484 // Set the vertical scrollbar
485 verticalScrollBar()->setPageStep(areaSize.height());
487 const pair<int, int> extents = v_extents();
488 const int extra_scroll_height = (extents.second - extents.first) / 4;
489 verticalScrollBar()->setRange(extents.first - extra_scroll_height,
490 extents.first + extra_scroll_height);
493 void View::update_layout()
496 header_->sizeHint().width() - pv::view::Header::BaselineOffset,
497 ruler_->sizeHint().height(), 0, 0);
498 ruler_->setGeometry(viewport_->x(), 0,
499 viewport_->width(), viewport_->y());
500 cursorheader_->setGeometry(
502 ruler_->sizeHint().height() - cursorheader_->sizeHint().height() / 2,
503 viewport_->width(), cursorheader_->sizeHint().height());
504 header_->setGeometry(0, viewport_->y(),
505 header_->sizeHint().width(), viewport_->height());
509 void View::paint_label(QPainter &p, const QRect &rect, bool hover)
516 QRectF View::label_rect(const QRectF &rect)
522 bool View::add_channels_to_owner(
523 const vector< shared_ptr<sigrok::Channel> > &channels,
524 RowItemOwner *owner, int &offset,
525 unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
527 std::function<bool (shared_ptr<RowItem>)> filter_func)
529 bool any_added = false;
533 for (const auto &channel : channels)
535 const auto iter = signal_map.find(channel);
536 if (iter == signal_map.end() ||
537 (filter_func && !filter_func((*iter).second)))
540 shared_ptr<RowItem> row_item = (*iter).second;
541 owner->add_child_item(row_item);
542 apply_offset(row_item, offset);
543 signal_map.erase(iter);
551 void View::apply_offset(shared_ptr<RowItem> row_item, int &offset) {
553 const pair<int, int> extents = row_item->v_extents();
554 if (row_item->enabled())
555 offset += -extents.first;
556 row_item->force_to_v_offset(offset);
557 if (row_item->enabled())
558 offset += extents.second;
561 bool View::eventFilter(QObject *object, QEvent *event)
563 const QEvent::Type type = event->type();
564 if (type == QEvent::MouseMove) {
566 const QMouseEvent *const mouse_event = (QMouseEvent*)event;
567 if (object == viewport_)
568 hover_point_ = mouse_event->pos();
569 else if (object == ruler_ || object == cursorheader_)
570 hover_point_ = QPoint(mouse_event->x(), 0);
571 else if (object == header_)
572 hover_point_ = QPoint(0, mouse_event->y());
574 hover_point_ = QPoint(-1, -1);
576 hover_point_changed();
578 } else if (type == QEvent::Leave) {
579 hover_point_ = QPoint(-1, -1);
580 hover_point_changed();
583 return QObject::eventFilter(object, event);
586 bool View::viewportEvent(QEvent *e)
590 case QEvent::MouseButtonPress:
591 case QEvent::MouseButtonRelease:
592 case QEvent::MouseButtonDblClick:
593 case QEvent::MouseMove:
595 case QEvent::TouchBegin:
596 case QEvent::TouchUpdate:
597 case QEvent::TouchEnd:
601 return QAbstractScrollArea::viewportEvent(e);
605 void View::resizeEvent(QResizeEvent*)
610 void View::appearance_changed(bool label, bool content)
618 void View::extents_changed(bool horz, bool vert)
621 (horz ? SelectableItemHExtentsChanged : 0) |
622 (vert ? SelectableItemVExtentsChanged : 0);
623 lazy_event_handler_.start();
626 void View::h_scroll_value_changed(int value)
628 if (updating_scroll_)
631 const int range = horizontalScrollBar()->maximum();
632 if (range < MaxScrollValue)
633 offset_ = scale_ * value;
635 double length = 0, offset;
636 get_scroll_layout(length, offset);
637 offset_ = scale_ * length * value / MaxScrollValue;
641 cursorheader_->update();
645 void View::v_scroll_value_changed(int value)
652 void View::signals_changed()
656 // Populate the traces
659 shared_ptr<sigrok::Device> device = session_.device();
662 // Collect a set of signals
663 unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
666 shared_lock<shared_mutex> lock(session_.signals_mutex());
667 const vector< shared_ptr<Signal> > &sigs(session_.signals());
669 for (const shared_ptr<Signal> &sig : sigs)
670 signal_map[sig->channel()] = sig;
672 // Populate channel groups
673 for (auto entry : device->channel_groups())
675 const shared_ptr<sigrok::ChannelGroup> &group = entry.second;
677 if (group->channels().size() <= 1)
680 shared_ptr<TraceGroup> trace_group(new TraceGroup());
681 int child_offset = 0;
682 if (add_channels_to_owner(group->channels(),
683 trace_group.get(), child_offset, signal_map))
685 add_child_item(trace_group);
686 apply_offset(trace_group, offset);
690 // Add the remaining logic channels
691 shared_ptr<TraceGroup> logic_trace_group(new TraceGroup());
692 int child_offset = 0;
694 if (add_channels_to_owner(device->channels(),
695 logic_trace_group.get(), child_offset, signal_map,
696 [](shared_ptr<RowItem> r) -> bool {
697 return dynamic_pointer_cast<LogicSignal>(r) != nullptr;
701 add_child_item(logic_trace_group);
702 apply_offset(logic_trace_group, offset);
705 // Add the remaining channels
706 add_channels_to_owner(device->channels(), this, offset, signal_map);
707 assert(signal_map.empty());
709 // Add decode signals
711 const vector< shared_ptr<DecodeTrace> > decode_sigs(
712 session().get_decode_signals());
713 for (auto s : decode_sigs) {
715 apply_offset(s, offset);
722 void View::data_updated()
724 // Update the scroll bars
731 void View::marker_time_changed()
733 cursorheader_->update();
737 void View::on_signals_moved()
743 void View::process_sticky_events()
745 if (sticky_events_ & SelectableItemHExtentsChanged)
747 if (sticky_events_ & SelectableItemVExtentsChanged)
748 restack_all_row_items();
750 // Clear the sticky events
754 void View::on_hover_point_changed()
756 for (shared_ptr<RowItem> r : *this)
757 r->hover_point_changed();