fixed null data model object
[emufront] / src / dialogs / mediaimagepathmaindialog.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 <QtGui>
21
22 #include "../dataobjects/filepathobject.h"
23 #include "../dataobjects/emufrontfileobject.h"
24 #include "../db/dbfilepath.h"
25 #include "../utils/fileutil.h"
26 #include "mediaimagepathmaindialog.h"
27 #include "mediaimagepathdialog.h"
28
29 MediaImagePathMainDialog::MediaImagePathMainDialog(QWidget *parent)
30     : DbObjectDialog(parent)
31 {
32     setWindowTitle(tr("Set media image paths"));
33     dbManager = new DbFilePath(this);
34     initDataTable();
35
36     scanButton = new QPushButton(tr("&Scan"));
37     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
38
39     initEditDialog();
40     objectList->hideColumn(DbFilePath::FilePath_Id);
41     objectList->hideColumn(DbFilePath::FilePath_SetupId);
42     // do not move to parent class:
43     connectSignals();
44 }
45
46 void MediaImagePathMainDialog::connectSignals()
47 {
48     DbObjectDialog::connectSignals();
49     connect(scanButton, SIGNAL(clicked()), this, SLOT(beginScanFilePath()));
50 }
51
52 void MediaImagePathMainDialog::initEditDialog()
53 {
54     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
55 }
56
57 void MediaImagePathMainDialog::beginScanFilePath()
58 {
59     QModelIndex index = objectList->currentIndex();
60     if (!index.isValid()) return;
61     FileUtil fileUtil(this);
62     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
63     if (!ob) return;
64     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
65     try
66     {
67         QStringList l;
68         l << "*.zip"; // TODO set filters in a global constant class
69
70         QList<EmuFrontFileObject*> files = fileUtil.scanFilePath(fpo, l);
71     }
72     catch (QString s)
73     {
74         QMessageBox::warning(this, tr("Warning"), s, QMessageBox::Ok);
75     }
76 }
77
78 void MediaImagePathMainDialog::scanFilePath(const QString fp, const QStringList filters)
79 {
80     QDir dir(fp);
81     if (!dir.exists() || !dir.isReadable())
82         throw QString(tr("Directory %1 doesn't exists or isn't readable!").arg(fp));
83
84     dir.setFilter(QDir::Files | QDir::NoSymLinks | QDir::NoDotAndDotDot | QDir::Readable);
85
86     if (filters.count() > 0) dir.setNameFilters(filters);
87
88     QFileInfoList list = dir.entryInfoList();
89     for (int i = 0; i < list.size(); ++i)
90     {
91         QFileInfo fileInfo = list.at(i);
92         qDebug() << QString("%1 %2").arg(fileInfo.size(), 10).arg(fileInfo.absoluteFilePath());
93
94         QFile f(fileInfo.absoluteFilePath());
95
96     }
97 }
98
99 EmuFrontObject* MediaImagePathMainDialog::createObject()
100 {
101     return new FilePathObject;
102 }
103
104 MediaImagePathMainDialog::~MediaImagePathMainDialog()
105 {
106     deleteCurrentObject();
107 }
108
109 void MediaImagePathMainDialog::deleteCurrentObject()
110 {
111     delete dynamic_cast<FilePathObject*>(dbObject);
112     dbObject = 0;
113 }