]> git.sesse.net Git - kdenlive/blob - src/projectitem.cpp
* Fix missing proxy not re-created on project opening
[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 QStringList ProjectItem::names() const
111 {
112     QStringList result;
113     result.append(text(0));
114     result.append(text(1));
115     result.append(text(2));
116     return result;
117 }
118
119 QDomElement ProjectItem::toXml() const
120 {
121     return m_clip->toXML();
122 }
123
124 const KUrl ProjectItem::clipUrl() const
125 {
126     if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN)
127         return KUrl(m_clip->getProperty("resource"));
128     else return KUrl();
129 }
130
131 void ProjectItem::changeDuration(int frames)
132 {
133     QString itemdata = data(0, DurationRole).toString();
134     if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
135     else itemdata.clear();
136     setData(0, DurationRole, itemdata + Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps()));
137 }
138
139 void ProjectItem::setProperties(QMap <QString, QString> props)
140 {
141     if (m_clip == NULL) return;
142     m_clip->setProperties(props);
143 }
144
145 QString ProjectItem::getClipHash() const
146 {
147     if (m_clip == NULL) return QString();
148     return m_clip->getClipHash();
149 }
150
151 void ProjectItem::setProperty(const QString &key, const QString &value)
152 {
153     if (m_clip == NULL) return;
154     m_clip->setProperty(key, value);
155 }
156
157 void ProjectItem::clearProperty(const QString &key)
158 {
159     if (m_clip == NULL) return;
160     m_clip->clearProperty(key);
161 }
162
163 DocClipBase *ProjectItem::referencedClip()
164 {
165     return m_clip;
166 }
167
168 void ProjectItem::slotSetToolTip()
169 {
170     QString tip;
171     if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | ");
172     QString jobInfo = data(0, JobStatusMessage).toString();
173     if (!jobInfo.isEmpty()) {
174         tip.append(jobInfo + " | ");
175     }
176     if (hasProxy() && data(0, JobTypeRole).toInt() != PROXYJOB) {
177         tip.append(i18n("Proxy clip") + " | ");
178     }
179     tip.append("<b>");
180     switch (m_clipType) {
181     case AUDIO:
182         tip.append(i18n("Audio clip") + "</b><br />" + clipUrl().path());
183         break;
184     case VIDEO:
185         tip.append(i18n("Mute video clip") + "</b><br />" + clipUrl().path());
186         break;
187     case AV:
188         tip.append(i18n("Video clip") + "</b><br />" + clipUrl().path());
189         break;
190     case COLOR:
191         tip.append(i18n("Color clip"));
192         break;
193     case IMAGE:
194         tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
195         break;
196     case TEXT:
197         if (!clipUrl().isEmpty() && m_clip->getProperty("xmldata").isEmpty()) tip.append(i18n("Template text clip") + "</b><br />" + clipUrl().path());
198         else tip.append(i18n("Text clip") + "</b><br />" + clipUrl().path());
199         break;
200     case SLIDESHOW:
201         tip.append(i18n("Slideshow clip") + "</b><br />" + clipUrl().directory());
202         break;
203     case VIRTUAL:
204         tip.append(i18n("Virtual clip"));
205         break;
206     case PLAYLIST:
207         tip.append(i18n("Playlist clip") + "</b><br />" + clipUrl().path());
208         break;
209     default:
210         tip.append(i18n("Unknown clip"));
211         break;
212     }
213     setToolTip(0, tip);
214 }
215
216
217 void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata)
218 {
219     if (m_clip == NULL) return;
220
221     QString prefix;
222     if (m_clipType == UNKNOWN) {
223         QString cliptype = attributes.value("type");
224         if (cliptype == "audio") m_clipType = AUDIO;
225         else if (cliptype == "video") m_clipType = VIDEO;
226         else if (cliptype == "av") m_clipType = AV;
227         else if (cliptype == "playlist") m_clipType = PLAYLIST;
228         else m_clipType = AV;
229
230         m_clip->setClipType(m_clipType);
231         slotSetToolTip();
232         if (m_clipType == PLAYLIST) {
233             // Check if the playlist xml contains a proxy inside, and inform user
234             if (playlistHasProxies(m_clip->fileURL().path())) {
235                 prefix = i18n("Contains proxies") + " / ";
236             }
237         }
238     }
239     if (attributes.contains("duration")) {
240         GenTime duration = GenTime(attributes.value("duration").toInt(), KdenliveSettings::project_fps());
241         QString itemdata = data(0, DurationRole).toString();
242         if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
243         else itemdata.clear();
244         if (prefix.isEmpty()) prefix = itemdata;
245         setData(0, DurationRole, prefix + Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
246         m_clip->setDuration(duration);
247     } else  {
248         // No duration known, use an arbitrary one until it is.
249     }
250
251     m_clip->setProperties(attributes);
252     m_clip->setMetadata(metadata);
253
254     if (m_clip->description().isEmpty()) {
255         if (metadata.contains("description")) {
256             m_clip->setProperty("description", metadata.value("description"));
257             setText(1, m_clip->description());
258         } else if (metadata.contains("comment")) {
259             m_clip->setProperty("description", metadata.value("comment"));
260             setText(1, m_clip->description());
261         }
262     }
263 }
264
265 void ProjectItem::setJobStatus(JOBTYPE jobType, CLIPJOBSTATUS status, int progress, const QString &statusMessage)
266 {
267     setData(0, JobTypeRole, jobType);
268     if (progress > 0) setData(0, JobProgressRole, progress);
269     else {
270         setData(0, JobProgressRole, status);
271         setData(0, JobStatusMessage, statusMessage);
272         slotSetToolTip();
273     }
274 }
275
276 void ProjectItem::setConditionalJobStatus(CLIPJOBSTATUS status, JOBTYPE requestedJobType)
277 {
278     if (data(0, JobTypeRole).toInt() == requestedJobType) {
279         setData(0, JobProgressRole, status);
280     }
281 }
282
283 bool ProjectItem::hasProxy() const
284 {
285     if (m_clip == NULL) return false;
286     if (m_clip->getProperty("proxy").size() < 2 || data(0, JobProgressRole).toInt() == JOBCRASHED) return false;
287     return true;
288 }
289
290 bool ProjectItem::isProxyReady() const
291 {
292      return (data(0, JobProgressRole).toInt() == JOBDONE);
293 }
294
295 bool ProjectItem::isJobRunning() const
296 {
297     int s = data(0, JobProgressRole).toInt();
298     if (s == JOBWAITING || s == JOBWORKING || s > 0) return true;
299     return false;
300 }
301
302 bool ProjectItem::isProxyRunning() const
303 {
304     int s = data(0, JobProgressRole).toInt();
305     if ((s == JOBWORKING || s > 0) && data(0, JobTypeRole).toInt() == (int) PROXYJOB) return true;
306     return false;
307 }
308
309 bool ProjectItem::playlistHasProxies(const QString path)
310 {
311     kDebug()<<"// CHECKING FOR PROXIES";
312     QFile file(path);
313     QDomDocument doc;
314     if (!file.open(QIODevice::ReadOnly))
315     return false;
316     if (!doc.setContent(&file)) {
317         file.close();
318         return false;
319     }
320     file.close();
321     QString root = doc.documentElement().attribute("root");
322     QDomNodeList kdenliveProducers = doc.elementsByTagName("kdenlive_producer");
323     for (int i = 0; i < kdenliveProducers.count(); i++) {
324         QString proxy = kdenliveProducers.at(i).toElement().attribute("proxy");
325         if (!proxy.isEmpty() && proxy != "-") return true;
326     }
327     return false;
328 }
329
330
331