]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
34286682f9a0f86207658464ec8a8c411bd0ee47
[kdenlive] / src / kdenlivedoc.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 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 "kdenlivedoc.h"
22 #include "docclipbase.h"
23 #include "profilesdialog.h"
24 #include "kdenlivesettings.h"
25 #include "renderer.h"
26 #include "clipmanager.h"
27 #include "titlewidget.h"
28 #include "mainwindow.h"
29 #include "documentchecker.h"
30 #include "documentvalidator.h"
31 #include "kdenlive-config.h"
32
33 #include <KDebug>
34 #include <KStandardDirs>
35 #include <KMessageBox>
36 #include <KLocale>
37 #include <KFileDialog>
38 #include <KIO/NetAccess>
39 #include <KIO/CopyJob>
40 #include <KApplication>
41
42 #include <QCryptographicHash>
43 #include <QFile>
44 #include <QInputDialog>
45
46 #include <mlt++/Mlt.h>
47
48 const double DOCUMENTVERSION = 0.83;
49
50 KdenliveDoc::KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, QString profileName, const QPoint tracks, Render *render, MainWindow *parent) :
51         QObject(parent),
52         m_autosave(NULL),
53         m_url(url),
54         m_zoom(7),
55         m_startPos(0),
56         m_render(render),
57         m_commandStack(new QUndoStack(undoGroup)),
58         m_modified(false),
59         m_projectFolder(projectFolder),
60         m_documentLoadingStep(0.0),
61         m_documentLoadingProgress(0),
62         m_abortLoading(false),
63         m_zoneStart(0),
64         m_zoneEnd(100)
65 {
66     m_clipManager = new ClipManager(this);
67     m_autoSaveTimer = new QTimer(this);
68     m_autoSaveTimer->setSingleShot(true);
69     bool success = false;
70     if (!url.isEmpty()) {
71         QString tmpFile;
72         success = KIO::NetAccess::download(url.path(), tmpFile, parent);
73         if (!success) // The file cannot be opened
74             KMessageBox::error(parent, KIO::NetAccess::lastErrorString());
75         else {
76             QFile file(tmpFile);
77             QString errorMsg;
78             success = m_document.setContent(&file, false, &errorMsg);
79             file.close();
80             KIO::NetAccess::removeTempFile(tmpFile);
81             if (!success) // It is corrupted
82                 KMessageBox::error(parent, errorMsg);
83             else {
84                 DocumentValidator validator(m_document);
85                 success = validator.isProject();
86                 if (!success) // It is not a project file
87                     parent->slotGotProgressInfo(i18n("File %1 is not a Kdenlive project file.", m_url.path()), 100);
88                 else {
89                     /*
90                      * Validate the file against the current version (upgrade
91                      * and recover it if needed). It is NOT a passive operation
92                      */
93                     // TODO: backup the document or alert the user?
94                     success = validator.validate(DOCUMENTVERSION);
95                     if (success) { // Let the validator handle error messages
96                         setModified(validator.isModified());
97                         QDomElement mlt = m_document.firstChildElement("mlt");
98                         QDomElement infoXml = mlt.firstChildElement("kdenlivedoc");
99
100                         profileName = infoXml.attribute("profile");
101                         m_projectFolder = infoXml.attribute("projectfolder");
102
103                         m_startPos = infoXml.attribute("position").toInt();
104                         m_zoom = infoXml.attribute("zoom", "7").toInt();
105                         m_zoneStart = infoXml.attribute("zonein", "0").toInt();
106                         m_zoneEnd = infoXml.attribute("zoneout", "100").toInt();
107
108                         // Build tracks
109                         QDomElement e;
110                         QDomElement tracksinfo = infoXml.firstChildElement("tracksinfo");
111                         TrackInfo projectTrack;
112                         if (!tracksinfo.isNull()) {
113                             QDomNodeList trackslist = tracksinfo.childNodes();
114                             int maxchild = trackslist.count();
115                             for (int k = 0; k < maxchild; k++) {
116                                 e = trackslist.at(k).toElement();
117                                 if (e.tagName() == "trackinfo") {
118                                     if (e.attribute("type") == "audio") projectTrack.type = AUDIOTRACK;
119                                     else projectTrack.type = VIDEOTRACK;
120                                     projectTrack.isMute = e.attribute("mute").toInt();
121                                     projectTrack.isBlind = e.attribute("blind").toInt();
122                                     projectTrack.isLocked = e.attribute("locked").toInt();
123                                     m_tracksList.append(projectTrack);
124                                 }
125                             }
126                             mlt.removeChild(tracksinfo);
127                         }
128                         QDomNodeList producers = m_document.elementsByTagName("producer");
129                         QDomNodeList infoproducers = m_document.elementsByTagName("kdenlive_producer");
130                         if (checkDocumentClips(infoproducers) == false) m_abortLoading = true;
131                         const int max = producers.count();
132                         const int infomax = infoproducers.count();
133
134                         QDomNodeList folders = m_document.elementsByTagName("folder");
135                         for (int i = 0; i < folders.count(); i++) {
136                             e = folders.item(i).cloneNode().toElement();
137                             m_clipManager->addFolder(e.attribute("id"), e.attribute("name"));
138                         }
139
140                         if (max > 0) {
141                             m_documentLoadingStep = 100.0 / (max + infomax + m_document.elementsByTagName("entry").count());
142                             parent->slotGotProgressInfo(i18n("Loading project clips"), (int) m_documentLoadingProgress);
143                         }
144
145
146                         for (int i = 0; i < infomax && !m_abortLoading; i++) {
147                             e = infoproducers.item(i).cloneNode().toElement();
148                             if (m_documentLoadingStep > 0) {
149                                 m_documentLoadingProgress += m_documentLoadingStep;
150                                 parent->slotGotProgressInfo(QString(), (int) m_documentLoadingProgress);
151                                 //qApp->processEvents();
152                             }
153                             QString prodId = e.attribute("id");
154                             if (!e.isNull() && prodId != "black" && !prodId.startsWith("slowmotion") && !m_abortLoading) {
155                                 e.setTagName("producer");
156                                 // Get MLT's original producer properties
157                                 QDomElement orig;
158                                 for (int j = 0; j < max; j++) {
159                                     QDomElement o = producers.item(j).cloneNode().toElement();
160                                     QString origId = o.attribute("id").section('_', 0, 0);
161                                     if (origId == prodId) {
162                                         orig = o;
163                                         break;
164                                     }
165                                 }
166                                 addClipInfo(e, orig, prodId);
167                                 kDebug() << "// KDENLIVE PRODUCER: " << prodId;
168                             }
169                         }
170                         if (m_abortLoading) {
171                             //parent->slotGotProgressInfo(i18n("File %1 is not a Kdenlive project file."), 100);
172                             emit resetProjectList();
173                             m_startPos = 0;
174                             m_url = KUrl();
175                             m_tracksList.clear();
176                             kWarning() << "Aborted loading of: " << url.path();
177                             m_document = createEmptyDocument(KdenliveSettings::videotracks(), KdenliveSettings::audiotracks());
178                             setProfilePath(KdenliveSettings::default_profile());
179                             m_clipManager->clear();
180                         } else {
181                             QDomElement markers = infoXml.firstChildElement("markers");
182                             if (!markers.isNull()) {
183                                 QDomNodeList markerslist = markers.childNodes();
184                                 int maxchild = markerslist.count();
185                                 for (int k = 0; k < maxchild; k++) {
186                                     e = markerslist.at(k).toElement();
187                                     if (e.tagName() == "marker") {
188                                         m_clipManager->getClipById(e.attribute("id"))->addSnapMarker(GenTime(e.attribute("time").toDouble()), e.attribute("comment"));
189                                     }
190                                 }
191                                 infoXml.removeChild(markers);
192                             }
193                             setProfilePath(profileName);
194                             kDebug() << "Reading file: " << url.path() << ", found clips: " << producers.count();
195                         }
196                     }
197                 }
198             }
199         }
200     } else setProfilePath(profileName);
201
202     // Something went wrong, or a new file was requested: create a new project
203     if (!success) {
204         m_url = KUrl();
205         m_document = createEmptyDocument(tracks.x(), tracks.y());
206     }
207
208     // Set the video profile (empty == default)
209
210     // Make sure the project folder is usable
211     if (m_projectFolder.isEmpty() || !KIO::NetAccess::exists(m_projectFolder.path(), KIO::NetAccess::DestinationSide, parent)) {
212         KMessageBox::information(parent, i18n("Document project folder is invalid, setting it to the default one: %1", KdenliveSettings::defaultprojectfolder()));
213         m_projectFolder = KUrl(KdenliveSettings::defaultprojectfolder());
214     }
215
216     // Make sure that the necessary folders exist
217     KStandardDirs::makeDir(m_projectFolder.path() + "/titles/");
218     KStandardDirs::makeDir(m_projectFolder.path() + "/thumbs/");
219     KStandardDirs::makeDir(m_projectFolder.path() + "/ladspa/");
220
221     kDebug() << "Kdenlive document, init timecode: " << m_fps;
222     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
223     else m_timecode.setFormat((int) m_fps);
224
225     //kDebug() << "// SETTING SCENE LIST:\n\n" << m_document.toString();
226     connect(m_autoSaveTimer, SIGNAL(timeout()), this, SLOT(slotAutoSave()));
227 }
228
229 KdenliveDoc::~KdenliveDoc()
230 {
231     delete m_commandStack;
232     delete m_clipManager;
233     delete m_autoSaveTimer;
234     if (m_autosave) {
235         if (!m_autosave->fileName().isEmpty()) m_autosave->remove();
236         delete m_autosave;
237     }
238 }
239
240 void KdenliveDoc::setSceneList()
241 {
242     m_render->setSceneList(m_document.toString(), m_startPos);
243     // m_document xml is now useless, clear it
244     m_document.clear();
245     checkProjectClips();
246 }
247
248 QDomDocument KdenliveDoc::createEmptyDocument(const int videotracks, const int audiotracks)
249 {
250     // Creating new document
251     QDomDocument doc;
252     QDomElement mlt = doc.createElement("mlt");
253     doc.appendChild(mlt);
254
255
256     TrackInfo videoTrack;
257     videoTrack.type = VIDEOTRACK;
258     videoTrack.isMute = false;
259     videoTrack.isBlind = false;
260     videoTrack.isLocked = false;
261
262     TrackInfo audioTrack;
263     audioTrack.type = AUDIOTRACK;
264     audioTrack.isMute = false;
265     audioTrack.isBlind = true;
266     audioTrack.isLocked = false;
267
268     QDomElement tractor = doc.createElement("tractor");
269     tractor.setAttribute("id", "maintractor");
270     QDomElement multitrack = doc.createElement("multitrack");
271     QDomElement playlist = doc.createElement("playlist");
272     playlist.setAttribute("id", "black_track");
273     mlt.appendChild(playlist);
274
275
276     // create playlists
277     int total = audiotracks + videotracks + 1;
278
279     for (int i = 1; i < total; i++) {
280         QDomElement playlist = doc.createElement("playlist");
281         playlist.setAttribute("id", "playlist" + QString::number(i));
282         mlt.appendChild(playlist);
283     }
284
285     QDomElement track0 = doc.createElement("track");
286     track0.setAttribute("producer", "black_track");
287     tractor.appendChild(track0);
288
289     // create audio tracks
290     for (int i = 1; i < audiotracks + 1; i++) {
291         QDomElement track = doc.createElement("track");
292         track.setAttribute("producer", "playlist" + QString::number(i));
293         track.setAttribute("hide", "video");
294         tractor.appendChild(track);
295         m_tracksList.append(audioTrack);
296     }
297
298     // create video tracks
299     for (int i = audiotracks + 1; i < total; i++) {
300         QDomElement track = doc.createElement("track");
301         track.setAttribute("producer", "playlist" + QString::number(i));
302         tractor.appendChild(track);
303         m_tracksList.append(videoTrack);
304     }
305
306     for (int i = 2; i < total ; i++) {
307         QDomElement transition = doc.createElement("transition");
308         transition.setAttribute("always_active", "1");
309
310         QDomElement property = doc.createElement("property");
311         property.setAttribute("name", "a_track");
312         QDomText value = doc.createTextNode(QString::number(1));
313         property.appendChild(value);
314         transition.appendChild(property);
315
316         property = doc.createElement("property");
317         property.setAttribute("name", "b_track");
318         value = doc.createTextNode(QString::number(i));
319         property.appendChild(value);
320         transition.appendChild(property);
321
322         property = doc.createElement("property");
323         property.setAttribute("name", "mlt_service");
324         value = doc.createTextNode("mix");
325         property.appendChild(value);
326         transition.appendChild(property);
327
328         property = doc.createElement("property");
329         property.setAttribute("name", "combine");
330         value = doc.createTextNode("1");
331         property.appendChild(value);
332         transition.appendChild(property);
333
334         property = doc.createElement("property");
335         property.setAttribute("name", "internal_added");
336         value = doc.createTextNode("237");
337         property.appendChild(value);
338         transition.appendChild(property);
339         tractor.appendChild(transition);
340     }
341     mlt.appendChild(tractor);
342     return doc;
343 }
344
345
346 void KdenliveDoc::syncGuides(QList <Guide *> guides)
347 {
348     m_guidesXml.clear();
349     QDomElement guideNode = m_guidesXml.createElement("guides");
350     m_guidesXml.appendChild(guideNode);
351     QDomElement e;
352
353     for (int i = 0; i < guides.count(); i++) {
354         e = m_guidesXml.createElement("guide");
355         e.setAttribute("time", guides.at(i)->position().ms() / 1000);
356         e.setAttribute("comment", guides.at(i)->label());
357         guideNode.appendChild(e);
358     }
359     setModified(true);
360     emit guidesUpdated();
361 }
362
363 QDomElement KdenliveDoc::guidesXml() const
364 {
365     return m_guidesXml.documentElement();
366 }
367
368 void KdenliveDoc::slotAutoSave()
369 {
370     if (m_render && m_autosave) {
371         if (!m_autosave->isOpen() && !m_autosave->open(QIODevice::ReadWrite)) {
372             // show error: could not open the autosave file
373             kDebug() << "ERROR; CANNOT CREATE AUTOSAVE FILE";
374         }
375         kDebug() << "// AUTOSAVE FILE: " << m_autosave->fileName();
376         QString doc;
377         if (KdenliveSettings::dropbframes()) {
378             KdenliveSettings::setDropbframes(false);
379             m_clipManager->updatePreviewSettings();
380             doc = m_render->sceneList();
381             KdenliveSettings::setDropbframes(true);
382             m_clipManager->updatePreviewSettings();
383         } else doc = m_render->sceneList();
384         saveSceneList(m_autosave->fileName(), doc);
385     }
386 }
387
388 void KdenliveDoc::setZoom(int factor)
389 {
390     m_zoom = factor;
391 }
392
393 int KdenliveDoc::zoom() const
394 {
395     return m_zoom;
396 }
397
398 void KdenliveDoc::setZone(int start, int end)
399 {
400     m_zoneStart = start;
401     m_zoneEnd = end;
402 }
403
404 QPoint KdenliveDoc::zone() const
405 {
406     return QPoint(m_zoneStart, m_zoneEnd);
407 }
408
409 bool KdenliveDoc::saveSceneList(const QString &path, const QString &scene)
410 {
411     QDomDocument sceneList;
412     sceneList.setContent(scene, true);
413     QDomElement mlt = sceneList.firstChildElement("mlt");
414     QDomElement addedXml = sceneList.createElement("kdenlivedoc");
415     mlt.appendChild(addedXml);
416
417     QDomElement markers = sceneList.createElement("markers");
418     addedXml.setAttribute("version", DOCUMENTVERSION);
419     addedXml.setAttribute("kdenliveversion", VERSION);
420     addedXml.setAttribute("profile", profilePath());
421     addedXml.setAttribute("position", m_render->seekPosition().frames(m_fps));
422     addedXml.setAttribute("zonein", m_zoneStart);
423     addedXml.setAttribute("zoneout", m_zoneEnd);
424     addedXml.setAttribute("projectfolder", m_projectFolder.path());
425     addedXml.setAttribute("zoom", m_zoom);
426
427     // Add profile info
428     QDomElement profileinfo = sceneList.createElement("profileinfo");
429     profileinfo.setAttribute("description", m_profile.description);
430     profileinfo.setAttribute("frame_rate_num", m_profile.frame_rate_num);
431     profileinfo.setAttribute("frame_rate_den", m_profile.frame_rate_den);
432     profileinfo.setAttribute("width", m_profile.width);
433     profileinfo.setAttribute("height", m_profile.height);
434     profileinfo.setAttribute("progressive", m_profile.progressive);
435     profileinfo.setAttribute("sample_aspect_num", m_profile.sample_aspect_num);
436     profileinfo.setAttribute("sample_aspect_den", m_profile.sample_aspect_den);
437     profileinfo.setAttribute("display_aspect_num", m_profile.display_aspect_num);
438     profileinfo.setAttribute("display_aspect_den", m_profile.display_aspect_den);
439     addedXml.appendChild(profileinfo);
440
441     // tracks info
442     QDomElement tracksinfo = sceneList.createElement("tracksinfo");
443     foreach(const TrackInfo &info, m_tracksList) {
444         QDomElement trackinfo = sceneList.createElement("trackinfo");
445         if (info.type == AUDIOTRACK) trackinfo.setAttribute("type", "audio");
446         trackinfo.setAttribute("mute", info.isMute);
447         trackinfo.setAttribute("blind", info.isBlind);
448         trackinfo.setAttribute("locked", info.isLocked);
449         tracksinfo.appendChild(trackinfo);
450     }
451     addedXml.appendChild(tracksinfo);
452
453     // save project folders
454     QMap <QString, QString> folderlist = m_clipManager->documentFolderList();
455
456     QMapIterator<QString, QString> f(folderlist);
457     while (f.hasNext()) {
458         f.next();
459         QDomElement folder = sceneList.createElement("folder");
460         folder.setAttribute("id", f.key());
461         folder.setAttribute("name", f.value());
462         addedXml.appendChild(folder);
463     }
464
465     // Save project clips
466     QDomElement e;
467     QList <DocClipBase*> list = m_clipManager->documentClipList();
468     for (int i = 0; i < list.count(); i++) {
469         e = list.at(i)->toXML();
470         e.setTagName("kdenlive_producer");
471         addedXml.appendChild(sceneList.importNode(e, true));
472         QList < CommentedTime > marks = list.at(i)->commentedSnapMarkers();
473         for (int j = 0; j < marks.count(); j++) {
474             QDomElement marker = sceneList.createElement("marker");
475             marker.setAttribute("time", marks.at(j).time().ms() / 1000);
476             marker.setAttribute("comment", marks.at(j).comment());
477             marker.setAttribute("id", e.attribute("id"));
478             markers.appendChild(marker);
479         }
480     }
481     addedXml.appendChild(markers);
482
483     // Add guides
484     if (!m_guidesXml.isNull()) addedXml.appendChild(sceneList.importNode(m_guidesXml.documentElement(), true));
485
486     // Add clip groups
487     addedXml.appendChild(sceneList.importNode(m_clipManager->groupsXml(), true));
488
489     //wes.appendChild(doc.importNode(kdenliveData, true));
490
491     QFile file(path);
492     if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
493         kWarning() << "//////  ERROR writing to file: " << path;
494         KMessageBox::error(kapp->activeWindow(), i18n("Cannot write to file %1", path));
495         return false;
496     }
497
498     file.write(sceneList.toString().toUtf8());
499     if (file.error() != QFile::NoError) {
500         KMessageBox::error(kapp->activeWindow(), i18n("Cannot write to file %1", path));
501         file.close();
502         return false;
503     }
504     file.close();
505     return true;
506 }
507
508 ClipManager *KdenliveDoc::clipManager()
509 {
510     return m_clipManager;
511 }
512
513 KUrl KdenliveDoc::projectFolder() const
514 {
515     //if (m_projectFolder.isEmpty()) return KUrl(KStandardDirs::locateLocal("appdata", "/projects/"));
516     return m_projectFolder;
517 }
518
519 void KdenliveDoc::setProjectFolder(KUrl url)
520 {
521     if (url == m_projectFolder) return;
522     setModified(true);
523     KStandardDirs::makeDir(url.path());
524     KStandardDirs::makeDir(url.path() + "/titles/");
525     KStandardDirs::makeDir(url.path() + "/thumbs/");
526     if (KMessageBox::questionYesNo(kapp->activeWindow(), i18n("You have changed the project folder. Do you want to copy the cached data from %1 to the new folder %2?").arg(m_projectFolder.path(), url.path())) == KMessageBox::Yes) moveProjectData(url);
527     m_projectFolder = url;
528 }
529
530 void KdenliveDoc::moveProjectData(KUrl url)
531 {
532     QList <DocClipBase*> list = m_clipManager->documentClipList();
533     //TODO: Also move ladspa effects files
534     for (int i = 0; i < list.count(); i++) {
535         DocClipBase *clip = list.at(i);
536         if (clip->clipType() == TEXT) {
537             // the image for title clip must be moved
538             KUrl oldUrl = clip->fileURL();
539             KUrl newUrl = KUrl(url.path() + "/titles/" + oldUrl.fileName());
540             KIO::Job *job = KIO::copy(oldUrl, newUrl);
541             if (KIO::NetAccess::synchronousRun(job, 0)) clip->setProperty("resource", newUrl.path());
542         }
543         QString hash = clip->getClipHash();
544         KUrl oldVideoThumbUrl = KUrl(m_projectFolder.path() + "/thumbs/" + hash + ".png");
545         KUrl oldAudioThumbUrl = KUrl(m_projectFolder.path() + "/thumbs/" + hash + ".thumb");
546         if (KIO::NetAccess::exists(oldVideoThumbUrl, KIO::NetAccess::SourceSide, 0)) {
547             KUrl newUrl = KUrl(url.path() + "/thumbs/" + hash + ".png");
548             KIO::Job *job = KIO::copy(oldVideoThumbUrl, newUrl);
549             KIO::NetAccess::synchronousRun(job, 0);
550         }
551         if (KIO::NetAccess::exists(oldAudioThumbUrl, KIO::NetAccess::SourceSide, 0)) {
552             KUrl newUrl = KUrl(url.path() + "/thumbs/" + hash + ".thumb");
553             KIO::Job *job = KIO::copy(oldAudioThumbUrl, newUrl);
554             if (KIO::NetAccess::synchronousRun(job, 0)) clip->refreshThumbUrl();
555         }
556     }
557 }
558
559 const QString &KdenliveDoc::profilePath() const
560 {
561     return m_profile.path;
562 }
563
564 MltVideoProfile KdenliveDoc::mltProfile() const
565 {
566     return m_profile;
567 }
568
569 void KdenliveDoc::setProfilePath(QString path)
570 {
571     if (path.isEmpty()) path = KdenliveSettings::default_profile();
572     if (path.isEmpty()) path = "dv_pal";
573     m_profile = ProfilesDialog::getVideoProfile(path);
574     if (m_profile.path.isEmpty()) {
575         // Profile not found, use embedded profile
576         QDomElement profileInfo = m_document.elementsByTagName("profileinfo").at(0).toElement();
577         if (profileInfo.isNull()) {
578             KMessageBox::information(kapp->activeWindow(), i18n("Project profile was not found, using default profile."), i18n("Missing Profile"));
579             m_profile = ProfilesDialog::getVideoProfile(KdenliveSettings::default_profile());
580         } else {
581             m_profile.description = profileInfo.attribute("description");
582             m_profile.frame_rate_num = profileInfo.attribute("frame_rate_num").toInt();
583             m_profile.frame_rate_den = profileInfo.attribute("frame_rate_den").toInt();
584             m_profile.width = profileInfo.attribute("width").toInt();
585             m_profile.height = profileInfo.attribute("height").toInt();
586             m_profile.progressive = profileInfo.attribute("progressive").toInt();
587             m_profile.sample_aspect_num = profileInfo.attribute("sample_aspect_num").toInt();
588             m_profile.sample_aspect_den = profileInfo.attribute("sample_aspect_den").toInt();
589             m_profile.display_aspect_num = profileInfo.attribute("display_aspect_num").toInt();
590             m_profile.display_aspect_den = profileInfo.attribute("display_aspect_den").toInt();
591             QString existing = ProfilesDialog::existingProfile(m_profile);
592             if (!existing.isEmpty()) {
593                 m_profile = ProfilesDialog::getVideoProfile(existing);
594                 KMessageBox::information(kapp->activeWindow(), i18n("Project profile not found, replacing with existing one: %1", m_profile.description), i18n("Missing Profile"));
595             } else {
596                 QString newDesc = m_profile.description;
597                 bool ok = true;
598                 while (ok && (newDesc.isEmpty() || ProfilesDialog::existingProfileDescription(newDesc))) {
599                     newDesc = QInputDialog::getText(kapp->activeWindow(), i18n("Existing Profile"), i18n("Your project uses an unknown profile.\nIt uses an existing profile name: %1.\nPlease choose a new name to save it", newDesc), QLineEdit::Normal, newDesc, &ok);
600                 }
601                 if (ok == false) {
602                     // User canceled, use default profile
603                     m_profile = ProfilesDialog::getVideoProfile(KdenliveSettings::default_profile());
604                 } else {
605                     if (newDesc != m_profile.description) {
606                         // Profile description existed, was replaced by new one
607                         m_profile.description = newDesc;
608                     } else {
609                         KMessageBox::information(kapp->activeWindow(), i18n("Project profile was not found, it will be added to your system now."), i18n("Missing Profile"));
610                     }
611                     ProfilesDialog::saveProfile(m_profile);
612                 }
613             }
614             setModified(true);
615         }
616     }
617
618     KdenliveSettings::setProject_display_ratio((double) m_profile.display_aspect_num / m_profile.display_aspect_den);
619     m_fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den;
620     KdenliveSettings::setProject_fps(m_fps);
621     m_width = m_profile.width;
622     m_height = m_profile.height;
623     kDebug() << "Kdenlive document, init timecode from path: " << path << ",  " << m_fps;
624     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
625     else m_timecode.setFormat((int) m_fps);
626 }
627
628 double KdenliveDoc::dar()
629 {
630     return (double) m_profile.display_aspect_num / m_profile.display_aspect_den;
631 }
632
633 void KdenliveDoc::setThumbsProgress(const QString &message, int progress)
634 {
635     emit progressInfo(message, progress);
636 }
637
638 void KdenliveDoc::loadingProgressed()
639 {
640     m_documentLoadingProgress += m_documentLoadingStep;
641     emit progressInfo(QString(), (int) m_documentLoadingProgress);
642 }
643
644 QUndoStack *KdenliveDoc::commandStack()
645 {
646     return m_commandStack;
647 }
648
649 /*
650 void KdenliveDoc::setRenderer(Render *render) {
651     if (m_render) return;
652     m_render = render;
653     emit progressInfo(i18n("Loading playlist..."), 0);
654     //qApp->processEvents();
655     if (m_render) {
656         m_render->setSceneList(m_document.toString(), m_startPos);
657         kDebug() << "// SETTING SCENE LIST:\n\n" << m_document.toString();
658         checkProjectClips();
659     }
660     emit progressInfo(QString(), -1);
661 }*/
662
663 void KdenliveDoc::checkProjectClips()
664 {
665     kDebug() << "+++++++++++++ + + + + CHK PCLIPS";
666     if (m_render == NULL) return;
667     m_clipManager->resetProducersList(m_render->producersList());
668     return;
669
670     // Useless now...
671     QList <Mlt::Producer *> prods = m_render->producersList();
672     QString id ;
673     QString prodId ;
674     QString prodTrack ;
675     for (int i = 0; i < prods.count(); i++) {
676         id = prods.at(i)->get("id");
677         prodId = id.section('_', 0, 0);
678         prodTrack = id.section('_', 1, 1);
679         DocClipBase *clip = m_clipManager->getClipById(prodId);
680         if (clip) clip->setProducer(prods.at(i));
681         if (clip && clip->clipType() == TEXT && !QFile::exists(clip->fileURL().path())) {
682             // regenerate text clip image if required
683             //kDebug() << "// TITLE: " << clip->getProperty("titlename") << " Preview file: " << clip->getProperty("resource") << " DOES NOT EXIST";
684             QString titlename = clip->getProperty("name");
685             QString titleresource;
686             if (titlename.isEmpty()) {
687                 QStringList titleInfo = TitleWidget::getFreeTitleInfo(projectFolder());
688                 titlename = titleInfo.at(0);
689                 titleresource = titleInfo.at(1);
690                 clip->setProperty("name", titlename);
691                 kDebug() << "// New title set to: " << titlename;
692             } else {
693                 titleresource = TitleWidget::getFreeTitleInfo(projectFolder()).at(1);
694                 //titleresource = TitleWidget::getTitleResourceFromName(projectFolder(), titlename);
695             }
696             TitleWidget *dia_ui = new TitleWidget(KUrl(), KUrl(titleresource).directory(), m_render, kapp->activeWindow());
697             QDomDocument doc;
698             doc.setContent(clip->getProperty("xmldata"));
699             dia_ui->setXml(doc);
700             QImage pix = dia_ui->renderedPixmap();
701             pix.save(titleresource);
702             clip->setProperty("resource", titleresource);
703             delete dia_ui;
704             clip->producer()->set("force_reload", 1);
705         }
706     }
707 }
708
709 void KdenliveDoc::updatePreviewSettings()
710 {
711     m_clipManager->updatePreviewSettings();
712     m_render->updatePreviewSettings();
713     m_clipManager->resetProducersList(m_render->producersList());
714
715 }
716
717 Render *KdenliveDoc::renderer()
718 {
719     return m_render;
720 }
721
722 void KdenliveDoc::updateClip(const QString &id)
723 {
724     emit updateClipDisplay(id);
725 }
726
727 int KdenliveDoc::getFramePos(QString duration)
728 {
729     return m_timecode.getFrameCount(duration, m_fps);
730 }
731
732 QString KdenliveDoc::producerName(const QString &id)
733 {
734     QString result = "unnamed";
735     QDomNodeList prods = producersList();
736     int ct = prods.count();
737     for (int i = 0; i <  ct ; i++) {
738         QDomElement e = prods.item(i).toElement();
739         if (e.attribute("id") != "black" && e.attribute("id") == id) {
740             result = e.attribute("name");
741             if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
742             break;
743         }
744     }
745     return result;
746 }
747
748 QDomDocument KdenliveDoc::toXml()
749 {
750     return m_document;
751 }
752
753 Timecode KdenliveDoc::timecode() const
754 {
755     return m_timecode;
756 }
757
758 QDomNodeList KdenliveDoc::producersList()
759 {
760     return m_document.elementsByTagName("producer");
761 }
762
763 double KdenliveDoc::projectDuration() const
764 {
765     if (m_render)
766         return GenTime(m_render->getLength(), m_fps).ms() / 1000;
767     else
768         return 0;
769 }
770
771 double KdenliveDoc::fps() const
772 {
773     return m_fps;
774 }
775
776 int KdenliveDoc::width() const
777 {
778     return m_width;
779 }
780
781 int KdenliveDoc::height() const
782 {
783     return m_height;
784 }
785
786 KUrl KdenliveDoc::url() const
787 {
788     return m_url;
789 }
790
791 void KdenliveDoc::setUrl(KUrl url)
792 {
793     m_url = url;
794 }
795
796 void KdenliveDoc::setModified(bool mod)
797 {
798     if (!m_url.isEmpty() && mod && KdenliveSettings::crashrecovery()) {
799         m_autoSaveTimer->start(3000);
800     }
801     if (mod == m_modified) return;
802     m_modified = mod;
803     emit docModified(m_modified);
804 }
805
806 bool KdenliveDoc::isModified() const
807 {
808     return m_modified;
809 }
810
811 const QString KdenliveDoc::description() const
812 {
813     if (m_url.isEmpty())
814         return i18n("Untitled") + " / " + m_profile.description;
815     else
816         return m_url.fileName() + " / " + m_profile.description;
817 }
818
819 void KdenliveDoc::addClip(QDomElement elem, QString clipId, bool createClipItem)
820 {
821     const QString producerId = clipId.section('_', 0, 0);
822     DocClipBase *clip = m_clipManager->getClipById(producerId);
823
824     if (clip == NULL) {
825         elem.setAttribute("id", producerId);
826         QString path = elem.attribute("resource");
827         QString extension;
828         if (elem.attribute("type").toInt() == SLIDESHOW) {
829             extension = KUrl(path).fileName();
830             path = KUrl(path).directory();
831         } else if (elem.attribute("type").toInt() == TEXT && QFile::exists(path) == false) {
832             kDebug() << "// TITLE: " << elem.attribute("name") << " Preview file: " << elem.attribute("resource") << " DOES NOT EXIST";
833             QString titlename = elem.attribute("name");
834             QString titleresource;
835             if (titlename.isEmpty()) {
836                 QStringList titleInfo = TitleWidget::getFreeTitleInfo(projectFolder());
837                 titlename = titleInfo.at(0);
838                 titleresource = titleInfo.at(1);
839                 elem.setAttribute("name", titlename);
840                 kDebug() << "// New title set to: " << titlename;
841             } else {
842                 titleresource = TitleWidget::getFreeTitleInfo(projectFolder()).at(1);
843                 //titleresource = TitleWidget::getTitleResourceFromName(projectFolder(), titlename);
844             }
845             TitleWidget *dia_ui = new TitleWidget(KUrl(), KUrl(titleresource).directory(), m_render, kapp->activeWindow());
846             QDomDocument doc;
847             doc.setContent(elem.attribute("xmldata"));
848             dia_ui->setXml(doc);
849             QImage pix = dia_ui->renderedPixmap();
850             pix.save(titleresource);
851             elem.setAttribute("resource", titleresource);
852             setNewClipResource(clipId, titleresource);
853             delete dia_ui;
854         }
855
856         if (path.isEmpty() == false && QFile::exists(path) == false && elem.attribute("type").toInt() != TEXT && !elem.hasAttribute("placeholder")) {
857             kDebug() << "// FOUND MISSING CLIP: " << path << ", TYPE: " << elem.attribute("type").toInt();
858             const QString size = elem.attribute("file_size");
859             const QString hash = elem.attribute("file_hash");
860             QString newpath;
861             int action = KMessageBox::No;
862             if (!size.isEmpty() && !hash.isEmpty()) {
863                 if (!m_searchFolder.isEmpty()) newpath = searchFileRecursively(m_searchFolder, size, hash);
864                 else action = (KMessageBox::ButtonCode) KMessageBox::questionYesNoCancel(kapp->activeWindow(), i18n("Clip <b>%1</b><br>is invalid, what do you want to do?", path), i18n("File not found"), KGuiItem(i18n("Search automatically")), KGuiItem(i18n("Keep as placeholder")));
865             } else {
866                 if (elem.attribute("type").toInt() == SLIDESHOW) {
867                     int res = KMessageBox::questionYesNoCancel(kapp->activeWindow(), i18n("Clip <b>%1</b><br>is invalid or missing, what do you want to do?", path), i18n("File not found"), KGuiItem(i18n("Search manually")), KGuiItem(i18n("Keep as placeholder")));
868                     if (res == KMessageBox::Yes)
869                         newpath = KFileDialog::getExistingDirectory(KUrl("kfiledialog:///clipfolder"), kapp->activeWindow(), i18n("Looking for %1", path));
870                     else {
871                         // Abort project loading
872                         action = res;
873                     }
874                 } else {
875                     int res = KMessageBox::questionYesNoCancel(kapp->activeWindow(), i18n("Clip <b>%1</b><br>is invalid or missing, what do you want to do?", path), i18n("File not found"), KGuiItem(i18n("Search manually")), KGuiItem(i18n("Keep as placeholder")));
876                     if (res == KMessageBox::Yes)
877                         newpath = KFileDialog::getOpenFileName(KUrl("kfiledialog:///clipfolder"), QString(), kapp->activeWindow(), i18n("Looking for %1", path));
878                     else {
879                         // Abort project loading
880                         action = res;
881                     }
882                 }
883             }
884             if (action == KMessageBox::Yes) {
885                 kDebug() << "// ASKED FOR SRCH CLIP: " << clipId;
886                 m_searchFolder = KFileDialog::getExistingDirectory(KUrl("kfiledialog:///clipfolder"), kapp->activeWindow());
887                 if (!m_searchFolder.isEmpty()) {
888                     newpath = searchFileRecursively(QDir(m_searchFolder), size, hash);
889                 }
890             } else if (action == KMessageBox::Cancel) {
891                 m_abortLoading = true;
892                 return;
893             } else if (action == KMessageBox::No) {
894                 // Keep clip as placeHolder
895                 elem.setAttribute("placeholder", '1');
896             }
897             if (!newpath.isEmpty()) {
898                 if (elem.attribute("type").toInt() == SLIDESHOW) newpath.append('/' + extension);
899                 elem.setAttribute("resource", newpath);
900                 setNewClipResource(clipId, newpath);
901                 setModified(true);
902             }
903         }
904         clip = new DocClipBase(m_clipManager, elem, producerId);
905         m_clipManager->addClip(clip);
906     }
907
908     if (createClipItem) {
909         emit addProjectClip(clip);
910         qApp->processEvents();
911         m_render->getFileProperties(clip->toXML(), clip->getId());
912     }
913 }
914
915
916 void KdenliveDoc::setNewClipResource(const QString &id, const QString &path)
917 {
918     QDomNodeList prods = m_document.elementsByTagName("producer");
919     int maxprod = prods.count();
920     for (int i = 0; i < maxprod; i++) {
921         QDomNode m = prods.at(i);
922         QString prodId = m.toElement().attribute("id");
923         if (prodId == id || prodId.startsWith(id + '_')) {
924             QDomNodeList params = m.childNodes();
925             for (int j = 0; j < params.count(); j++) {
926                 QDomElement e = params.item(j).toElement();
927                 if (e.attribute("name") == "resource") {
928                     e.firstChild().setNodeValue(path);
929                     break;
930                 }
931             }
932         }
933     }
934 }
935
936 QString KdenliveDoc::searchFileRecursively(const QDir &dir, const QString &matchSize, const QString &matchHash) const
937 {
938     QString foundFileName;
939     QByteArray fileData;
940     QByteArray fileHash;
941     QStringList filesAndDirs = dir.entryList(QDir::Files | QDir::Readable);
942     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
943         QFile file(dir.absoluteFilePath(filesAndDirs.at(i)));
944         if (file.open(QIODevice::ReadOnly)) {
945             if (QString::number(file.size()) == matchSize) {
946                 /*
947                 * 1 MB = 1 second per 450 files (or faster)
948                 * 10 MB = 9 seconds per 450 files (or faster)
949                 */
950                 if (file.size() > 1000000*2) {
951                     fileData = file.read(1000000);
952                     if (file.seek(file.size() - 1000000))
953                         fileData.append(file.readAll());
954                 } else
955                     fileData = file.readAll();
956                 file.close();
957                 fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
958                 if (QString(fileHash.toHex()) == matchHash)
959                     return file.fileName();
960             }
961         }
962         kDebug() << filesAndDirs.at(i) << file.size() << fileHash.toHex();
963     }
964     filesAndDirs = dir.entryList(QDir::Dirs | QDir::Readable | QDir::Executable | QDir::NoDotAndDotDot);
965     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
966         foundFileName = searchFileRecursively(dir.absoluteFilePath(filesAndDirs.at(i)), matchSize, matchHash);
967         if (!foundFileName.isEmpty())
968             break;
969     }
970     return foundFileName;
971 }
972
973 void KdenliveDoc::addClipInfo(QDomElement elem, QDomElement orig, QString clipId)
974 {
975     DocClipBase *clip = m_clipManager->getClipById(clipId);
976     if (clip == NULL) {
977         addClip(elem, clipId, false);
978     } else {
979         QMap <QString, QString> properties;
980         QDomNamedNodeMap attributes = elem.attributes();
981         QString attrname;
982         for (int i = 0; i < attributes.count(); i++) {
983             attrname = attributes.item(i).nodeName();
984             if (attrname != "resource")
985                 properties.insert(attrname, attributes.item(i).nodeValue());
986             kDebug() << attrname << " = " << attributes.item(i).nodeValue();
987         }
988         clip->setProperties(properties);
989         emit addProjectClip(clip, false);
990     }
991     if (orig != QDomElement()) {
992         QMap<QString, QString> meta;
993         QDomNode m = orig.firstChild();
994         while (!m.isNull()) {
995             QString name = m.toElement().attribute("name");
996             if (name.startsWith("meta.attr")) {
997                 meta.insert(name.section('.', 2, 3), m.firstChild().nodeValue());
998             }
999             m = m.nextSibling();
1000         }
1001         if (!meta.isEmpty()) {
1002             if (clip == NULL) clip = m_clipManager->getClipById(clipId);
1003             if (clip) clip->setMetadata(meta);
1004         }
1005     }
1006 }
1007
1008 void KdenliveDoc::deleteProjectClip(QList <QString> ids)
1009 {
1010     for (int i = 0; i < ids.size(); ++i) {
1011         emit deleteTimelineClip(ids.at(i));
1012         m_clipManager->slotDeleteClip(ids.at(i));
1013     }
1014     setModified(true);
1015 }
1016
1017 void KdenliveDoc::deleteClip(const QString &clipId)
1018 {
1019     emit signalDeleteProjectClip(clipId);
1020     m_clipManager->deleteClip(clipId);
1021 }
1022
1023 void KdenliveDoc::slotAddClipList(const KUrl::List urls, const QString group, const QString &groupId)
1024 {
1025     m_clipManager->slotAddClipList(urls, group, groupId);
1026     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1027     setModified(true);
1028 }
1029
1030
1031 void KdenliveDoc::slotAddClipFile(const KUrl url, const QString group, const QString &groupId)
1032 {
1033     //kDebug() << "/////////  DOCUM, ADD CLP: " << url;
1034     m_clipManager->slotAddClipFile(url, group, groupId);
1035     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1036     setModified(true);
1037 }
1038
1039 const QString KdenliveDoc::getFreeClipId()
1040 {
1041     return QString::number(m_clipManager->getFreeClipId());
1042 }
1043
1044 DocClipBase *KdenliveDoc::getBaseClip(const QString &clipId)
1045 {
1046     return m_clipManager->getClipById(clipId);
1047 }
1048
1049 void KdenliveDoc::slotCreateTextClip(QString /*group*/, const QString &/*groupId*/)
1050 {
1051     QString titlesFolder = projectFolder().path() + "/titles/";
1052     KStandardDirs::makeDir(titlesFolder);
1053     TitleWidget *dia_ui = new TitleWidget(KUrl(), titlesFolder, m_render, kapp->activeWindow());
1054     if (dia_ui->exec() == QDialog::Accepted) {
1055         QStringList titleInfo = TitleWidget::getFreeTitleInfo(projectFolder());
1056         QImage pix = dia_ui->renderedPixmap();
1057         pix.save(titleInfo.at(1));
1058         //dia_ui->saveTitle(path + ".kdenlivetitle");
1059         m_clipManager->slotAddTextClipFile(titleInfo.at(0), titleInfo.at(1), dia_ui->xml().toString(), QString(), QString());
1060         setModified(true);
1061     }
1062     delete dia_ui;
1063 }
1064
1065 int KdenliveDoc::tracksCount() const
1066 {
1067     return m_tracksList.count();
1068 }
1069
1070 TrackInfo KdenliveDoc::trackInfoAt(int ix) const
1071 {
1072     return m_tracksList.at(ix);
1073 }
1074
1075 void KdenliveDoc::switchTrackAudio(int ix, bool hide)
1076 {
1077     m_tracksList[ix].isMute = hide; // !m_tracksList.at(ix).isMute;
1078 }
1079
1080 void KdenliveDoc::switchTrackLock(int ix, bool lock)
1081 {
1082     m_tracksList[ix].isLocked = lock;
1083 }
1084
1085 bool KdenliveDoc::isTrackLocked(int ix) const
1086 {
1087     return m_tracksList.at(ix).isLocked;
1088 }
1089
1090 void KdenliveDoc::switchTrackVideo(int ix, bool hide)
1091 {
1092     m_tracksList[ix].isBlind = hide; // !m_tracksList.at(ix).isBlind;
1093 }
1094
1095 void KdenliveDoc::insertTrack(int ix, TrackInfo type)
1096 {
1097     if (ix == -1) m_tracksList << type;
1098     else m_tracksList.insert(ix, type);
1099 }
1100
1101 void KdenliveDoc::deleteTrack(int ix)
1102 {
1103     m_tracksList.removeAt(ix);
1104 }
1105
1106 void KdenliveDoc::setTrackType(int ix, TrackInfo type)
1107 {
1108     m_tracksList[ix].type = type.type;
1109     m_tracksList[ix].isMute = type.isMute;
1110     m_tracksList[ix].isBlind = type.isBlind;
1111     m_tracksList[ix].isLocked = type.isLocked;
1112 }
1113
1114 const QList <TrackInfo> KdenliveDoc::tracksList() const
1115 {
1116     return m_tracksList;
1117 }
1118
1119 QPoint KdenliveDoc::getTracksCount() const
1120 {
1121     int audio = 0;
1122     int video = 0;
1123     foreach(const TrackInfo &info, m_tracksList) {
1124         if (info.type == VIDEOTRACK) video++;
1125         else audio++;
1126     }
1127     return QPoint(video, audio);
1128 }
1129
1130 void KdenliveDoc::cachePixmap(const QString &fileId, const QPixmap &pix) const
1131 {
1132     pix.save(m_projectFolder.path() + "/thumbs/" + fileId + ".png");
1133 }
1134
1135 QString KdenliveDoc::getLadspaFile() const
1136 {
1137     int ct = 0;
1138     QString counter = QString::number(ct).rightJustified(5, '0', false);
1139     while (QFile::exists(m_projectFolder.path() + "/ladspa/" + counter + ".ladspa")) {
1140         ct++;
1141         counter = QString::number(ct).rightJustified(5, '0', false);
1142     }
1143     return m_projectFolder.path() + "/ladspa/" + counter + ".ladspa";
1144 }
1145
1146 bool KdenliveDoc::checkDocumentClips(QDomNodeList infoproducers)
1147 {
1148     int clipType;
1149     QDomElement e;
1150     QString id;
1151     QString resource;
1152     QList <QDomElement> missingClips;
1153     for (int i = 0; i < infoproducers.count(); i++) {
1154         e = infoproducers.item(i).toElement();
1155         clipType = e.attribute("type").toInt();
1156         if (clipType == TEXT || clipType == COLOR) continue;
1157         id = e.attribute("id");
1158         resource = e.attribute("resource");
1159         if (clipType == SLIDESHOW) resource = KUrl(resource).directory();
1160         if (!KIO::NetAccess::exists(KUrl(resource), KIO::NetAccess::SourceSide, 0)) {
1161             // Missing clip found
1162             missingClips.append(e);
1163         }
1164     }
1165     if (missingClips.isEmpty()) return true;
1166     DocumentChecker d(missingClips, m_document);
1167     return (d.exec() == QDialog::Accepted);
1168 }
1169
1170
1171 #include "kdenlivedoc.moc"
1172