1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
#ifndef KLOG_FILEMANAGER_H
#define KLOG_FILEMANAGER_H
/***************************************************************************
filemanager.h - description
-------------------
begin : sept 2011
copyright : (C) 2011 by Jaime Robles
email : jaime@robles.es
***************************************************************************/
/*****************************************************************************
* This file is part of KLog. *
* *
* KLog is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* KLog is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with KLog. If not, see <https://www.gnu.org/licenses/>. *
* *
*****************************************************************************/
#include <QObject>
//#include <QtWidgets>
#include <QString>
#include <QFileDialog>
#include <QFile>
#include <QSqlQuery>
#include <QStringList>
#include <QSqlRecord>
#include <QProgressDialog>
#include <QMessageBox>
#include <QDateTime>
#include "world.h"
#include "awards.h"
#include "database.h"
#include "dataproxy_sqlite.h"
#include "utilities.h"
#include "qso.h"
/*
enum
{
CQZones = 40,
ITUZones = 90,
DXCCEntities = 521 // http://www.adif.org/adif302.htm#Country%20Codes
};
*/
//enum ExportMode {ModeLotW, ModeADIF};
class FileManager : public QWidget
{
Q_OBJECT
friend class tst_FileManager;
public:
FileManager(DataProxy_SQLite *dp, World *injectedWorld);
//FileManager(DataProxy_SQLite *dp, const QString &_klogDir);
//FileManager(DataProxy_SQLite *dp, const QString &_klogDir);
//FileManager(DataProxy_SQLite *dp, const QString &_softVersion);
~FileManager();
void init();
//bool readAdif(const QString& tfileName, const int logN);
//bool adifReadLog(const QString& tfileName, const int logN);
int adifReadLog(const QString& tfileName, QString _stationCallsign = QString(), int logN = -1);
int adifLoTWReadLog2(const QString& fileName, const int logN);
//QList<int> adifLoTWLogExport(const QString& _fileName, const QString &_callsign, const QDate &_startDate, const QDate &_endDate, const int _logN);
//QList<int> (const QString& _fileName, const QString &_callsign, const QDate &_startDate, const QDate &_endDate, const int _logN, const bool LoTWOnly);
//bool adifQSOsExport(const QString& _fileName, QList<int> _qsos);
bool adifQSOsExport2(const QString& _fileName, const QString& _fields, QList<int> _qsos, ExportMode _em);
QList<int> adifLogExportReturnList(const QString& _fileName, const QString &_callsign, QList<int> _qsos, const ExportMode _em, const int _logN);
bool adifLogExport(const QString& _fileName, const int _logN);
bool adifLogExportMarked(const QString& _fileName);
bool adifReqQSLExport(const QString& _fileName);
//bool cabrilloLogExport(const QString& _fileName, const QString &_contestType, const int logNconst);
//bool modifySetupFile(const QString& _filename, const QString &_field, const QString &_value);
void setVersion(const QString &_version);
QDateTime getDateTimeOfLastBackup();
void setStationCallSign(const QString& _st);
void setDuplicatedQSOSlot (const int _secs);
void setSendQSLByDefault (const bool _send);
private:
bool adifLogExportToFile(const QString& _fileName, const int _logN, bool justMarked, bool _qslRequested, bool _lotw);
//bool cabrilloLogExportToFile(const QString& _fileName, const int logNconst);
//bool cabrilloLogExportCQWWToFile(const QString& _fileName, const int logNconst);
//bool adifCheckMoreThanOneLog(QFile &_f);
bool isALoTWDownloadedFile(QFile & _f);
int howManyLogsInFile(QFile & _f);
int howManyQSOsInFile (QFile & _f);
qint64 passHeader(QFile & _f);
QString getProgramID (QFile &_f);
bool fillHashLog(QFile & _f);
QStringList getListOfLogsInFile(QFile & _f);
bool writeBackupDate();
bool getStationCallsignFromUser(const QString &_qrzDX, const QDate &_dt);
bool showInvalidCallMessage(const QString &_call);
void showError (const QString &_txt);
bool handleCancel(); // Used in FileManager::adifReadLog
int processQSO(QSO& qso, const QString& _stationCallsign); // Used in FileManager::adifReadLog
bool askUserToUseAlwaysSameAnswer();
bool askUserToAddThisQSOToLog(const QString &_call, const QDateTime _datetime, const QString &_mode, const QString &_band, const double _freq);
//QString checkAndFixASCIIinADIF(_data);
//bool processQsoReadingADIF(const QStringList &_line, const int logNumber);//, const bool _keepLogsInFile);
void queryPreparation(const int _logN);
bool checkADIFValidFormat(const QStringList &_qs);
// void writeAdifField(const QString &_field, const QString &_data); // It should possibly receive also the QTextStream
KLOG_DEPRECATED void writeQuery(QSqlRecord &rec, QTextStream &out, const ExportMode _em, const bool _justMarked, const bool _onlyRequested, const int _logN);
void writeADIFHeader(QTextStream &out, const ExportMode _em, const int _numberOfQsos);
bool dbCreated;
DataBase *db;
//float softwareVersion;
//DataProxy_SQLite *dataProxy;
DataProxy_SQLite *dataProxy;//, *dataProxyPrepared;
Utilities *util;
//QSO *qso;
bool rstTXDefault, rstRXDefault; // If true and a log is not including RST, 59 is automatically added
//bool printQs(const QString &_q, const QStringList _line);
bool printQs(const QStringList &_line);
//int confirmed;
QString klogDir;
QString klogVersion;
QString defaultStationCallsign;
bool ignoreUnknownAlways; // When importing ADIF, ignore all unknown fields.
bool usePreviousStationCallsignAnswerAlways; // When importing ADIF, ignore all unknown fields.
bool noMoreQso;
bool sendEQSLByDefault; // When importing a log, if the QSO does not bring info about eQSL
// KLog sets or not a default value
int duplicatedQSOSlotInSecs;
//World *world;
Awards *awards;
//QSqlDatabase db;
QHash<int, int> hashLogs; // to create different logs when importing a ADIF file
QSqlQuery preparedQuery;
//int constrid; // Just an id for the constructor to check who is being executed at one specific time
//Hash for simplifying if-else chain in processQsoReadingADIF to switch statement
static QHash<QString, int> SwitchHash;
void initializeSwitchHash();
signals:
void addQSOToList(QStringList _qso);
void queryError(QString _functionFailed, QString errorCodeS, QString nativeError, QString failedQuery); // To alert about any failed query execution
};
#endif // FILEMANAGER_H
|