]> git.sesse.net Git - kdenlive/blob - src/projectitem.cpp
Cleanup & fix multi clip transcoding
[kdenlive] / src / projectitem.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 "projectitem.h"
22 #include "timecode.h"
23 #include "kdenlivesettings.h"
24 #include "docclipbase.h"
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KIcon>
29
30 #include <QFile>
31
32 const int DurationRole = Qt::UserRole + 1;
33 const int JobProgressRole = Qt::UserRole + 5;
34 const int JobTypeRole = Qt::UserRole + 6;
35 const int JobStatusMessage = Qt::UserRole + 7;
36 const int itemHeight = 38;
37
38 ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip) :
39         QTreeWidgetItem(parent, PROJECTCLIPTYPE),
40         m_clip(clip),
41         m_clipId(clip->getId())
42 {
43     buildItem();
44 }
45
46 ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip) :
47         QTreeWidgetItem(parent, PROJECTCLIPTYPE),
48         m_clip(clip),
49         m_clipId(clip->getId())
50         
51 {
52     buildItem();
53 }
54
55 void ProjectItem::buildItem()
56 {
57     setSizeHint(0, QSize(itemHeight * 3, itemHeight));
58     if (m_clip->isPlaceHolder()) setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
59     else setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
60     QString name = m_clip->getProperty("name");
61     if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName();
62     m_clipType = (CLIPTYPE) m_clip->getProperty("type").toInt();
63     setText(0, name);
64     setText(1, m_clip->description());
65     GenTime duration = m_clip->duration();
66     QString durationText;
67     if (duration != GenTime()) {
68         durationText = Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps());
69     }
70     if (m_clipType == PLAYLIST) {
71         // Check if the playlist xml contains a proxy inside, and inform user
72         if (playlistHasProxies(m_clip->fileURL().path())) {
73             durationText.prepend(i18n("Contains proxies") + " / ");
74         }
75     }
76     if (!durationText.isEmpty()) setData(0, DurationRole, durationText);
77 }
78
79 ProjectItem::~ProjectItem()
80 {
81 }
82
83 //static
84 int ProjectItem::itemDefaultHeight()
85 {
86     return itemHeight;
87 }
88
89 int ProjectItem::numReferences() const
90 {
91     if (!m_clip) return 0;
92     return m_clip->numReferences();
93 }
94
95 const QString &ProjectItem::clipId() const
96 {
97     return m_clipId;
98 }
99
100 CLIPTYPE ProjectItem::clipType() const
101 {
102     return m_clipType;
103 }
104
105 int ProjectItem::clipMaxDuration() const
106 {
107     return m_clip->getProperty("duration").toInt();
108 }
109
110 QDomElement ProjectItem::toXml() const
111 {
112     return m_clip->toXML();
113 }
114
115 const KUrl ProjectItem::clipUrl() const
116 {
117     if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN)
118         return KUrl(m_clip->getProperty("resource"));
119     else return KUrl();
120 }
121
122 void ProjectItem::changeDuration(int frames)
123 {
124     QString itemdata = data(0, DurationRole).toString();
125     if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
126     else itemdata.clear();
127     setData(0, DurationRole, itemdata + Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps()));
128 }
129
130 void ProjectItem::setProperties(QMap <QString, QString> props)
131 {
132     if (m_clip == NULL) return;
133     m_clip->setProperties(props);
134 }
135
136 QString ProjectItem::getClipHash() const
137 {
138     if (m_clip == NULL) return QString();
139     return m_clip->getClipHash();
140 }
141
142 void ProjectItem::setProperty(const QString &key, const QString &value)
143 {
144     if (m_clip == NULL) return;
145     m_clip->setProperty(key, value);
146 }
147
148 void ProjectItem::clearProperty(const QString &key)
149 {
150     if (m_clip == NULL) return;
151     m_clip->clearProperty(key);
152 }
153
154 DocClipBase *ProjectItem::referencedClip()
155 {
156     return m_clip;
157 }
158
159 void ProjectItem::slotSetToolTip()
160 {
161     QString tip;
162     if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | ");
163     QString jobInfo = data(0, JobStatusMessage).toString();
164     if (!jobInfo.isEmpty()) {
165         tip.append(jobInfo + " | ");
166     }
167     if (hasProxy() && data(0, JobTypeRole).toInt() != PROXYJOB) {
168         tip.append(i18n("Proxy clip") + " | ");
169     }
170     tip.append("<b>");
171     switch (m_clipType) {
172     case AUDIO:
173         tip.append(i18n("Audio clip") + "</b><br />" + clipUrl().path());
174         break;
175     case VIDEO:
176         tip.append(i18n("Mute video clip") + "</b><br />" + clipUrl().path());
177         break;
178     case AV:
179         tip.append(i18n("Video clip") + "</b><br />" + clipUrl().path());
180         break;
181     case COLOR:
182         tip.append(i18n("Color clip"));
183         break;
184     case IMAGE:
185         tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
186         break;
187     case TEXT:
188         if (!clipUrl().isEmpty() && m_clip->getProperty("xmldata").isEmpty()) tip.append(i18n("Template text clip") + "</b><br />" + clipUrl().path());
189         else tip.append(i18n("Text clip") + "</b><br />" + clipUrl().path());
190         break;
191     case SLIDESHOW:
192         tip.append(i18n("Slideshow clip") + "</b><br />" + clipUrl().directory());
193         break;
194     case VIRTUAL:
195         tip.append(i18n("Virtual clip"));
196         break;
197     case PLAYLIST:
198         tip.append(i18n("Playlist clip") + "</b><br />" + clipUrl().path());
199         break;
200     default:
201         tip.append(i18n("Unknown clip"));
202         break;
203     }
204     setToolTip(0, tip);
205 }
206
207
208 void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata)
209 {
210     if (m_clip == NULL) return;
211
212     QString prefix;
213     if (m_clipType == UNKNOWN) {
214         QString cliptype = attributes.value("type");
215         if (cliptype == "audio") m_clipType = AUDIO;
216         else if (cliptype == "video") m_clipType = VIDEO;
217         else if (cliptype == "av") m_clipType = AV;
218         else if (cliptype == "playlist") m_clipType = PLAYLIST;
219         else m_clipType = AV;
220
221         m_clip->setClipType(m_clipType);
222         slotSetToolTip();
223         if (m_clipType == PLAYLIST) {
224             // Check if the playlist xml contains a proxy inside, and inform user
225             if (playlistHasProxies(m_clip->fileURL().path())) {
226                 prefix = i18n("Contains proxies") + " / ";
227             }
228         }
229     }
230     if (attributes.contains("duration")) {
231         GenTime duration = GenTime(attributes.value("duration").toInt(), KdenliveSettings::project_fps());
232         QString itemdata = data(0, DurationRole).toString();
233         if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
234         else itemdata.clear();
235         if (prefix.isEmpty()) prefix = itemdata;
236         setData(0, DurationRole, prefix + Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
237         m_clip->setDuration(duration);
238     } else  {
239         // No duration known, use an arbitrary one until it is.
240     }
241
242     m_clip->setProperties(attributes);
243     m_clip->setMetadata(metadata);
244
245     if (m_clip->description().isEmpty()) {
246         if (metadata.contains("description")) {
247             m_clip->setProperty("description", metadata.value("description"));
248             setText(1, m_clip->description());
249         } else if (metadata.contains("comment")) {
250             m_clip->setProperty("description", metadata.value("comment"));
251             setText(1, m_clip->description());
252         }
253     }
254 }
255
256 void ProjectItem::setJobStatus(JOBTYPE jobType, CLIPJOBSTATUS status, int progress, const QString &statusMessage)
257 {
258     setData(0, JobTypeRole, jobType);
259     if (progress > 0) setData(0, JobProgressRole, qMin(100, progress));
260     else {
261         setData(0, JobProgressRole, status);
262         if ((status == JOBABORTED || status == JOBCRASHED  || status == JOBDONE) || !statusMessage.isEmpty())
263             setData(0, JobStatusMessage, statusMessage);
264         slotSetToolTip();
265     }
266 }
267
268 void ProjectItem::setConditionalJobStatus(CLIPJOBSTATUS status, JOBTYPE requestedJobType)
269 {
270     if (data(0, JobTypeRole).toInt() == requestedJobType) {
271         setData(0, JobProgressRole, status);
272     }
273 }
274
275 bool ProjectItem::hasProxy() const
276 {
277     if (m_clip == NULL) return false;
278     if (m_clip->getProperty("proxy").size() < 2 || data(0, JobProgressRole).toInt() == JOBCRASHED) return false;
279     return true;
280 }
281
282 bool ProjectItem::isProxyReady() const
283 {
284      return (data(0, JobProgressRole).toInt() == JOBDONE);
285 }
286
287 bool ProjectItem::isJobRunning() const
288 {
289     int s = data(0, JobProgressRole).toInt();
290     if (s == JOBWAITING || s == JOBWORKING || s > 0) return true;
291     return false;
292 }
293
294 bool ProjectItem::isProxyRunning() const
295 {
296     int s = data(0, JobProgressRole).toInt();
297     if ((s == JOBWORKING || s > 0) && data(0, JobTypeRole).toInt() == (int) PROXYJOB) return true;
298     return false;
299 }
300
301 bool ProjectItem::playlistHasProxies(const QString path)
302 {
303     kDebug()<<"// CHECKING FOR PROXIES";
304     QFile file(path);
305     QDomDocument doc;
306     if (!file.open(QIODevice::ReadOnly))
307     return false;
308     if (!doc.setContent(&file)) {
309         file.close();
310         return false;
311     }
312     file.close();
313     QString root = doc.documentElement().attribute("root");
314     QDomNodeList kdenliveProducers = doc.elementsByTagName("kdenlive_producer");
315     for (int i = 0; i < kdenliveProducers.count(); i++) {
316         QString proxy = kdenliveProducers.at(i).toElement().attribute("proxy");
317         if (!proxy.isEmpty() && proxy != "-") return true;
318     }
319     return false;
320 }
321
322
323