]> git.sesse.net Git - kdenlive/blob - src/documentchecker.cpp
Check for missing proxies on document opening
[kdenlive] / src / documentchecker.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "documentchecker.h"
22 #include "kthumb.h"
23 #include "docclipbase.h"
24 #include "titlewidget.h"
25 #include "definitions.h"
26 #include "kdenlivesettings.h"
27
28 #include <KDebug>
29 #include <KGlobalSettings>
30 #include <KFileItem>
31 #include <KIO/NetAccess>
32 #include <KFileDialog>
33 #include <KApplication>
34 #include <KUrlRequesterDialog>
35 #include <KMessageBox>
36
37 #include <QTreeWidgetItem>
38 #include <QFile>
39 #include <QHeaderView>
40 #include <QIcon>
41 #include <QPixmap>
42 #include <QTimer>
43 #include <QCryptographicHash>
44
45 const int hashRole = Qt::UserRole;
46 const int sizeRole = Qt::UserRole + 1;
47 const int idRole = Qt::UserRole + 2;
48 const int statusRole = Qt::UserRole + 3;
49 const int typeRole = Qt::UserRole + 4;
50 const int typeOriginalResource = Qt::UserRole + 5;
51
52 const int CLIPMISSING = 0;
53 const int CLIPOK = 1;
54 const int CLIPPLACEHOLDER = 2;
55 const int CLIPWRONGDURATION = 3;
56 const int PROXYMISSING = 4;
57
58 const int LUMAMISSING = 10;
59 const int LUMAOK = 11;
60 const int LUMAPLACEHOLDER = 12;
61
62 enum TITLECLIPTYPE { TITLE_IMAGE_ELEMENT = 20, TITLE_FONT_ELEMENT = 21 };
63
64 DocumentChecker::DocumentChecker(QDomNodeList infoproducers, QDomDocument doc):
65     m_info(infoproducers), m_doc(doc), m_dialog(NULL)
66 {
67
68 }
69
70
71 bool DocumentChecker::hasErrorInClips()
72 {
73     int clipType;
74     QDomElement e;
75     QString resource;
76     QDomNodeList documentProducers = m_doc.elementsByTagName("producer");
77     QList <QDomElement> wrongDurationClips;
78     QList <QDomElement> missingClips;
79     QList <QDomElement> missingProxies;
80     for (int i = 0; i < m_info.count(); i++) {
81         e = m_info.item(i).toElement();
82         clipType = e.attribute("type").toInt();
83         if (clipType == COLOR) continue;
84         if (clipType != TEXT && clipType != IMAGE) {
85             QString id = e.attribute("id");
86             int duration = e.attribute("duration").toInt();
87             // Check that the duration is in sync between Kdenlive's info and MLT's playlist
88             for (int j = 0; j < documentProducers.count(); j++) {
89                 QDomElement mltProd = documentProducers.at(j).toElement();
90                 QString prodId = mltProd.attribute("id");
91                 // Don't check slowmotion clips for now... (TODO?)
92                 if (prodId.startsWith("slowmotion")) continue;
93                 if (prodId.contains("_")) prodId = prodId.section("_", 0, 0);
94                 if (prodId != id) continue;
95                 int mltDuration = mltProd.attribute("out").toInt() + 1;
96                 if (mltDuration != duration && !e.hasAttribute("_mismatch")) {
97                     // Duration mismatch
98                     e.setAttribute("_mismatch", mltDuration);
99                     if (!wrongDurationClips.contains(e)) wrongDurationClips.append(e);
100                     kDebug() << "WRONG DURTAION: "<<id<<", TYPE: "<<clipType;
101                 }
102             }
103         }
104         
105         if (clipType == TEXT) {
106             //TODO: Check is clip template is missing (xmltemplate) or hash changed
107             QStringList images = TitleWidget::extractImageList(e.attribute("xmldata"));
108             QStringList fonts = TitleWidget::extractFontList(e.attribute("xmldata"));
109             checkMissingImages(missingClips, images, fonts, e.attribute("id"), e.attribute("name"));
110             continue;
111         }
112         resource = e.attribute("resource");
113         if (e.hasAttribute("proxy")) {
114             QString proxyresource = e.attribute("proxy");
115             if (!KIO::NetAccess::exists(KUrl(proxyresource), KIO::NetAccess::SourceSide, 0)) {
116                 // Missing clip found
117                 missingProxies.append(e);
118             }
119         }
120         if (clipType == SLIDESHOW) resource = KUrl(resource).directory();
121         if (!KIO::NetAccess::exists(KUrl(resource), KIO::NetAccess::SourceSide, 0)) {
122             // Missing clip found
123             missingClips.append(e);
124         } else {
125             // Check if the clip has changed
126             if (clipType != SLIDESHOW && e.hasAttribute("file_hash")) {
127                 if (e.attribute("file_hash") != DocClipBase::getHash(e.attribute("resource")))
128                     e.removeAttribute("file_hash");
129             }
130         }
131     }
132
133     QStringList missingLumas;
134     QString root = m_doc.documentElement().attribute("root");
135     if (!root.isEmpty()) root = KUrl(root).path(KUrl::AddTrailingSlash);
136     QDomNodeList trans = m_doc.elementsByTagName("transition");
137     for (int i = 0; i < trans.count(); i++) {
138         QString luma = getProperty(trans.at(i).toElement(), "luma");
139         if (!luma.isEmpty()) {
140             if (!luma.startsWith('/')) luma.prepend(root);
141             if (!QFile::exists(luma) && !missingLumas.contains(luma)) {
142                 missingLumas.append(luma);
143             }
144         }
145     }
146
147     if (missingClips.isEmpty() && missingLumas.isEmpty() && wrongDurationClips.isEmpty() && missingProxies.isEmpty())
148         return false;
149
150     m_dialog = new QDialog();
151     m_dialog->setFont(KGlobalSettings::toolBarFont());
152     m_ui.setupUi(m_dialog);
153
154     foreach(const QString l, missingLumas) {
155         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << i18n("Luma file") << l);
156         item->setIcon(0, KIcon("dialog-close"));
157         item->setData(0, idRole, l);
158         item->setData(0, statusRole, LUMAMISSING);
159     }
160
161     m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
162     for (int i = 0; i < missingClips.count(); i++) {
163         e = missingClips.at(i).toElement();
164         QString clipType;
165         int t = e.attribute("type").toInt();
166         switch (t) {
167         case AV:
168             clipType = i18n("Video clip");
169             break;
170         case VIDEO:
171             clipType = i18n("Mute video clip");
172             break;
173         case AUDIO:
174             clipType = i18n("Audio clip");
175             break;
176         case PLAYLIST:
177             clipType = i18n("Playlist clip");
178             break;
179         case IMAGE:
180             clipType = i18n("Image clip");
181             break;
182         case SLIDESHOW:
183             clipType = i18n("Slideshow clip");
184             break;
185         case TITLE_IMAGE_ELEMENT:
186             clipType = i18n("Title Image");
187             break;
188         case TITLE_FONT_ELEMENT:
189             clipType = i18n("Title Font");
190             break;
191         default:
192             clipType = i18n("Video clip");
193         }
194         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << clipType);
195         if (t == TITLE_IMAGE_ELEMENT) {
196             item->setIcon(0, KIcon("dialog-warning"));
197             item->setToolTip(1, e.attribute("name"));
198             item->setText(1, e.attribute("resource"));
199             item->setData(0, statusRole, CLIPPLACEHOLDER);
200             item->setData(0, typeOriginalResource, e.attribute("resource"));
201         } else if (t == TITLE_FONT_ELEMENT) {
202             item->setIcon(0, KIcon("dialog-warning"));
203             item->setToolTip(1, e.attribute("name"));
204             QString ft = e.attribute("resource");
205             QString newft = QFontInfo(QFont(ft)).family();
206             item->setText(1, i18n("%1 will be replaced by %2", ft, newft));
207             item->setData(0, statusRole, CLIPPLACEHOLDER);
208         } else {
209             item->setIcon(0, KIcon("dialog-close"));
210             item->setText(1, e.attribute("resource"));
211             item->setData(0, hashRole, e.attribute("file_hash"));
212             item->setData(0, sizeRole, e.attribute("file_size"));
213             item->setData(0, statusRole, CLIPMISSING);
214         }
215         item->setData(0, typeRole, t);
216         item->setData(0, idRole, e.attribute("id"));
217         item->setToolTip(0, i18n("Missing item"));
218     }
219
220     if (missingClips.count() > 0) {
221         if (wrongDurationClips.count() > 0) {
222             m_ui.infoLabel->setText(i18n("The project file contains missing clips or files and clip duration mismatch"));
223         }
224         else {
225             m_ui.infoLabel->setText(i18n("The project file contains missing clips or files"));
226         }
227     }
228     else if (wrongDurationClips.count() > 0) {
229         m_ui.infoLabel->setText(i18n("The project file contains clips with duration mismatch"));
230     }
231     if (missingProxies.count() > 0) {
232         if (!m_ui.infoLabel->text().isEmpty()) m_ui.infoLabel->setText(m_ui.infoLabel->text() + ". ");
233         m_ui.infoLabel->setText(m_ui.infoLabel->text() + i18n("Missing proxies will be recreated after opening."));
234     }
235
236     m_ui.removeSelected->setEnabled(!missingClips.isEmpty());
237     m_ui.recursiveSearch->setEnabled(!missingClips.isEmpty());
238     m_ui.usePlaceholders->setEnabled(!missingClips.isEmpty());
239     m_ui.fixDuration->setEnabled(!wrongDurationClips.isEmpty());
240         
241     for (int i = 0; i < wrongDurationClips.count(); i++) {
242         e = wrongDurationClips.at(i).toElement();
243         QString clipType;
244         int t = e.attribute("type").toInt();
245         switch (t) {
246         case AV:
247             clipType = i18n("Video clip");
248             break;
249         case VIDEO:
250             clipType = i18n("Mute video clip");
251             break;
252         case AUDIO:
253             clipType = i18n("Audio clip");
254             break;
255         case PLAYLIST:
256             clipType = i18n("Playlist clip");
257             break;
258         case IMAGE:
259             clipType = i18n("Image clip");
260             break;
261         case SLIDESHOW:
262             clipType = i18n("Slideshow clip");
263             break;
264         default:
265             clipType = i18n("Video clip");
266         }
267         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << clipType);
268         item->setIcon(0, KIcon("timeadjust"));
269         item->setText(1, e.attribute("resource"));
270         item->setData(0, hashRole, e.attribute("file_hash"));
271         item->setData(0, sizeRole, e.attribute("_mismatch"));
272         e.removeAttribute("_mismatch");
273         item->setData(0, statusRole, CLIPWRONGDURATION);
274         item->setData(0, typeRole, t);
275         item->setData(0, idRole, e.attribute("id"));
276         item->setToolTip(0, i18n("Duration mismatch"));
277     }
278
279
280     for (int i = 0; i < missingProxies.count(); i++) {
281         e = missingProxies.at(i).toElement();
282         QString clipType;
283         int t = e.attribute("type").toInt();
284         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << i18n("Proxy clip"));
285         item->setIcon(0, KIcon("dialog-close"));
286         item->setText(1, e.attribute("proxy"));
287         item->setData(0, hashRole, e.attribute("file_hash"));
288         item->setData(0, statusRole, PROXYMISSING);
289         item->setData(0, typeRole, t);
290         item->setData(0, idRole, e.attribute("id"));
291         item->setToolTip(0, i18n("Missing proxy"));
292     }
293     
294     connect(m_ui.recursiveSearch, SIGNAL(pressed()), this, SLOT(slotSearchClips()));
295     connect(m_ui.usePlaceholders, SIGNAL(pressed()), this, SLOT(slotPlaceholders()));
296     connect(m_ui.removeSelected, SIGNAL(pressed()), this, SLOT(slotDeleteSelected()));
297     connect(m_ui.fixDuration, SIGNAL(pressed()), this, SLOT(slotFixDuration()));
298     connect(m_ui.treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, SLOT(slotEditItem(QTreeWidgetItem *, int)));
299     connect(m_ui.treeWidget, SIGNAL(itemSelectionChanged()), this, SLOT(slotCheckButtons()));
300     //adjustSize();
301     if (m_ui.treeWidget->topLevelItem(0)) m_ui.treeWidget->setCurrentItem(m_ui.treeWidget->topLevelItem(0));
302     checkStatus();
303     int acceptMissing = m_dialog->exec();
304     if (acceptMissing == QDialog::Accepted) acceptDialog();
305     return (acceptMissing != QDialog::Accepted);
306 }
307
308 DocumentChecker::~DocumentChecker()
309 {
310     if (m_dialog) delete m_dialog;
311 }
312
313
314 QString DocumentChecker::getProperty(QDomElement effect, const QString &name)
315 {
316     QDomNodeList params = effect.elementsByTagName("property");
317     for (int i = 0; i < params.count(); i++) {
318         QDomElement e = params.item(i).toElement();
319         if (e.attribute("name") == name) {
320             return e.firstChild().nodeValue();
321         }
322     }
323     return QString();
324 }
325
326 void DocumentChecker::setProperty(QDomElement effect, const QString &name, const QString value)
327 {
328     QDomNodeList params = effect.elementsByTagName("property");
329     for (int i = 0; i < params.count(); i++) {
330         QDomElement e = params.item(i).toElement();
331         if (e.attribute("name") == name) {
332             e.firstChild().setNodeValue(value);
333         }
334     }
335 }
336
337 void DocumentChecker::slotSearchClips()
338 {
339     QString newpath = KFileDialog::getExistingDirectory(KUrl("kfiledialog:///clipfolder"), kapp->activeWindow(), i18n("Clips folder"));
340     if (newpath.isEmpty()) return;
341     int ix = 0;
342     bool fixed = false;
343     m_ui.recursiveSearch->setEnabled(false);
344     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
345     while (child) {
346         if (child->data(0, statusRole).toInt() == CLIPMISSING) {
347             QString clipPath = searchFileRecursively(QDir(newpath), child->data(0, sizeRole).toString(), child->data(0, hashRole).toString());
348             if (!clipPath.isEmpty()) {
349                 fixed = true;
350                 child->setText(1, clipPath);
351                 child->setIcon(0, KIcon("dialog-ok"));
352                 child->setData(0, statusRole, CLIPOK);
353             }
354         } else if (child->data(0, statusRole).toInt() == LUMAMISSING) {
355             QString fileName = searchLuma(child->data(0, idRole).toString());
356             if (!fileName.isEmpty()) {
357                 fixed = true;
358                 child->setText(1, fileName);
359                 child->setIcon(0, KIcon("dialog-ok"));
360                 child->setData(0, statusRole, LUMAOK);
361             }
362         }
363         ix++;
364         child = m_ui.treeWidget->topLevelItem(ix);
365     }
366     m_ui.recursiveSearch->setEnabled(true);
367     if (fixed) {
368         // original doc was modified
369         QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
370         QDomElement infoXml = infoXmlNode.toElement();
371         infoXml.setAttribute("modified", "1");
372     }
373     checkStatus();
374 }
375
376
377 QString DocumentChecker::searchLuma(QString file) const
378 {
379     KUrl searchPath(KdenliveSettings::mltpath());
380     if (file.contains("PAL"))
381         searchPath.cd("../lumas/PAL");
382     else
383         searchPath.cd("../lumas/NTSC");
384     QString result = searchPath.path(KUrl::AddTrailingSlash) + KUrl(file).fileName();
385     if (QFile::exists(result))
386         return result;
387     return QString();
388 }
389
390
391 QString DocumentChecker::searchFileRecursively(const QDir &dir, const QString &matchSize, const QString &matchHash) const
392 {
393     QString foundFileName;
394     QByteArray fileData;
395     QByteArray fileHash;
396     QStringList filesAndDirs = dir.entryList(QDir::Files | QDir::Readable);
397     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
398         QFile file(dir.absoluteFilePath(filesAndDirs.at(i)));
399         if (QString::number(file.size()) == matchSize) {
400             if (file.open(QIODevice::ReadOnly)) {
401                 /*
402                 * 1 MB = 1 second per 450 files (or faster)
403                 * 10 MB = 9 seconds per 450 files (or faster)
404                 */
405                 if (file.size() > 1000000 * 2) {
406                     fileData = file.read(1000000);
407                     if (file.seek(file.size() - 1000000))
408                         fileData.append(file.readAll());
409                 } else
410                     fileData = file.readAll();
411                 file.close();
412                 fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
413                 if (QString(fileHash.toHex()) == matchHash)
414                     return file.fileName();
415             }
416         }
417         //kDebug() << filesAndDirs.at(i) << file.size() << fileHash.toHex();
418     }
419     filesAndDirs = dir.entryList(QDir::Dirs | QDir::Readable | QDir::Executable | QDir::NoDotAndDotDot);
420     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
421         foundFileName = searchFileRecursively(dir.absoluteFilePath(filesAndDirs.at(i)), matchSize, matchHash);
422         if (!foundFileName.isEmpty())
423             break;
424     }
425     return foundFileName;
426 }
427
428 void DocumentChecker::slotEditItem(QTreeWidgetItem *item, int)
429 {
430     int t = item->data(0, typeRole).toInt();
431     if (t == TITLE_FONT_ELEMENT) return;
432     //|| t == TITLE_IMAGE_ELEMENT) {
433
434     KUrl url = KUrlRequesterDialog::getUrl(item->text(1), m_dialog, i18n("Enter new location for file"));
435     if (url.isEmpty()) return;
436     item->setText(1, url.path());
437     if (KIO::NetAccess::exists(url, KIO::NetAccess::SourceSide, 0)) {
438         item->setIcon(0, KIcon("dialog-ok"));
439         int id = item->data(0, statusRole).toInt();
440         if (id < 10) item->setData(0, statusRole, CLIPOK);
441         else item->setData(0, statusRole, LUMAOK);
442         checkStatus();
443     } else {
444         item->setIcon(0, KIcon("dialog-close"));
445         int id = item->data(0, statusRole).toInt();
446         if (id < 10) item->setData(0, statusRole, CLIPMISSING);
447         else item->setData(0, statusRole, LUMAMISSING);
448         checkStatus();
449     }
450 }
451
452
453 void DocumentChecker::acceptDialog()
454 {
455     QDomElement e, property;
456     QDomNodeList producers = m_doc.elementsByTagName("producer");
457     QDomNodeList infoproducers = m_doc.elementsByTagName("kdenlive_producer");
458     QDomNodeList properties;
459     int ix = 0;
460
461     // prepare transitions
462     QDomNodeList trans = m_doc.elementsByTagName("transition");
463
464     // Mark document as modified
465     m_doc.documentElement().setAttribute("modified", 1);
466
467     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
468     while (child) {
469         int t = child->data(0, typeRole).toInt();
470         if (child->data(0, statusRole).toInt() == CLIPOK) {
471             QString id = child->data(0, idRole).toString();
472             if (t == TITLE_IMAGE_ELEMENT) {
473                 // edit images embedded in titles
474                 for (int i = 0; i < infoproducers.count(); i++) {
475                     e = infoproducers.item(i).toElement();
476                     if (e.attribute("id") == id) {
477                         // Fix clip
478                         QString xml = e.attribute("xmldata");
479                         xml.replace(child->data(0, typeOriginalResource).toString(), child->text(1));
480                         e.setAttribute("xmldata", xml);
481                         break;
482                     }
483                 }
484                 for (int i = 0; i < producers.count(); i++) {
485                     e = producers.item(i).toElement();
486                     if (e.attribute("id").section('_', 0, 0) == id) {
487                         // Fix clip
488                         properties = e.childNodes();
489                         for (int j = 0; j < properties.count(); ++j) {
490                             property = properties.item(j).toElement();
491                             if (property.attribute("name") == "xmldata") {
492                                 QString xml = property.firstChild().nodeValue();
493                                 xml.replace(child->data(0, typeOriginalResource).toString(), child->text(1));
494                                 property.firstChild().setNodeValue(xml);
495                                 break;
496                             }
497                         }
498                     }
499                 }
500             } else {
501                 // edit clip url
502                 for (int i = 0; i < infoproducers.count(); i++) {
503                     e = infoproducers.item(i).toElement();
504                     if (e.attribute("id") == id) {
505                         // Fix clip
506                         e.setAttribute("resource", child->text(1));
507                         e.setAttribute("name", KUrl(child->text(1)).fileName());
508                         break;
509                     }
510                 }
511                 for (int i = 0; i < producers.count(); i++) {
512                     e = producers.item(i).toElement();
513                     if (e.attribute("id").section('_', 0, 0) == id || e.attribute("id").section(':', 1, 1) == id) {
514                         // Fix clip
515                         properties = e.childNodes();
516                         for (int j = 0; j < properties.count(); ++j) {
517                             property = properties.item(j).toElement();
518                             if (property.attribute("name") == "resource") {
519                                 QString resource = property.firstChild().nodeValue();
520                                 if (resource.contains(QRegExp("\\?[0-9]+\\.[0-9]+(&amp;strobe=[0-9]+)?$")))
521                                     property.firstChild().setNodeValue(child->text(1) + '?' + resource.section('?', -1));
522                                 else
523                                     property.firstChild().setNodeValue(child->text(1));
524                                 break;
525                             }
526                         }
527                     }
528                 }
529             }
530         } else if (child->data(0, statusRole).toInt() == CLIPPLACEHOLDER && t != TITLE_FONT_ELEMENT && t != TITLE_IMAGE_ELEMENT) {
531             QString id = child->data(0, idRole).toString();
532             for (int i = 0; i < infoproducers.count(); i++) {
533                 e = infoproducers.item(i).toElement();
534                 if (e.attribute("id") == id) {
535                     // Fix clip
536                     e.setAttribute("placeholder", '1');
537                     break;
538                 }
539             }
540         } else if (child->data(0, statusRole).toInt() == LUMAOK) {
541             for (int i = 0; i < trans.count(); i++) {
542                 QString luma = getProperty(trans.at(i).toElement(), "luma");
543                 kDebug() << "luma: " << luma;
544                 if (!luma.isEmpty() && luma == child->data(0, idRole).toString()) {
545                     setProperty(trans.at(i).toElement(), "luma", child->text(1));
546                     kDebug() << "replace with; " << child->text(1);
547                 }
548             }
549         } else if (child->data(0, statusRole).toInt() == LUMAMISSING) {
550             for (int i = 0; i < trans.count(); i++) {
551                 QString luma = getProperty(trans.at(i).toElement(), "luma");
552                 if (!luma.isEmpty() && luma == child->data(0, idRole).toString()) {
553                     setProperty(trans.at(i).toElement(), "luma", QString());
554                 }
555             }
556         }
557         ix++;
558         child = m_ui.treeWidget->topLevelItem(ix);
559     }
560     //QDialog::accept();
561 }
562
563 void DocumentChecker::slotPlaceholders()
564 {
565     int ix = 0;
566     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
567     while (child) {
568         if (child->data(0, statusRole).toInt() == CLIPMISSING) {
569             child->setData(0, statusRole, CLIPPLACEHOLDER);
570             child->setIcon(0, KIcon("dialog-ok"));
571         } else if (child->data(0, statusRole).toInt() == LUMAMISSING) {
572             child->setData(0, statusRole, LUMAPLACEHOLDER);
573             child->setIcon(0, KIcon("dialog-ok"));
574         }
575         ix++;
576         child = m_ui.treeWidget->topLevelItem(ix);
577     }
578     checkStatus();
579 }
580
581 void DocumentChecker::slotFixDuration()
582 {
583     int ix = 0;
584     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
585     while (child) {
586         if (child->data(0, statusRole).toInt() == CLIPWRONGDURATION) {
587             child->setData(0, statusRole, CLIPOK);
588             child->setIcon(0, KIcon("dialog-ok"));
589             QString id = child->data(0, idRole).toString();
590             for (int i = 0; i < m_info.count(); i++) {
591                 QDomElement e = m_info.at(i).toElement();
592                 if (e.attribute("id") == id) {
593                     e.setAttribute("duration", child->data(0, sizeRole).toString());
594                     break;
595                 }
596             }
597         }
598         ix++;
599         child = m_ui.treeWidget->topLevelItem(ix);
600     }
601     QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
602     QDomElement infoXml = infoXmlNode.toElement();
603     infoXml.setAttribute("modified", "1");
604     m_ui.fixDuration->setEnabled(false);
605     checkStatus();
606 }
607
608
609 void DocumentChecker::checkStatus()
610 {
611     bool status = true;
612     int ix = 0;
613     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
614     while (child) {
615         int status = child->data(0, statusRole).toInt();
616         if (status == CLIPMISSING || status == LUMAMISSING || status == CLIPWRONGDURATION) {
617             status = false;
618             break;
619         }
620         ix++;
621         child = m_ui.treeWidget->topLevelItem(ix);
622     }
623     m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(status);
624 }
625
626
627 void DocumentChecker::slotDeleteSelected()
628 {
629     if (KMessageBox::warningContinueCancel(m_dialog, i18np("This will remove the selected clip from this project", "This will remove the selected clips from this project", m_ui.treeWidget->selectedItems().count()), i18n("Remove clips")) == KMessageBox::Cancel)
630         return;
631     QStringList deletedIds;
632     QDomNodeList playlists = m_doc.elementsByTagName("playlist");
633
634     foreach(QTreeWidgetItem *child, m_ui.treeWidget->selectedItems()) {
635         if (child->data(0, statusRole).toInt() < 10) {
636             deletedIds.append(child->data(0, idRole).toString());
637             delete child;
638         }
639     }
640     kDebug() << "// Clips to delete: " << deletedIds;
641
642     if (!deletedIds.isEmpty()) {
643         QDomElement e;
644         QDomNodeList producers = m_doc.elementsByTagName("producer");
645         QDomNodeList infoproducers = m_doc.elementsByTagName("kdenlive_producer");
646
647         QDomElement mlt = m_doc.firstChildElement("mlt");
648         QDomElement kdenlivedoc = mlt.firstChildElement("kdenlivedoc");
649
650         for (int i = 0, j = 0; i < infoproducers.count() && j < deletedIds.count(); i++) {
651             e = infoproducers.item(i).toElement();
652             if (deletedIds.contains(e.attribute("id"))) {
653                 // Remove clip
654                 kdenlivedoc.removeChild(e);
655                 i--;
656                 j++;
657             }
658         }
659
660         for (int i = 0; i < producers.count(); i++) {
661             e = producers.item(i).toElement();
662             if (deletedIds.contains(e.attribute("id").section('_', 0, 0)) || deletedIds.contains(e.attribute("id").section(':', 1, 1).section('_', 0, 0))) {
663                 // Remove clip
664                 mlt.removeChild(e);
665                 i--;
666             }
667         }
668
669         for (int i = 0; i < playlists.count(); i++) {
670             QDomNodeList entries = playlists.at(i).toElement().elementsByTagName("entry");
671             for (int j = 0; j < entries.count(); j++) {
672                 e = entries.item(j).toElement();
673                 if (deletedIds.contains(e.attribute("producer").section('_', 0, 0)) || deletedIds.contains(e.attribute("producer").section(':', 1, 1).section('_', 0, 0))) {
674                     // Replace clip with blank
675                     while (e.childNodes().count() > 0)
676                         e.removeChild(e.firstChild());
677                     e.setTagName("blank");
678                     e.removeAttribute("producer");
679                     int length = e.attribute("out").toInt() - e.attribute("in").toInt();
680                     e.setAttribute("length", length);
681                     j--;
682                 }
683             }
684         }
685         QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
686         QDomElement infoXml = infoXmlNode.toElement();
687         infoXml.setAttribute("modified", "1");
688         checkStatus();
689     }
690 }
691
692 void DocumentChecker::checkMissingImages(QList <QDomElement>&missingClips, QStringList images, QStringList fonts, QString id, QString baseClip)
693 {
694     QDomDocument doc;
695     foreach(const QString &img, images) {
696         if (!KIO::NetAccess::exists(KUrl(img), KIO::NetAccess::SourceSide, 0)) {
697             QDomElement e = doc.createElement("missingclip");
698             e.setAttribute("type", TITLE_IMAGE_ELEMENT);
699             e.setAttribute("resource", img);
700             e.setAttribute("id", id);
701             e.setAttribute("name", baseClip);
702             missingClips.append(e);
703         }
704     }
705     kDebug() << "/ / / CHK FONTS: " << fonts;
706     foreach(const QString &fontelement, fonts) {
707         QFont f(fontelement);
708         kDebug() << "/ / / CHK FONTS: " << fontelement << " = " << QFontInfo(f).family();
709         if (fontelement != QFontInfo(f).family()) {
710             QDomElement e = doc.createElement("missingclip");
711             e.setAttribute("type", TITLE_FONT_ELEMENT);
712             e.setAttribute("resource", fontelement);
713             e.setAttribute("id", id);
714             e.setAttribute("name", baseClip);
715             missingClips.append(e);
716         }
717     }
718 }
719
720
721 void DocumentChecker::slotCheckButtons()
722 {
723     if (m_ui.treeWidget->currentItem()) {
724         QTreeWidgetItem *item = m_ui.treeWidget->currentItem();
725         int t = item->data(0, typeRole).toInt();
726         if (t == TITLE_FONT_ELEMENT || t == TITLE_IMAGE_ELEMENT) {
727             m_ui.removeSelected->setEnabled(false);
728         } else m_ui.removeSelected->setEnabled(true);
729     }
730
731 }
732
733 #include "documentchecker.moc"
734
735