/* * Copyright (c) 2009 Justin F. Knotzke (jknotzke@shampoo.ca) * * 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 2 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, write to the Free Software Foundation, Inc., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _GC_DBAccess_h #define _GC_DBAccess_h 1 #include "GoldenCheetah.h" #include #include #include #include "SummaryMetrics.h" #include "MainWindow.h" #include "Season.h" #include "RideFile.h" #include "SpecialFields.h" #include "RideMetadata.h" extern int DBSchemaVersion; class RideFile; class Zones; class RideMetric; class DBAccess { public: // get connection name QSqlDatabase connection() { return dbconn; } // check the db structure is up to date void checkDBVersion(); // get schema version int getDBVersion(); // create and drop connections DBAccess(MainWindow *main, QDir home); ~DBAccess(); // Create/Delete Metrics bool importRide(SummaryMetrics *summaryMetrics, RideFile *ride, QColor color, unsigned long, bool); bool deleteRide(QString); // Create/Delete Measures bool importMeasure(SummaryMetrics *summaryMetrics); // Query Records QList getAllMetricsFor(QDateTime start, QDateTime end); QList getAllMetricsFor(DateRange dr) { return getAllMetricsFor(QDateTime(dr.from,QTime(0,0,0)), QDateTime(dr.to, QTime(23,59,59))); } bool getRide(QString filename, SummaryMetrics &metrics, QColor&color); QList getAllMeasuresFor(QDateTime start, QDateTime end); QList getAllMeasuresFor(DateRange dr) { return getAllMeasuresFor(QDateTime(dr.from,QTime(0,0,0)), QDateTime(dr.to, QTime(23,59,59))); } SummaryMetrics getRideMetrics(QString filename); // for a filename QList getAllDates(); QList getAllSeasons(); private: MainWindow *main; QDir home; QSqlDatabase dbconn; QString sessionid; SpecialFields msp; QList mfieldDefinitions; QList mkeywordDefinitions; //NOTE: not used in measures.xml QString mcolorfield; typedef QHash MetricMap; bool createDatabase(); void closeConnection(); bool createMetricsTable(); bool dropMetricTable(); bool createMeasuresTable(); bool dropMeasuresTable(); void initDatabase(QDir home); }; #endif