database.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /*
  2. *openPilotLog - A FOSS Pilot Logbook Application
  3. *Copyright (C) 2020-2022 Felix Turowsky
  4. *
  5. *This program is free software: you can redistribute it and/or modify
  6. *it under the terms of the GNU General Public License as published by
  7. *the Free Software Foundation, either version 3 of the License, or
  8. *(at your option) any later version.
  9. *
  10. *This program is distributed in the hope that it will be useful,
  11. *but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. *GNU General Public License for more details.
  14. *
  15. *You should have received a copy of the GNU General Public License
  16. *along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. #ifndef DATABASE_H
  19. #define DATABASE_H
  20. #include <QPair>
  21. #include <QHash>
  22. #include <QString>
  23. #include <QDir>
  24. #include <QSqlDatabase>
  25. #include <QSqlDriver>
  26. #include <QSqlQuery>
  27. #include <QSqlError>
  28. #include <QSqlTableModel>
  29. #include <QSqlQuery>
  30. #include <QSqlRecord>
  31. #include <QSqlField>
  32. #include "src/opl.h"
  33. #include "src/database/row.h"
  34. #include "src/classes/astandardpaths.h"
  35. namespace OPL {
  36. //using RowData_T = QHash<QString, QVariant>;
  37. /*!
  38. * \brief Convenience macro that returns instance of DataBase.
  39. * Instead of this:
  40. * OPL::DataBase::getInstance().commit(...)
  41. * Use this:
  42. * DB->commit(...)
  43. */
  44. #define DB OPL::Database::instance()
  45. /*!
  46. * \brief The DB class encapsulates the SQL database by providing fast access
  47. * to hot database data.
  48. */
  49. class Database : public QObject {
  50. private:
  51. Q_OBJECT
  52. Database()
  53. : databaseFile(QFileInfo(AStandardPaths::directory(AStandardPaths::Database).
  54. absoluteFilePath(QStringLiteral("logbook.db"))))
  55. {}
  56. static Database* self;
  57. const QFileInfo databaseFile;
  58. QStringList tableNames;
  59. QHash<QString, QStringList> tableColumns;
  60. inline const static QString SQLITE_DRIVER = QStringLiteral("QSQLITE");
  61. inline const static QList<OPL::DbTable> USER_TABLES = {
  62. OPL::DbTable::Flights,
  63. OPL::DbTable::Pilots,
  64. OPL::DbTable::Tails
  65. };
  66. inline const static QList<OPL::DbTable> TEMPLATE_TABLES = {
  67. OPL::DbTable::Aircraft,
  68. OPL::DbTable::Airports,
  69. OPL::DbTable::Currencies,
  70. OPL::DbTable::Changelog,
  71. };
  72. public:
  73. Database(const Database&) = delete;
  74. void operator=(const Database&) = delete;
  75. static Database* instance();
  76. /*!
  77. * \brief Holds information about the last error that ocurred during
  78. * a SQL operation. If the error type is QSqlError::UnknownError, the error is related to data
  79. * from the database (entry not found,...), otherwise the error is related to SQL execution. In this
  80. * case error.type() provides further information.
  81. *
  82. * If the error type is QSqlError::NoError, the last executed database query was successful.
  83. */
  84. QSqlError lastError;
  85. /*!
  86. * \brief Connect to the database and populate database information.
  87. */
  88. bool connect();
  89. /*!
  90. * \brief closes the database connection.
  91. */
  92. void disconnect();
  93. /*!
  94. * \brief Updates the member variables tableNames and tableColumns with up-to-date layout information
  95. * if the database has been altered. This function is normally only required during database setup or maintenance.
  96. */
  97. void updateLayout();
  98. /*!
  99. * \brief Return the database revision number (not the sqlite version number).
  100. */
  101. const QString version() const;
  102. /*!
  103. * \brief Database::sqliteVersion returns the database sqlite version. See also dbRevision()
  104. * \return sqlite version string
  105. */
  106. const QString sqliteVersion() const;
  107. /*!
  108. * \brief Return the names of all tables in the database
  109. */
  110. const QStringList getTableNames() const;
  111. /*!
  112. * \brief Return the names of a given table in the database.
  113. */
  114. const QStringList getTableColumns(OPL::DbTable table_name) const;
  115. /*!
  116. * \brief Can be used to access the database connection.
  117. * \return The QSqlDatabase object pertaining to the connection.
  118. */
  119. static QSqlDatabase database();
  120. /*!
  121. * \brief Can be used to send a complex query to the database.
  122. * \param query - the full sql query statement
  123. * \param returnValues - the number of return values
  124. */
  125. QVector<QVariant> customQuery(QString statement, int return_values);
  126. /*!
  127. * \brief Checks if an entry exists in the database, based on position data
  128. */
  129. bool exists(const OPL::Row &row);
  130. /*!
  131. * \brief clear resets the database, i.e. deletes all content in the tables containing
  132. * userdata (pilots, flights, tails)
  133. */
  134. bool clear();
  135. /*!
  136. * \brief commits an entry to the database, calls either insert or update,
  137. * based on position data
  138. */
  139. bool commit(const OPL::Row &row);
  140. /*!
  141. * \brief commits data imported from JSON
  142. * \details This function is used to import values to the databases which are held in JSON documents.
  143. * These entries are pre-filled data used for providing completion data, such as Airport or Aircraft Type Data.
  144. */
  145. bool commit(const QJsonArray &json_arr, const OPL::DbTable table);
  146. /*!
  147. * \brief Create new entry in the databse based on UserInput
  148. */
  149. bool insert(const OPL::Row &new_row);
  150. /*!
  151. * \brief Updates entry in database from existing entry tweaked by the user.
  152. */
  153. bool update(const OPL::Row &updated_row);
  154. /*!
  155. * \brief deletes an entry from the database.
  156. */
  157. bool remove(const OPL::Row &row);
  158. /*!
  159. * \brief deletes a batch of entries from the database. Optimised for speed when
  160. * deleting many entries. The entries are identified using their row id
  161. */
  162. bool removeMany(OPL::DbTable table, const QList<int> &row_id_list);
  163. /*!
  164. * \brief retreive a Row from the database
  165. */
  166. OPL::Row getRow(const OPL::DbTable table, const int row_id);
  167. /*!
  168. * \brief retreive a Map of <column name, column content> for a specific row in the database.
  169. */
  170. RowData_T getRowData(const OPL::DbTable table, const int row_id);
  171. /*!
  172. * \brief retreives a PilotEntry from the database. See row class for details.
  173. */
  174. inline OPL::PilotEntry getPilotEntry(int row_id)
  175. {
  176. const auto data = getRowData(OPL::DbTable::Pilots, row_id);
  177. return OPL::PilotEntry(row_id, data);
  178. }
  179. /*!
  180. * \brief retreives a TailEntry from the database. See row class for details.
  181. */
  182. inline OPL::TailEntry getTailEntry(int row_id)
  183. {
  184. const auto data = getRowData(OPL::DbTable::Tails, row_id);
  185. return OPL::TailEntry(row_id, data);
  186. }
  187. /*!
  188. * \brief retreives a TailEntry from the database. See row class for details.
  189. */
  190. inline OPL::AircraftEntry getAircraftEntry(int row_id)
  191. {
  192. const auto data = getRowData(OPL::DbTable::Aircraft, row_id);
  193. return OPL::AircraftEntry(row_id, data);
  194. }
  195. /*!
  196. * \brief retreives a flight entry from the database. See row class for details.
  197. */
  198. inline OPL::FlightEntry getFlightEntry(int row_id)
  199. {
  200. const auto data = getRowData(OPL::DbTable::Flights, row_id);
  201. return OPL::FlightEntry(row_id, data);
  202. }
  203. /*!
  204. * \brief retreives a Simulator entry from the database. See row class for details.
  205. */
  206. inline OPL::SimulatorEntry getSimEntry(int row_id)
  207. {
  208. const auto data = getRowData(OPL::DbTable::Simulators, row_id);
  209. return OPL::SimulatorEntry(row_id, data);
  210. }
  211. /*!
  212. * \brief Retreives a currency entry from the database. See row class for details.
  213. */
  214. inline OPL::CurrencyEntry getCurrencyEntry(int row_id)
  215. {
  216. const auto data = getRowData(OPL::DbTable::Currencies, row_id);
  217. return OPL::CurrencyEntry(row_id, data);
  218. }
  219. /*!
  220. * \brief returns the ROWID for the newest entry in the respective table.
  221. */
  222. int getLastEntry(OPL::DbTable table);
  223. /*!
  224. * \brief returns a list of ROWID's in the flights table for which foreign key constraints
  225. * exist.
  226. */
  227. QList<int> getForeignKeyConstraints(int foreign_row_id, OPL::DbTable table);
  228. /*!
  229. * \brief getTable returns all contents of a given table from the database
  230. * \return
  231. */
  232. QVector<RowData_T> getTable(OPL::DbTable table);
  233. /*!
  234. * \brief getUserTables returns a list of the of the tables that contain user-created data
  235. * (flights, pilots,..)
  236. */
  237. const QList<OPL::DbTable> &getUserTables() const;
  238. /*!
  239. * \brief getTemplateTables returns a list of the tables that contain template data
  240. * (aiports, aircraft,..)
  241. */
  242. const QList<OPL::DbTable> &getTemplateTables() const;
  243. // Maintenance and setup
  244. /*!
  245. * \brief Create or restore the database to its ready-to-use but empty state
  246. * \details The SQL code for the database creation is stored in a .sql file which is available as a ressource.
  247. * This file gets read, and the querys executed. If errors occur, returns false.
  248. */
  249. bool createSchema();
  250. /*!
  251. * \brief importTemplateData fills an empty database with the template
  252. * data (Aircraft, Airports, currencies, changelog) as read from the JSON
  253. * templates.
  254. * \param use_local_ressources determines whether the included ressource files
  255. * or a previously downloaded file should be used.
  256. * \return
  257. */
  258. bool importTemplateData(bool use_local_ressources);
  259. /*!
  260. * \brief Delete all rows from the user data tables (flights, pliots, tails)
  261. */
  262. bool resetUserData();
  263. /*!
  264. * \brief Database::createBackup copies the currently used database to an external backup location provided by the user
  265. * \param dest_file This is the full path and filename of where the backup will be created, e.g. 'home/Sully/myBackups/backupFromOpl.db'
  266. */
  267. bool createBackup(const QString& dest_file);
  268. /*!
  269. * \brief Database::restoreBackup restores the database from a given backup file and replaces the currently active database.
  270. * \param backup_file This is the full path and filename of the backup, e.g. 'home/Sully/myBackups/backupFromOpl.db'
  271. */
  272. bool restoreBackup(const QString& backup_file);
  273. signals:
  274. /*!
  275. * \brief updated is emitted whenever the database contents have been updated.
  276. * This can be either a commit, update or remove. This signal should be used to
  277. * trigger an update to the models of the views displaying database contents in
  278. * the user interface so that a user is always presented with up-to-date information.
  279. */
  280. void dataBaseUpdated(const DbTable table);
  281. /*!
  282. * \brief connectionReset is emitted whenever the database connection is reset, for
  283. * example when creating or restoring a backup.
  284. */
  285. void connectionReset();
  286. };
  287. } // namespace OPL
  288. #endif // DATABASE_H