]> sigrok.org Git - pulseview.git/blob - pv/subwindows/decoder_selector/subwindow.cpp
decoder_selector: Apply decoder upon pressing enter.
[pulseview.git] / pv / subwindows / decoder_selector / subwindow.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2018 Soeren Apel <soeren@apelpie.net>
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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <algorithm>
21
22 #include <QApplication>
23 #include <QDebug>
24 #include <QFontMetrics>
25 #include <QInputDialog>
26 #include <QLabel>
27 #include <QLineEdit>
28 #include <QPushButton>
29 #include <QScrollArea>
30 #include <QVBoxLayout>
31
32 #include "pv/session.hpp"
33 #include "pv/subwindows/decoder_selector/subwindow.hpp"
34
35 using std::reverse;
36 using std::shared_ptr;
37
38 namespace pv {
39 namespace subwindows {
40 namespace decoder_selector {
41
42 const QString initial_notice = QApplication::tr("Select a decoder to see its description here.");
43 const int min_width_margin = 75;
44
45
46 bool QCustomSortFilterProxyModel::filterAcceptsRow(int source_row,
47         const QModelIndex& source_parent) const
48 {
49         // Search model recursively
50
51         if (QSortFilterProxyModel::filterAcceptsRow(source_row, source_parent))
52                 return true;
53
54         const QModelIndex index = sourceModel()->index(source_row, 0, source_parent);
55
56         for (int i = 0; i < sourceModel()->rowCount(index); i++)
57                 if (filterAcceptsRow(i, index))
58                         return true;
59
60         return false;
61 }
62
63
64 void QCustomTreeView::currentChanged(const QModelIndex& current,
65         const QModelIndex& previous)
66 {
67         QTreeView::currentChanged(current, previous);
68         currentChanged(current);
69 }
70
71
72 SubWindow::SubWindow(Session& session, QWidget* parent) :
73         SubWindowBase(session, parent),
74         splitter_(new QSplitter()),
75         tree_view_(new QCustomTreeView()),
76         info_box_(new QWidget()),
77         info_label_header_(new QLabel()),
78         info_label_body_(new QLabel()),
79         info_label_footer_(new QLabel()),
80         model_(new DecoderCollectionModel()),
81         sort_filter_model_(new QCustomSortFilterProxyModel())
82 {
83         QVBoxLayout* root_layout = new QVBoxLayout(this);
84         root_layout->setContentsMargins(0, 0, 0, 0);
85         root_layout->addWidget(splitter_);
86
87         QWidget* upper_container = new QWidget();
88         QVBoxLayout* upper_layout = new QVBoxLayout(upper_container);
89         upper_layout->setContentsMargins(0, 5, 0, 0);
90         QLineEdit* filter = new QLineEdit();
91         upper_layout->addWidget(filter);
92         upper_layout->addWidget(tree_view_);
93
94         splitter_->setOrientation(Qt::Vertical);
95         splitter_->addWidget(upper_container);
96         splitter_->addWidget(info_box_);
97
98         const QIcon filter_icon(QIcon::fromTheme("search",
99                 QIcon(":/icons/search.svg")));
100         filter->setClearButtonEnabled(true);
101         filter->addAction(filter_icon, QLineEdit::LeadingPosition);
102
103         sort_filter_model_->setSourceModel(model_);
104         sort_filter_model_->setFilterCaseSensitivity(Qt::CaseInsensitive);
105         sort_filter_model_->setFilterKeyColumn(-1);
106
107         tree_view_->setModel(sort_filter_model_);
108         tree_view_->setRootIsDecorated(true);
109         tree_view_->setSortingEnabled(true);
110         tree_view_->sortByColumn(0, Qt::AscendingOrder);
111
112         // Hide the columns that hold the detailed item information
113         tree_view_->hideColumn(2);  // ID
114
115         // Ensure that all decoder tag names are fully visible by default
116         tree_view_->resizeColumnToContents(0);
117
118         tree_view_->setIndentation(10);
119
120         QScrollArea* info_label_body_container = new QScrollArea();
121         info_label_body_container->setWidget(info_label_body_);
122         info_label_body_container->setWidgetResizable(true);
123
124         info_box_->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
125         QVBoxLayout* info_box_layout = new QVBoxLayout(info_box_);
126         info_box_layout->addWidget(info_label_header_);
127         info_box_layout->addWidget(info_label_body_container);
128         info_box_layout->addWidget(info_label_footer_);
129         info_box_layout->setAlignment(Qt::AlignTop);
130         Qt::TextInteractionFlags flags = Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard;
131         info_label_header_->setWordWrap(true);
132         info_label_header_->setTextInteractionFlags(flags);
133         info_label_body_->setWordWrap(true);
134         info_label_body_->setTextInteractionFlags(flags);
135         info_label_body_->setText(initial_notice);
136         info_label_body_->setAlignment(Qt::AlignTop);
137         info_label_footer_->setWordWrap(true);
138         info_label_footer_->setTextInteractionFlags(flags);
139
140         connect(filter, SIGNAL(textChanged(const QString&)),
141                 this, SLOT(on_filter_changed(const QString&)));
142         connect(filter, SIGNAL(returnPressed()),
143                 this, SLOT(on_filter_return_pressed()));
144
145         connect(tree_view_, SIGNAL(currentChanged(const QModelIndex&)),
146                 this, SLOT(on_item_changed(const QModelIndex&)));
147         connect(tree_view_, SIGNAL(activated(const QModelIndex&)),
148                 this, SLOT(on_item_activated(const QModelIndex&)));
149
150         connect(this, SIGNAL(new_decoders_selected(vector<const srd_decoder*>)),
151                 &session, SLOT(on_new_decoders_selected(vector<const srd_decoder*>)));
152
153         // Place the keyboard cursor in the filter QLineEdit initially
154         filter->setFocus();
155 }
156
157 bool SubWindow::has_toolbar() const
158 {
159         return true;
160 }
161
162 QToolBar* SubWindow::create_toolbar(QWidget *parent) const
163 {
164         QToolBar* toolbar = new QToolBar(parent);
165
166         return toolbar;
167 }
168
169 int SubWindow::minimum_width() const
170 {
171         QFontMetrics m(info_label_body_->font());
172         const int label_width = m.width(initial_notice);
173
174         return label_width + min_width_margin;
175 }
176
177 vector<const char*> SubWindow::get_decoder_inputs(const srd_decoder* d) const
178 {
179         vector<const char*> ret_val;
180
181         for (GSList* li = d->inputs; li; li = li->next)
182                 ret_val.push_back((const char*)li->data);
183
184         return ret_val;
185 }
186
187 vector<const srd_decoder*> SubWindow::get_decoders_providing(const char* output) const
188 {
189         vector<const srd_decoder*> ret_val;
190
191         for (GSList* li = (GSList*)srd_decoder_list(); li; li = li->next) {
192                 const srd_decoder* d = (srd_decoder*)li->data;
193                 assert(d);
194
195                 if (!d->outputs)
196                         continue;
197
198                 const int maxlen = 1024;
199
200                 // TODO For now we ignore that d->outputs is actually a list
201                 if (strncmp((char*)(d->outputs->data), output, maxlen) == 0)
202                         ret_val.push_back(d);
203         }
204
205         return ret_val;
206 }
207
208 void SubWindow::on_item_changed(const QModelIndex& index)
209 {
210         if (!index.isValid())
211                 return;
212
213         QModelIndex id_index = index.model()->index(index.row(), 2, index.parent());
214         QString decoder_name = index.model()->data(id_index, Qt::DisplayRole).toString();
215
216         if (decoder_name.isEmpty())
217                 return;
218
219         const srd_decoder* d = srd_decoder_get_by_id(decoder_name.toUtf8());
220
221         const QString id = QString::fromUtf8(d->id);
222         const QString longname = QString::fromUtf8(d->longname);
223         const QString desc = QString::fromUtf8(d->desc);
224         const QString doc = QString::fromUtf8(srd_decoder_doc_get(d)).trimmed();
225
226         QString tags;
227         for (GSList* li = (GSList*)d->tags; li; li = li->next) {
228                 QString s = (li == (GSList*)d->tags) ?
229                         tr((char*)li->data) :
230                         QString(tr(", %1")).arg(tr((char*)li->data));
231                 tags.append(s);
232         }
233
234         info_label_header_->setText(QString("<span style='font-size:large'><b>%1 (%2)</b></span><br><i>%3</i>")
235                 .arg(longname, id, desc));
236         info_label_body_->setText(doc);
237         info_label_footer_->setText(tr("<p align='right'>Tags: %1</p>").arg(tags));
238 }
239
240 void SubWindow::on_item_activated(const QModelIndex& index)
241 {
242         if (!index.isValid())
243                 return;
244
245         QModelIndex id_index = index.model()->index(index.row(), 2, index.parent());
246         QString decoder_name = index.model()->data(id_index, Qt::DisplayRole).toString();
247
248         const srd_decoder* chosen_decoder = srd_decoder_get_by_id(decoder_name.toUtf8());
249         if (chosen_decoder == nullptr)
250                 return;
251
252         vector<const srd_decoder*> decoders;
253         decoders.push_back(chosen_decoder);
254
255         // If the decoder only depends on logic inputs, we add it and are done
256         vector<const char*> inputs = get_decoder_inputs(decoders.front());
257         if (inputs.size() == 0) {
258                 qWarning() << "Protocol decoder" << decoder_name << "cannot have 0 inputs!";
259                 return;
260         }
261
262         if (strcmp(inputs.at(0), "logic") == 0) {
263                 new_decoders_selected(decoders);
264                 return;
265         }
266
267         // Check if we can automatically fulfill the stacking requirements
268         while (strcmp(inputs.at(0), "logic") != 0) {
269                 vector<const srd_decoder*> prov_decoders = get_decoders_providing(inputs.at(0));
270
271                 if (prov_decoders.size() == 0) {
272                         // Emit warning and add the stack that we could gather so far
273                         qWarning() << "Protocol decoder" << QString::fromUtf8(decoders.back()->id) \
274                                 << "has input that no other decoder provides:" << QString::fromUtf8(inputs.at(0));
275                         break;
276                 }
277
278                 if (prov_decoders.size() == 1) {
279                         decoders.push_back(prov_decoders.front());
280                 } else {
281                         // Let user decide which one to use
282                         QString caption = QString(tr("Protocol decoder <b>%1</b> requires input type <b>%2</b> " \
283                                 "which several decoders provide.<br>Choose which one to use:<br>"))
284                                         .arg(QString::fromUtf8(decoders.back()->id), QString::fromUtf8(inputs.at(0)));
285
286                         QStringList items;
287                         for (const srd_decoder* d : prov_decoders)
288                                 items << QString::fromUtf8(d->id) + " (" + QString::fromUtf8(d->longname) + ")";
289                         bool ok_clicked;
290                         QString item = QInputDialog::getItem(this, tr("Choose Decoder"),
291                                 tr(caption.toUtf8()), items, 0, false, &ok_clicked);
292
293                         if ((!ok_clicked) || (item.isEmpty()))
294                                 return;
295
296                         QString d = item.section(' ', 0, 0);
297                         decoders.push_back(srd_decoder_get_by_id(d.toUtf8()));
298                 }
299
300                 inputs = get_decoder_inputs(decoders.back());
301         }
302
303         // Reverse decoder list and add the stack
304         reverse(decoders.begin(), decoders.end());
305         new_decoders_selected(decoders);
306 }
307
308 void SubWindow::on_filter_changed(const QString& text)
309 {
310         sort_filter_model_->setFilterFixedString(text);
311
312         // Expand the "All Decoders" category/tag if the user filtered
313         tree_view_->setExpanded(tree_view_->model()->index(0, 0), !text.isEmpty());
314 }
315
316 void SubWindow::on_filter_return_pressed()
317 {
318         int num_visible_decoders = 0;
319         QModelIndex last_valid_index;
320
321         QModelIndex index = tree_view_->model()->index(0, 0);
322
323         while (index.isValid()) {
324                 QModelIndex id_index = index.model()->index(index.row(), 2, index.parent());
325                 QString decoder_name = index.model()->data(id_index, Qt::DisplayRole).toString();
326                 if (!decoder_name.isEmpty()) {
327                         last_valid_index = index;
328                         num_visible_decoders++;
329                 }
330                 index = tree_view_->indexBelow(index);
331         }
332
333         // If only one decoder matches the filter, apply it when the user presses enter
334         if (num_visible_decoders == 1)
335                 tree_view_->activated(last_valid_index);
336 }
337
338 } // namespace decoder_selector
339 } // namespace subwindows
340 } // namespace pv