mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
246fbd0333
Small changes to the names of elements the divecomputer download UI and very simplistic first stab at populating the device_data_t structure. This is lacking lots of things - it should remember the last vendor / product used - it should figure out which device (mount point) to offer - it needs proper error handling But it's a step in the right direction. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
167 lines
4.3 KiB
C++
167 lines
4.3 KiB
C++
#include "downloadfromdivecomputer.h"
|
|
#include "ui_downloadfromdivecomputer.h"
|
|
|
|
#include "../libdivecomputer.h"
|
|
#include <cstdlib>
|
|
#include <QThread>
|
|
#include <QDebug>
|
|
#include <QStringListModel>
|
|
|
|
struct product {
|
|
const char *product;
|
|
dc_descriptor_t *descriptor;
|
|
struct product *next;
|
|
};
|
|
|
|
struct vendor {
|
|
const char *vendor;
|
|
struct product *productlist;
|
|
struct vendor *next;
|
|
};
|
|
|
|
struct mydescriptor {
|
|
const char *vendor;
|
|
const char *product;
|
|
dc_family_t type;
|
|
unsigned int model;
|
|
};
|
|
|
|
namespace DownloadFromDcGlobal{
|
|
const char *err_string;
|
|
};
|
|
|
|
DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) :
|
|
QDialog(parent, f), ui(new Ui::DownloadFromDiveComputer), thread(0), downloading(false)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->progressBar->hide();
|
|
ui->progressBar->setMinimum(0);
|
|
ui->progressBar->setMaximum(100);
|
|
fill_computer_list();
|
|
|
|
vendorModel = new QStringListModel(vendorList);
|
|
ui->vendor->setModel(vendorModel);
|
|
ui->product->setModel(0);
|
|
}
|
|
|
|
void DownloadFromDCWidget::on_vendor_currentIndexChanged(const QString& vendor)
|
|
{
|
|
QAbstractItemModel *currentModel = ui->product->model();
|
|
if (!currentModel)
|
|
return;
|
|
|
|
productModel = new QStringListModel(productList[vendor]);
|
|
ui->product->setModel(productModel);
|
|
|
|
// Memleak - but deleting gives me a crash.
|
|
//currentModel->deleteLater();
|
|
}
|
|
|
|
void DownloadFromDCWidget::fill_computer_list()
|
|
{
|
|
dc_iterator_t *iterator = NULL;
|
|
dc_descriptor_t *descriptor = NULL;
|
|
struct mydescriptor *mydescriptor;
|
|
|
|
QStringList computer;
|
|
dc_descriptor_iterator(&iterator);
|
|
while (dc_iterator_next (iterator, &descriptor) == DC_STATUS_SUCCESS) {
|
|
const char *vendor = dc_descriptor_get_vendor(descriptor);
|
|
const char *product = dc_descriptor_get_product(descriptor);
|
|
|
|
if (!vendorList.contains( vendor ))
|
|
vendorList.append( vendor );
|
|
|
|
if( !productList[vendor].contains( product ))
|
|
productList[vendor].push_back( product );
|
|
|
|
descriptorLookup[QString(vendor) + QString(product)] = descriptor;
|
|
}
|
|
dc_iterator_free(iterator);
|
|
|
|
/* and add the Uemis Zurich which we are handling internally
|
|
THIS IS A HACK as we magically have a data structure here that
|
|
happens to match a data structure that is internal to libdivecomputer;
|
|
this WILL BREAK if libdivecomputer changes the dc_descriptor struct...
|
|
eventually the UEMIS code needs to move into libdivecomputer, I guess */
|
|
|
|
mydescriptor = (struct mydescriptor*) malloc(sizeof(struct mydescriptor));
|
|
mydescriptor->vendor = "Uemis";
|
|
mydescriptor->product = "Zurich";
|
|
mydescriptor->type = DC_FAMILY_NULL;
|
|
mydescriptor->model = 0;
|
|
|
|
if(!vendorList.contains( "Uemis"))
|
|
vendorList.append("Uemis");
|
|
|
|
if( !productList["Uemis"].contains( "Zurich" ))
|
|
productList["Uemis"].push_back( "Zurich" );
|
|
|
|
descriptorLookup[QString("UemisZurich")] = (dc_descriptor_t *)mydescriptor;
|
|
}
|
|
|
|
void DownloadFromDCWidget::on_cancel_clicked()
|
|
{
|
|
import_thread_cancelled = true;
|
|
if(thread){
|
|
thread->wait();
|
|
thread->deleteLater();
|
|
thread = 0;
|
|
}
|
|
close();
|
|
}
|
|
|
|
void DownloadFromDCWidget::on_ok_clicked()
|
|
{
|
|
if (downloading)
|
|
return;
|
|
|
|
ui->progressBar->setValue(0);
|
|
ui->progressBar->show();
|
|
|
|
if(thread){
|
|
thread->deleteLater();
|
|
}
|
|
|
|
data.devname = strdup(ui->device->text().toUtf8().data());
|
|
data.vendor = strdup(ui->vendor->currentText().toUtf8().data());
|
|
data.product = strdup(ui->product->currentText().toUtf8().data());
|
|
data.descriptor = descriptorLookup[ui->vendor->currentText() + ui->product->currentText()];
|
|
data.force_download = ui->forceDownload->isChecked();
|
|
// still needs to be implemented
|
|
// set_default_dive_computer(data.vendor, data.product);
|
|
|
|
thread = new InterfaceThread(this, &data);
|
|
connect(thread, SIGNAL(updateInterface(int)),
|
|
ui->progressBar, SLOT(setValue(int)), Qt::QueuedConnection); // Qt::QueuedConnection == threadsafe.
|
|
|
|
connect(thread, SIGNAL(finished()), this, SLOT(close()));
|
|
|
|
thread->start();
|
|
downloading = true;
|
|
}
|
|
|
|
DownloadThread::DownloadThread(device_data_t* data): data(data)
|
|
{
|
|
}
|
|
|
|
void DownloadThread::run()
|
|
{
|
|
do_libdivecomputer_import(data);
|
|
}
|
|
|
|
InterfaceThread::InterfaceThread(QObject* parent, device_data_t* data): QThread(parent), data(data)
|
|
{
|
|
}
|
|
|
|
void InterfaceThread::run()
|
|
{
|
|
DownloadThread *download = new DownloadThread(data);
|
|
|
|
download->start();
|
|
while(download->isRunning()){
|
|
msleep(200);
|
|
updateInterface(progress_bar_fraction *100);
|
|
}
|
|
updateInterface(100);
|
|
}
|