Fixed an error with deletion of a shared resource (filePath-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 // 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     objectList->hideColumn(DbFilePath::FilePath_Id);
42     objectList->hideColumn(DbFilePath::FilePath_SetupId);
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     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
56 }
57
58 void MediaImagePathMainDialog::beginScanFilePath()
59 {
60     QModelIndex index = objectList->currentIndex();
61     if (!index.isValid()) return;
62     FileUtil fileUtil(this);
63     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
64     if (!ob) return;
65     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
66     try
67     {
68         QStringList l;
69         l << "*.zip"; // TODO set filters in a global constant class
70
71         QList<MediaImageContainer*> files = fileUtil.scanFilePath(fpo, l);
72         qDebug() << "Storing scanned " << files.size() << " files to database";
73         dbMediaImageContainer->storeContainers(files, fpo);
74         qDebug() << "Done storing scanned " << files.size() << " files to database";
75         // the media image and media image container objects can be deleted now
76         // qDeleteAll could be used also... maybe?
77         // TODO: this is not yet functional:
78         foreach(MediaImageContainer* mic, files) {
79             //mic->clearMediaImages();
80             /*QList<MediaImage*> mis = mic->getMediaImages();
81             foreach(MediaImage* mi, mis) {
82                 delete mi;
83                 mi = 0;
84             }
85             delete mic;
86             mic = 0;
87             */
88         }
89         qDeleteAll(files);
90         //files.clear();
91         //qDebug() << files.count();
92     }
93     catch (EmuFrontException s)
94     {
95         errorMessage->showMessage( s.what() );
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 }