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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
#ifndef KLOG_DATAPROXY_SQLITE_H
#define KLOG_DATAPROXY_SQLITE_H
/***************************************************************************
dataproxy_sqlite.h - description
-------------------
begin : feb 2015
copyright : (C) 2015 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 <QString>
#include <QStringList>
#include <QObject>
#include <QSqlQuery>
#include "global.h"
#include "database.h"
#include "qso.h"
#include "utilities.h"
#include "klogdefinitions.h"
//#include "regionalaward.h"
class QSO;
enum
{
CQZones = 40,
ITUZones = 90,
DXCCEntities = 521 // http://www.adif.org/adif302.htm#Country%20Codes
};
class DataProxy_SQLite : public QObject
{
Q_OBJECT
public:
DataProxy_SQLite(const QString &_parentFunction, const QString &_softVersion="0.0");
~DataProxy_SQLite();
void setLogLevel (const DebugLogLevel _l);
QString getSoftVersion();
void setPKGVersion(const QString &_pkgVersion);
QString getPKGVersion();
QString getDBVersion();
bool reconnectDB();
void createLogModel();
void createLogPanel();
bool haveAtLeastOneLog();
QStringList getColumnNamesFromTableLog();
int getIdFromModeName(const QString& _modeName);
int getIdFromBandName(const QString& _bandName);
//int getSubModeIdFromSubMode(const QString &_subModeName);
bool isValidMode(const QString& _modeName);
bool isValidBand(const QString& _bandName);
//int getModeIdFromSubModeId(const int _sm);
bool createHashes(); // Creates a list of hashes for quick search (band/id & mode/id)
QStringList getFields();
//KLOG_DEPRECATED QStringList getBands();
QStringList getModes(); // Returns the list of submodes
QStringList sortBandNamesBottonUp(const QStringList _qs);
QStringList getBandIDs();
QStringList getModesIDs();
QStringList getBandsInLog(const int _log);
QStringList getModesInLog(const int _log);
int getMostUsedBand(const int _log);
int getMostUsedMode(const int _log);
QString getNameFromBandId (const int _id);
QString getNameFromModeId (const int _id);
QString getSubModeFromId (const int _id);
QString getNameFromSubMode (const QString &_sm); // Checks if a submode is deprecated TODO: CHeck if really needed
//QString getNameFromSubMode (const QString &_sm); // DEPRECATED
bool isModeDeprecated (const QString &_sm);
Frequency getFreqFromBandId(const int _id);
int getBandIdFromFreq(const double _n);
QString getBandNameFromFreq(const double _n);
double getLowLimitBandFromBandName(const QString &_sm);
double getLowLimitBandFromBandId(const int _sm);
double getUpperLimitBandFromBandName(const QString &_sm);
bool isThisFreqInBand(const QString &_band, const QString &_fr);
int getLastQSOid();
QDate getFirstQSODateFromCall (const QString &_call); // If the callsign provided is not valid it provides the date of the first QSO
QDate getLastQSODateFromCall (const QString &_call); // If the callsign provided is not valid it provides the date of the last QSO
bool addQSOFromWSJTX (const QString &_dxcall, const QString &_mode, const QString &_band, const double _freq,
const QString &_mygrid, const QString &_dxgrid,
const QString &_rstTX, const QString &_rstRX, const QString &_sRX, const QString &_sTX,
const QString &_comment,
const QString &_stationcallsign, const QString &_name, const QString &_operator,
const QDateTime &_datetime, const QDateTime &_datetime_off, const double txpower,
const int _dxcc, const int _logNumber, bool _sendQSL = true);
//int addQSO(QSO &_qso);
//int addQSOQuery(const QSqlQuery &_q);
bool deleteQSO(const int _qsoId);
int isWorkedB4(const QString &_qrz, const int _currentLog);
//QList<int> isThisQSODuplicated(const QString &_callingFunc, const QString &_qrz, const QDateTime &_dateTime, const int _band, const int _mode, const int _secs);
QList<int> isThisQSODuplicated (const QSO &_qso, const int _secs);
int getDuplicatedQSOId(const QString &_qrz, const QDateTime &_datetime, const int _band, const int _mode);
//bool isDXCCConfirmed(const int _dxcc, const int _currentLog);
bool isQSLReceived(const int _qsoId);
bool isQSLLoTWReceived(const int _qsoId);
bool isQSOConfirmed(const int _qsoId, const bool _checkPaper, const bool _checkLoTW);
bool isQSLSent(const int _qsoId);
bool qslSentViaDirect(const int _qsoId, const QDate &_updateDate);
bool qslSentViaBureau(const int _qsoId, const QDate &_updateDate);
bool qslRecViaBureau(const int _qsoId, const QDate &_updateDate);
bool qslRecViaBureau(const int _qsoId, const QDate &_updateDate, const bool _queueSentQSL);
bool qslRecViaDirect(const int _qsoId, const QDate &_updateDate);
bool qslRecViaDirect(const int _qsoId, const QDate &_updateDate, const bool _queueSentQSL);
bool qslSentAsRequested(const int _qsoId, const QDate &_updateDate);
bool qslRecAsRequested(const int _qsoId, const QDate &_updateDate);
bool setClubLogSent(const int _qsoId, const QString &_st, const QDate &_updateDate);
bool setLoTWQSLRec (const int _qsoId, const QString &_st, const QDate &_updateDate);
bool isHF(const int _band);
bool isWARC(const int _band);
bool isVHF(const int _band);
bool isUHF(const int _band);
int getBandFromId(const int _qsoId);
int getModeFromId(const int _qsoId);
int getDXCCFromId(const int _qsoId);
int getCQZFromId(const int _qsoId);
QList<int> getBandModeDXCCCQZlogIDFromId(const int _qsoId);
QString getCallFromId(const int _qsoId);
QStringList getClubLogRealTimeFromId(const int _qsoId);
QStringList getFilteredLocators(const QString &_band, const QString &_mode, const QString &_prop, const QString &_sat, bool _confirmed = false);
//bool updateAwardWAZ();
// QRZ.com
bool QRZCOMModifyFullLog(const int _currentLog); // Mark all the log as modified to be sent to QRZ.com
bool QRZCOMSentQSOs(const QList<int> &_qsos); // Mark as uploaded
// QRZ.com
//EQSL
bool eQSLModifyFullLog(const int _currentLog); // Mark all the log as modified to be sent to eQSL
bool eQSLSentQSOs(const QList<int> &_qsos); // Mark as uploaded
//EQSL
//CLUBLOG
bool clublogSentQSOs(const QList<int> &_qsos); // Mark as uploaded
bool clublogModifyFullLog(const int _currentLog); // Mark all the log as modified to be sent to CLubLog
// CLUBLOG
//LOTW
bool lotwSentQueue(const QDate &_updateDate, const int _currentLog); // Mark LOTW QSL SENT as Q (Queued)
bool lotwSentYes(const QDate &_updateDate, const int _currentLog, const QString &_station); // Update LOTW QSL SENT marked as Q as Y (Queued)
bool lotwSentQSOs(const QList<int> &_qsos);
int lotwUpdateQSLReception (const QString &_call, const QDateTime &_dateTime, const QString &_band, const QString &_mode, const QDate &_qslrdate);
QList<int> getQSOsListLoTWToSend(const QString &_stationCallsign, const QString &_myGrid, const QDate &_startDate, const QDate &_endDate, bool _justQueued=true, int _logN = -1);
//QStringList getQSOsListLoTWNotSent2(const QString &_stationCallsign, const QDate &_startDate, const QDate &_endDate, bool _justQueued=true);
QStringList getQSODetailsForLoTWDownload(const int _id);
QList<int> getQSOsListeQSLNotSent(const QString &_stationCallsign, const QDate &_startDate, const QDate &_endDate, bool _justQueued=true);
QList<int> getQSOsListClubLogToSent(const QString &_stationCallsign, const QDate &_startDate, const QDate &_endDate, bool _justModified=true, int _logN = -1);
QList<int> getQSOsListEQSLToSent(const QString &_stationCallsign, const QDate &_startDate, const QDate &_endDate, bool _justModified=true, int _logN = -1);
QList<int> getQSOsListQRZCOMToSent(const QString &_stationCallsign, const QDate &_startDate, const QDate &_endDate, bool _justModified=true, int _logN = -1);
QList<int> getQSOsListToBeExported(const QString &_stationCallsign, const QString &_grid, const QDate &_startDate, const QDate &_endDate, int _logN = -1);
QList<int> getQSOsAll();
QStringList getGridsToBeSent(const QString &_stationCallsign, const QDate &_startDate, const QDate &_endDate, const ExportMode _em, bool _justModified=true, int _logN = -1);
int getContinentIdFromContinentShortName(const QString &_n);
QString getContinentShortNameFromEntity(const int _n);
int getContinentIdFromEntity(const int _n);
QStringList getContinentShortNames();
bool isValidContinentShortName(const QString &_n);
bool isValidDXCC(const int _e);
QStringList filterValidFields(const QStringList &_fields);
int getCQzFromPrefix(const QString &_p);
int getCQzFromEntity(const int _n);
int getITUzFromEntity(const int _n);
int getITUzFromPrefix(const QString &_p);
QString getEntityNameFromId(const int _n);
int getEntityIdFromName(const QString &_e);
QString getEntityMainPrefix(const int _entityN);
QMap<EntityData, int> getAllEntiNameISOAndPrefix();
int getEntityIdFromMainPrefix(const QString &_e);
bool isNewCQz(int _c);
bool isNewEntity(int _e);
double getLongitudeFromEntity(const int _e);
double getLatitudeFromEntity(const int _e);
//KLOG_DEPRECATED int getDXCCFromPrefix(const QString &_p); // TODO: Replace by int World::getPrefixId(const QString &_prefix)
QString getEntityPrefixes(const int _enti);
QStringList getLongPrefixes();
QStringList getSpecialCallsigns();
QHash<QString, int> getWorldData();
QHash<QString, int> getHashTableData(const DataTableHash _data); //Returns a QHash from a Table (Band, Mode, World)
QStringList getEntitiesNames(bool _dxccOnly = true);
QStringList getEntitiesIds();
int getHowManyEntities();
int getMaxEntityID(bool limit = true); // limit = true implies that it will only shouw ARRL valid DXCC (i.e. will not count Sicily)
QList<int> getListOfDXCCIds(); // Returns the list of valid DXCC id
QStringList getOperatingYears(const int _currentLog);
void compressDB();
bool unMarkAllQSO(); // Unmarks all the marked QSO
bool clearLog();
// Stats
int getQSOonYear(const int _year, const int _logNumber);
int getDXCConYear(const int _year, const int _logNumber);
int getCQzonYear(const int _year, const int _logNumber);
int getQSOsWithDXCC(const int _dxcc, const int _logNumber);
int getQSOsAtHour(const int _hour, const int _log);
int getQSOsAtHourOnBand(const int _hour, const int _band ,const int _log);
int getQSOsOnMonth(const int _month, const int _log);
int getHowManyQSOInLog(const int _log);
int getHowManyConfirmedQSLInLog(const int _log);
int getHowManyQSLSentInLog(const int _log);
int getQSOsWithContinent(const QString &_cont, const int _logNumber);
int getQSOsInBand(const QString &_band, const int _log);
int getQSOsInMode(const QString &_mode, const int _log);
int getDXCCInBand(const int _bandid, const bool _confirmed, const int _log);
QList<QList<int>> getTop10QSOPerDXCC(const int _log);
// Stats - end
bool updateQSONumberPerLog();
bool newDXMarathon(const int _dxcc, const int _cq, const int _year, const int _logNumber);
QStringList getContestNames();
QStringList getContestCat(const int _catn);
QStringList getContestOverlays();
//int getContestTypeN(const int _co, const int _catop, const int _catas, const int _catpo, const int _catba, const int _catov, const int _catmo);
//QStringList getDataFromContestType(const int _n);
//int getLogTypeNumber(const QString &_logType);
//QString getLogTypeName(const int _logType);
//QString getLogTypeOfUserLog(const int _logN);
int getLogNumberFromQSOId(const int _qsoId);
QStringList getBandNames();
QStringList getPropModeList();
bool isValidPropMode(const QString &_prop);
bool clearSatList();
bool addSatellite(const QString &_arrlId, const QString &_name, const QString &_downLink, const QString &_upLink, const QString &_mode, int id = -1);
int getDBSatId(const QString &_arrlId);
QStringList getSatellitesList();
QString getSatelliteUplink(const QString &_sat, int _pair=0);
QString getSatelliteDownlink(const QString &_sat, int _pair=0);
QString getSatelliteMode(const QString &_sat);
QString getSatelliteFullUplink(const QString &_sat);
QString getSatelliteFullDownlink(const QString &_sat);
QString getSatelliteFullMode(const QString &_sat);
QString getSatelliteName(const QString &_sat);
QString getSateliteArrlIdFromId(const int _id);
//KLOG_DEPRECATED QStringList getQSLRcvdList();
//QStringList getQSLSentList();
//KLOG_DEPRECATED QStringList getClubLogStatusList();
KLOG_DEPRECATED QStringList getQSLViaList();
int getHowManyQSOPerPropMode(const QString &_p, const int _logn);
//QStringList getValidCatOptions(const int _currentCat, const int _lowerCa);
//bool fillEmptyDXCCInTheLog();
int getNumberOfManagedLogs();
QStringList getListOfManagedLogs();
int getMaxLogNumber();
QString getStationCallSignFromLog(const int _log);
QStringList getStationCallSignsFromLog(const int _log);
QStringList getStationCallSignsFromLogWithLoTWPendingToSend(const int _log);
QString getOperatorsFromLog(const int _log);
QString getCommentsFromLog(const int _log);
QString getLogDateFromLog(const int _log);
//QString getLogTypeNFromLog(const int _log);
bool addNewLog (const QStringList _qs);
bool doesThisLogExist(const int _log);
bool updateISONames(); // Update the entities ISO 3166names for the flags
QString getISOName(const int _n);
bool addPrimarySubdivisions(); // Add the primary subdivisions to the BD
//bool setDXCCAwardStatus(const int _qsoId);
KLOG_DEPRECATED bool setWAZAwardStatus(const int _qsoId);
//bool addRegionalAward(RegionalAward _regionalAward);
bool addDXCCEntitySubdivision(const QString &_name, const QString &_short, const QString &_pref, const QString &_group, const int _regId, const int _dxcc, const int _cq, const int _itu, const QDate &_startDate, const QDate &_endDate, const bool _deleted);
QList<PrimarySubdivision> getPrimarySubDivisions(const int _entity, const QString &_pref); // Get the Primary subdivisions for an entity
//void getFoundInLog(const QString &_txt, const int _log=-1);
//KLOG_DEPRECATED QString getADIFQSO(const int _qsoId, ExportMode _em = ModeADIF);
KLOG_DEPRECATED QString getADIFValueFromRec(QSqlRecord _rec, const QString &_fieldName); // Should be optimized to qso::fromDB / qso::getADIF
KLOG_DEPRECATED QString getADIFFromQSOQuery(QSqlRecord _rec, ExportMode _em = ModeADIF, bool _justMarked = false, bool _onlyRequested = false, int _logN = -1); // Should be optimized to qso::fromDB / qso::getADIF
//QString getADIFFromQSOQuery2(QSqlRecord _rec, ExportMode _em = ModeADIF, bool _justMarked = false, bool _onlyRequested = false, int _logN = -1);
bool showInvalidCallMessage(const QString &_call);
QList<QSO*> getSatGridStats(int _log=-1);
QList<QSO*> getGridStats(int _log=-1);
QList<QSO*> getSatDXCCStats(int _log=-1);
int getFieldInBand(ValidFieldsForStats _field, const QString &_band, bool confirmedOnly, QString _mode = "ALL", int _log=-1);
//bool queryPrepare(const QString &_query);
//bool queryBind(const QString &_field, const QString &value);
//bool queryExec();
private:
bool dbCreated;
DataBase *db;
QStringList sortBandIdBottonUp(const QStringList _qs);
double getFreqFromRange(QString _fr, int _pair = 0); //May even receive: 145.900-146.00 and should return the mid in the range (145.950)
QStringList getColumnNamesFromTable(const QString &_tableName);
QString getStringQueryStationCallSign (const QString &_a); // Creates part of a query regarding the station_call field
QString getStringQueryMyGrid (const QString &_a); // Creates part of a query regarding the my_gridsquare field
QString getStringQueryLogNumber (const int _a); // Creates part of a query regarding the lognumber field
void mapModeNameSubmode(); // Maps mode/Submode/id using submodeToName & nameToMainId
//KLOG_DEPRECATED int getPrefixId(const QString &_qrz); // TODO: Replace by int World::getPrefixId(const QString &_prefix)
// Refactored from fillEmptyDXCCInTheLog
//bool updateDXCCAndContinent(const int _id, const int _dxcc, const QString &_cont); // Refactored from fillEmptyDXCCInTheLog
//QString changeSlashAndFindPrefix(const QString &_qrz);
void logEvent(const QString &_func, const QString &_msg, DebugLogLevel _level);
QSO *qso;
bool searching;
int executionN;
Utilities *util;
DebugLogLevel logLevel;
QString pkgVersion;
QHash<QString, int> bandIDs;
QHash<QString, int> modeIDs;
QHash<int, QString> modeIdToName;
QHash<QString, QList<int>> nameToModeIds;
//QSqlQuery preparedQuery;
//QSqlRelationalTableModel *logModel;
private slots:
void slotCaptureDebugLogs(const QString &_func, const QString &_msg, DebugLogLevel _l);
signals:
void qsoFound(const QStringList _qs); // Each: QString with format: Fieldname:value
void queryError(QString functionFailed, QString errorCodeS, QString nativeError, QString failedQuery); // To alert about any failed query execution
void debugLog (QString _func, QString _msg, DebugLogLevel _level);
};
#endif //DATAPROXY_SQLITE_H
|