123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- /*
- *openPilot Log - A FOSS Pilot Logbook Application
- *Copyright (C) 2020 Felix Turowsky
- *
- *This program 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.
- *
- *This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "adatabasesetup.h"
- #include "src/database/adatabase.h"
- #include "src/testing/adebug.h"
- #include "src/functions/areadcsv.h"
- // Statements for creation of database tables, Revision 15
- const QString createTablePilots = "CREATE TABLE pilots ( "
- " pilot_id INTEGER NOT NULL, "
- " lastname TEXT NOT NULL, "
- " firstname TEXT, "
- " alias TEXT, "
- " company TEXT, "
- " employeeid TEXT, "
- " phone TEXT, "
- " email TEXT, "
- " PRIMARY KEY(pilot_id AUTOINCREMENT)"
- ")";
- const QString createTableTails = "CREATE TABLE tails ("
- " tail_id INTEGER NOT NULL,"
- " registration TEXT NOT NULL,"
- " company TEXT,"
- " make TEXT,"
- " model TEXT,"
- " variant TEXT,"
- " multipilot INTEGER,"
- " multiengine INTEGER,"
- " engineType INTEGER,"
- " weightClass INTEGER,"
- " PRIMARY KEY(tail_id AUTOINCREMENT)"
- ")";
- const QString createTableFlights = "CREATE TABLE flights ("
- " flight_id INTEGER NOT NULL, "
- " doft NUMERIC NOT NULL, "
- " dept TEXT NOT NULL, "
- " dest TEXT NOT NULL, "
- " tofb INTEGER NOT NULL, "
- " tonb INTEGER NOT NULL, "
- " pic INTEGER NOT NULL, "
- " acft INTEGER NOT NULL, "
- " tblk INTEGER NOT NULL, "
- " tSPSE INTEGER, "
- " tSPME INTEGER, "
- " tMP INTEGER, "
- " tNIGHT INTEGER, "
- " tIFR INTEGER, "
- " tPIC INTEGER, "
- " tPICUS INTEGER, "
- " tSIC INTEGER, "
- " tDUAL INTEGER, "
- " tFI INTEGER, "
- " tSIM INTEGER, "
- " pilotFlying INTEGER, "
- " toDay INTEGER, "
- " toNight INTEGER, "
- " ldgDay INTEGER, "
- " ldgNight INTEGER, "
- " autoland INTEGER, "
- " secondPilot INTEGER, "
- " thirdPilot INTEGER, "
- " approachType TEXT, "
- " flightNumber TEXT, "
- " remarks TEXT, "
- " FOREIGN KEY(pic) REFERENCES pilots(pilot_id) ON DELETE RESTRICT, "
- " FOREIGN KEY(acft) REFERENCES tails(tail_id) ON DELETE RESTRICT, "
- " PRIMARY KEY(flight_id AUTOINCREMENT) "
- ")";
- const QString createTableAirports = "CREATE TABLE airports ( "
- " airport_id INTEGER NOT NULL, "
- " icao TEXT NOT NULL, "
- " iata TEXT, "
- " name TEXT, "
- " lat REAL, "
- " long REAL, "
- " country TEXT, "
- " alt INTEGER, "
- " utcoffset INTEGER, "
- " tzolson TEXT, "
- " PRIMARY KEY(airport_id AUTOINCREMENT) "
- ")";
- const QString createTableAircraft = "CREATE TABLE aircraft ("
- " aircraft_id INTEGER NOT NULL,"
- " make TEXT,"
- " model TEXT,"
- " variant TEXT,"
- " name TEXT,"
- " iata TEXT,"
- " icao TEXT,"
- " multipilot INTEGER,"
- " multiengine INTEGER,"
- " engineType INTEGER,"
- " weightClass INTEGER,"
- " PRIMARY KEY(aircraft_id AUTOINCREMENT)"
- ")";
- const QString createTableChangelog = "CREATE TABLE changelog ( "
- " revision INTEGER NOT NULL, "
- " comment TEXT, "
- " date NUMERIC, "
- " PRIMARY KEY(revision) "
- ")";
- // Statements for creation of views in the database
- const QString createViewDefault = "CREATE VIEW viewDefault AS "
- " SELECT flight_id, doft as 'Date', "
- " dept AS 'Dept', "
- " printf('%02d',(tofb/60))||':'||printf('%02d',(tofb%60)) AS 'Time', "
- " dest AS 'Dest', printf('%02d',(tonb/60))||':'||printf('%02d',(tonb%60)) AS 'Time ', "
- " printf('%02d',(tblk/60))||':'||printf('%02d',(tblk%60)) AS 'Total', "
- " CASE "
- " WHEN pilot_id = 1 THEN alias "
- " ELSE lastname||', '||substr(firstname, 1, 1)||'.' "
- " END "
- " AS 'Name PIC', "
- " make||' '||model||'-'||variant AS 'Type', "
- " registration AS 'Registration', "
- " FlightNumber AS 'Flight #', "
- " remarks AS 'Remarks'"
- " FROM flights "
- " INNER JOIN pilots on flights.pic = pilots.pilot_id "
- " INNER JOIN tails on flights.acft = tails.tail_id "
- " ORDER BY date DESC ";
- const QString createViewEASA = "CREATE VIEW viewEASA AS "
- " SELECT "
- " flight_id, doft as 'Date', "
- " dept AS 'Dept', "
- " printf('%02d',(tofb/60))||':'||printf('%02d',(tofb%60)) AS 'Time', "
- " dest AS 'Dest', printf('%02d',(tonb/60))||':'||printf('%02d',(tonb%60)) AS 'Time ', "
- " make||' '||model||'-'||variant AS 'Type', "
- " registration AS 'Registration', "
- " (SELECT printf('%02d',(tSPSE/60))||':'||printf('%02d',(tSPSE%60)) WHERE tSPSE IS NOT NULL) AS 'SP SE', "
- " (SELECT printf('%02d',(tSPME/60))||':'||printf('%02d',(tSPME%60)) WHERE tSPME IS NOT NULL) AS 'SP ME', "
- " (SELECT printf('%02d',(tMP/60))||':'||printf('%02d',(tMP%60)) WHERE tMP IS NOT NULL) AS 'MP', "
- " printf('%02d',(tblk/60))||':'||printf('%02d',(tblk%60)) AS 'Total', "
- " CASE "
- " WHEN pilot_id = 1 THEN alias "
- " ELSE lastname||', '||substr(firstname, 1, 1)||'.' "
- " END "
- " AS 'Name PIC', "
- " ldgDay AS 'L/D', "
- " ldgNight AS 'L/N', "
- " (SELECT printf('%02d',(tNight/60))||':'||printf('%02d',(tNight%60)) WHERE tNight IS NOT NULL) AS 'Night', "
- " (SELECT printf('%02d',(tIFR/60))||':'||printf('%02d',(tIFR%60)) WHERE tIFR IS NOT NULL) AS 'IFR', "
- " (SELECT printf('%02d',(tPIC/60))||':'||printf('%02d',(tPIC%60)) WHERE tPIC IS NOT NULL) AS 'PIC', "
- " (SELECT printf('%02d',(tSIC/60))||':'||printf('%02d',(tSIC%60)) WHERE tSIC IS NOT NULL) AS 'SIC', "
- " (SELECT printf('%02d',(tDual/60))||':'||printf('%02d',(tDual%60)) WHERE tDual IS NOT NULL) AS 'Dual', "
- " (SELECT printf('%02d',(tFI/60))||':'||printf('%02d',(tFI%60)) WHERE tFI IS NOT NULL) AS 'FI', "
- " remarks AS 'Remarks' "
- " FROM flights "
- " INNER JOIN pilots on flights.pic = pilots.pilot_id "
- " INNER JOIN tails on flights.acft = tails.tail_id "
- " ORDER BY date DESC";
- const QString createViewTails = "CREATE VIEW viewTails AS "
- " SELECT "
- " tail_id AS 'ID', "
- " registration AS 'Registration', "
- " make||' '||model AS 'Type', "
- " company AS 'Company' "
- " FROM tails WHERE model IS NOT NULL AND variant IS NULL "
- " UNION "
- " SELECT "
- " tail_id AS 'ID', "
- " registration AS 'Registration', "
- " make||' '||model||'-'||variant AS 'Type', "
- " company AS 'Company' "
- " FROM tails WHERE variant IS NOT NULL";
- const QString createViewPilots = "CREATE VIEW viewPilots AS "
- " SELECT "
- " pilot_id AS 'ID', "
- " lastname AS 'Last Name', "
- " firstname AS 'First Name', "
- " company AS 'Company' "
- " FROM pilots";
- const QString createViewQCompleter = "CREATE VIEW viewQCompleter AS "
- " SELECT airport_id, icao, iata, tail_id, registration, pilot_id, "
- " lastname||', '||firstname AS 'pilot_name', alias "
- " FROM airports "
- " LEFT JOIN tails ON airports.airport_id = tails.tail_id "
- " LEFT JOIN pilots ON airports.airport_id = pilots.pilot_id";
- const QString createViewTotals = "CREATE VIEW viewTotals AS "
- " SELECT "
- " printf(\"%02d\",CAST(SUM(tblk) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tblk) AS INT)%60) AS \"TOTAL\", "
- " printf(\"%02d\",CAST(SUM(tSPSE) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tSPSE) AS INT)%60) AS \"SP SE\", "
- " printf(\"%02d\",CAST(SUM(tSPME) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tSPME) AS INT)%60) AS \"SP ME\", "
- " printf(\"%02d\",CAST(SUM(tNIGHT) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tNIGHT) AS INT)%60) AS \"NIGHT\", "
- " printf(\"%02d\",CAST(SUM(tIFR) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tIFR) AS INT)%60) AS \"IFR\", "
- " printf(\"%02d\",CAST(SUM(tPIC) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tPIC) AS INT)%60) AS \"PIC\", "
- " printf(\"%02d\",CAST(SUM(tPICUS) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tPICUS) AS INT)%60) AS \"PICUS\", "
- " printf(\"%02d\",CAST(SUM(tSIC) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tSIC) AS INT)%60) AS \"SIC\", "
- " printf(\"%02d\",CAST(SUM(tDual) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tDual) AS INT)%60) AS \"DUAL\", "
- " printf(\"%02d\",CAST(SUM(tFI) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tFI) AS INT)%60) AS \"INSTRUCTOR\", "
- " printf(\"%02d\",CAST(SUM(tSIM) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tSIM) AS INT)%60) AS \"SIMULATOR\", "
- " printf(\"%02d\",CAST(SUM(tMP) AS INT)/60)||\":\"||printf(\"%02d\",CAST(SUM(tMP) AS INT)%60) AS \"MultPilot\", "
- " CAST(SUM(toDay) AS INT) AS \"TO Day\", CAST(SUM(toNight) AS INT) AS \"TO Night\", "
- " CAST(SUM(ldgDay) AS INT) AS \"LDG Day\", CAST(SUM(ldgNight) AS INT) AS \"LDG Night\" "
- " FROM flights";
- /*const QString createViewPilotsTailsMap = "CREATE VIEW viewPilotsTailsMap AS "
- "SELECT "
- "pilot_id, lastname, firstname, tail_id, registration "
- "FROM pilots "
- "LEFT JOIN tails "
- "ON pilots.pilot_id = tails.tail_id";*/
- const QStringList tables = {
- createTablePilots,
- createTableTails,
- createTableFlights,
- createTableAircraft,
- createTableAirports,
- createTableChangelog
- };
- const QStringList views = {
- createViewDefault,
- createViewEASA,
- createViewTails,
- createViewPilots,
- createViewTotals,
- createViewQCompleter,
- };
- const QStringList userTables = {
- "flights",
- "pilots",
- "tails"
- };
- const QStringList templateTables= {
- "aircraft",
- "airports",
- "changelog"
- };
- bool ADataBaseSetup::createDatabase()
- {
- DEB("Creating tables...");
- if (!createSchemata(tables)) {
- DEB("Creating tables has failed.");
- return false;
- }
- DEB("Creating views...");
- if (!createSchemata(views)) {
- DEB("Creating views failed.");
- return false;
- }
- // call connect again to (re-)populate tableNames and columnNames
- aDB()->connect();
- DEB("Populating tables...");
- if (!importDefaultData()) {
- DEB("Populating tables failed.");
- return false;
- }
- DEB("Database successfully created!");
- return true;
- }
- bool ADataBaseSetup::importDefaultData()
- {
- QSqlQuery query;
- // reset template tables
- for (const auto& table : templateTables) {
- //clear tables
- query.prepare("DELETE FROM " + table);
- if (!query.exec()) {
- DEB("Error: " << query.lastError().text());
- }
- //fill with data from csv
- if (!commitData(aReadCsv("data/templates/" + table + ".csv"), table)) {
- DEB("Error importing data.");
- return false;
- }
- }
- return true;
- };
- /*!
- * \brief DbSetup::resetToDefault Empties all user-generated content in the database.
- * \return true on success
- */
- bool ADataBaseSetup::resetToDefault()
- {
- QSqlQuery query;
- // clear user tables
- for (const auto& table : userTables) {
- query.prepare("DELETE FROM " + table);
- if (!query.exec()) {
- DEB("Error: " << query.lastError().text());
- }
- }
- return true;
- }
- /*!
- * \brief dbSetup::debug prints Database Layout
- */
- void ADataBaseSetup::debug()
- {
- DEB("Database tables and views: ");
- QSqlQuery query;
- const QVector<QString> types = { "table", "view" };
- for (const auto& var : types){
- query.prepare("SELECT name FROM sqlite_master WHERE type=" + var);
- query.exec();
- while (query.next()) {
- QString table = query.value(0).toString();
- QSqlQuery entries("SELECT COUNT(*) FROM " + table);
- entries.next();
- DEB("Element " << query.value(0).toString()) << "with"
- << entries.value(0).toString() << "rows";
- }
- }
- }
- /*!
- * \brief dbSetup::createTables Create the required tables for the database
- * \return true on success
- */
- bool ADataBaseSetup::createSchemata(const QStringList &statements)
- {
- QSqlQuery query;
- QStringList errors;
- for (const auto& statement : statements) {
- query.prepare(statement);
- query.exec();
- if(!query.isActive()) {
- errors << statement.section(QLatin1Char(' '),2,2) + " ERROR - " + query.lastError().text();
- DEB("Query: " << query.lastQuery());
- } else {
- DEB("Schema added: " << statement.section(QLatin1Char(' '),2,2));
- }
- }
- if (!errors.isEmpty()) {
- DEB("The following errors have ocurred: ");
- for (const auto& error : errors) {
- DEB(error);
- }
- return false;
- } else {
- DEB("All schemas added successfully");
- return true;
- }
- }
- /*!
- * \brief DbSetup::commitData inserts the data parsed from a csv file into the
- * database. The first line of the csv file has to contain the column names
- * of the corresponding table in the database.
- * \param fromCSV input as parsed from CSV::read()
- * \param tableName as in the database
- * \return
- */
- bool ADataBaseSetup::commitData(QVector<QStringList> fromCSV, const QString &tableName)
- {
- DEB("Table names: " << aDB()->getTableNames());
- DEB("Importing Data to" << tableName);
- if (!aDB()->getTableNames().contains(tableName)){
- DEB(tableName << "is not a table in the database. Aborting.");
- DEB("Please check input data.");
- return false;
- }
- // create insert statement
- QString statement = "INSERT INTO " + tableName + " (";
- QString placeholder = ") VALUES (";
- for (auto& csvColumn : fromCSV) {
- if(aDB()->getTableColumns().value(tableName).contains(csvColumn.first())) {
- statement += csvColumn.first() + ',';
- csvColumn.removeFirst();
- placeholder.append("?,");
- } else {
- DEB(csvColumn.first() << "is not a column of " << tableName << "Aborting.");
- DEB("Please check input data.");
- return false;
- }
- }
- statement.chop(1);
- placeholder.chop(1);
- placeholder.append(')');
- statement.append(placeholder);
- /*
- * Using exclusive transaction and the loop below is MUCH faster than
- * passing the QStringLists to QSqlQuery::addBindValue and using QSqlQuery::execBatch()
- */
- QSqlQuery query;
- query.exec("BEGIN EXCLUSIVE TRANSACTION;");
- for (int i = 0; i < fromCSV.first().length(); i++){
- query.prepare(statement);
- for(int j = 0; j < fromCSV.length(); j++) {
- fromCSV[j][i] == QString("") ? // make sure NULL is committed for empty values
- query.addBindValue(QVariant(QVariant::String))
- : query.addBindValue(fromCSV[j][i]);
- //query.addBindValue(fromCSV[j][i]);
- }
- query.exec();
- }
- query.exec("COMMIT;"); //commit transaction
- if (query.lastError().text().length() > 3) {
- DEB("Error:" << query.lastError().text());
- return false;
- } else {
- qDebug() << tableName << "Database successfully updated!";
- return true;
- }
- }
|