diff options
-rw-r--r-- | core/btdiscovery.cpp | 5 | ||||
-rw-r--r-- | core/btdiscovery.h | 1 | ||||
-rw-r--r-- | core/downloadfromdcthread.cpp | 105 |
3 files changed, 39 insertions, 72 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 6b0cf266d..a59bb5ccd 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -175,11 +175,6 @@ QList<BTDiscovery::btVendorProduct> BTDiscovery::getBtDcs() return btDCs; } -QList <BTDiscovery::btVendorProduct> BTDiscovery::getBtAllDevices() -{ - return btAllDevices; -} - // Android: As Qt is not able to pull the pairing data from a device, i // a lengthy discovery process is needed to see what devices are paired. On // https://forum.qt.io/topic/46075/solved-bluetooth-list-paired-devices diff --git a/core/btdiscovery.h b/core/btdiscovery.h index 0bf2ca448..1432df260 100644 --- a/core/btdiscovery.h +++ b/core/btdiscovery.h @@ -44,7 +44,6 @@ public: void getBluetoothDevices(); #endif QList<btVendorProduct> getBtDcs(); - QList<btVendorProduct> getBtAllDevices(); #endif private: static BTDiscovery *m_instance; diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp index ad4f0e4d0..98550ad79 100644 --- a/core/downloadfromdcthread.cpp +++ b/core/downloadfromdcthread.cpp @@ -1,6 +1,7 @@ #include "downloadfromdcthread.h" #include "core/libdivecomputer.h" #include <QDebug> +#include <QRegularExpression> QStringList vendorList; QHash<QString, QStringList> productList; @@ -289,7 +290,6 @@ int DCDeviceData::getDetectedVendorIndex(const QString ¤tText) { #if defined(BT_SUPPORT) QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); - QList<BTDiscovery::btVendorProduct> btAllDevices = BTDiscovery::instance()->getBtAllDevices(); // Pick the vendor of the first confirmed find of a DC (if any), but // only return a true vendor, and not our virtual one @@ -297,12 +297,6 @@ int DCDeviceData::getDetectedVendorIndex(const QString ¤tText) qDebug() << "getDetectedVendorIndex" << currentText << btDCs.first().vendorIdx; return btDCs.first().vendorIdx; } - - // When the above fails, just pick the (one and only) virtual vendor - if (!btAllDevices.isEmpty() && currentText == QObject::tr("Paired Bluetooth Devices")) { - qDebug() << "getDetectedVendorIndex" << currentText << btAllDevices.first().vendorIdx; - return btAllDevices.first().vendorIdx; - } #endif return -1; } @@ -334,86 +328,65 @@ QString DCDeviceData::getDetectedDeviceAddress(const QString ¤tVendorText, const QString ¤tProductText) { #if defined(BT_SUPPORT) - QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); - QList<BTDiscovery::btVendorProduct> btAllDevices = BTDiscovery::instance()->getBtAllDevices(); - - // Pull the BT address from the first found dive computer that is been - // detected as a possible real dive computer (and not some other paired - // BT device - if (currentVendorText != QObject::tr("Paired Bluetooth Devices") && !btDCs.isEmpty()) { - QString btAddr = btDCs.first().btpdi.address; - qDebug() << "getDetectedDeviceAddress" << btAddr; - return btAddr; - } - - // if the above fails, pull the BT address from the selected paired device - // unsure being a dive computer if (currentVendorText == QObject::tr("Paired Bluetooth Devices")) { - int i = productList[currentVendorText].indexOf(currentProductText); - QString btAddr = btAllDevices[i].btpdi.address; - qDebug() << "getDetectedDeviceAddress" << btAddr; - return btAddr; + // simply get the address from the product text + QRegularExpression extractAddr(".*\\(([0-9A-FL:]*)\\)"); + QRegularExpressionMatch m = extractAddr.match(currentProductText); + if (m.hasMatch()) { + qDebug() << "matched" << m.captured(1); + return m.captured(1); + } + } + // Otherwise, pull the vendor from the found devices that are possible real dive computers + // HACK: this assumes that dive computer names are unique across vendors + // and will only give you the first of multiple identically named dive computers - use + // the Paired Bluetooth Devices vendor in cases like that + QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); + BTDiscovery::btVendorProduct btDC; + Q_FOREACH(btDC, btDCs) { + if (currentProductText.startsWith(dc_descriptor_get_product(btDC.dcDescriptor))) + return btDC.btpdi.address; } #endif - return QString(); + return QStringLiteral("cannot determine address of dive computer"); } QString DCDeviceData::getDeviceDescriptorVendor(const QString ¤tVendorText, const QString ¤tProductText) { #if defined(BT_SUPPORT) - QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); - QList<BTDiscovery::btVendorProduct> btAllDevices = BTDiscovery::instance()->getBtAllDevices(); + if (currentVendorText != QObject::tr("Paired Bluetooth Devices")) + return currentVendorText; - // Pull the vendor from the first found dive computer that is been - // detected as a possible real dive computer (and not some other paired - // BT device - if (currentVendorText != QObject::tr("Paired Bluetooth Devices") && !btDCs.isEmpty()) { - QString dcVendor = dc_descriptor_get_vendor(btDCs.first().dcDescriptor); - qDebug() << "getDeviceDescriptorVendor" << dcVendor; - return dcVendor; - } + QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); - // if the above fails, pull vendor from the selected paired device - // unsure being a dive computer - if (currentVendorText == QObject::tr("Paired Bluetooth Devices")) { - int i = productList[currentVendorText].indexOf(currentProductText); - if (i < 0 || btAllDevices.length() <= i) - return QString(); - QString dcVendor = dc_descriptor_get_vendor(btAllDevices[i].dcDescriptor); - qDebug() << "getDeviceDescriptorVendor" << dcVendor; - return dcVendor; + // Pull the vendor from the found devices that are possible real dive computers + // HACK: this assumes that dive computer names are unique across vendors + BTDiscovery::btVendorProduct btDC; + Q_FOREACH(btDC, btDCs) { + if (currentProductText.startsWith(dc_descriptor_get_product(btDC.dcDescriptor))) + return dc_descriptor_get_vendor(btDC.dcDescriptor); } #endif - return NULL; + return QStringLiteral("failed to detect vendor"); } QString DCDeviceData::getDeviceDescriptorProduct(const QString ¤tVendorText, const QString ¤tProductText) { #if defined(BT_SUPPORT) - QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); - QList<BTDiscovery::btVendorProduct> btAllDevices = BTDiscovery::instance()->getBtAllDevices(); + if (currentVendorText != QObject::tr("Paired Bluetooth Devices")) + return currentProductText; - // Pull the product from the first found dive computer that is been - // detected as a possible real dive computer (and not some other paired - // BT device - if (currentVendorText != QObject::tr("Paired Bluetooth Devices") && !btDCs.isEmpty()) { - QString dcProduct = dc_descriptor_get_product(btDCs.first().dcDescriptor); - qDebug() << "getDeviceDescriptorProduct" << dcProduct; - return dcProduct; - } + QList<BTDiscovery::btVendorProduct> btDCs = BTDiscovery::instance()->getBtDcs(); - // if the above fails, pull product from the selected paired device - // unsure being a dive computer - if (currentVendorText == QObject::tr("Paired Bluetooth Devices")) { - int i = productList[currentVendorText].indexOf(currentProductText); - if (i >= btAllDevices.length() || i < 0) - return QString(); - QString dcProduct = dc_descriptor_get_product(btAllDevices[i].dcDescriptor); - qDebug() << "getDeviceDescriptorProduct" << dcProduct; - return dcProduct; + // Pull the canonical product from the found devices that are possible real dive computers + // HACK: this assumes that dive computer names are unique across vendors + BTDiscovery::btVendorProduct btDC; + Q_FOREACH(btDC, btDCs) { + if (currentProductText.startsWith(dc_descriptor_get_product(btDC.dcDescriptor))) + return dc_descriptor_get_product(btDC.dcDescriptor); } #endif - return NULL; + return QStringLiteral("failed to detect product"); } |