]> sigrok.org Git - pulseview.git/blame - pv/devicemanager.cpp
Implement views::trace::StandardBar and derive MainBar from it
[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
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
2acdb232 21#include "devicemanager.hpp"
f65cd27b 22#include "session.hpp"
107ca6d3
JH
23
24#include <cassert>
3084ed4b 25#include <functional>
107ca6d3 26#include <stdexcept>
e8d00928 27#include <sstream>
107ca6d3 28#include <string>
e8d00928 29#include <vector>
107ca6d3 30
fe3a1c21 31#include <libsigrokcxx/libsigrokcxx.hpp>
107ca6d3 32
88fc0565 33#include <boost/algorithm/string/join.hpp>
e8d00928
ML
34#include <boost/filesystem.hpp>
35
da30ecb7
JH
36#include <pv/devices/hardwaredevice.hpp>
37
88fc0565
JH
38using boost::algorithm::join;
39
3084ed4b 40using std::bind;
e8d00928 41using std::dynamic_pointer_cast;
819f4c25
JH
42using std::list;
43using std::map;
e71eb81c
JH
44using std::placeholders::_1;
45using std::placeholders::_2;
e8d00928 46using std::remove_if;
819f4c25 47using std::runtime_error;
f9abf97e 48using std::shared_ptr;
819f4c25 49using std::string;
e8d00928
ML
50using std::vector;
51
52using Glib::VariantBase;
53
54using sigrok::ConfigKey;
55using sigrok::Context;
56using sigrok::Driver;
e8d00928 57using sigrok::SessionDevice;
107ca6d3
JH
58
59namespace pv {
60
e8d00928 61DeviceManager::DeviceManager(shared_ptr<Context> context) :
8dbbc7f0 62 context_(context)
107ca6d3 63{
e8d00928
ML
64 for (auto entry : context->drivers())
65 driver_scan(entry.second, map<const ConfigKey *, VariantBase>());
107ca6d3
JH
66}
67
72d85f36
JH
68const std::shared_ptr<sigrok::Context>& DeviceManager::context() const
69{
70 return context_;
71}
72
e8d00928
ML
73shared_ptr<Context> DeviceManager::context()
74{
8dbbc7f0 75 return context_;
e8d00928
ML
76}
77
da30ecb7
JH
78const list< shared_ptr<devices::HardwareDevice> >&
79DeviceManager::devices() const
107ca6d3 80{
8dbbc7f0 81 return devices_;
107ca6d3
JH
82}
83
da30ecb7
JH
84list< shared_ptr<devices::HardwareDevice> >
85DeviceManager::driver_scan(
e8d00928 86 shared_ptr<Driver> driver, map<const ConfigKey *, VariantBase> drvopts)
107ca6d3 87{
da30ecb7 88 list< shared_ptr<devices::HardwareDevice> > driver_devices;
107ca6d3
JH
89
90 assert(driver);
91
92 // Remove any device instances from this driver from the device
93 // list. They will not be valid after the scan.
da30ecb7
JH
94 devices_.remove_if([&](shared_ptr<devices::HardwareDevice> device) {
95 return device->hardware_device()->driver() == driver; });
107ca6d3
JH
96
97 // Do the scan
e8d00928 98 auto devices = driver->scan(drvopts);
107ca6d3 99
a4cf020a 100 // Add the scanned devices to the main list, set display names and sort.
da30ecb7
JH
101 for (shared_ptr<sigrok::HardwareDevice> device : devices) {
102 const shared_ptr<devices::HardwareDevice> d(
103 new devices::HardwareDevice(context_, device));
104 driver_devices.push_back(d);
105 }
a4cf020a 106
da30ecb7
JH
107 devices_.insert(devices_.end(), driver_devices.begin(),
108 driver_devices.end());
3084ed4b
JH
109 devices_.sort(bind(&DeviceManager::compare_devices, this, _1, _2));
110 driver_devices.sort(bind(
111 &DeviceManager::compare_devices, this, _1, _2));
107ca6d3
JH
112
113 return driver_devices;
114}
115
e8d00928 116const map<string, string> DeviceManager::get_device_info(
da30ecb7 117 shared_ptr<devices::Device> device)
e8d00928
ML
118{
119 map<string, string> result;
120
121 assert(device);
122
da30ecb7
JH
123 const shared_ptr<sigrok::Device> sr_dev = device->device();
124 if (sr_dev->vendor().length() > 0)
125 result["vendor"] = sr_dev->vendor();
126 if (sr_dev->model().length() > 0)
127 result["model"] = sr_dev->model();
128 if (sr_dev->version().length() > 0)
129 result["version"] = sr_dev->version();
130 if (sr_dev->serial_number().length() > 0)
131 result["serial_num"] = sr_dev->serial_number();
132 if (sr_dev->connection_id().length() > 0)
133 result["connection_id"] = sr_dev->connection_id();
e8d00928
ML
134
135 return result;
136}
137
da30ecb7 138const shared_ptr<devices::HardwareDevice> DeviceManager::find_device_from_info(
6842b5fc
SA
139 const map<string, string> search_info)
140{
da30ecb7 141 shared_ptr<devices::HardwareDevice> last_resort_dev;
6842b5fc
SA
142 map<string, string> dev_info;
143
da30ecb7 144 for (shared_ptr<devices::HardwareDevice> dev : devices_) {
6842b5fc 145 assert(dev);
e8d00928 146 dev_info = get_device_info(dev);
6842b5fc
SA
147
148 // If present, vendor and model always have to match.
149 if (dev_info.count("vendor") > 0 && search_info.count("vendor") > 0)
2ad82c2e
UH
150 if (dev_info.at("vendor") != search_info.at("vendor"))
151 continue;
6842b5fc
SA
152
153 if (dev_info.count("model") > 0 && search_info.count("model") > 0)
2ad82c2e
UH
154 if (dev_info.at("model") != search_info.at("model"))
155 continue;
6842b5fc
SA
156
157 // Most unique match: vendor/model/serial_num (but don't match a S/N of 0)
158 if ((dev_info.count("serial_num") > 0) && (dev_info.at("serial_num") != "0")
159 && search_info.count("serial_num") > 0)
160 if (dev_info.at("serial_num") == search_info.at("serial_num") &&
161 dev_info.at("serial_num") != "0")
162 return dev;
163
164 // Second best match: vendor/model/connection_id
165 if (dev_info.count("connection_id") > 0 &&
166 search_info.count("connection_id") > 0)
167 if (dev_info.at("connection_id") == search_info.at("connection_id"))
168 return dev;
169
170 // Last resort: vendor/model/version
171 if (dev_info.count("version") > 0 &&
172 search_info.count("version") > 0)
173 if (dev_info.at("version") == search_info.at("version") &&
174 dev_info.at("version") != "0")
175 return dev;
176
177 // For this device, we merely have a vendor/model match.
178 last_resort_dev = dev;
179 }
180
181 // If there wasn't even a vendor/model/version match, we end up here.
182 // This is usually the case for devices with only vendor/model data.
183 // The selected device may be wrong with multiple such devices attached
184 // but it is the best we can do at this point. After all, there may be
185 // only one such device and we do want to select it in this case.
186 return last_resort_dev;
187}
188
3084ed4b 189bool DeviceManager::compare_devices(shared_ptr<devices::Device> a,
2ad82c2e
UH
190 shared_ptr<devices::Device> b)
191{
19adbc2c
JH
192 assert(a);
193 assert(b);
3084ed4b 194 return a->display_name(*this).compare(b->display_name(*this)) < 0;
107ca6d3
JH
195}
196
197} // namespace pv