2013-12-29 16:11:20 +00:00
|
|
|
#include "divelogimportdialog.h"
|
2013-10-16 19:05:19 +00:00
|
|
|
#include "mainwindow.h"
|
2013-12-29 16:11:20 +00:00
|
|
|
#include "ui_divelogimportdialog.h"
|
2015-01-17 09:43:52 +00:00
|
|
|
#include <QShortcut>
|
2015-01-06 17:03:58 +00:00
|
|
|
#include <QDrag>
|
|
|
|
#include <QMimeData>
|
2015-01-06 18:11:27 +00:00
|
|
|
|
2015-01-06 19:32:29 +00:00
|
|
|
static QString subsurface_mimedata = "subsurface/csvcolumns";
|
2015-01-07 17:40:10 +00:00
|
|
|
static QString subsurface_index = "subsurface/csvindex";
|
2015-01-06 19:32:29 +00:00
|
|
|
|
2013-12-29 16:11:20 +00:00
|
|
|
const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] = {
|
2014-07-10 18:54:18 +00:00
|
|
|
// time, depth, temperature, po2, cns, ndl, tts, stopdepth, pressure
|
2015-01-08 00:59:42 +00:00
|
|
|
// indices are 0 based, -1 means the column doesn't exist
|
2015-01-07 23:09:24 +00:00
|
|
|
{ "Manual import", },
|
2015-01-08 00:59:42 +00:00
|
|
|
{ "APD Log Viewer", 0, 1, 15, 6, 17, -1, -1, 18, -1, "Tab" },
|
|
|
|
{ "XP5", 0, 1, 9, -1, -1, -1, -1, -1, -1, "Tab" },
|
|
|
|
{ "SensusCSV", 9, 10, -1, -1, -1, -1, -1, -1, -1, "," },
|
|
|
|
{ "Seabear CSV", 0, 1, 5, -1, -1, 2, 3, 4, 6, ";" },
|
2015-01-24 15:03:15 +00:00
|
|
|
{ "SubsurfaceCSV", -1, -1, -1, -1, -1, -1, -1, -1, -1, "Tab" },
|
2014-02-28 04:09:57 +00:00
|
|
|
{ NULL, }
|
2013-10-16 19:05:19 +00:00
|
|
|
};
|
|
|
|
|
2015-01-06 16:45:49 +00:00
|
|
|
ColumnNameProvider::ColumnNameProvider(QObject *parent) : QAbstractListModel(parent)
|
2015-01-06 16:32:03 +00:00
|
|
|
{
|
2015-01-08 00:59:42 +00:00
|
|
|
columnNames << tr("Dive #") << tr("Date") << tr("Time") << tr("Duration") << tr("Location") << tr("GPS") << tr("Weight") << tr("Cyl. size") << tr("Start pressure") <<
|
|
|
|
tr("End pressure") << tr("Max depth") << tr("Avg depth") << tr("Divemaster") << tr("Buddy") << tr("Notes") << tr("Tags") << tr("Air temp.") << tr("Water temp.") <<
|
|
|
|
tr("O₂") << tr("He") << tr("Sample time") << tr("Sample depth") << tr("Sample temperature") << tr("Sample po2") << tr("Sample cns") << tr("Sample ndl") <<
|
|
|
|
tr("Sample tts") << tr("Sample stopdepth") << tr("Sample pressure");
|
2015-01-06 16:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ColumnNameProvider::insertRows(int row, int count, const QModelIndex &parent)
|
|
|
|
{
|
2015-01-06 17:30:59 +00:00
|
|
|
beginInsertRows(QModelIndex(), row, row);
|
|
|
|
columnNames.append(QString());
|
|
|
|
endInsertRows();
|
2015-01-06 23:09:40 +00:00
|
|
|
return true;
|
2015-01-06 16:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ColumnNameProvider::removeRows(int row, int count, const QModelIndex &parent)
|
|
|
|
{
|
2015-01-06 17:26:19 +00:00
|
|
|
beginRemoveRows(QModelIndex(), row, row);
|
|
|
|
columnNames.removeAt(row);
|
|
|
|
endRemoveRows();
|
2015-01-06 23:09:40 +00:00
|
|
|
return true;
|
2015-01-06 16:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ColumnNameProvider::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
|
|
{
|
2015-01-06 17:26:19 +00:00
|
|
|
if (role == Qt::EditRole) {
|
|
|
|
columnNames[index.row()] = value.toString();
|
|
|
|
}
|
|
|
|
dataChanged(index, index);
|
2015-01-06 23:09:40 +00:00
|
|
|
return true;
|
2015-01-06 16:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ColumnNameProvider::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2015-01-06 16:39:56 +00:00
|
|
|
if (!index.isValid())
|
|
|
|
return QVariant();
|
|
|
|
if (role != Qt::DisplayRole)
|
|
|
|
return QVariant();
|
2015-01-06 16:32:03 +00:00
|
|
|
|
2015-01-06 16:39:56 +00:00
|
|
|
return QVariant(columnNames[index.row()]);
|
2015-01-06 16:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ColumnNameProvider::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
2015-01-06 16:39:56 +00:00
|
|
|
Q_UNUSED(parent)
|
|
|
|
return columnNames.count();
|
2015-01-06 16:32:03 +00:00
|
|
|
}
|
|
|
|
|
2015-01-07 20:27:20 +00:00
|
|
|
int ColumnNameProvider::mymatch(QString value) const
|
|
|
|
{
|
|
|
|
QString searchString = value.toLower();
|
|
|
|
searchString.replace("\"", "").replace(" ", "").replace(".", "").replace("\n","");
|
|
|
|
for (int i = 0; i < columnNames.count(); i++) {
|
|
|
|
QString name = columnNames.at(i).toLower();
|
|
|
|
name.replace("\"", "").replace(" ", "").replace(".", "").replace("\n","");
|
|
|
|
if (searchString == name.toLower())
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-01-06 16:54:58 +00:00
|
|
|
ColumnNameView::ColumnNameView(QWidget *parent)
|
|
|
|
{
|
2015-01-06 17:14:14 +00:00
|
|
|
setAcceptDrops(true);
|
|
|
|
setDragEnabled(true);
|
2015-01-06 16:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnNameView::mousePressEvent(QMouseEvent *press)
|
|
|
|
{
|
2015-01-06 17:03:58 +00:00
|
|
|
QModelIndex atClick = indexAt(press->pos());
|
|
|
|
if (!atClick.isValid())
|
|
|
|
return;
|
|
|
|
|
2015-01-06 17:42:50 +00:00
|
|
|
QRect indexRect = visualRect(atClick);
|
|
|
|
QPixmap pix(indexRect.width(), indexRect.height());
|
|
|
|
pix.fill(QColor(0,0,0,0));
|
|
|
|
render(&pix, QPoint(0, 0),QRegion(indexRect));
|
|
|
|
|
2015-01-06 17:03:58 +00:00
|
|
|
QDrag *drag = new QDrag(this);
|
|
|
|
QMimeData *mimeData = new QMimeData;
|
2015-01-06 19:32:29 +00:00
|
|
|
mimeData->setData(subsurface_mimedata, atClick.data().toByteArray());
|
2015-01-06 17:26:19 +00:00
|
|
|
model()->removeRow(atClick.row());
|
2015-01-06 17:42:50 +00:00
|
|
|
drag->setPixmap(pix);
|
2015-01-06 17:03:58 +00:00
|
|
|
drag->setMimeData(mimeData);
|
2015-01-06 19:19:08 +00:00
|
|
|
if (drag->exec() == Qt::IgnoreAction){
|
|
|
|
model()->insertRow(model()->rowCount());
|
|
|
|
QModelIndex idx = model()->index(model()->rowCount()-1, 0);
|
2015-01-06 19:32:29 +00:00
|
|
|
model()->setData(idx, mimeData->data(subsurface_mimedata));
|
2015-01-06 19:19:08 +00:00
|
|
|
}
|
2015-01-06 17:14:14 +00:00
|
|
|
}
|
|
|
|
|
2015-01-07 00:24:46 +00:00
|
|
|
void ColumnNameView::dragLeaveEvent(QDragLeaveEvent *leave)
|
|
|
|
{
|
|
|
|
Q_UNUSED(leave);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnNameView::dragEnterEvent(QDragEnterEvent *event)
|
|
|
|
{
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnNameView::dragMoveEvent(QDragMoveEvent *event)
|
|
|
|
{
|
|
|
|
QModelIndex curr = indexAt(event->pos());
|
|
|
|
if (!curr.isValid() || curr.row() != 0)
|
|
|
|
return;
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnNameView::dropEvent(QDropEvent *event)
|
|
|
|
{
|
|
|
|
const QMimeData *mimeData = event->mimeData();
|
|
|
|
if (mimeData->data(subsurface_mimedata).count()) {
|
|
|
|
if (event->source() != this) {
|
|
|
|
event->acceptProposedAction();
|
|
|
|
QVariant value = QString(mimeData->data(subsurface_mimedata));
|
|
|
|
model()->insertRow(model()->rowCount());
|
|
|
|
model()->setData(model()->index(model()->rowCount()-1, 0), value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 17:56:08 +00:00
|
|
|
ColumnDropCSVView::ColumnDropCSVView(QWidget *parent)
|
|
|
|
{
|
2015-01-06 18:52:15 +00:00
|
|
|
setAcceptDrops(true);
|
2015-01-06 17:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnDropCSVView::dragLeaveEvent(QDragLeaveEvent *leave)
|
|
|
|
{
|
2015-01-06 18:52:15 +00:00
|
|
|
Q_UNUSED(leave);
|
2015-01-06 17:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnDropCSVView::dragEnterEvent(QDragEnterEvent *event)
|
|
|
|
{
|
2015-01-06 18:52:15 +00:00
|
|
|
event->acceptProposedAction();
|
2015-01-06 17:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnDropCSVView::dragMoveEvent(QDragMoveEvent *event)
|
|
|
|
{
|
2015-01-06 18:52:15 +00:00
|
|
|
QModelIndex curr = indexAt(event->pos());
|
|
|
|
if (!curr.isValid() || curr.row() != 0)
|
|
|
|
return;
|
|
|
|
event->acceptProposedAction();
|
2015-01-06 17:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnDropCSVView::dropEvent(QDropEvent *event)
|
|
|
|
{
|
2015-01-06 18:54:50 +00:00
|
|
|
QModelIndex curr = indexAt(event->pos());
|
|
|
|
if (!curr.isValid() || curr.row() != 0)
|
|
|
|
return;
|
2015-01-06 17:56:08 +00:00
|
|
|
|
2015-01-06 18:54:50 +00:00
|
|
|
const QMimeData *mimeData = event->mimeData();
|
2015-01-07 01:30:46 +00:00
|
|
|
if (!mimeData->data(subsurface_mimedata).count())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (event->source() == this ) {
|
2015-01-07 17:40:10 +00:00
|
|
|
int value_old = mimeData->data(subsurface_index).toInt();
|
|
|
|
int value_new = curr.column();
|
2015-01-07 01:30:46 +00:00
|
|
|
ColumnNameResult *m = qobject_cast<ColumnNameResult*>(model());
|
|
|
|
m->swapValues(value_old, value_new);
|
|
|
|
event->acceptProposedAction();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (curr.data().toString().isEmpty()) {
|
|
|
|
QVariant value = QString(mimeData->data(subsurface_mimedata));
|
|
|
|
model()->setData(curr, value);
|
|
|
|
event->acceptProposedAction();
|
2015-01-06 18:54:50 +00:00
|
|
|
}
|
2015-01-06 17:56:08 +00:00
|
|
|
}
|
2015-01-06 17:14:14 +00:00
|
|
|
|
2015-01-06 18:41:49 +00:00
|
|
|
ColumnNameResult::ColumnNameResult(QObject *parent) : QAbstractTableModel(parent)
|
2015-01-06 18:01:21 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-07 17:40:10 +00:00
|
|
|
void ColumnNameResult::swapValues(int firstIndex, int secondIndex) {
|
|
|
|
QString one = columnNames[firstIndex];
|
|
|
|
QString two = columnNames[secondIndex];
|
|
|
|
setData(index(0, firstIndex), QVariant(two), Qt::EditRole);
|
2015-01-07 01:20:54 +00:00
|
|
|
setData(index(0, secondIndex), QVariant(one), Qt::EditRole);
|
2015-01-07 00:12:05 +00:00
|
|
|
}
|
|
|
|
|
2015-01-06 18:01:21 +00:00
|
|
|
bool ColumnNameResult::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
|
|
{
|
2015-01-07 01:20:54 +00:00
|
|
|
if (!index.isValid() || index.row() != 0) {
|
2015-01-06 18:40:51 +00:00
|
|
|
return false;
|
2015-01-07 01:20:54 +00:00
|
|
|
}
|
2015-01-06 18:40:51 +00:00
|
|
|
if (role == Qt::EditRole) {
|
|
|
|
columnNames[index.column()] = value.toString();
|
|
|
|
dataChanged(index, index);
|
|
|
|
}
|
2015-01-06 23:09:40 +00:00
|
|
|
return true;
|
2015-01-06 18:01:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ColumnNameResult::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2015-01-06 18:37:36 +00:00
|
|
|
if (!index.isValid())
|
|
|
|
return QVariant();
|
2015-01-07 20:54:23 +00:00
|
|
|
if (role == Qt::BackgroundColorRole)
|
|
|
|
if (index.row() == 0)
|
|
|
|
return QVariant(AIR_BLUE_TRANS);
|
|
|
|
|
2015-01-06 18:37:36 +00:00
|
|
|
if (role != Qt::DisplayRole)
|
|
|
|
return QVariant();
|
2015-01-06 18:01:21 +00:00
|
|
|
|
2015-01-06 18:37:36 +00:00
|
|
|
if (index.row() == 0) {
|
|
|
|
return (columnNames[index.column()]);
|
|
|
|
}
|
2015-01-07 03:53:49 +00:00
|
|
|
// make sure the element exists before returning it - this might get called before the
|
|
|
|
// model is correctly set up again (e.g., when changing separators)
|
|
|
|
if (columnValues.count() > index.row() - 1 && columnValues[index.row() - 1].count() > index.column())
|
|
|
|
return QVariant(columnValues[index.row() - 1][index.column()]);
|
|
|
|
else
|
|
|
|
return QVariant();
|
2015-01-06 18:01:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ColumnNameResult::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
2015-01-06 18:30:59 +00:00
|
|
|
Q_UNUSED(parent);
|
|
|
|
return columnValues.count() + 1; // +1 == the header.
|
2015-01-06 18:01:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ColumnNameResult::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
2015-01-06 18:30:59 +00:00
|
|
|
Q_UNUSED(parent);
|
|
|
|
return columnNames.count();
|
2015-01-06 18:01:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-06 20:12:48 +00:00
|
|
|
QStringList ColumnNameResult::result() const
|
|
|
|
{
|
|
|
|
return columnNames;
|
|
|
|
}
|
|
|
|
|
2015-01-06 18:05:06 +00:00
|
|
|
void ColumnNameResult::setColumnValues(QList<QStringList> columns)
|
|
|
|
{
|
2015-01-06 18:30:59 +00:00
|
|
|
if (rowCount() != 1) {
|
|
|
|
beginRemoveRows(QModelIndex(), 1, rowCount()-1);
|
|
|
|
columnValues.clear();
|
|
|
|
endRemoveRows();
|
|
|
|
}
|
|
|
|
if (columnCount() != 0) {
|
|
|
|
beginRemoveColumns(QModelIndex(), 0, columnCount()-1);
|
|
|
|
columnNames.clear();
|
|
|
|
endRemoveColumns();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList first = columns.first();
|
|
|
|
beginInsertColumns(QModelIndex(), 0, first.count()-1);
|
2015-01-07 19:24:57 +00:00
|
|
|
for(int i = 0; i < first.count(); i++)
|
2015-01-06 18:30:59 +00:00
|
|
|
columnNames.append(QString());
|
2015-01-07 19:24:57 +00:00
|
|
|
|
2015-01-06 18:30:59 +00:00
|
|
|
endInsertColumns();
|
2015-01-06 18:05:06 +00:00
|
|
|
|
2015-01-06 18:30:59 +00:00
|
|
|
beginInsertRows(QModelIndex(), 0, columns.count()-1);
|
|
|
|
columnValues = columns;
|
|
|
|
endInsertRows();
|
2015-01-06 18:05:06 +00:00
|
|
|
}
|
|
|
|
|
2015-01-06 23:49:48 +00:00
|
|
|
void ColumnDropCSVView::mousePressEvent(QMouseEvent *press)
|
|
|
|
{
|
|
|
|
QModelIndex atClick = indexAt(press->pos());
|
|
|
|
if (!atClick.isValid() || atClick.row())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QRect indexRect = visualRect(atClick);
|
|
|
|
QPixmap pix(indexRect.width(), indexRect.height());
|
|
|
|
pix.fill(QColor(0,0,0,0));
|
|
|
|
render(&pix, QPoint(0, 0),QRegion(indexRect));
|
|
|
|
|
|
|
|
QDrag *drag = new QDrag(this);
|
|
|
|
QMimeData *mimeData = new QMimeData;
|
|
|
|
mimeData->setData(subsurface_mimedata, atClick.data().toByteArray());
|
2015-01-07 17:40:10 +00:00
|
|
|
mimeData->setData(subsurface_index, QString::number(atClick.column()).toLocal8Bit());
|
2015-01-06 23:49:48 +00:00
|
|
|
drag->setPixmap(pix);
|
|
|
|
drag->setMimeData(mimeData);
|
|
|
|
if (drag->exec() != Qt::IgnoreAction){
|
2015-01-07 01:20:54 +00:00
|
|
|
QObject *target = drag->target();
|
|
|
|
if (target->objectName() == "qt_scrollarea_viewport")
|
|
|
|
target = target->parent();
|
2015-01-07 17:47:40 +00:00
|
|
|
if (target != drag->source())
|
2015-01-07 00:41:57 +00:00
|
|
|
model()->setData(atClick, QString());
|
2015-01-06 23:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 18:11:27 +00:00
|
|
|
DiveLogImportDialog::DiveLogImportDialog(QStringList fn, QWidget *parent) : QDialog(parent),
|
2013-10-16 19:05:19 +00:00
|
|
|
selector(true),
|
2013-12-29 16:11:20 +00:00
|
|
|
ui(new Ui::DiveLogImportDialog)
|
2013-10-16 19:05:19 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2015-01-06 18:11:27 +00:00
|
|
|
fileNames = fn;
|
2014-12-25 13:25:29 +00:00
|
|
|
column = 0;
|
2013-10-16 19:05:19 +00:00
|
|
|
|
2014-01-16 20:50:16 +00:00
|
|
|
/* Add indexes of XSLTs requiring special handling to the list */
|
|
|
|
specialCSV << 3;
|
2014-12-26 14:11:38 +00:00
|
|
|
specialCSV << 5;
|
2014-01-16 20:50:16 +00:00
|
|
|
|
2013-10-16 19:05:19 +00:00
|
|
|
for (int i = 0; !CSVApps[i].name.isNull(); ++i)
|
|
|
|
ui->knownImports->addItem(CSVApps[i].name);
|
|
|
|
|
2015-01-22 09:33:10 +00:00
|
|
|
ui->CSVSeparator->addItems( QStringList() << tr("Tab") << "," << ";");
|
2014-12-25 13:25:29 +00:00
|
|
|
|
2015-01-08 01:02:42 +00:00
|
|
|
loadFileContents(-1, INITIAL);
|
2015-01-06 18:11:27 +00:00
|
|
|
|
2014-12-25 13:25:29 +00:00
|
|
|
/* manually import CSV file */
|
2014-04-25 17:44:23 +00:00
|
|
|
QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this);
|
|
|
|
connect(close, SIGNAL(activated()), this, SLOT(close()));
|
|
|
|
QShortcut *quit = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this);
|
|
|
|
connect(quit, SIGNAL(activated()), parent, SLOT(close()));
|
2015-01-06 18:37:36 +00:00
|
|
|
|
2015-01-08 01:02:42 +00:00
|
|
|
connect(ui->CSVSeparator, SIGNAL(currentIndexChanged(int)), this, SLOT(loadFileContentsSeperatorSelected(int)));
|
|
|
|
connect(ui->knownImports, SIGNAL(currentIndexChanged(int)), this, SLOT(loadFileContentsKnownTypesSelected(int)));
|
2013-10-16 19:05:19 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 16:11:20 +00:00
|
|
|
DiveLogImportDialog::~DiveLogImportDialog()
|
2013-10-16 19:05:19 +00:00
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2015-01-08 01:02:42 +00:00
|
|
|
void DiveLogImportDialog::loadFileContentsSeperatorSelected(int value)
|
|
|
|
{
|
|
|
|
loadFileContents(value, SEPARATOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveLogImportDialog::loadFileContentsKnownTypesSelected(int value)
|
|
|
|
{
|
|
|
|
loadFileContents(value, KNOWNTYPES);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy)
|
|
|
|
{
|
2015-01-06 18:11:27 +00:00
|
|
|
QFile f(fileNames.first());
|
2015-01-06 18:21:50 +00:00
|
|
|
QList<QStringList> fileColumns;
|
|
|
|
QStringList currColumns;
|
2015-01-07 19:24:57 +00:00
|
|
|
QStringList headers;
|
2015-01-07 20:41:06 +00:00
|
|
|
bool matchedSome = false;
|
2015-01-22 09:33:09 +00:00
|
|
|
bool seabear = false;
|
2015-01-23 18:06:32 +00:00
|
|
|
bool xp5 = false;
|
2015-01-06 18:21:50 +00:00
|
|
|
|
2015-01-08 01:02:42 +00:00
|
|
|
// reset everything
|
|
|
|
ColumnNameProvider *provider = new ColumnNameProvider(this);
|
|
|
|
ui->avaliableColumns->setModel(provider);
|
|
|
|
ui->avaliableColumns->setItemDelegate(new TagDragDelegate(ui->avaliableColumns));
|
|
|
|
resultModel = new ColumnNameResult(this);
|
|
|
|
ui->tableView->setModel(resultModel);
|
|
|
|
|
2015-01-06 18:21:50 +00:00
|
|
|
f.open(QFile::ReadOnly);
|
2015-01-07 16:56:01 +00:00
|
|
|
QString firstLine = f.readLine();
|
2015-01-22 09:33:09 +00:00
|
|
|
if (firstLine.contains("SEABEAR")) {
|
|
|
|
seabear = true;
|
2015-01-22 16:09:43 +00:00
|
|
|
firstLine = "Sample time;Sample depth;Sample ndl;Sample tts;Sample stopdepth;Sample temperature;Sample pressure";
|
2015-01-22 16:09:44 +00:00
|
|
|
blockSignals(true);
|
|
|
|
ui->knownImports->setCurrentText("Seabear CSV");
|
|
|
|
blockSignals(false);
|
2015-01-23 18:06:32 +00:00
|
|
|
} else if (firstLine.contains("Tauchgangs-Nr.:")) {
|
|
|
|
xp5 = true;
|
|
|
|
//"Abgelaufene Tauchzeit (Std:Min.)\tTiefe\tStickstoff Balkenanzeige\tSauerstoff Balkenanzeige\tAufstiegsgeschwindigkeit\tRestluftzeit\tRestliche Tauchzeit\tDekompressionszeit (Std:Min)\tDekostopp-Tiefe\tTemperatur\tPO2\tPressluftflasche\tLesen des Druckes\tStatus der Verbindung\tTauchstatus";
|
|
|
|
firstLine = "Sample time\tSample depth\t\t\t\t\t\t\t\tSample temperature\t";
|
|
|
|
blockSignals(true);
|
|
|
|
ui->knownImports->setCurrentText("XP5");
|
|
|
|
blockSignals(false);
|
2015-01-22 09:33:09 +00:00
|
|
|
}
|
2015-01-24 15:03:09 +00:00
|
|
|
|
|
|
|
// Special handling for APD Log Viewer
|
|
|
|
if (triggeredBy == KNOWNTYPES && value == 1) {
|
|
|
|
firstLine = "Sample time\tSample depth\t\t\t\t\tSample po2\t\t\t\t\t\t\t\t\tSample temperature\t\tSample cns\tSample stopdetph";
|
|
|
|
blockSignals(true);
|
|
|
|
ui->CSVSeparator->setCurrentText(tr("Tab"));
|
|
|
|
blockSignals(false);
|
|
|
|
}
|
|
|
|
|
2015-01-08 01:02:42 +00:00
|
|
|
QString separator = ui->CSVSeparator->currentText() == tr("Tab") ? "\t" : ui->CSVSeparator->currentText();
|
2015-01-07 19:24:57 +00:00
|
|
|
currColumns = firstLine.split(separator);
|
2015-01-08 01:02:42 +00:00
|
|
|
if (triggeredBy == INITIAL) {
|
|
|
|
// guess the separator
|
|
|
|
int tabs = firstLine.count('\t');
|
|
|
|
int commas = firstLine.count(',');
|
|
|
|
int semis = firstLine.count(';');
|
|
|
|
if (tabs > commas && tabs > semis)
|
|
|
|
separator = "\t";
|
|
|
|
else if (commas > tabs && commas > semis)
|
|
|
|
separator = ",";
|
|
|
|
else if (semis > tabs && semis > commas)
|
|
|
|
separator = ";";
|
|
|
|
if (ui->CSVSeparator->currentText() != separator) {
|
|
|
|
blockSignals(true);
|
|
|
|
ui->CSVSeparator->setCurrentText(separator);
|
|
|
|
blockSignals(false);
|
|
|
|
currColumns = firstLine.split(separator);
|
2015-01-07 19:24:57 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-08 01:02:42 +00:00
|
|
|
if (triggeredBy == INITIAL || (triggeredBy == KNOWNTYPES && value == 0) || triggeredBy == SEPARATOR) {
|
|
|
|
// now try and guess the columns
|
|
|
|
Q_FOREACH (QString columnText, currColumns) {
|
|
|
|
columnText.replace("\"", "");
|
|
|
|
columnText.replace("number", "#", Qt::CaseInsensitive);
|
2015-01-24 15:03:17 +00:00
|
|
|
columnText.replace("2", "₂", Qt::CaseInsensitive);
|
|
|
|
columnText.replace("cylinder", "cyl.", Qt::CaseInsensitive);
|
2015-01-08 21:44:51 +00:00
|
|
|
int idx = provider->mymatch(columnText);
|
2015-01-08 01:02:42 +00:00
|
|
|
if (idx >= 0) {
|
2015-01-08 21:44:51 +00:00
|
|
|
QString foundHeading = provider->data(provider->index(idx, 0), Qt::DisplayRole).toString();
|
|
|
|
provider->removeRow(idx);
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.append(foundHeading);
|
|
|
|
matchedSome = true;
|
|
|
|
} else {
|
|
|
|
headers.append("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (matchedSome) {
|
|
|
|
ui->dragInstructions->setText(tr("Some column headers were pre-populated; please drag and drop the headers so they match the column they are in."));
|
2015-01-23 18:06:32 +00:00
|
|
|
if (triggeredBy != KNOWNTYPES && !seabear && !xp5) {
|
2015-01-08 01:02:42 +00:00
|
|
|
blockSignals(true);
|
|
|
|
ui->knownImports->setCurrentIndex(0); // <- that's "Manual import"
|
|
|
|
blockSignals(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (triggeredBy == KNOWNTYPES && value != 0) {
|
|
|
|
// an actual known type
|
2015-01-24 15:03:15 +00:00
|
|
|
if (value == 5) {
|
|
|
|
/*
|
|
|
|
* Subsurface CSV file needs separator detection
|
|
|
|
* as we used to default to comma but switched
|
|
|
|
* to tab.
|
|
|
|
*/
|
|
|
|
int tabs = firstLine.count('\t');
|
|
|
|
int commas = firstLine.count(',');
|
|
|
|
if (tabs > commas)
|
|
|
|
separator = "Tab";
|
|
|
|
else
|
|
|
|
separator = ",";
|
|
|
|
} else {
|
|
|
|
separator = CSVApps[value].separator;
|
|
|
|
}
|
2015-01-24 15:03:08 +00:00
|
|
|
|
|
|
|
if (ui->CSVSeparator->currentText() != separator || separator == "Tab") {
|
2015-01-24 15:03:14 +00:00
|
|
|
ui->CSVSeparator->blockSignals(true);
|
2015-01-08 01:02:42 +00:00
|
|
|
ui->CSVSeparator->setCurrentText(separator);
|
2015-01-24 15:03:14 +00:00
|
|
|
ui->CSVSeparator->blockSignals(false);
|
2015-01-08 01:02:42 +00:00
|
|
|
if (separator == "Tab")
|
|
|
|
separator = "\t";
|
|
|
|
currColumns = firstLine.split(separator);
|
|
|
|
}
|
|
|
|
// now set up time, depth, temperature, po2, cns, ndl, tts, stopdepth, pressure
|
|
|
|
for (int i = 0; i < currColumns.count(); i++)
|
|
|
|
headers.append("");
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].time != -1 && CSVApps[value].time < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].time, tr("Sample time"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].depth != -1 && CSVApps[value].depth < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].depth, tr("Sample depth"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].temperature != -1 && CSVApps[value].temperature < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].temperature, tr("Sample temperature"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].po2 != -1 && CSVApps[value].po2 < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].po2, tr("Sample po2"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].cns != -1 && CSVApps[value].cns < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].cns, tr("Sample cns"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].ndl != -1 && CSVApps[value].ndl < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].ndl, tr("Sample ndl"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].tts != -1 && CSVApps[value].tts < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].tts, tr("Sample tts"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].stopdepth != -1 && CSVApps[value].stopdepth < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].stopdepth, tr("Sample stopdepth"));
|
2015-01-23 18:06:31 +00:00
|
|
|
if (CSVApps[value].pressure != -1 && CSVApps[value].pressure < currColumns.count())
|
2015-01-08 01:02:42 +00:00
|
|
|
headers.replace(CSVApps[value].pressure, tr("Samples pressure"));
|
2015-01-07 23:11:54 +00:00
|
|
|
}
|
2015-01-08 01:02:42 +00:00
|
|
|
|
2015-01-07 16:56:01 +00:00
|
|
|
f.reset();
|
2015-01-06 18:21:50 +00:00
|
|
|
int rows = 0;
|
2015-01-22 09:33:09 +00:00
|
|
|
|
2015-01-23 18:06:32 +00:00
|
|
|
/* Skipping the header of Seabear and XP5 CSV files. */
|
|
|
|
if (seabear || xp5) {
|
2015-01-22 09:33:09 +00:00
|
|
|
/*
|
|
|
|
* First set of data on Seabear CSV file is metadata
|
|
|
|
* that is separated by an empty line (windows line
|
|
|
|
* termination might be encountered.
|
|
|
|
*/
|
2015-01-23 18:06:32 +00:00
|
|
|
while (strlen(f.readLine()) > 3 && !f.atEnd());
|
2015-01-22 09:33:09 +00:00
|
|
|
/*
|
|
|
|
* Next we have description of the fields and two dummy
|
|
|
|
* lines. Separated again with an empty line from the
|
|
|
|
* actual data.
|
|
|
|
*/
|
2015-01-23 18:06:32 +00:00
|
|
|
while (strlen(f.readLine()) > 3 && !f.atEnd());
|
2015-01-22 09:33:09 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 15:03:12 +00:00
|
|
|
while (rows < 10 && !f.atEnd()) {
|
2015-01-06 18:21:50 +00:00
|
|
|
QString currLine = f.readLine();
|
2015-01-06 18:37:36 +00:00
|
|
|
currColumns = currLine.split(separator);
|
2015-01-06 18:21:50 +00:00
|
|
|
fileColumns.append(currColumns);
|
|
|
|
rows += 1;
|
|
|
|
}
|
|
|
|
resultModel->setColumnValues(fileColumns);
|
2015-01-07 19:24:57 +00:00
|
|
|
for (int i = 0; i < headers.count(); i++)
|
|
|
|
if (!headers.at(i).isEmpty())
|
|
|
|
resultModel->setData(resultModel->index(0, i),headers.at(i),Qt::EditRole);
|
2015-01-06 18:11:27 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 16:11:20 +00:00
|
|
|
void DiveLogImportDialog::on_buttonBox_accepted()
|
2013-10-16 19:05:19 +00:00
|
|
|
{
|
2015-01-06 20:12:48 +00:00
|
|
|
QStringList r = resultModel->result();
|
2015-01-22 09:33:13 +00:00
|
|
|
if (ui->knownImports->currentText() != "Manual import") {
|
2015-01-06 20:12:48 +00:00
|
|
|
for (int i = 0; i < fileNames.size(); ++i) {
|
|
|
|
if (ui->knownImports->currentText() == "Seabear CSV") {
|
|
|
|
parse_seabear_csv_file(fileNames[i].toUtf8().data(),
|
2015-01-08 00:59:42 +00:00
|
|
|
r.indexOf(tr("Sample time")),
|
|
|
|
r.indexOf(tr("Sample depth")),
|
|
|
|
r.indexOf(tr("Sample temperature")),
|
|
|
|
r.indexOf(tr("Sample po2")),
|
|
|
|
r.indexOf(tr("Sample cns")),
|
|
|
|
r.indexOf(tr("Sample ndl")),
|
|
|
|
r.indexOf(tr("Sample tts")),
|
|
|
|
r.indexOf(tr("Sample stopdepth")),
|
|
|
|
r.indexOf(tr("Sample pressure")),
|
|
|
|
ui->CSVSeparator->currentIndex(),
|
|
|
|
specialCSV.contains(ui->knownImports->currentIndex()) ? CSVApps[ui->knownImports->currentIndex()].name.toUtf8().data() : "csv",
|
|
|
|
ui->CSVUnits->currentIndex()
|
|
|
|
);
|
2014-10-28 09:14:00 +00:00
|
|
|
|
2015-01-06 16:12:29 +00:00
|
|
|
// Seabear CSV stores NDL and TTS in Minutes, not seconds
|
2014-10-28 09:14:00 +00:00
|
|
|
struct dive *dive = dive_table.dives[dive_table.nr - 1];
|
|
|
|
for(int s_nr = 0 ; s_nr <= dive->dc.samples ; s_nr++) {
|
|
|
|
struct sample *sample = dive->dc.sample + s_nr;
|
|
|
|
sample->ndl.seconds *= 60;
|
|
|
|
sample->tts.seconds *= 60;
|
|
|
|
}
|
2015-01-06 20:12:48 +00:00
|
|
|
} else {
|
|
|
|
parse_csv_file(fileNames[i].toUtf8().data(),
|
2015-01-08 00:59:42 +00:00
|
|
|
r.indexOf(tr("Sample time")),
|
|
|
|
r.indexOf(tr("Sample depth")),
|
|
|
|
r.indexOf(tr("Sample temperature")),
|
|
|
|
r.indexOf(tr("Sample po2")),
|
|
|
|
r.indexOf(tr("Sample cns")),
|
|
|
|
r.indexOf(tr("Sample ndl")),
|
|
|
|
r.indexOf(tr("Sample tts")),
|
|
|
|
r.indexOf(tr("Sample stopdepth")),
|
|
|
|
r.indexOf(tr("Sample pressure")),
|
|
|
|
ui->CSVSeparator->currentIndex(),
|
|
|
|
specialCSV.contains(ui->knownImports->currentIndex()) ? CSVApps[ui->knownImports->currentIndex()].name.toUtf8().data() : "csv",
|
|
|
|
ui->CSVUnits->currentIndex()
|
|
|
|
);
|
2015-01-06 20:12:48 +00:00
|
|
|
}
|
2014-01-25 07:49:22 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < fileNames.size(); ++i) {
|
2015-01-24 15:03:10 +00:00
|
|
|
if (r.indexOf(tr("Sample time")) < 0)
|
|
|
|
parse_manual_file(fileNames[i].toUtf8().data(),
|
|
|
|
ui->CSVSeparator->currentIndex(),
|
|
|
|
ui->CSVUnits->currentIndex(),
|
|
|
|
ui->DateFormat->currentIndex(),
|
|
|
|
ui->DurationFormat->currentIndex(),
|
|
|
|
r.indexOf(tr("Dive #")),
|
|
|
|
r.indexOf(tr("Date")),
|
|
|
|
r.indexOf(tr("Time")),
|
|
|
|
r.indexOf(tr("Duration")),
|
|
|
|
r.indexOf(tr("Location")),
|
|
|
|
r.indexOf(tr("GPS")),
|
|
|
|
r.indexOf(tr("Max depth")),
|
|
|
|
r.indexOf(tr("Mean depth")),
|
|
|
|
r.indexOf(tr("Divemaster")),
|
|
|
|
r.indexOf(tr("Buddy")),
|
|
|
|
r.indexOf(tr("Notes")),
|
|
|
|
r.indexOf(tr("Weight")),
|
|
|
|
r.indexOf(tr("Tags")),
|
|
|
|
r.indexOf(tr("Cyl. size")),
|
|
|
|
r.indexOf(tr("Start pressure")),
|
|
|
|
r.indexOf(tr("End pressure")),
|
|
|
|
r.indexOf(tr("O₂")),
|
|
|
|
r.indexOf(tr("He")),
|
|
|
|
r.indexOf(tr("Air temp.")),
|
|
|
|
r.indexOf(tr("Water temp."))
|
|
|
|
);
|
|
|
|
else
|
|
|
|
parse_csv_file(fileNames[i].toUtf8().data(),
|
|
|
|
r.indexOf(tr("Sample time")),
|
|
|
|
r.indexOf(tr("Sample depth")),
|
|
|
|
r.indexOf(tr("Sample temperature")),
|
|
|
|
r.indexOf(tr("Sample po2")),
|
|
|
|
r.indexOf(tr("Sample cns")),
|
|
|
|
r.indexOf(tr("Sample ndl")),
|
|
|
|
r.indexOf(tr("Sample tts")),
|
|
|
|
r.indexOf(tr("Sample stopdepth")),
|
|
|
|
r.indexOf(tr("Sample pressure")),
|
|
|
|
ui->CSVSeparator->currentIndex(),
|
|
|
|
specialCSV.contains(ui->knownImports->currentIndex()) ? CSVApps[ui->knownImports->currentIndex()].name.toUtf8().data() : "csv",
|
|
|
|
ui->CSVUnits->currentIndex()
|
|
|
|
);
|
2013-12-29 16:11:19 +00:00
|
|
|
}
|
2013-10-16 19:05:19 +00:00
|
|
|
}
|
2014-01-15 08:30:42 +00:00
|
|
|
process_dives(true, false);
|
2014-02-12 14:22:54 +00:00
|
|
|
MainWindow::instance()->refreshDisplay();
|
2013-10-16 19:05:19 +00:00
|
|
|
}
|
2015-01-07 17:04:15 +00:00
|
|
|
|
|
|
|
TagDragDelegate::TagDragDelegate(QObject *parent) : QStyledItemDelegate(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize TagDragDelegate::sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const
|
|
|
|
{
|
2015-01-07 17:09:29 +00:00
|
|
|
QSize originalSize = QStyledItemDelegate::sizeHint(option, index);
|
|
|
|
return originalSize + QSize(5,5);
|
2015-01-07 17:04:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TagDragDelegate::paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const
|
|
|
|
{
|
2015-01-07 17:19:19 +00:00
|
|
|
painter->save();
|
|
|
|
painter->setRenderHints(QPainter::Antialiasing);
|
2015-01-07 21:00:16 +00:00
|
|
|
painter->setBrush(QBrush(AIR_BLUE_TRANS));
|
|
|
|
painter->drawRoundedRect(option.rect.adjusted(2,2,-2,-2), 5, 5);
|
2015-01-07 17:19:19 +00:00
|
|
|
painter->restore();
|
2015-01-07 17:04:15 +00:00
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
|
|
|
}
|
2015-01-07 17:19:19 +00:00
|
|
|
|