Initial implementation for zip-file contents scanning.
[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 MediaImagePathDialog";
35     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
36     qDebug() << "Creating DbFilePath";
37     dbManager = new DbFilePath(this);
38     qDebug() << "Initializing data table";
39     initDataTable();
40
41     scanButton = new QPushButton(tr("&Scan"));
42     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
43
44     qDebug() << "Connecting signals";
45     // do not move to parent class:
46     connectSignals();
47 }
48
49 void MediaImagePathMainDialog::connectSignals()
50 {
51     DbObjectDialog::connectSignals();
52     connect(scanButton, SIGNAL(clicked()), this, SLOT(beginScanFilePath()));
53 }
54
55 void MediaImagePathMainDialog::beginScanFilePath()
56 {
57     qDebug() << "Scan file path requested";
58     QModelIndex index = objectList->currentIndex();
59     FileUtil fileUtil(this);
60     if (!index.isValid()) return;
61     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
62     if (!ob) return;
63     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
64     try
65     {
66         QStringList l;
67         l << "*.zip"; // TODO set filters in a global constant class
68
69         QList<EmuFrontFileObject*> files = fileUtil.scanFilePath(fpo, l);
70     }
71     catch (QString s)
72     {
73         QMessageBox::warning(this, tr("Warning"), s, QMessageBox::Ok);
74     }
75 }
76
77 void MediaImagePathMainDialog::scanFilePath(const QString fp, const QStringList filters)
78 {
79     qDebug() << "Will scan file path " << fp;
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 }