Initial implementation of setup editor. Some refactoring and bug hunting
[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     qDebug() << "MediaImagePathMainDialog";
33     setWindowTitle(tr("Set media image paths"));
34     qDebug() << "Creating DbFilePath";
35     dbManager = new DbFilePath(this);
36     qDebug() << "Initializing data table";
37     initDataTable();
38
39     scanButton = new QPushButton(tr("&Scan"));
40     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
41
42     qDebug() << "Connecting signals";
43     // do not move to parent class:
44     connectSignals();
45 }
46
47 void MediaImagePathMainDialog::connectSignals()
48 {
49     DbObjectDialog::connectSignals();
50     connect(scanButton, SIGNAL(clicked()), this, SLOT(beginScanFilePath()));
51 }
52
53 void MediaImagePathMainDialog::initEditDialog()
54 {
55     qDebug() << "Creating MediaImagePathDialog";
56     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
57 }
58
59 void MediaImagePathMainDialog::beginScanFilePath()
60 {
61     qDebug() << "Scan file path requested";
62     QModelIndex index = objectList->currentIndex();
63     FileUtil fileUtil(this);
64     if (!index.isValid()) return;
65     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
66     if (!ob) return;
67     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
68     try
69     {
70         QStringList l;
71         l << "*.zip"; // TODO set filters in a global constant class
72
73         QList<EmuFrontFileObject*> files = fileUtil.scanFilePath(fpo, l);
74     }
75     catch (QString s)
76     {
77         QMessageBox::warning(this, tr("Warning"), s, QMessageBox::Ok);
78     }
79 }
80
81 void MediaImagePathMainDialog::scanFilePath(const QString fp, const QStringList filters)
82 {
83     qDebug() << "Will scan file path " << fp;
84     QDir dir(fp);
85     if (!dir.exists() || !dir.isReadable())
86         throw QString(tr("Directory %1 doesn't exists or isn't readable!").arg(fp));
87
88     dir.setFilter(QDir::Files | QDir::NoSymLinks | QDir::NoDotAndDotDot | QDir::Readable);
89
90     if (filters.count() > 0) dir.setNameFilters(filters);
91
92     QFileInfoList list = dir.entryInfoList();
93     for (int i = 0; i < list.size(); ++i)
94     {
95         QFileInfo fileInfo = list.at(i);
96         qDebug() << QString("%1 %2").arg(fileInfo.size(), 10).arg(fileInfo.absoluteFilePath());
97
98         QFile f(fileInfo.absoluteFilePath());
99
100     }
101 }
102
103 EmuFrontObject* MediaImagePathMainDialog::createObject()
104 {
105     return new FilePathObject;
106 }
107
108 MediaImagePathMainDialog::~MediaImagePathMainDialog()
109 {
110     deleteCurrentObject();
111 }
112
113 void MediaImagePathMainDialog::deleteCurrentObject()
114 {
115     delete dynamic_cast<FilePathObject*>(dbObject);
116     dbObject = 0;
117 }