1 | /* |
---|
2 | * Copyright (C) 2010 Ixonos Plc. |
---|
3 | * Copyright (C) 2011-2012 Philipp Spitzer, gregor herrmann, Stefan Stahl |
---|
4 | * |
---|
5 | * This file is part of ConfClerk. |
---|
6 | * |
---|
7 | * ConfClerk is free software: you can redistribute it and/or modify it |
---|
8 | * under the terms of the GNU General Public License as published by the Free |
---|
9 | * Software Foundation, either version 2 of the License, or (at your option) |
---|
10 | * any later version. |
---|
11 | * |
---|
12 | * ConfClerk is distributed in the hope that it will be useful, but |
---|
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
14 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
15 | * more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License along with |
---|
18 | * ConfClerk. If not, see <http://www.gnu.org/licenses/>. |
---|
19 | */ |
---|
20 | #ifndef SQLENGINE_H |
---|
21 | #define SQLENGINE_H |
---|
22 | |
---|
23 | #include <QObject> |
---|
24 | #include <QHash> |
---|
25 | #include <QSqlDatabase> |
---|
26 | |
---|
27 | |
---|
28 | class SqlEngine : public QObject { |
---|
29 | Q_OBJECT |
---|
30 | public: |
---|
31 | QString dbFilename; ///< database filename including path |
---|
32 | QSqlDatabase db; ///< this may be private one day... |
---|
33 | |
---|
34 | SqlEngine(QObject *aParent = NULL); |
---|
35 | ~SqlEngine(); |
---|
36 | |
---|
37 | // Open/Close |
---|
38 | void open(); ///< emits a database error if failed. |
---|
39 | bool isOpen() const {return db.isOpen();} |
---|
40 | void close() {db.close();} |
---|
41 | |
---|
42 | // Schema version |
---|
43 | /// returns the "user_version" of the database schema |
---|
44 | /// we return -1 for an empty database |
---|
45 | /// the database has to be open |
---|
46 | /// returns -2 if an error occurs and emits the error message |
---|
47 | int dbSchemaVersion(); |
---|
48 | /// called by createOrUpdateDbSchema. Do not use directly. true for success. |
---|
49 | bool updateDbSchemaVersion000To001(); |
---|
50 | /// called by createOrUpdateDbSchma. Do not use directly. true for success. |
---|
51 | bool createCurrentDbSchema(); |
---|
52 | /// creates the current database schema if an empty database is found, |
---|
53 | /// otherwise updates the schema if an old one is found. true for success. |
---|
54 | bool createOrUpdateDbSchema(); |
---|
55 | |
---|
56 | // if a conferneceId != 0 is given, the confernce is updated instead of inserted. |
---|
57 | void addConferenceToDB(QHash<QString,QString> &aConference, int conferenceId); |
---|
58 | void addEventToDB(QHash<QString,QString> &aEvent); |
---|
59 | void addPersonToDB(QHash<QString,QString> &aPerson); |
---|
60 | void addLinkToDB(QHash<QString,QString> &aLink); |
---|
61 | void addRoomToDB(QHash<QString,QString> &aRoom); |
---|
62 | bool deleteConference(int id); |
---|
63 | |
---|
64 | bool beginTransaction(); |
---|
65 | bool commitTransaction(); |
---|
66 | |
---|
67 | /// search Events for .... returns true if success |
---|
68 | bool searchEvent(int conferenceId, const QHash<QString,QString> &columns, const QString &keyword); |
---|
69 | private: |
---|
70 | static QString login(const QString &aDatabaseType, const QString &aDatabaseName); |
---|
71 | /// emits a possible error message as signal. Does nothing if there was not last error |
---|
72 | void emitSqlQueryError(const QSqlQuery& query); |
---|
73 | |
---|
74 | signals: |
---|
75 | /// emitted when a database errors occur |
---|
76 | void dbError(const QString& message); |
---|
77 | }; |
---|
78 | |
---|
79 | #endif /* SQLENGINE_H */ |
---|
80 | |
---|