]> sigrok.org Git - pulseview.git/blame - pv/devicemanager.cpp
device manager: Move filter for supported devices to the scan routine
[pulseview.git] / pv / devicemanager.cpp
CommitLineData
107ca6d3
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
107ca6d3
JH
18 */
19
2acdb232 20#include "devicemanager.hpp"
f65cd27b 21#include "session.hpp"
107ca6d3
JH
22
23#include <cassert>
3084ed4b 24#include <functional>
bc9177b3 25#include <memory>
e8d00928 26#include <sstream>
aca9aa83 27#include <stdexcept>
107ca6d3
JH
28#include <string>
29
fe3a1c21 30#include <libsigrokcxx/libsigrokcxx.hpp>
107ca6d3 31
bc9177b3
SA
32#include <QApplication>
33#include <QObject>
34#include <QProgressDialog>
35
e8d00928
ML
36#include <boost/filesystem.hpp>
37
da30ecb7
JH
38#include <pv/devices/hardwaredevice.hpp>
39
3084ed4b 40using std::bind;
819f4c25
JH
41using std::list;
42using std::map;
e71eb81c
JH
43using std::placeholders::_1;
44using std::placeholders::_2;
f9abf97e 45using std::shared_ptr;
819f4c25 46using std::string;
bc9177b3 47using std::unique_ptr;
e8d00928
ML
48
49using Glib::VariantBase;
50
51using sigrok::ConfigKey;
52using sigrok::Context;
53using sigrok::Driver;
107ca6d3
JH
54
55namespace pv {
56
e8d00928 57DeviceManager::DeviceManager(shared_ptr<Context> context) :
8dbbc7f0 58 context_(context)
107ca6d3 59{
bc9177b3
SA
60 unique_ptr<QProgressDialog> progress(new QProgressDialog("",
61 QObject::tr("Cancel"), 0, context->drivers().size()));
62 progress->setWindowModality(Qt::WindowModal);
63 progress->setMinimumDuration(1); // To show the dialog immediately
64
65 int entry_num = 1;
66
67 for (auto entry : context->drivers()) {
68 progress->setLabelText(QObject::tr("Scanning for %1...")
69 .arg(QString::fromStdString(entry.first)));
70
941e22a6 71 driver_scan(entry.second, map<const ConfigKey *, VariantBase>());
bc9177b3
SA
72
73 progress->setValue(entry_num++);
74 QApplication::processEvents();
75 if (progress->wasCanceled())
76 break;
77 }
107ca6d3
JH
78}
79
6f925ba9 80const shared_ptr<sigrok::Context>& DeviceManager::context() const
72d85f36
JH
81{
82 return context_;
83}
84
e8d00928
ML
85shared_ptr<Context> DeviceManager::context()
86{
8dbbc7f0 87 return context_;
e8d00928
ML
88}
89
da30ecb7
JH
90const list< shared_ptr<devices::HardwareDevice> >&
91DeviceManager::devices() const
107ca6d3 92{
8dbbc7f0 93 return devices_;
107ca6d3
JH
94}
95
da30ecb7
JH
96list< shared_ptr<devices::HardwareDevice> >
97DeviceManager::driver_scan(
e8d00928 98 shared_ptr<Driver> driver, map<const ConfigKey *, VariantBase> drvopts)
107ca6d3 99{
da30ecb7 100 list< shared_ptr<devices::HardwareDevice> > driver_devices;
107ca6d3
JH
101
102 assert(driver);
103
941e22a6
GS
104 /*
105 * We currently only support devices that can deliver samples at
106 * a fixed samplerate (i.e. oscilloscopes and logic analysers).
107 *
108 * @todo Add support for non-monotonic devices (DMMs, sensors, etc).
109 */
110 const auto keys = driver->config_keys();
111 bool supported_device = keys.count(ConfigKey::LOGIC_ANALYZER) |
112 keys.count(ConfigKey::OSCILLOSCOPE);
113 if (!supported_device)
114 return driver_devices;
115
107ca6d3
JH
116 // Remove any device instances from this driver from the device
117 // list. They will not be valid after the scan.
da30ecb7
JH
118 devices_.remove_if([&](shared_ptr<devices::HardwareDevice> device) {
119 return device->hardware_device()->driver() == driver; });
107ca6d3
JH
120
121 // Do the scan
e8d00928 122 auto devices = driver->scan(drvopts);
107ca6d3 123
a4cf020a 124 // Add the scanned devices to the main list, set display names and sort.
da30ecb7
JH
125 for (shared_ptr<sigrok::HardwareDevice> device : devices) {
126 const shared_ptr<devices::HardwareDevice> d(
127 new devices::HardwareDevice(context_, device));
128 driver_devices.push_back(d);
129 }
a4cf020a 130
da30ecb7
JH
131 devices_.insert(devices_.end(), driver_devices.begin(),
132 driver_devices.end());
3084ed4b
JH
133 devices_.sort(bind(&DeviceManager::compare_devices, this, _1, _2));
134 driver_devices.sort(bind(
135 &DeviceManager::compare_devices, this, _1, _2));
107ca6d3
JH
136
137 return driver_devices;
138}
139
e8d00928 140const map<string, string> DeviceManager::get_device_info(
da30ecb7 141 shared_ptr<devices::Device> device)
e8d00928
ML
142{
143 map<string, string> result;
144
145 assert(device);
146
da30ecb7
JH
147 const shared_ptr<sigrok::Device> sr_dev = device->device();
148 if (sr_dev->vendor().length() > 0)
149 result["vendor"] = sr_dev->vendor();
150 if (sr_dev->model().length() > 0)
151 result["model"] = sr_dev->model();
152 if (sr_dev->version().length() > 0)
153 result["version"] = sr_dev->version();
154 if (sr_dev->serial_number().length() > 0)
155 result["serial_num"] = sr_dev->serial_number();
156 if (sr_dev->connection_id().length() > 0)
157 result["connection_id"] = sr_dev->connection_id();
e8d00928
ML
158
159 return result;
160}
161
da30ecb7 162const shared_ptr<devices::HardwareDevice> DeviceManager::find_device_from_info(
6842b5fc
SA
163 const map<string, string> search_info)
164{
da30ecb7 165 shared_ptr<devices::HardwareDevice> last_resort_dev;
6842b5fc
SA
166 map<string, string> dev_info;
167
da30ecb7 168 for (shared_ptr<devices::HardwareDevice> dev : devices_) {
6842b5fc 169 assert(dev);
e8d00928 170 dev_info = get_device_info(dev);
6842b5fc
SA
171
172 // If present, vendor and model always have to match.
173 if (dev_info.count("vendor") > 0 && search_info.count("vendor") > 0)
2ad82c2e
UH
174 if (dev_info.at("vendor") != search_info.at("vendor"))
175 continue;
6842b5fc
SA
176
177 if (dev_info.count("model") > 0 && search_info.count("model") > 0)
2ad82c2e
UH
178 if (dev_info.at("model") != search_info.at("model"))
179 continue;
6842b5fc
SA
180
181 // Most unique match: vendor/model/serial_num (but don't match a S/N of 0)
182 if ((dev_info.count("serial_num") > 0) && (dev_info.at("serial_num") != "0")
183 && search_info.count("serial_num") > 0)
184 if (dev_info.at("serial_num") == search_info.at("serial_num") &&
185 dev_info.at("serial_num") != "0")
186 return dev;
187
188 // Second best match: vendor/model/connection_id
189 if (dev_info.count("connection_id") > 0 &&
190 search_info.count("connection_id") > 0)
191 if (dev_info.at("connection_id") == search_info.at("connection_id"))
192 return dev;
193
194 // Last resort: vendor/model/version
195 if (dev_info.count("version") > 0 &&
196 search_info.count("version") > 0)
197 if (dev_info.at("version") == search_info.at("version") &&
198 dev_info.at("version") != "0")
199 return dev;
200
201 // For this device, we merely have a vendor/model match.
202 last_resort_dev = dev;
203 }
204
205 // If there wasn't even a vendor/model/version match, we end up here.
206 // This is usually the case for devices with only vendor/model data.
207 // The selected device may be wrong with multiple such devices attached
208 // but it is the best we can do at this point. After all, there may be
209 // only one such device and we do want to select it in this case.
210 return last_resort_dev;
211}
212
3084ed4b 213bool DeviceManager::compare_devices(shared_ptr<devices::Device> a,
2ad82c2e
UH
214 shared_ptr<devices::Device> b)
215{
19adbc2c
JH
216 assert(a);
217 assert(b);
3084ed4b 218 return a->display_name(*this).compare(b->display_name(*this)) < 0;
107ca6d3
JH
219}
220
221} // namespace pv