]> git.sesse.net Git - kdenlive/blob - src/projecttree/cutclipjob.cpp
Cleaning code style of Definitions.
[kdenlive] / src / projecttree / cutclipjob.cpp
1 /***************************************************************************
2  *                                                                         *
3  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "cutclipjob.h"
22 #include "kdenlivesettings.h"
23 #include "kdenlivedoc.h"
24
25 #include <KDebug>
26 #include <KLocalizedString>
27
28 CutClipJob::CutClipJob(ClipType cType, const QString &id, const QStringList &parameters) : AbstractClipJob(CUTJOB, cType, id, parameters)
29 {
30     m_jobStatus = JobWaiting;
31     m_dest = parameters.at(0);
32     m_src = parameters.at(1);
33     m_start = parameters.at(2);
34     m_end = parameters.at(3);
35     if (m_start.isEmpty()) {
36         // this is a transcoding job
37         description = i18n("Transcode clip");
38     } else {
39         description = i18n("Cut clip");
40     }
41     m_jobDuration = parameters.at(4).toInt();
42     m_addClipToProject = parameters.at(5).toInt();
43     replaceClip = false;
44     if (parameters.count() == 7) m_cutExtraParams = parameters.at(6).simplified();
45 }
46
47 void CutClipJob::startJob()
48 {
49     // Special case: playlist clips (.mlt or .kdenlive project files)
50     if (clipType == AV || clipType == Audio || clipType == Video) {
51         QStringList parameters;
52         parameters << "-i" << m_src;
53         if (!m_start.isEmpty())
54             parameters << "-ss" << m_start <<"-t" << m_end;
55         if (!m_cutExtraParams.isEmpty()) {
56             foreach(const QString &s, m_cutExtraParams.split(' '))
57                 parameters << s;
58         }
59
60         // Make sure we don't block when proxy file already exists
61         parameters << "-y";
62         parameters << m_dest;
63         m_jobProcess = new QProcess;
64         m_jobProcess->setProcessChannelMode(QProcess::MergedChannels);
65         m_jobProcess->start(KdenliveSettings::ffmpegpath(), parameters);
66         m_jobProcess->waitForStarted();
67         while (m_jobProcess->state() != QProcess::NotRunning) {
68             processLogInfo();
69             if (m_jobStatus == JobAborted) {
70                 m_jobProcess->close();
71                 m_jobProcess->waitForFinished();
72                 QFile::remove(m_dest);
73             }
74             m_jobProcess->waitForFinished(400);
75         }
76         
77         if (m_jobStatus != JobAborted) {
78             int result = m_jobProcess->exitStatus();
79             if (result == QProcess::NormalExit) {
80                 if (QFileInfo(m_dest).size() == 0) {
81                     // File was not created
82                     processLogInfo();
83                     m_errorMessage.append(i18n("Failed to create file."));
84                     setStatus(JobCrashed);
85                 } else {
86                     setStatus(JobDone);
87                 }
88             } else if (result == QProcess::CrashExit) {
89                 // Proxy process crashed
90                 QFile::remove(m_dest);
91                 setStatus(JobCrashed);
92             }
93         }
94         delete m_jobProcess;
95         return;
96     } else {
97         m_errorMessage = i18n("Cannot process this clip type.");
98     }
99     setStatus(JobCrashed);
100     return;
101 }
102
103 void CutClipJob::processLogInfo()
104 {
105     if (!m_jobProcess || m_jobDuration == 0 || m_jobStatus == JobAborted) return;
106     QString log = m_jobProcess->readAll();
107     if (!log.isEmpty()) m_logDetails.append(log + '\n');
108     int progress;
109     // Parse FFmpeg output
110     if (log.contains("frame=")) {
111         progress = log.section("frame=", 1, 1).simplified().section(' ', 0, 0).toInt();
112         emit jobProgress(m_clipId, (int) (100.0 * progress / m_jobDuration), jobType);
113     }
114     else if (log.contains("time=")) {
115         QString time = log.section("time=", 1, 1).simplified().section(' ', 0, 0);
116         if (time.contains(':')) {
117             QStringList numbers = time.split(':');
118             progress = numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble();
119         }
120         else progress = (int) time.toDouble();
121         emit jobProgress(m_clipId, (int) (100.0 * progress / m_jobDuration), jobType);
122     }
123 }
124
125 CutClipJob::~CutClipJob()
126 {
127 }
128
129 const QString CutClipJob::destination() const
130 {
131     return m_dest;
132 }
133
134 stringMap CutClipJob::cancelProperties()
135 {
136     QMap <QString, QString> props;
137     return props;
138 }
139
140 const QString CutClipJob::statusMessage()
141 {
142     QString statusInfo;
143     switch (m_jobStatus) {
144         case JobWorking:
145             if (m_start.isEmpty()) statusInfo = i18n("Transcoding clip");
146             else statusInfo = i18n("Extracting clip cut");
147             break;
148         case JobWaiting:
149             if (m_start.isEmpty()) statusInfo = i18n("Waiting - transcode clip");
150             else statusInfo = i18n("Waiting - cut clip");
151             break;
152         default:
153             break;
154     }
155     return statusInfo;
156 }
157
158 bool CutClipJob::isExclusive()
159 {
160     return false;
161 }
162
163
164 #include "cutclipjob.moc"