diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-05-14 12:15:24 -0700 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2020-05-15 02:49:46 +0300 |
commit | 658089d763c1e9e953f5c06b01d028613408138b (patch) | |
tree | 658c0c14547e36a940f2b0a927c626b3505d939b /core/downloadfromdcthread.cpp | |
parent | 62e95fdc8656a0c8fdb181c3fe0a48e043650a05 (diff) | |
download | subsurface-658089d763c1e9e953f5c06b01d028613408138b.tar.gz |
core/bt: match DC descriptor in lower case
This fixes a rather subtle bug.
In btdiscovery.cpp we are detecting dive computers based on their BT name and
are setting up product+vendor as the key for that lookup. QMap always uses case
sensitive comparisons and a tiny inconsistency snuck into our code.
libdivecomputer names for the Aqualung dive computers i200C / i300C / i550C end
in an upper case C (as matches the official branding), but in btdiscovery.cpp
we have those names with lower case c. And therefore didn't recognize these
dive computers.
Obviously this is easy to fix by fixing those three strings, but I decided that
it was silly to set ourselves up for similar oversights in the future. So
instead I switched the matching of the descriptor to simply be allways all
lower case.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/downloadfromdcthread.cpp')
-rw-r--r-- | core/downloadfromdcthread.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp index 8a3365842..d8a65c809 100644 --- a/core/downloadfromdcthread.cpp +++ b/core/downloadfromdcthread.cpp @@ -68,7 +68,7 @@ DownloadThread::DownloadThread() : downloadTable({ 0 }), void DownloadThread::run() { auto internalData = m_data->internalData(); - internalData->descriptor = descriptorLookup[m_data->vendor() + m_data->product()]; + internalData->descriptor = descriptorLookup[m_data->vendor().toLower() + m_data->product().toLower()]; internalData->download_table = &downloadTable; internalData->sites = &diveSiteTable; internalData->btname = strdup(m_data->devBluetoothName().toUtf8()); @@ -127,7 +127,7 @@ void fill_computer_list() if (!productList[vendor].contains(product)) productList[vendor].append(product); - descriptorLookup[QString(vendor) + QString(product)] = descriptor; + descriptorLookup[QString(vendor).toLower() + QString(product).toLower()] = descriptor; } dc_iterator_free(iterator); Q_FOREACH (QString vendor, vendorList) { @@ -157,7 +157,8 @@ void fill_computer_list() if (!productList["Uemis"].contains("Zurich")) productList["Uemis"].push_back("Zurich"); - descriptorLookup["UemisZurich"] = (dc_descriptor_t *)mydescriptor; + // note: keys in the descriptorLookup are always lowercase + descriptorLookup["uemiszurich"] = (dc_descriptor_t *)mydescriptor; #endif std::sort(vendorList.begin(), vendorList.end()); @@ -192,7 +193,7 @@ void show_computer_list() Q_FOREACH (QString vendor, vendorList) { QString msg = vendor + ": "; Q_FOREACH (QString product, productList[vendor]) { - dc_descriptor_t *descriptor = descriptorLookup[vendor + product]; + dc_descriptor_t *descriptor = descriptorLookup[vendor.toLower() + product.toLower()]; unsigned int transport = dc_descriptor_get_transports(descriptor) & transportMask; QString transportString = getTransportString(transport); msg += product + " (" + transportString + "), "; |