2017-04-18 17:14:03 +00:00
|
|
|
#ifndef DOWNLOADFROMDCTHREAD_H
|
|
|
|
#define DOWNLOADFROMDCTHREAD_H
|
|
|
|
|
|
|
|
#include <QThread>
|
2017-04-27 18:24:14 +00:00
|
|
|
#include <QMap>
|
|
|
|
#include <QHash>
|
2017-06-06 02:41:57 +00:00
|
|
|
#include <QLoggingCategory>
|
2017-04-27 18:24:14 +00:00
|
|
|
|
2017-04-18 17:14:03 +00:00
|
|
|
#include "libdivecomputer.h"
|
2017-10-06 14:51:30 +00:00
|
|
|
#include "connectionlistmodel.h"
|
2017-10-06 14:52:17 +00:00
|
|
|
#if BT_SUPPORT
|
2017-06-06 02:41:57 +00:00
|
|
|
#include "core/btdiscovery.h"
|
2017-10-06 14:52:17 +00:00
|
|
|
#endif
|
2017-05-12 17:18:20 +00:00
|
|
|
/* Helper object for access of Device Data in QML */
|
|
|
|
class DCDeviceData : public QObject {
|
|
|
|
Q_OBJECT
|
2018-06-09 10:31:31 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
2017-05-12 17:18:20 +00:00
|
|
|
Q_PROPERTY(QString vendor READ vendor WRITE setVendor)
|
|
|
|
Q_PROPERTY(QString product READ product WRITE setProduct)
|
|
|
|
Q_PROPERTY(bool bluetoothMode READ bluetoothMode WRITE setBluetoothMode)
|
|
|
|
Q_PROPERTY(QString devName READ devName WRITE setDevName)
|
2017-11-12 11:33:20 +00:00
|
|
|
Q_PROPERTY(QString devBluetoothName READ devBluetoothName WRITE setDevBluetoothName)
|
2017-05-27 18:21:57 +00:00
|
|
|
Q_PROPERTY(QString descriptor READ descriptor)
|
2017-05-12 17:18:20 +00:00
|
|
|
Q_PROPERTY(bool forceDownload READ forceDownload WRITE setForceDownload)
|
|
|
|
Q_PROPERTY(bool createNewTrip READ createNewTrip WRITE setCreateNewTrip)
|
|
|
|
Q_PROPERTY(int deviceId READ deviceId WRITE setDeviceId)
|
|
|
|
Q_PROPERTY(int diveId READ diveId WRITE setDiveId)
|
2017-05-19 09:23:11 +00:00
|
|
|
Q_PROPERTY(bool saveDump READ saveDump WRITE setSaveDump)
|
|
|
|
Q_PROPERTY(bool saveLog READ saveLog WRITE setSaveLog)
|
2018-06-09 10:31:31 +00:00
|
|
|
#endif // SUBSURFACE_MOBILE
|
2017-05-12 17:18:20 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
DCDeviceData(QObject *parent = nullptr);
|
2017-06-06 02:41:57 +00:00
|
|
|
static DCDeviceData *instance();
|
2017-05-12 17:18:20 +00:00
|
|
|
|
|
|
|
QString vendor() const;
|
|
|
|
QString product() const;
|
|
|
|
QString devName() const;
|
2018-06-09 10:31:31 +00:00
|
|
|
bool bluetoothMode() const;
|
|
|
|
bool saveDump() const;
|
2017-11-12 11:33:20 +00:00
|
|
|
QString devBluetoothName() const;
|
2018-06-09 10:31:31 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
2017-05-12 17:18:20 +00:00
|
|
|
QString descriptor() const;
|
|
|
|
bool forceDownload() const;
|
|
|
|
bool createNewTrip() const;
|
2017-05-19 09:23:11 +00:00
|
|
|
bool saveLog() const;
|
2017-05-12 17:18:20 +00:00
|
|
|
int deviceId() const;
|
|
|
|
int diveId() const;
|
2018-06-09 10:31:31 +00:00
|
|
|
#endif // SUBSURFACE_MOBILE
|
2017-05-12 17:18:20 +00:00
|
|
|
|
2017-05-19 09:23:11 +00:00
|
|
|
/* this needs to be a pointer to make the C-API happy */
|
|
|
|
device_data_t* internalData();
|
|
|
|
|
2018-06-09 10:31:31 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
2017-06-06 02:41:57 +00:00
|
|
|
Q_INVOKABLE QStringList getProductListFromVendor(const QString& vendor);
|
2017-07-17 04:49:11 +00:00
|
|
|
Q_INVOKABLE int getMatchingAddress(const QString &vendor, const QString &product);
|
|
|
|
|
2017-08-26 19:27:12 +00:00
|
|
|
Q_INVOKABLE int getDetectedVendorIndex();
|
|
|
|
Q_INVOKABLE int getDetectedProductIndex(const QString ¤tVendorText);
|
2018-06-09 10:31:31 +00:00
|
|
|
#else
|
|
|
|
QStringList getProductListFromVendor(const QString& vendor);
|
|
|
|
int getMatchingAddress(const QString &vendor, const QString &product);
|
|
|
|
|
|
|
|
int getDetectedVendorIndex();
|
|
|
|
int getDetectedProductIndex(const QString ¤tVendorText);
|
|
|
|
#endif // SUBSURFACE_MOBILE
|
2017-06-06 02:41:57 +00:00
|
|
|
|
2018-06-09 10:31:31 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
2017-05-12 17:18:20 +00:00
|
|
|
public slots:
|
2018-06-09 10:31:31 +00:00
|
|
|
void setDeviceId(int deviceId);
|
|
|
|
void setDiveId(int diveId);
|
|
|
|
#else
|
|
|
|
public:
|
|
|
|
#endif // SUBSURFACE_MOBILE
|
2017-05-12 17:18:20 +00:00
|
|
|
void setVendor(const QString& vendor);
|
|
|
|
void setProduct(const QString& product);
|
|
|
|
void setDevName(const QString& devName);
|
2017-11-12 11:33:20 +00:00
|
|
|
void setDevBluetoothName(const QString& devBluetoothName);
|
2017-05-12 17:18:20 +00:00
|
|
|
void setBluetoothMode(bool mode);
|
|
|
|
void setForceDownload(bool force);
|
|
|
|
void setCreateNewTrip(bool create);
|
2017-05-19 09:23:11 +00:00
|
|
|
void setSaveDump(bool dumpMode);
|
|
|
|
void setSaveLog(bool saveLog);
|
2017-05-12 17:18:20 +00:00
|
|
|
private:
|
2017-06-06 02:41:57 +00:00
|
|
|
static DCDeviceData *m_instance;
|
2017-05-12 17:18:20 +00:00
|
|
|
device_data_t data;
|
2017-11-12 11:33:20 +00:00
|
|
|
|
|
|
|
// Bluetooth name is managed outside of libdivecomputer
|
|
|
|
QString m_devBluetoothName;
|
2017-05-12 17:18:20 +00:00
|
|
|
};
|
|
|
|
|
2017-04-18 17:14:03 +00:00
|
|
|
class DownloadThread : public QThread {
|
|
|
|
Q_OBJECT
|
2018-06-09 10:31:31 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE
|
2017-05-26 14:40:50 +00:00
|
|
|
Q_PROPERTY(DCDeviceData* deviceData MEMBER m_data)
|
2018-06-09 10:31:31 +00:00
|
|
|
#endif // SUBSURFACE_MOBILE
|
2017-05-26 14:40:50 +00:00
|
|
|
|
2017-04-18 17:14:03 +00:00
|
|
|
public:
|
2017-05-19 09:23:11 +00:00
|
|
|
DownloadThread();
|
2017-04-18 17:14:03 +00:00
|
|
|
void run() override;
|
|
|
|
|
2018-06-09 10:31:31 +00:00
|
|
|
DCDeviceData *data();
|
2017-04-18 17:14:03 +00:00
|
|
|
QString error;
|
|
|
|
|
|
|
|
private:
|
2017-05-26 14:40:50 +00:00
|
|
|
DCDeviceData *m_data;
|
2017-04-18 17:14:03 +00:00
|
|
|
};
|
|
|
|
|
2017-05-19 09:23:11 +00:00
|
|
|
//TODO: C++ify descriptor?
|
2017-04-27 18:24:14 +00:00
|
|
|
struct mydescriptor {
|
|
|
|
const char *vendor;
|
|
|
|
const char *product;
|
|
|
|
dc_family_t type;
|
|
|
|
unsigned int model;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* This fills the vendor list QStringList and related members.
|
|
|
|
* this code needs to be reworked to be less ugly, but it will
|
|
|
|
* stay like this for now.
|
|
|
|
*/
|
|
|
|
void fill_computer_list();
|
2018-04-19 13:37:13 +00:00
|
|
|
void show_computer_list();
|
2017-05-29 19:25:21 +00:00
|
|
|
extern QStringList vendorList;
|
2017-04-27 18:24:14 +00:00
|
|
|
extern QHash<QString, QStringList> productList;
|
|
|
|
extern QMap<QString, dc_descriptor_t *> descriptorLookup;
|
2017-07-17 04:49:11 +00:00
|
|
|
extern ConnectionListModel connectionListModel;
|
2017-04-18 17:14:03 +00:00
|
|
|
#endif
|