mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Create class to write settings to dive computer
Adds a class to write settings to dive computer, and modifies the existing ones to integrate it. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
This commit is contained in:
parent
a7c9b25b05
commit
3e127a059f
5 changed files with 156 additions and 9 deletions
|
@ -3,7 +3,8 @@
|
|||
#include <QDebug>
|
||||
ConfigureDiveComputer::ConfigureDiveComputer(QObject *parent) :
|
||||
QObject(parent),
|
||||
readThread(0)
|
||||
readThread(0),
|
||||
writeThread(0)
|
||||
{
|
||||
setState(INITIAL);
|
||||
}
|
||||
|
@ -23,29 +24,57 @@ void ConfigureDiveComputer::readSettings(device_data_t *data)
|
|||
readThread->start();
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::setDeviceName(device_data_t *data, QString newName)
|
||||
{
|
||||
writeSettingToDevice(data, "Name", newName);
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::setDeviceDateAndTime(device_data_t *data, QDateTime dateAndTime)
|
||||
{
|
||||
writeSettingToDevice(data, "DateAndTime", dateAndTime);
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::setState(ConfigureDiveComputer::states newState)
|
||||
{
|
||||
currentState = newState;
|
||||
emit stateChanged(currentState);
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::writeSettingToDevice(device_data_t *data, QString settingName, QVariant settingValue)
|
||||
{
|
||||
setState(READING);
|
||||
|
||||
if (writeThread)
|
||||
writeThread->deleteLater();
|
||||
|
||||
writeThread = new WriteSettingsThread(this, data, settingName, settingValue);
|
||||
connect (writeThread, SIGNAL(error(QString)), this, SLOT(setError(QString)));
|
||||
connect (writeThread, SIGNAL(finished()), this, SLOT(writeThreadFinished()));
|
||||
|
||||
writeThread->start();
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::setError(QString err)
|
||||
{
|
||||
lastError = err;
|
||||
emit error(err);
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::readHWSettings(device_data_t *data)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::readThreadFinished()
|
||||
{
|
||||
setState(DONE);
|
||||
emit deviceSettings(readThread->result);
|
||||
}
|
||||
|
||||
void ConfigureDiveComputer::writeThreadFinished()
|
||||
{
|
||||
setState(DONE);
|
||||
if (writeThread->lastError.isEmpty()) {
|
||||
//No error
|
||||
emit message(tr("Setting successfully written to device"));
|
||||
}
|
||||
}
|
||||
|
||||
ReadSettingsThread::ReadSettingsThread(QObject *parent, device_data_t *data)
|
||||
: QThread(parent), data(data)
|
||||
{
|
||||
|
@ -72,3 +101,54 @@ void ReadSettingsThread::run()
|
|||
emit error(lastError);
|
||||
}
|
||||
}
|
||||
|
||||
WriteSettingsThread::WriteSettingsThread(QObject *parent, device_data_t *data, QString settingName, QVariant settingValue)
|
||||
: QThread(parent), data(data), m_settingName(settingName), m_settingValue(settingValue)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void WriteSettingsThread::run()
|
||||
{
|
||||
bool supported = false;
|
||||
dc_status_t rc;
|
||||
QString product = data->product;
|
||||
QString vendor = data->vendor;
|
||||
rc = dc_device_open(&data->device, data->context, data->descriptor, data->devname);
|
||||
if (rc == DC_STATUS_SUCCESS) {
|
||||
dc_status_t result;
|
||||
if (product.trimmed() == "OSTC 3") {
|
||||
if (m_settingName == "Name") {
|
||||
supported = true;
|
||||
result = hw_ostc3_device_customtext(data->device, m_settingValue.toByteArray().data());
|
||||
}
|
||||
}
|
||||
if (vendor.trimmed() == "Heinrichs Weikamp" && m_settingName == "DateAndTime") {
|
||||
supported = true;
|
||||
QDateTime timeToSet = m_settingValue.toDateTime();
|
||||
dc_datetime_t time;
|
||||
time.year = timeToSet.date().year();
|
||||
time.month = timeToSet.date().month();
|
||||
time.day = timeToSet.date().day();
|
||||
time.hour = timeToSet.time().hour();
|
||||
time.minute = timeToSet.time().minute();
|
||||
time.second = timeToSet.time().second();
|
||||
result = hw_ostc_device_clock(data->device, &time); //Toto fix error here
|
||||
}
|
||||
if (result != DC_STATUS_SUCCESS) {
|
||||
qDebug() << result;
|
||||
lastError = tr("An error occurred while sending data to the dive computer.");
|
||||
//Todo Update this message to change depending on actual result.
|
||||
|
||||
emit error(lastError);
|
||||
}
|
||||
dc_device_close(data->device);
|
||||
} else {
|
||||
lastError = tr("Could not a establish connection to the dive computer.");
|
||||
emit error(lastError);
|
||||
}
|
||||
if (!supported) {
|
||||
lastError = tr("This feature is not yet available for the selected dive computer.");
|
||||
emit error(lastError);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue