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