Still need to clear all the media image container objects from
[emufront] / src / db / dbmediaimagecontainer.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 <QDebug>
21 #include <QSqlRecord>
22 #include <QSqlQuery>
23 #include <QSqlRelationalTableModel>
24 #include <QSqlError>
25 #include "dbmediaimagecontainer.h"
26
27 DbMediaImageContainer::DbMediaImageContainer(QObject *parent)
28     : DbFile(parent) // DbQueryModelManager(parent)
29 {
30     dbMediaImage = new DbMediaImage(parent);
31     //dbFile = new DbFile(parent);
32 }
33
34 bool DbMediaImageContainer::updateDataObjectToModel(const EmuFrontObject *efo)
35 {
36     // TODO
37     return false;
38 }
39
40 int DbMediaImageContainer::insertDataObjectToModel(const EmuFrontObject *efo)
41 {
42     const MediaImageContainer *mic
43         = dynamic_cast<const MediaImageContainer *>(efo);
44
45     // check if this media image container is already in the database
46     EmuFrontObject *o = getFileByChecksum(mic->getCheckSum());
47     int fileId = o ? o->getId() : -1;
48     /*int fileId = getMediaImageContainer(mic->getCheckSum());*/
49     if (fileId >= 0) {
50         qDebug() << "Media image container already in db with id " << fileId << ".";
51         return fileId;
52    }
53
54     if (!mic->getFilePath())
55         throw new EmuFrontException("Cannot install media image "
56             "container to database without a file path object!");
57
58     QList<MediaImage*> images = mic->getMediaImages();
59     QList<int> ids = dbMediaImage->storeMediaImages(images);
60
61     qDebug() << "Stored " << ids.count() << " media images.";
62
63     if (ids.count() <= 0)
64         return -1;
65
66     /* Contained Media images successfully stored to db,
67         storing media image container also */
68
69     try {
70
71         // Insert MediaImageContainer first as a EmuFrontFile object to file table.
72
73         // File id is used to store the media image container instance to database,
74         // file id is also the media image container id
75         fileId = DbFile::insertDataObjectToModel(mic);
76
77         qDebug() << "Inserted media image container to file table with id " << fileId << ".";
78
79         if (fileId < 0) {
80             // TODO: note we most surely need to catch the exception
81             // in the calling code block and clean
82             // all the media image and ...containers from
83             // the memory!
84             throw new EmuFrontException(
85                     QString(tr("Inserting media image container %1 to file database failed"))
86                     .arg(mic->getName()));
87         }
88
89         // Insert to mediaimagecontainer table
90
91         QSqlQuery q;
92         q.prepare("INSERT INTO mediaimagecontainer "
93                   "(fileid, filepathid, updatetime) "
94                   "VALUES (:fileid, :filepathid, :updatetime)");
95         q.bindValue(":fileid", fileId);
96         q.bindValue(":filepathid", mic->getFilePath()->getId());
97         q.bindValue(":updatetime", DatabaseManager::getCurrentTimeStamp());
98         if (!q.exec()){
99             DbFile::deleteDataObject(fileId);
100             throw new EmuFrontException("Failed inserting media image to database!");
101         }
102         qDebug() << "Inserted media image container " << fileId << " to mediaimagecontainer table.";
103         linkMediaImagesWithContainer(fileId, ids);
104         qDebug() << "Linked media image container with media images.";
105     } catch (EmuFrontException e) {
106         dbMediaImage->removeOrphanedMediaImages(ids);
107         throw e;
108     }
109
110     return fileId;
111 }
112
113 bool DbMediaImageContainer::deleteDataObjectFromModel(QModelIndex *i)
114 {
115     // TODO
116     return false;
117 }
118
119 int DbMediaImageContainer::countDataObjectRefs(int id) const
120 {
121     // TODO
122     return -1;
123 }
124
125 QString DbMediaImageContainer::constructSelect(QString whereClause) const
126 {
127     return DbFile::constructSelect(whereClause);
128 }
129
130 QString DbMediaImageContainer::constructFilterById(int id) const
131 {
132     return DbFile::constructFilterById(id);
133 }
134
135 QString DbMediaImageContainer::constructSelectById(int id) const
136 {
137     return DbFile::constructSelectById(id);
138 }
139
140 EmuFrontObject* DbMediaImageContainer::recordToDataObject(const QSqlRecord *rec)
141 {
142     return DbFile::recordToDataObject(rec);
143 }
144
145 QSqlQueryModel* DbMediaImageContainer::getData()
146 {
147     return DbFile::getData();
148 }
149
150 /* Returns the id of a media image container with a given cheksum or -1 if not found */
151 int DbMediaImageContainer::getMediaImageContainer(QString checksum) const
152 {
153     QSqlQuery q;
154     q.prepare("SELECT id FROM file WHERE checksum=:checksum");
155     q.bindValue(":checksum", checksum);
156     int id = -1;
157     if (q.next())
158         id = q.value(0).toInt();
159     return id;
160 }
161
162
163 /**
164 * Stores media image containers, including the media images included
165 * to database.
166 */
167 void DbMediaImageContainer::storeContainers(QList<MediaImageContainer *> lst, FilePathObject *fpo)
168 {
169     qDebug() << "Storing media image containers to database.";
170     foreach(MediaImageContainer *mic, lst)
171     {
172         qDebug() << "Media image container " << mic->getName();
173         int micFileId = insertDataObjectToModel(mic);
174     }
175 }
176
177 void DbMediaImageContainer::linkMediaImagesWithContainer(int micId, QList<int> miIds)
178 {
179     if (micId < 0 || miIds.count() <= 0)
180         return;
181
182     QSqlQuery q;
183     q.prepare("INSERT INTO mediaimagecontainer_mediaimage "
184         "(mediaimagecontainerid, mediaimageid) "
185         "VALUES (:micid, :miid) ");
186     q.bindValue(":micid", micId);
187
188     foreach(int miid, miIds) {
189         qDebug() << "Linking media image container " << micId << " to media image " << miid  << ".";
190         q.bindValue(":miid", miid);
191         if (!q.exec()) {
192             throw new EmuFrontException(QString("Failed linking media "
193                 "image container %1 to a media image %2").arg(micId).arg(miid));
194         }
195     }
196 }