X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdevicemanager.cpp;h=13b44e969cc2720e0d17f86c9ab4871030221f06;hb=87b79835014a386fb51b52bc993dbb693bd27197;hp=fb487a8163feb38861cf0f384a792d2704ebbf2c;hpb=996b7c9da9b5cb56413e829217e1e7d7d7d520da;p=pulseview.git diff --git a/pv/devicemanager.cpp b/pv/devicemanager.cpp index fb487a81..13b44e96 100644 --- a/pv/devicemanager.cpp +++ b/pv/devicemanager.cpp @@ -26,15 +26,12 @@ #include #include -#include - #include -using boost::shared_ptr; using std::list; using std::map; -using std::ostringstream; using std::runtime_error; +using std::shared_ptr; using std::string; namespace pv { @@ -65,7 +62,7 @@ list< shared_ptr > DeviceManager::driver_scan( // Remove any device instances from this driver from the device // list. They will not be valid after the scan. - list< shared_ptr >::iterator i = _devices.begin(); + auto i = _devices.begin(); while (i != _devices.end()) { if ((*i)->dev_inst()->driver == driver) i = _devices.erase(i); @@ -92,6 +89,57 @@ list< shared_ptr > DeviceManager::driver_scan( return driver_devices; } +const shared_ptr DeviceManager::find_device_from_info( + const map search_info) +{ + shared_ptr last_resort_dev; + map dev_info; + + last_resort_dev = NULL; + + for (shared_ptr dev : _devices) { + assert(dev); + dev_info = dev->get_device_info(); + + // If present, vendor and model always have to match. + if (dev_info.count("vendor") > 0 && search_info.count("vendor") > 0) + if (dev_info.at("vendor") != search_info.at("vendor")) continue; + + if (dev_info.count("model") > 0 && search_info.count("model") > 0) + if (dev_info.at("model") != search_info.at("model")) continue; + + // Most unique match: vendor/model/serial_num (but don't match a S/N of 0) + if ((dev_info.count("serial_num") > 0) && (dev_info.at("serial_num") != "0") + && search_info.count("serial_num") > 0) + if (dev_info.at("serial_num") == search_info.at("serial_num") && + dev_info.at("serial_num") != "0") + return dev; + + // Second best match: vendor/model/connection_id + if (dev_info.count("connection_id") > 0 && + search_info.count("connection_id") > 0) + if (dev_info.at("connection_id") == search_info.at("connection_id")) + return dev; + + // Last resort: vendor/model/version + if (dev_info.count("version") > 0 && + search_info.count("version") > 0) + if (dev_info.at("version") == search_info.at("version") && + dev_info.at("version") != "0") + return dev; + + // For this device, we merely have a vendor/model match. + last_resort_dev = dev; + } + + // If there wasn't even a vendor/model/version match, we end up here. + // This is usually the case for devices with only vendor/model data. + // The selected device may be wrong with multiple such devices attached + // but it is the best we can do at this point. After all, there may be + // only one such device and we do want to select it in this case. + return last_resort_dev; +} + void DeviceManager::init_drivers() { // Initialise all libsigrok drivers @@ -108,7 +156,7 @@ void DeviceManager::init_drivers() void DeviceManager::release_devices() { // Release all the used devices - BOOST_FOREACH(shared_ptr dev, _devices) { + for (shared_ptr dev : _devices) { assert(dev); dev->release(); } @@ -129,7 +177,7 @@ void DeviceManager::scan_all_drivers() void DeviceManager::release_driver(struct sr_dev_driver *const driver) { - BOOST_FOREACH(shared_ptr dev, _devices) { + for (shared_ptr dev : _devices) { assert(dev); if(dev->dev_inst()->driver == driver) dev->release();