]> git.sesse.net Git - kdenlive/blob - renderer/renderjob.h
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / renderer / renderjob.h
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 #ifndef RENDERJOB_H
22 #define RENDERJOB_H
23
24 #include <QProcess>
25 #include <QObject>
26 #include <QDBusInterface>
27 #include <QTime>
28 // Testing
29 #include <QTemporaryFile>
30 #include <QTextStream>
31
32 class RenderJob : public QObject
33 {
34     Q_OBJECT
35
36 public:
37     RenderJob(bool erase, bool usekuiserver, int pid, const QString& renderer, const QString& profile, const QString& rendermodule, const QString& player, const QString& scenelist, const QString& dest, const QStringList& preargs, const QStringList& args, int in = -1, int out = -1);
38     ~RenderJob();
39     void setLocale(const QString &locale);
40
41 public slots:
42     void start();
43
44 private slots:
45     void slotIsOver(QProcess::ExitStatus status, bool isWritable = true);
46     void receivedStderr();
47     void slotAbort();
48     void slotAbort(const QString& url);
49     void slotCheckProcess(QProcess::ProcessState state);
50
51 private:
52     QString m_scenelist;
53     QString m_dest;
54     int m_progress;
55     QProcess* m_renderProcess;
56     QString m_errorMessage;
57     QString m_prog;
58     QString m_player;
59     QStringList m_args;
60     bool m_erase;
61     bool m_dualpass;
62     QDBusInterface* m_jobUiserver;
63     QDBusInterface* m_kdenliveinterface;
64     QList<QVariant> m_dbusargs;
65     QTime m_startTime;
66     void initKdenliveDbusInterface();
67     bool m_usekuiserver;
68     bool m_enablelog;
69     /** @brief Used to create a temporary file for logging. */
70     QTemporaryFile m_logfile;
71     /** @brief Used to write to the log file. */
72     QTextStream m_logstream;
73     /** @brief The process id of the Kdenlive instance, used to get the dbus service. */
74     int m_pid;
75
76 signals:
77     void renderingFinished();
78 };
79
80 #endif