Reorganizing database creation to a new class: DbCreator
[emufront] / src / db / databasemanager.cpp
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 // Foobar 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 Foobar.  If not, see <http://www.gnu.org/licenses/>.
19
20 #include "databasemanager.h"
21 #include <QObject>
22 #include <QSqlDatabase>
23 #include <QSqlTableModel>
24 #include <QSqlError>
25 #include <QSqlQuery>
26 #include <QFile>
27 #include <QDir>
28 #include <QVariant>
29
30 const QString DatabaseManager::DB_FILENAME = QString("my.db.sqlite");
31 const QString DatabaseManager::DATABASE = QString("QSQLITE");
32
33 DatabaseManager::DatabaseManager(QObject *parent)
34         : QObject(parent)
35 {}
36
37 DatabaseManager::~DatabaseManager()
38 {
39     // no need to explicitily destroy sqlTableModel
40     // because it is parented QObject and will
41     // be destroyed when parent is destroyed
42 }
43
44 bool DatabaseManager::openDB()
45 {
46     QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
47     db.setDatabaseName(DatabaseManager::getDbPath());
48     return db.open();
49 }
50
51 QString DatabaseManager::getDbPath()
52 {
53         QString path;
54 #ifdef Q_OS_LINUX
55         path.append(QDir::home().path());
56         path.append(QDir::separator()).append(DB_FILENAME);
57 #else
58         path.append(DB_FILENAME);       
59 #endif
60         return path;
61 }
62
63 void DatabaseManager::resetModel() const
64 {
65     if (!sqlTableModel) return;
66     sqlTableModel->setFilter("");
67     sqlTableModel->select();
68 }