2 * This file is part of the PulseView project.
4 * Copyright (C) 2012-2013 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, see <http://www.gnu.org/licenses/>.
22 #include <libsigrokcxx/libsigrokcxx.hpp>
26 #include <QRadioButton>
28 #include "connect.hpp"
30 #include <pv/devicemanager.hpp>
31 #include <pv/devices/hardwaredevice.hpp>
35 using std::shared_ptr
;
40 using Glib::VariantBase
;
42 using sigrok::ConfigKey
;
45 using pv::devices::HardwareDevice
;
50 Connect::Connect(QWidget
*parent
, pv::DeviceManager
&device_manager
) :
52 device_manager_(device_manager
),
57 serial_devices_(&form_
),
58 scan_button_(tr("&Scan for devices using driver above"), this),
60 button_box_(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel
,
63 setWindowTitle(tr("Connect to Device"));
65 connect(&button_box_
, SIGNAL(accepted()), this, SLOT(accept()));
66 connect(&button_box_
, SIGNAL(rejected()), this, SLOT(reject()));
69 connect(&drivers_
, SIGNAL(activated(int)), this, SLOT(driver_selected(int)));
71 form_
.setLayout(&form_layout_
);
73 QVBoxLayout
*vbox_drv
= new QVBoxLayout
;
74 vbox_drv
->addWidget(&drivers_
);
75 QGroupBox
*groupbox_drv
= new QGroupBox(tr("Step 1: Choose the driver"));
76 groupbox_drv
->setLayout(vbox_drv
);
77 form_layout_
.addRow(groupbox_drv
);
79 QRadioButton
*radiobtn_usb
= new QRadioButton(tr("&USB"), this);
80 QRadioButton
*radiobtn_serial
= new QRadioButton(tr("Serial &Port"), this);
81 QRadioButton
*radiobtn_tcp
= new QRadioButton(tr("&TCP/IP"), this);
83 radiobtn_usb
->setChecked(true);
85 serial_config_
= new QWidget();
86 QHBoxLayout
*serial_config_layout
= new QHBoxLayout(serial_config_
);
88 serial_devices_
.setEditable(true);
89 serial_devices_
.setSizePolicy(QSizePolicy::Expanding
, QSizePolicy::Preferred
);
91 serial_baudrate_
.setEditable(true);
92 serial_baudrate_
.addItem("");
93 serial_baudrate_
.addItem("921600");
94 serial_baudrate_
.addItem("115200");
95 serial_baudrate_
.addItem("57600");
96 serial_baudrate_
.addItem("19200");
97 serial_baudrate_
.addItem("9600");
99 serial_config_layout
->addWidget(&serial_devices_
);
100 serial_config_layout
->addWidget(&serial_baudrate_
);
101 serial_config_layout
->addWidget(new QLabel("baud"));
102 serial_config_
->setEnabled(false);
104 tcp_config_
= new QWidget();
105 QHBoxLayout
*tcp_config_layout
= new QHBoxLayout(tcp_config_
);
106 tcp_host_
= new QLineEdit
;
107 tcp_host_
->setText("192.168.1.100");
108 tcp_config_layout
->addWidget(tcp_host_
);
109 tcp_config_layout
->addWidget(new QLabel(":"));
110 tcp_port_
= new QSpinBox
;
111 tcp_port_
->setRange(1, 65535);
112 tcp_port_
->setValue(5555);
113 tcp_config_layout
->addWidget(tcp_port_
);
115 tcp_config_layout
->addSpacing(30);
116 tcp_config_layout
->addWidget(new QLabel(tr("Protocol:")));
117 tcp_protocol_
= new QComboBox();
118 tcp_protocol_
->addItem("Raw TCP", QVariant("tcp-raw/%1/%2"));
119 tcp_protocol_
->addItem("VXI", QVariant("vxi/%1/%2"));
120 tcp_config_layout
->addWidget(tcp_protocol_
);
121 tcp_config_layout
->setContentsMargins(0, 0, 0, 0);
122 tcp_config_
->setEnabled(false);
124 // Let the device list occupy only the minimum space needed
125 device_list_
.setMaximumHeight(device_list_
.minimumSizeHint().height());
127 QVBoxLayout
*vbox_if
= new QVBoxLayout
;
128 vbox_if
->addWidget(radiobtn_usb
);
129 vbox_if
->addWidget(radiobtn_serial
);
130 vbox_if
->addWidget(serial_config_
);
131 vbox_if
->addWidget(radiobtn_tcp
);
132 vbox_if
->addWidget(tcp_config_
);
134 QGroupBox
*groupbox_if
= new QGroupBox(tr("Step 2: Choose the interface"));
135 groupbox_if
->setLayout(vbox_if
);
136 form_layout_
.addRow(groupbox_if
);
138 QVBoxLayout
*vbox_scan
= new QVBoxLayout
;
139 vbox_scan
->addWidget(&scan_button_
);
140 QGroupBox
*groupbox_scan
= new QGroupBox(tr("Step 3: Scan for devices"));
141 groupbox_scan
->setLayout(vbox_scan
);
142 form_layout_
.addRow(groupbox_scan
);
144 QVBoxLayout
*vbox_select
= new QVBoxLayout
;
145 vbox_select
->addWidget(&device_list_
);
146 QGroupBox
*groupbox_select
= new QGroupBox(tr("Step 4: Select the device"));
147 groupbox_select
->setLayout(vbox_select
);
148 form_layout_
.addRow(groupbox_select
);
152 connect(radiobtn_serial
, SIGNAL(toggled(bool)), this, SLOT(serial_toggled(bool)));
153 connect(radiobtn_tcp
, SIGNAL(toggled(bool)), this, SLOT(tcp_toggled(bool)));
154 connect(&scan_button_
, SIGNAL(pressed()), this, SLOT(scan_pressed()));
158 layout_
.addWidget(&form_
);
159 layout_
.addWidget(&button_box_
);
162 shared_ptr
<HardwareDevice
> Connect::get_selected_device() const
164 const QListWidgetItem
*const item
= device_list_
.currentItem();
166 return shared_ptr
<HardwareDevice
>();
168 return item
->data(Qt::UserRole
).value
<shared_ptr
<HardwareDevice
>>();
171 void Connect::populate_drivers()
173 for (auto& entry
: device_manager_
.context()->drivers()) {
174 auto name
= entry
.first
;
175 auto driver
= entry
.second
;
177 * We currently only support devices that can deliver
178 * samples at a fixed samplerate i.e. oscilloscopes and
180 * @todo Add support for non-monotonic devices i.e. DMMs
183 const auto keys
= driver
->config_keys();
185 bool supported_device
= keys
.count(ConfigKey::LOGIC_ANALYZER
) |
186 keys
.count(ConfigKey::OSCILLOSCOPE
);
188 if (supported_device
)
189 drivers_
.addItem(QString("%1 (%2)").arg(
190 driver
->long_name().c_str(), name
.c_str()),
191 QVariant::fromValue(driver
));
195 void Connect::populate_serials(shared_ptr
<Driver
> driver
)
197 serial_devices_
.clear();
198 for (auto& serial
: device_manager_
.context()->serials(driver
))
199 serial_devices_
.addItem(QString("%1 (%2)").arg(
200 serial
.first
.c_str(), serial
.second
.c_str()),
201 QString::fromStdString(serial
.first
));
204 void Connect::unset_connection()
206 device_list_
.clear();
207 button_box_
.button(QDialogButtonBox::Ok
)->setDisabled(true);
210 void Connect::serial_toggled(bool checked
)
212 serial_devices_
.setEnabled(checked
);
213 serial_baudrate_
.setEnabled(checked
);
214 serial_config_
->setEnabled(checked
);
217 void Connect::tcp_toggled(bool checked
)
219 tcp_config_
->setEnabled(checked
);
222 void Connect::scan_pressed()
224 device_list_
.clear();
226 const int index
= drivers_
.currentIndex();
230 shared_ptr
<Driver
> driver
=
231 drivers_
.itemData(index
).value
<shared_ptr
<Driver
>>();
235 map
<const ConfigKey
*, VariantBase
> drvopts
;
237 if (serial_config_
->isEnabled()) {
239 const int index
= serial_devices_
.currentIndex();
240 if (index
>= 0 && index
< serial_devices_
.count() &&
241 serial_devices_
.currentText() == serial_devices_
.itemText(index
))
242 serial
= serial_devices_
.itemData(index
).toString();
244 serial
= serial_devices_
.currentText();
246 drvopts
[ConfigKey::CONN
] = Variant
<ustring
>::create(
247 serial
.toUtf8().constData());
249 // Set baud rate if specified
250 if (serial_baudrate_
.currentText().length() > 0)
251 drvopts
[ConfigKey::SERIALCOMM
] = Variant
<ustring
>::create(
252 QString("%1/8n1").arg(serial_baudrate_
.currentText()).toUtf8().constData());
255 if (tcp_config_
->isEnabled()) {
256 QString host
= tcp_host_
->text();
257 QString port
= tcp_port_
->text();
258 if (!host
.isEmpty()) {
260 tcp_protocol_
->itemData(tcp_protocol_
->currentIndex()).toString();
262 conn
= conn
.arg(host
, port
);
264 drvopts
[ConfigKey::CONN
] = Variant
<ustring
>::create(
265 conn
.toUtf8().constData());
269 const list
< shared_ptr
<HardwareDevice
> > devices
=
270 device_manager_
.driver_scan(driver
, drvopts
);
272 for (const shared_ptr
<HardwareDevice
>& device
: devices
) {
275 QString text
= QString::fromStdString(device
->display_name(device_manager_
));
276 text
+= QString(" with %1 channels").arg(device
->device()->channels().size());
278 QListWidgetItem
*const item
= new QListWidgetItem(text
, &device_list_
);
279 item
->setData(Qt::UserRole
, QVariant::fromValue(device
));
280 device_list_
.addItem(item
);
283 device_list_
.setCurrentRow(0);
284 button_box_
.button(QDialogButtonBox::Ok
)->setDisabled(device_list_
.count() == 0);
287 void Connect::driver_selected(int index
)
289 shared_ptr
<Driver
> driver
=
290 drivers_
.itemData(index
).value
<shared_ptr
<Driver
>>();
294 populate_serials(driver
);
297 } // namespace dialogs