2017-04-18 17:32:10 +02:00
|
|
|
#include "diveimportedmodel.h"
|
2022-11-12 08:40:04 +01:00
|
|
|
#include "core/dive.h"
|
2018-06-03 22:15:19 +02:00
|
|
|
#include "core/qthelper.h"
|
2019-07-15 23:44:39 +02:00
|
|
|
#include "core/divelist.h"
|
2019-11-16 22:24:06 +01:00
|
|
|
#include "commands/command.h"
|
2017-04-18 17:32:10 +02:00
|
|
|
|
2022-11-12 08:40:04 +01:00
|
|
|
DiveImportedModel::DiveImportedModel(QObject *o) : QAbstractTableModel(o)
|
2017-04-18 17:32:10 +02:00
|
|
|
{
|
2019-09-25 20:49:13 +02:00
|
|
|
connect(&thread, &QThread::finished, this, &DiveImportedModel::downloadThreadFinished);
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
|
2018-05-21 17:53:42 +02:00
|
|
|
int DiveImportedModel::columnCount(const QModelIndex&) const
|
2017-04-18 17:32:10 +02:00
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2018-05-21 17:53:42 +02:00
|
|
|
int DiveImportedModel::rowCount(const QModelIndex&) const
|
2017-04-18 17:32:10 +02:00
|
|
|
{
|
2022-11-12 08:40:04 +01:00
|
|
|
return log.dives->nr;
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant DiveImportedModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
|
|
|
if (orientation == Qt::Vertical)
|
|
|
|
return QVariant();
|
2017-05-26 17:53:25 +02:00
|
|
|
|
|
|
|
// widgets access the model via index.column(), qml via role.
|
|
|
|
int column = section;
|
|
|
|
if (role == DateTime || role == Duration || role == Depth) {
|
|
|
|
column = role - DateTime;
|
|
|
|
role = Qt::DisplayRole;
|
|
|
|
}
|
|
|
|
|
2017-04-18 17:32:10 +02:00
|
|
|
if (role == Qt::DisplayRole) {
|
2017-05-26 17:53:25 +02:00
|
|
|
switch (column) {
|
2017-04-18 17:32:10 +02:00
|
|
|
case 0:
|
|
|
|
return QVariant(tr("Date/time"));
|
|
|
|
case 1:
|
|
|
|
return QVariant(tr("Duration"));
|
|
|
|
case 2:
|
|
|
|
return QVariant(tr("Depth"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant DiveImportedModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return QVariant();
|
|
|
|
|
2022-11-12 08:40:04 +01:00
|
|
|
if (index.row() >= log.dives->nr)
|
2017-04-18 17:32:10 +02:00
|
|
|
return QVariant();
|
|
|
|
|
2024-05-13 19:34:43 +02:00
|
|
|
struct dive *d = get_dive_from_table(index.row(), log.dives.get());
|
2017-04-18 17:32:10 +02:00
|
|
|
if (!d)
|
|
|
|
return QVariant();
|
2017-05-26 17:53:25 +02:00
|
|
|
|
|
|
|
// widgets access the model via index.column(), qml via role.
|
|
|
|
int column = index.column();
|
2017-06-04 14:40:25 +02:00
|
|
|
if (role >= DateTime) {
|
2017-05-26 17:53:25 +02:00
|
|
|
column = role - DateTime;
|
|
|
|
role = Qt::DisplayRole;
|
|
|
|
}
|
|
|
|
|
2017-04-18 17:32:10 +02:00
|
|
|
if (role == Qt::DisplayRole) {
|
2017-05-26 17:53:25 +02:00
|
|
|
switch (column) {
|
2017-04-18 17:32:10 +02:00
|
|
|
case 0:
|
|
|
|
return QVariant(get_short_dive_date_string(d->when));
|
|
|
|
case 1:
|
2017-06-12 18:08:34 +08:00
|
|
|
return QVariant(get_dive_duration_string(d->duration.seconds, tr("h"), tr("min")));
|
2017-04-18 17:32:10 +02:00
|
|
|
case 2:
|
|
|
|
return QVariant(get_depth_string(d->maxdepth.mm, true, false));
|
2017-06-04 14:40:25 +02:00
|
|
|
case 3:
|
|
|
|
return checkStates[index.row()];
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (role == Qt::CheckStateRole) {
|
|
|
|
if (index.column() == 0)
|
|
|
|
return checkStates[index.row()] ? Qt::Checked : Qt::Unchecked;
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveImportedModel::changeSelected(QModelIndex clickedIndex)
|
|
|
|
{
|
|
|
|
checkStates[clickedIndex.row()] = !checkStates[clickedIndex.row()];
|
2017-06-04 14:40:25 +02:00
|
|
|
dataChanged(index(clickedIndex.row(), 0), index(clickedIndex.row(), 0), QVector<int>() << Qt::CheckStateRole << Selected);
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void DiveImportedModel::selectAll()
|
|
|
|
{
|
2018-12-09 19:10:55 +01:00
|
|
|
std::fill(checkStates.begin(), checkStates.end(), true);
|
2022-11-12 08:40:04 +01:00
|
|
|
dataChanged(index(0, 0), index(log.dives->nr - 1, 0), QVector<int>() << Qt::CheckStateRole << Selected);
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 20:36:00 +02:00
|
|
|
void DiveImportedModel::selectRow(int row)
|
|
|
|
{
|
|
|
|
checkStates[row] = !checkStates[row];
|
2017-06-04 14:40:25 +02:00
|
|
|
dataChanged(index(row, 0), index(row, 0), QVector<int>() << Qt::CheckStateRole << Selected);
|
2017-05-29 20:36:00 +02:00
|
|
|
}
|
|
|
|
|
2017-04-18 17:32:10 +02:00
|
|
|
void DiveImportedModel::selectNone()
|
|
|
|
{
|
2018-12-09 19:10:55 +01:00
|
|
|
std::fill(checkStates.begin(), checkStates.end(), false);
|
2022-11-12 08:40:04 +01:00
|
|
|
dataChanged(index(0, 0), index(log.dives->nr - 1, 0 ), QVector<int>() << Qt::CheckStateRole << Selected);
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Qt::ItemFlags DiveImportedModel::flags(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
if (index.column() != 0)
|
|
|
|
return QAbstractTableModel::flags(index);
|
|
|
|
return QAbstractTableModel::flags(index) | Qt::ItemIsUserCheckable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveImportedModel::clearTable()
|
|
|
|
{
|
2019-09-22 22:07:13 +02:00
|
|
|
beginResetModel();
|
2024-05-13 06:17:07 +02:00
|
|
|
log.clear();
|
2019-09-22 22:07:13 +02:00
|
|
|
endResetModel();
|
2017-04-18 17:32:10 +02:00
|
|
|
}
|
|
|
|
|
2019-09-25 20:49:13 +02:00
|
|
|
void DiveImportedModel::downloadThreadFinished()
|
2017-04-18 17:32:10 +02:00
|
|
|
{
|
2018-12-09 18:56:51 +01:00
|
|
|
beginResetModel();
|
|
|
|
|
2024-05-13 19:34:43 +02:00
|
|
|
// Move the table data from thread to model. Replace the downloads thread's log
|
|
|
|
// with an empty log, because it may reuse it.
|
|
|
|
log.clear();
|
|
|
|
std::swap(log, thread.log);
|
2019-09-22 21:48:46 +02:00
|
|
|
|
2022-11-12 08:40:04 +01:00
|
|
|
checkStates.resize(log.dives->nr);
|
2018-12-09 19:10:55 +01:00
|
|
|
std::fill(checkStates.begin(), checkStates.end(), true);
|
2017-05-26 17:53:25 +02:00
|
|
|
|
2018-12-09 18:56:51 +01:00
|
|
|
endResetModel();
|
2019-09-22 21:48:46 +02:00
|
|
|
|
|
|
|
emit downloadFinished();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveImportedModel::startDownload()
|
|
|
|
{
|
|
|
|
thread.start();
|
2017-05-26 17:53:25 +02:00
|
|
|
}
|
|
|
|
|
2020-11-23 17:17:17 +01:00
|
|
|
void DiveImportedModel::waitForDownload()
|
|
|
|
{
|
|
|
|
thread.wait();
|
2020-11-27 21:32:40 +01:00
|
|
|
downloadThreadFinished();
|
2020-11-23 17:17:17 +01:00
|
|
|
}
|
|
|
|
|
2022-11-12 08:40:04 +01:00
|
|
|
struct divelog DiveImportedModel::consumeTables()
|
2019-09-22 20:23:37 +02:00
|
|
|
{
|
|
|
|
beginResetModel();
|
|
|
|
|
2024-05-13 19:34:43 +02:00
|
|
|
// Move tables to result and reset local tables (oldschool pre-C++11 flair).
|
|
|
|
struct divelog res;
|
|
|
|
std::swap(res, log);
|
2019-09-22 20:23:37 +02:00
|
|
|
|
2020-03-11 11:30:51 +01:00
|
|
|
// Reset indices
|
2019-09-22 20:23:37 +02:00
|
|
|
checkStates.clear();
|
|
|
|
|
|
|
|
endResetModel();
|
|
|
|
|
2022-11-12 08:40:04 +01:00
|
|
|
return res;
|
2019-09-22 20:23:37 +02:00
|
|
|
}
|
|
|
|
|
2019-09-22 21:00:15 +02:00
|
|
|
int DiveImportedModel::numDives() const
|
|
|
|
{
|
2022-11-12 08:40:04 +01:00
|
|
|
return log.dives->nr;
|
2019-09-22 21:00:15 +02:00
|
|
|
}
|
|
|
|
|
2019-09-22 18:50:10 +02:00
|
|
|
// Delete non-selected dives
|
|
|
|
void DiveImportedModel::deleteDeselected()
|
2017-05-28 11:48:30 -07:00
|
|
|
{
|
2022-11-12 08:40:04 +01:00
|
|
|
int total = log.dives->nr;
|
2018-09-28 10:21:23 +02:00
|
|
|
int j = 0;
|
|
|
|
for (int i = 0; i < total; i++) {
|
2019-09-22 18:50:10 +02:00
|
|
|
if (checkStates[i]) {
|
2018-09-28 10:21:23 +02:00
|
|
|
j++;
|
2019-09-22 18:50:10 +02:00
|
|
|
} else {
|
|
|
|
beginRemoveRows(QModelIndex(), j, j);
|
2024-05-13 19:34:43 +02:00
|
|
|
delete_dive_from_table(log.dives.get(), j);
|
2019-09-22 18:50:10 +02:00
|
|
|
endRemoveRows();
|
|
|
|
}
|
2017-05-28 11:48:30 -07:00
|
|
|
}
|
2022-11-12 08:40:04 +01:00
|
|
|
checkStates.resize(log.dives->nr);
|
2019-09-22 18:50:10 +02:00
|
|
|
std::fill(checkStates.begin(), checkStates.end(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: this function is only used from mobile - perhaps move it there or unify.
|
2019-11-16 22:24:06 +01:00
|
|
|
void DiveImportedModel::recordDives(int flags)
|
2019-09-22 18:50:10 +02:00
|
|
|
{
|
2019-11-16 22:24:06 +01:00
|
|
|
// delete non-selected dives
|
2019-09-22 22:00:29 +02:00
|
|
|
deleteDeselected();
|
|
|
|
|
2022-11-12 08:40:04 +01:00
|
|
|
struct divelog log = consumeTables();
|
|
|
|
if (log.dives->nr > 0) {
|
2019-11-16 22:24:06 +01:00
|
|
|
auto data = thread.data();
|
2022-11-12 08:40:04 +01:00
|
|
|
Command::importDives(&log, flags, data->devName());
|
2019-11-16 22:24:06 +01:00
|
|
|
}
|
2017-05-28 11:48:30 -07:00
|
|
|
}
|
|
|
|
|
2017-05-26 17:53:25 +02:00
|
|
|
QHash<int, QByteArray> DiveImportedModel::roleNames() const {
|
|
|
|
static QHash<int, QByteArray> roles = {
|
|
|
|
{ DateTime, "datetime"},
|
|
|
|
{ Depth, "depth"},
|
2017-05-29 20:36:00 +02:00
|
|
|
{ Duration, "duration"},
|
2017-06-04 14:40:25 +02:00
|
|
|
{ Selected, "selected"}
|
2017-05-29 20:36:00 +02:00
|
|
|
};
|
2017-05-26 17:53:25 +02:00
|
|
|
return roles;
|
|
|
|
}
|