42494e65aed7b5ebf4d91f054fbcc7b50746938b
[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 "../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     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     // 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::initEditDialog()
56 {
57     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
58     connectNameDialogSignals();
59 }
60
61 void MediaImagePathMainDialog::beginScanFilePath()
62 {
63     QModelIndex index = objectList->currentIndex();
64     if (!index.isValid()) return;
65     if (QMessageBox::question(this,
66         tr("Confirm"),
67         tr("Do you want to continue? "
68         "If you have tons of huge files this may take even hours! "
69         "If you are low on battery power, consider carefully!"),
70         QMessageBox::Yes, QMessageBox::No, QMessageBox::NoButton ) == QMessageBox::No) {
71             return;
72         }
73     FileUtil fileUtil(this);
74     FilePathObject *fpo = 0;
75     try
76     {
77         EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index); // throws EmuFrontException
78         if (!ob) return;
79         fpo = dynamic_cast<FilePathObject*>(ob);
80         if (!fpo) return;
81         QStringList l;
82         l << "*.zip"; // TODO set filters in a global constant class
83
84         dbMediaImageContainer->removeFromFilePath(fpo->getId());
85
86         QProgressDialog progressDialog(this);
87         progressDialog.setWindowTitle("Scanning files...");
88         progressDialog.setCancelButtonText("Abort");
89         progressDialog.setWindowModality(Qt::WindowModal);
90         progressDialog.show();
91
92         setUIEnabled(false);
93         int count = fileUtil.scanFilePath(fpo, l, dbMediaImageContainer, progressDialog);
94         progressDialog.hide();
95
96         QMessageBox msgBox;
97         msgBox.setText(tr("Scanned %1 files to database.").arg(count));
98         msgBox.exec();
99         DbFilePath *dbfp = dynamic_cast<DbFilePath*>(dbManager);
100         if (!(dbfp && dbfp->setScanned(fpo)))
101             throw EmuFrontException(tr("Failed updating the last scanned time stamp for selected file path!"));
102         else updateList();
103     }
104     catch (EmuFrontException s)
105     {
106         errorMessage->showMessage( s.what() );
107     }
108     setUIEnabled(true);
109     delete fpo;
110     fpo = 0;
111 }
112
113 EmuFrontObject* MediaImagePathMainDialog::createObject()
114 {
115     return new FilePathObject(FilePathObject::FilePathType_MediaImageDir);
116 }
117
118 MediaImagePathMainDialog::~MediaImagePathMainDialog()
119 {
120     deleteCurrentObject();
121 }
122
123 void MediaImagePathMainDialog::deleteCurrentObject()
124 {
125     if (dbObject) {
126         FilePathObject* fpo =  dynamic_cast<FilePathObject*>(dbObject);
127         if (fpo) delete fpo;
128         else qDebug() << "Failed deleteing FilePathObject";
129         dbObject = 0;
130     }
131 }
132
133 void MediaImagePathMainDialog::cleanUp()
134 {
135     deleteCurrentObject();
136     if (nameDialog) {
137         MediaImagePathDialog *pnd =
138             dynamic_cast<MediaImagePathDialog*>(nameDialog);
139         if (pnd) delete pnd;
140         else qDebug() << "Failed to delete MediaImagePathDialog";
141         nameDialog = 0;
142     }
143 }