Data filtering changes.
[emufront] / src / db / databasemanager.h
1 // EmuFront
2 // Copyright 2010 Mikko Keinänen
3 //
4 // This file is part of EmuFront.
5 //
6 //
7 // EmuFront is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // EmuFront is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
19
20 #ifndef DATABASEMANAGER_H
21 #define DATABASEMANAGER_H
22
23 #include <QObject>
24 #include <QSqlDatabase>
25 #include "../exceptions/emufrontexception.h"
26
27 class QSqlError;
28 class QFile;
29 class QSqlQueryModel;
30 class QModelIndex;
31 class EmuFrontObject;
32
33 class DatabaseManager : public QObject
34 {
35 public:
36         DatabaseManager(QObject *parent = 0);
37         ~DatabaseManager();
38
39     QSqlQueryModel* getDataModel(bool update = false);
40     EmuFrontObject* getDataObjectFromModel(QModelIndex*);
41     EmuFrontObject* getDataObject(int id);
42     EmuFrontObject* getDataObject(QString filter);
43     virtual bool updateDataObjectToModel(const EmuFrontObject*) = 0;
44     virtual int insertDataObjectToModel(const EmuFrontObject*) = 0;
45     virtual bool deleteDataObjectFromModel(QModelIndex*) = 0;
46     virtual int countDataObjectRefs(int id) const = 0;
47     static int getCurrentTimeStamp();
48     static bool openDB();
49     void resetModel();
50     enum {
51         Filetype_MediaImageContainer = 0,
52         Filetype_Screenshot = 1,
53         Filetype_PlatformIcon = 2,
54         Filetype_MediaTypeIcon = 3 };
55
56 protected:
57     QSqlQueryModel* sqlTableModel;
58     virtual EmuFrontObject* recordToDataObject(const QSqlRecord* ) = 0;
59     virtual void filterById(int id) = 0;
60     virtual void filterDataObjects(QList<QString> filter) = 0;
61     virtual void clearFilters() = 0;
62     int countRows(QString tableName, QString columnName, int id) const;
63     static const QString DB_TABLE_NAME_FILE;
64     static const QString DB_TABLE_NAME_FILEPATH;
65     static const QString DB_TABLE_NAME_MEDIATYPE;
66     static const QString DB_TABLE_NAME_PLATFORM;
67     static const QString DB_TABLE_NAME_SETUP;
68     static const QString DB_TABLE_MEDIAIMAGECONTAINER;
69     static const QString DB_TABLE_MEDIAIMAGECONTAINER_MEDIAIMAGE;
70
71
72 private:
73         static const QString DB_FILENAME;
74     static const QString DATABASE;
75     virtual QSqlQueryModel* getData() = 0;
76     static QString getDbPath();
77     EmuFrontObject* getFilteredDataObject();
78
79 };
80
81 #endif