4478384e1c242a30bce38988dbc19c97b7f75e41
[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 version 2 as published by
9 // the Free Software Foundation and appearing in the file gpl.txt included in the
10 // packaging of this file.
11 //
12 // EmuFront 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 EmuFront.  If not, see <http://www.gnu.org/licenses/>.
19
20 #include <QtGui>
21
22 #include "filepathobject.h"
23 #include "emufrontfileobject.h"
24 #include "dbfilepath.h"
25 #include "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     dbMediaImageContainer = new DbMediaImageContainer(this);
35     initDataTable();
36
37     scanButton = new QPushButton(tr("&Scan"));
38     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
39
40     initEditDialog();
41     hiddenColumns << DbFilePath::FilePath_Id;
42     hiddenColumns << DbFilePath::FilePath_SetupId;
43     hideColumns();
44
45     fileUtil = new FileUtil(this);
46     initProgressDialog();
47
48     // do not move to parent class:
49     connectSignals();
50 }
51
52 void MediaImagePathMainDialog::initProgressDialog()
53 {
54     progressDialog = new QProgressDialog(this);
55     progressDialog->setWindowTitle(tr("Scanning files"));
56     progressDialog->setCancelButtonText(tr("Abort"));
57     progressDialog->setWindowModality(Qt::WindowModal);
58 }
59
60 void MediaImagePathMainDialog::connectSignals()
61 {
62     DbObjectDialog::connectSignals();
63     connect(scanButton, SIGNAL(clicked()), this, SLOT(beginScanFilePath()));
64 }
65
66 void MediaImagePathMainDialog::initEditDialog()
67 {
68     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
69     connectNameDialogSignals();
70 }
71
72 void MediaImagePathMainDialog::beginScanFilePath()
73 {
74     QModelIndex index = objectList->currentIndex();
75     if (!index.isValid()) return;
76     if (QMessageBox::question(this,
77         tr("Confirm"),
78         tr("Do you want to continue? "
79         "If you have tons of huge files this may take even hours! "
80         "If you are low on battery power, consider carefully!"),
81         QMessageBox::Yes, QMessageBox::No, QMessageBox::NoButton ) == QMessageBox::No) {
82             return;
83         }
84     FilePathObject *fpo = 0;
85     try
86     {
87         EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index); // throws EmuFrontException
88         if (!ob) return;
89         fpo = dynamic_cast<FilePathObject*>(ob);
90         if (!fpo) return;
91         QStringList l;
92         l << "*.zip"; // TODO set filters in a global constant class
93
94         dbMediaImageContainer->removeFromFilePath(fpo->getId());
95
96         progressDialog->show();
97
98         setUIEnabled(false);
99         int count = fileUtil->scanFilePath(fpo, l, dbMediaImageContainer, progressDialog);
100         progressDialog->hide();
101
102         QMessageBox msgBox;
103         msgBox.setText(tr("Scanned %1 files to database.").arg(count));
104         msgBox.exec();
105         DbFilePath *dbfp = dynamic_cast<DbFilePath*>(dbManager);
106         if (!(dbfp && dbfp->setScanned(fpo)))
107             throw EmuFrontException(tr("Failed updating the last scanned time stamp for selected file path!"));
108         else updateList();
109     }
110     catch (EmuFrontException s)
111     {
112         errorMessage->showMessage( s.what() );
113     }
114     setUIEnabled(true);
115     delete fpo;
116     fpo = 0;
117 }
118
119 EmuFrontObject* MediaImagePathMainDialog::createObject()
120 {
121     return new FilePathObject(FilePathObject::FilePathType_MediaImageDir);
122 }
123
124 MediaImagePathMainDialog::~MediaImagePathMainDialog()
125 {
126     deleteCurrentObject();
127 }
128
129 void MediaImagePathMainDialog::deleteCurrentObject()
130 {
131     if (dbObject) {
132         FilePathObject* fpo =  dynamic_cast<FilePathObject*>(dbObject);
133         if (fpo) delete fpo;
134         else qDebug() << "Failed deleteing FilePathObject";
135         dbObject = 0;
136     }
137 }
138
139 void MediaImagePathMainDialog::cleanUp()
140 {
141     deleteCurrentObject();
142     if (nameDialog) {
143         MediaImagePathDialog *pnd =
144             dynamic_cast<MediaImagePathDialog*>(nameDialog);
145         if (pnd) delete pnd;
146         else qDebug() << "Failed to delete MediaImagePathDialog";
147         nameDialog = 0;
148     }
149 }