123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- /*
- *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 "dbsetup.h"
- // Pragmas for creation of database table
- const QString createTablePilots = "CREATE TABLE pilots ( "
- "pilot_id INTEGER, "
- "picfirstname TEXT, "
- "piclastname TEXT NOT NULL, "
- "alias TEXT, "
- "phone TEXT, "
- "email TEXT, "
- "rostername TEXT, "
- "PRIMARY KEY(pilot_id) "
- ")";
- const QString createTableAircraft = "CREATE TABLE aircraft ( "
- "aircraft_id integer, "
- "make TEXT, "
- "model TEXT, "
- "variant text, "
- "name TEXT, "
- "iata TEXT, "
- "icao TEXT, "
- "singlepilot INTEGER, "
- "multipilot INTEGER, "
- "singleengine INTEGER, "
- "multiengine INTEGER, "
- "turboprop INTEGER, "
- "jet INTEGER, "
- "heavy INTEGER, "
- "PRIMARY KEY(aircraft_id) "
- ") ";
- const QString createTableTails = "CREATE TABLE tails ( "
- "tail_id INTEGER, "
- "registration TEXT NOT NULL, "
- "aircraft_id INTEGER NOT NULL, "
- "company TEXT, "
- "PRIMARY KEY(tail_id), "
- "FOREIGN KEY(aircraft_id) REFERENCES aircraft(aircraft_id) "
- ")";
- const QString createTableFlights = "CREATE TABLE flights ( "
- "id INTEGER, "
- "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, "
- "PRIMARY KEY(id), "
- "FOREIGN KEY(pic) REFERENCES pilots(pilot_id), "
- "FOREIGN KEY(acft) REFERENCES tails(tail_id) "
- ")";
- const QString createTableAirports = "CREATE TABLE airports ( "
- "airport_id INTEGER primary key, "
- "icao TEXT NOT NULL, "
- "iata TEXT, "
- "name TEXT, "
- "lat REAL, "
- "long REAL, "
- "country TEXT, "
- "alt INTEGER, "
- "utcoffset INTEGER, "
- "tzolson TEXT "
- ")";
- const QString createTableScratchpad = "CREATE TABLE scratchpad ( "
- "id INTEGER, "
- "doft NUMERIC, "
- "dept TEXT, "
- "tofb INTEGER, "
- "dest TEXT, "
- "tonb INTEGER, "
- "tblk INTEGER, "
- "pic INTEGER, "
- "acft INTEGER, "
- "PRIMARY KEY(id) "
- ") ";
- const QString createTableSettings = "CREATE TABLE settings ( "
- "setting_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
- "setting TEXT, "
- "description TEXT "
- ")";
- // Pragmas for creation of views in the database
- const QString createViewQCompleterView = "CREATE VIEW QCompleterView AS "
- "SELECT airport_id, icao, iata, "
- "tail_id, registration, "
- "pilot_id, "
- "piclastname||', '||picfirstname 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 createViewAircraftList = "CREATE VIEW AircraftListView AS "
- "SELECT make AS 'Make', "
- "model AS 'Model', "
- "variant AS 'Variant' "
- "FROM aircraft "
- "WHERE variant IS NOT NULL";
- const QString createViewLogbook = "CREATE VIEW Logbook AS "
- "SELECT 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', "
- "piclastname||', '||substr(picfirstname,1,1)||'.' AS 'Name PIC', "
- "make||' '||model||'-'||variant AS 'Type', Registration, "
- "FlightNumber AS 'Flight #', Remarks "
- "FROM flights "
- "INNER JOIN pilots on flights.pic = pilots.pilot_id "
- "INNER JOIN tails on flights.acft = tails.tail_id "
- "INNER JOIN aircraft on tails.aircraft_id = aircraft.aircraft_id "
- "INNER JOIN extras on extras.extras_id = flights.id "
- "ORDER BY date DESC ";
- //Displays Single Engine, Multi Engine and Multi Pilot Time
- const QString createViewTimes = "CREATE VIEW ViewPilotTimes AS "
- "SELECT id, "
- "tblk*singlepilot*singleengine AS 'SPSE', "
- "tblk*singlepilot*multiengine AS 'SPME', "
- "tblk*multipilot AS 'MP' "
- "FROM flights "
- "INNER JOIN tails on flights.acft = tails.tail_id "
- "INNER JOIN aircraft on tails.aircraft_id = aircraft.aircraft_id ";
- QStringList tables = {
- createTablePilots,
- createTableAircraft,
- createTableTails,
- createTableFlights,
- createTableScratchpad,
- createTableAirports,
- createTableSettings
- };
- QStringList views = {
- createViewQCompleterView,
- createViewAircraftList,
- createViewLogbook,
- createViewTimes
- };
- /*!
- * \brief dbSetup::showDatabase Outputs database information to Console
- */
- void dbSetup::showDatabase()
- {
- QSqlQuery query;
- query.prepare("SELECT name FROM sqlite_master WHERE type='table'");
- query.exec();
- while (query.next()) {
- qDebug() << "Tables: " << query.value(0).toString();
- }
- query.prepare("SELECT name FROM sqlite_master WHERE type='view'");
- query.exec();
- while (query.next()) {
- qDebug() << "Views: " << query.value(0).toString();
- }
- }
- /*!
- * \brief dbSetup::createTables Create the required tables for the database
- */
- void dbSetup::createTables()
- {
- QSqlQuery query;
- for(int i = 0; i<tables.length(); i++) {
- query.prepare(tables[i]);
- query.exec();
- if(!query.isActive()) {
- qWarning() << "DatabaseInit - ERROR: " << query.lastError().text();
- }else
- qDebug() << "Adding table " << tables[i].section(QLatin1Char(' '),2,2);
- }
- }
- /*!
- * \brief dbSetup::createViews Create the required views for the database
- */
- void dbSetup::createViews()
- {
- QSqlQuery query;
- for(int i = 0; i<views.length() ; i++) {
- query.prepare(views[i]);
- query.exec();
- if(!query.isActive()){
- qWarning() << "DatabaseInit - ERROR: " << query.lastError().text();
- }else{
- qDebug() << "Adding View " << views[i].section(QLatin1Char(' '),2,2);
- }
- }
- }
- /*!
- * \brief dbSetup::importCSV reads from a CSV file
- * \param filename - QString to csv file.
- * \return QVector<QStringList> of the CSV data, where each QStringList is one column of the input file
- */
- QVector<QStringList> dbSetup::importCSV(QString filename)
- {
- QFile csvfile(filename);
- csvfile.open(QIODevice::ReadOnly);
- QTextStream stream(&csvfile);
- QVector<QStringList> values;
- //Read CSV headers and create QStringLists accordingly
- QString line = stream.readLine();
- auto items = line.split(",");
- for (int i = 0; i < items.length(); i++) {
- QStringList list;
- list.append(items[i]);
- values.append(list);
- }
- //Fill QStringLists with data
- while (!stream.atEnd()) {
- QString line = stream.readLine();
- auto items = line.split(",");
- for (int i = 0; i < values.length(); i++) {
- values[i].append(items[i]);
- }
- }
- return values;
- }
- void dbSetup::commitAirportData(QVector<QStringList> airportData)
- {
- //remove header names
- for(int i=0; i < airportData.length(); i++)
- {
- airportData[i].removeFirst();
- }
- QSqlQuery query;
- qDebug() << "Updating Airport Database...";
- query.exec("BEGIN EXCLUSIVE TRANSACTION;"); // otherwise execution takes forever
- for (int i = 0; i < airportData[0].length(); i++){
- query.prepare("INSERT INTO airports ("
- "icao, "
- "iata, "
- "name, "
- "lat, "
- "long, "
- "country, "
- "alt, "
- "utcoffset, "
- "tzolson"
- ") "
- "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)");
- query.addBindValue(airportData[0][i]);
- query.addBindValue(airportData[1][i]);
- query.addBindValue(airportData[2][i]);
- query.addBindValue(airportData[3][i]);
- query.addBindValue(airportData[4][i]);
- query.addBindValue(airportData[5][i]);
- query.addBindValue(airportData[6][i]);
- query.addBindValue(airportData[7][i]);
- query.addBindValue(airportData[8][i]);
- query.exec();
- }
- query.exec("COMMIT;"); //commit transaction
- qDebug() << "Airport Database updated!";
- }
|