subsurface/core/downloadfromdcthread.h
Michael Keller a38ea971a0 Import: Add option to sync time on dive computer download
Add an option for users to sync the dive computer time with the PC time
every time dives are downloaded.
Obviously this will only work on dive computers that have time
synchronisation support in libdivecomputer, for other computers a notice
is logged.
The selection for this option is persisted as a preference.

Signed-off-by: Michael Keller <github@ike.ch>
2023-04-17 07:56:02 -07:00

105 lines
2.5 KiB
C++

#ifndef DOWNLOADFROMDCTHREAD_H
#define DOWNLOADFROMDCTHREAD_H
#include <QThread>
#include <QMap>
#include <QHash>
#include <QLoggingCategory>
#include "divelog.h"
#include "libdivecomputer.h"
#include "connectionlistmodel.h"
#if BT_SUPPORT
#include "core/btdiscovery.h"
#endif
#if defined(Q_OS_ANDROID)
#include "core/serial_usb_android.h"
#endif
/* Helper object for access of Device Data in QML */
class DCDeviceData {
public:
DCDeviceData();
static DCDeviceData *instance();
QString vendor() const;
QString product() const;
QString devName() const;
bool bluetoothMode() const;
bool saveDump() const;
QString devBluetoothName() const;
QString descriptor() const;
bool forceDownload() const;
bool saveLog() const;
int diveId() const;
bool syncTime() const;
/* this needs to be a pointer to make the C-API happy */
device_data_t *internalData();
QStringList getProductListFromVendor(const QString& vendor);
int getMatchingAddress(const QString &vendor, const QString &product);
int getDetectedVendorIndex();
int getDetectedProductIndex(const QString &currentVendorText);
void setDiveId(int diveId);
void setVendor(const QString& vendor);
void setProduct(const QString& product);
void setDevName(const QString& devName);
void setDevBluetoothName(const QString& devBluetoothName);
void setBluetoothMode(bool mode);
void setForceDownload(bool force);
void setSaveDump(bool dumpMode);
void setSaveLog(bool saveLog);
#if defined(Q_OS_ANDROID)
void setUsbDevice(const android_usb_serial_device_descriptor &usbDescriptor);
#endif
void setSyncTime(bool syncTime);
private:
#if defined(Q_OS_ANDROID)
struct android_usb_serial_device_descriptor androidUsbDescriptor;
#endif
device_data_t data;
// Bluetooth name is managed outside of libdivecomputer
QString m_devBluetoothName;
};
class DownloadThread : public QThread {
Q_OBJECT
public:
DownloadThread();
void run() override;
DCDeviceData *data();
QString error;
struct divelog log;
private:
DCDeviceData *m_data;
};
//TODO: C++ify descriptor?
struct mydescriptor {
const char *vendor;
const char *product;
dc_family_t type;
unsigned int model;
unsigned int transports;
};
/* 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();
extern "C" {
void show_computer_list();
}
extern QStringList vendorList;
extern QHash<QString, QStringList> productList;
extern QMap<QString, dc_descriptor_t *> descriptorLookup;
extern ConnectionListModel connectionListModel;
#endif