]> sigrok.org Git - pulseview.git/blob - pv/dialogs/connect.cpp
Process selected device
[pulseview.git] / pv / dialogs / connect.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012-2013 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 #include "connect.h"
22
23 extern "C" {
24 /* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
25 #define __STDC_FORMAT_MACROS
26 #include <glib.h>
27 #include <libsigrok/libsigrok.h>
28 }
29
30 extern sr_context *sr_ctx;
31
32 namespace pv {
33 namespace dialogs {
34
35 Connect::Connect(QWidget *parent) :
36         QDialog(parent),
37         _layout(this),
38         _form(this),
39         _form_layout(&_form),
40         _drivers(&_form),
41         _serial_device(&_form),
42         _scan_button(tr("Scan for Devices"), this),
43         _device_list(this),
44         _button_box(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
45                 Qt::Horizontal, this)
46 {
47         setWindowTitle(tr("Connect to Device"));
48
49         connect(&_button_box, SIGNAL(accepted()), this, SLOT(accept()));
50         connect(&_button_box, SIGNAL(rejected()), this, SLOT(reject()));
51
52         populate_drivers();
53         connect(&_drivers, SIGNAL(activated(int)),
54                 this, SLOT(device_selected(int)));
55
56         _form.setLayout(&_form_layout);
57         _form_layout.addRow(tr("Driver"), &_drivers);
58
59         _form_layout.addRow(tr("Serial Port"), &_serial_device);
60
61         unset_connection();
62
63         connect(&_scan_button, SIGNAL(pressed()),
64                 this, SLOT(scan_pressed()));
65
66         setLayout(&_layout);
67         _layout.addWidget(&_form);
68         _layout.addWidget(&_scan_button);
69         _layout.addWidget(&_device_list);
70         _layout.addWidget(&_button_box);
71 }
72
73 struct sr_dev_inst* Connect::get_selected_device() const
74 {
75         const QListWidgetItem *const item = _device_list.currentItem();
76         if (!item)
77                 return NULL;
78
79         return (sr_dev_inst*)item->data(Qt::UserRole).value<void*>();
80 }
81
82 void Connect::populate_drivers()
83 {
84         const int *hwopts;
85         struct sr_dev_driver **drivers = sr_driver_list();
86         for (int i = 0; drivers[i]; ++i) {
87                 /**
88                  * We currently only support devices that can deliver
89                  * samples at a fixed samplerate i.e. oscilloscopes and
90                  * logic analysers.
91                  * @todo Add support for non-monotonic devices i.e. DMMs
92                  * and sensors.
93                  */
94                 bool supported_device = false;
95                 if ((sr_config_list(drivers[i], SR_CONF_DEVICE_OPTIONS,
96                         (const void **)&hwopts, NULL) == SR_OK) && hwopts)
97                         for (int j = 0; hwopts[j]; j++)
98                                 if(hwopts[j] == SR_CONF_SAMPLERATE) {
99                                         supported_device = true;
100                                         break;
101                                 }
102
103                 if(supported_device)
104                         _drivers.addItem(QString("%1 (%2)").arg(
105                                 drivers[i]->longname).arg(drivers[i]->name),
106                                 qVariantFromValue((void*)drivers[i]));
107         }
108 }
109
110 void Connect::unset_connection()
111 {
112         _device_list.clear();
113         _serial_device.hide();
114         _form_layout.labelForField(&_serial_device)->hide();
115 }
116
117 void Connect::set_serial_connection()
118 {
119         _serial_device.show();
120         _form_layout.labelForField(&_serial_device)->show();
121 }
122
123 void Connect::scan_pressed()
124 {
125         _device_list.clear();
126
127         const int index = _drivers.currentIndex();
128         if(index == -1)
129                 return;
130
131         sr_dev_driver *const driver = (sr_dev_driver*)_drivers.itemData(
132                 index).value<void*>();
133
134         GSList *drvopts = NULL;
135
136         if (_serial_device.isVisible()) {
137                 sr_config *const src = (sr_config*)g_try_malloc(sizeof(sr_config));
138                 src->key = SR_CONF_CONN;
139                 const QByteArray byteArray = _serial_device.text().toUtf8();
140                 src->value = g_strdup((const gchar*)byteArray.constData());
141                 drvopts = g_slist_append(drvopts, src);
142         }
143
144         GSList *const devices = sr_driver_scan(driver, drvopts);
145
146         for (GSList *l = devices; l; l = l->next) {
147
148                 sr_dev_inst *const sdi = (sr_dev_inst*)l->data;
149
150                 QString text;
151                 if (sdi->vendor && sdi->vendor[0])
152                         text += QString("%1 ").arg(sdi->vendor);
153                 if (sdi->model && sdi->model[0])
154                         text += QString("%1 ").arg(sdi->model);
155                 if (sdi->version && sdi->version[0])
156                         text += QString("%1 ").arg(sdi->version);
157                 if (sdi->probes) {
158                         text += QString("with %1 probes").arg(
159                                 g_slist_length(sdi->probes));
160                 }
161
162                 QListWidgetItem *const item = new QListWidgetItem(text,
163                         &_device_list);
164                 item->setData(Qt::UserRole, qVariantFromValue((void*)sdi));
165                 _device_list.addItem(item);
166         }
167
168         g_slist_free(devices);
169         g_slist_free_full(drvopts, (GDestroyNotify)free_drvopts);
170 }
171
172 void Connect::device_selected(int index)
173 {
174         const int *hwopts;
175         sr_dev_driver *const driver = (sr_dev_driver*)_drivers.itemData(
176                 index).value<void*>();
177
178         unset_connection();
179
180         if ((sr_config_list(driver, SR_CONF_SCAN_OPTIONS,
181                 (const void **)&hwopts, NULL) == SR_OK) && hwopts) {
182
183                 for (int i = 0; hwopts[i]; i++) {
184                         switch(hwopts[i]) {
185                         case SR_CONF_SERIALCOMM:
186                                 set_serial_connection();
187                                 break;
188
189                         default:
190                                 continue;
191                         }
192
193                         break;
194                 }
195         }
196 }
197
198 void Connect::free_drvopts(struct sr_config *src)
199 {
200         g_free((void *)src->value);
201         g_free(src);
202 }
203
204 } // namespace dialogs
205 } // namespace pv