X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Frenderwidget.cpp;h=f9468a82df7e7ac61a617a9870bc1959fe0ca62d;hb=2b46b701a1a20a5daa519e6201e051fabca198ad;hp=df3b039e5f98ad1ac5c00e50c7db0019f900950d;hpb=1a1b4f570cb791692982940af3ba5fc2dbb678e8;p=kdenlive diff --git a/src/renderwidget.cpp b/src/renderwidget.cpp index df3b039e..f9468a82 100644 --- a/src/renderwidget.cpp +++ b/src/renderwidget.cpp @@ -18,16 +18,29 @@ ***************************************************************************/ -#include +#include "renderwidget.h" +#include "kdenlivesettings.h" +#include "ui_saveprofile_ui.h" +#include "timecode.h" #include #include #include #include +#include +#include +#include +#include +// #include -#include "kdenlivesettings.h" -#include "renderwidget.h" -#include "ui_saveprofile_ui.h" +#include +#include +#include +#include +#include +#include +#include +#include const int GroupRole = Qt::UserRole; const int ExtensionRole = GroupRole + 1; @@ -35,86 +48,315 @@ const int StandardRole = GroupRole + 2; const int RenderRole = GroupRole + 3; const int ParamsRole = GroupRole + 4; const int EditableRole = GroupRole + 5; +const int MetaGroupRole = GroupRole + 6; +const int ExtraRole = GroupRole + 7; + +// Running job status +const int WAITINGJOB = 0; +const int RUNNINGJOB = 1; +const int FINISHEDJOB = 2; + -RenderWidget::RenderWidget(QWidget * parent): QDialog(parent), m_standard("PAL") { +RenderWidget::RenderWidget(const QString &projectfolder, QWidget * parent) : + QDialog(parent), + m_projectFolder(projectfolder), + m_blockProcessing(false) +{ m_view.setupUi(this); + setWindowTitle(i18n("Rendering")); m_view.buttonDelete->setIcon(KIcon("trash-empty")); m_view.buttonDelete->setToolTip(i18n("Delete profile")); m_view.buttonDelete->setEnabled(false); + m_view.buttonEdit->setIcon(KIcon("document-properties")); + m_view.buttonEdit->setToolTip(i18n("Edit profile")); + m_view.buttonEdit->setEnabled(false); + m_view.buttonSave->setIcon(KIcon("document-new")); m_view.buttonSave->setToolTip(i18n("Create new profile")); + m_view.buttonInfo->setIcon(KIcon("help-about")); + m_view.hide_log->setIcon(KIcon("go-down")); + + if (KdenliveSettings::showrenderparams()) { + m_view.buttonInfo->setDown(true); + } else m_view.advanced_params->hide(); + + m_view.rescale_size->setInputMask("0099\\x0099"); + m_view.rescale_size->setText("320x240"); + + + QMenu *renderMenu = new QMenu(i18n("Start Rendering"), this); + QAction *renderAction = renderMenu->addAction(KIcon("video-x-generic"), i18n("Render to File")); + connect(renderAction, SIGNAL(triggered()), this, SLOT(slotPrepareExport())); + QAction *scriptAction = renderMenu->addAction(KIcon("application-x-shellscript"), i18n("Generate Script")); + connect(scriptAction, SIGNAL(triggered()), this, SLOT(slotGenerateScript())); + + m_view.buttonStart->setMenu(renderMenu); + m_view.buttonStart->setPopupMode(QToolButton::MenuButtonPopup); + m_view.buttonStart->setDefaultAction(renderAction); + m_view.buttonStart->setToolButtonStyle(Qt::ToolButtonTextOnly); + m_view.abort_job->setEnabled(false); + m_view.start_script->setEnabled(false); + m_view.delete_script->setEnabled(false); + + m_view.format_list->setAlternatingRowColors(true); + m_view.size_list->setAlternatingRowColors(true); + + parseProfiles(); + parseScriptFiles(); + + connect(m_view.start_script, SIGNAL(clicked()), this, SLOT(slotStartScript())); + connect(m_view.delete_script, SIGNAL(clicked()), this, SLOT(slotDeleteScript())); + connect(m_view.scripts_list, SIGNAL(itemSelectionChanged()), this, SLOT(slotCheckScript())); + connect(m_view.running_jobs, SIGNAL(itemSelectionChanged()), this, SLOT(slotCheckJob())); + connect(m_view.running_jobs, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, SLOT(slotPlayRendering(QTreeWidgetItem *, int))); + + connect(m_view.buttonInfo, SIGNAL(clicked()), this, SLOT(showInfoPanel())); + connect(m_view.buttonSave, SIGNAL(clicked()), this, SLOT(slotSaveProfile())); + connect(m_view.buttonEdit, SIGNAL(clicked()), this, SLOT(slotEditProfile())); connect(m_view.buttonDelete, SIGNAL(clicked()), this, SLOT(slotDeleteProfile())); - connect(m_view.buttonStart, SIGNAL(clicked()), this, SLOT(slotExport())); + connect(m_view.abort_job, SIGNAL(clicked()), this, SLOT(slotAbortCurrentJob())); + connect(m_view.clean_up, SIGNAL(clicked()), this, SLOT(slotCLeanUpJobs())); + connect(m_view.hide_log, SIGNAL(clicked()), this, SLOT(slotHideLog())); + + connect(m_view.buttonClose, SIGNAL(clicked()), this, SLOT(hide())); + connect(m_view.buttonClose2, SIGNAL(clicked()), this, SLOT(hide())); + connect(m_view.buttonClose3, SIGNAL(clicked()), this, SLOT(hide())); + connect(m_view.rescale, SIGNAL(toggled(bool)), m_view.rescale_size, SLOT(setEnabled(bool))); + connect(m_view.destination_list, SIGNAL(activated(int)), this, SLOT(refreshView())); connect(m_view.out_file, SIGNAL(textChanged(const QString &)), this, SLOT(slotUpdateButtons())); + connect(m_view.out_file, SIGNAL(urlSelected(const KUrl &)), this, SLOT(slotUpdateButtons(const KUrl &))); connect(m_view.format_list, SIGNAL(currentRowChanged(int)), this, SLOT(refreshView())); connect(m_view.size_list, SIGNAL(currentRowChanged(int)), this, SLOT(refreshParams())); + connect(m_view.size_list, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(slotEditItem(QListWidgetItem *))); + + connect(m_view.render_guide, SIGNAL(clicked(bool)), this, SLOT(slotUpdateGuideBox())); + connect(m_view.render_zone, SIGNAL(clicked(bool)), this, SLOT(slotUpdateGuideBox())); + connect(m_view.render_full, SIGNAL(clicked(bool)), this, SLOT(slotUpdateGuideBox())); + + connect(m_view.guide_end, SIGNAL(activated(int)), this, SLOT(slotCheckStartGuidePosition())); + connect(m_view.guide_start, SIGNAL(activated(int)), this, SLOT(slotCheckEndGuidePosition())); + + connect(m_view.format_selection, SIGNAL(activated(int)), this, SLOT(refreshView())); + m_view.buttonStart->setEnabled(false); - parseProfiles(); + m_view.rescale_size->setEnabled(false); + m_view.guides_box->setVisible(false); + m_view.open_dvd->setVisible(false); + m_view.create_chapter->setVisible(false); + m_view.open_browser->setVisible(false); + m_view.error_box->setVisible(false); + + m_view.splitter->setStretchFactor(1, 5); + m_view.splitter->setStretchFactor(0, 2); + + m_view.out_file->setMode(KFile::File); + + m_view.running_jobs->setHeaderLabels(QStringList() << QString() << i18n("File") << i18n("Progress")); + m_view.running_jobs->setItemDelegate(new RenderViewDelegate(this)); + + QHeaderView *header = m_view.running_jobs->header(); + QFontMetrics fm = fontMetrics(); + header->setResizeMode(0, QHeaderView::Fixed); + header->resizeSection(0, 30); + header->setResizeMode(1, QHeaderView::Interactive); + header->setResizeMode(2, QHeaderView::Fixed); + header->resizeSection(1, width() * 2 / 3 - 15); + header->setResizeMode(2, QHeaderView::Interactive); + //header->setResizeMode(1, QHeaderView::Fixed); + + + m_view.scripts_list->setHeaderLabels(QStringList() << QString() << i18n("Script Files")); + m_view.scripts_list->setItemDelegate(new RenderViewDelegate(this)); + header = m_view.scripts_list->header(); + header->setResizeMode(0, QHeaderView::Fixed); + header->resizeSection(0, 30); + + focusFirstVisibleItem(); +} + +void RenderWidget::slotEditItem(QListWidgetItem *item) +{ + QString edit = item->data(EditableRole).toString(); + if (edit.isEmpty() || !edit.endsWith("customprofiles.xml")) slotSaveProfile(); + else slotEditProfile(); +} + +void RenderWidget::showInfoPanel() +{ + if (m_view.advanced_params->isVisible()) { + m_view.advanced_params->setVisible(false); + m_view.buttonInfo->setDown(false); + KdenliveSettings::setShowrenderparams(false); + } else { + m_view.advanced_params->setVisible(true); + m_view.buttonInfo->setDown(true); + KdenliveSettings::setShowrenderparams(true); + } +} + +void RenderWidget::setDocumentPath(const QString path) +{ + if (m_view.out_file->url().directory() == KUrl(m_projectFolder).directory()) { + const QString fileName = m_view.out_file->url().fileName(); + m_view.out_file->setUrl(KUrl(path + fileName)); + } + m_projectFolder = path; + parseScriptFiles(); + +} + +void RenderWidget::slotUpdateGuideBox() +{ + m_view.guides_box->setVisible(m_view.render_guide->isChecked()); +} + +void RenderWidget::slotCheckStartGuidePosition() +{ + if (m_view.guide_start->currentIndex() > m_view.guide_end->currentIndex()) + m_view.guide_start->setCurrentIndex(m_view.guide_end->currentIndex()); } -void RenderWidget::slotUpdateButtons() { +void RenderWidget::slotCheckEndGuidePosition() +{ + if (m_view.guide_end->currentIndex() < m_view.guide_start->currentIndex()) + m_view.guide_end->setCurrentIndex(m_view.guide_start->currentIndex()); +} + +void RenderWidget::setGuides(QDomElement guidesxml, double duration) +{ + m_view.guide_start->clear(); + m_view.guide_end->clear(); + QDomNodeList nodes = guidesxml.elementsByTagName("guide"); + if (nodes.count() > 0) { + m_view.guide_start->addItem(i18n("Beginning"), "0"); + m_view.render_guide->setEnabled(true); + m_view.create_chapter->setEnabled(true); + } else { + m_view.render_guide->setEnabled(false); + m_view.create_chapter->setEnabled(false); + } + double fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den; + for (int i = 0; i < nodes.count(); i++) { + QDomElement e = nodes.item(i).toElement(); + if (!e.isNull()) { + GenTime pos = GenTime(e.attribute("time").toDouble()); + const QString guidePos = Timecode::getStringTimecode(pos.frames(fps), fps); + m_view.guide_start->addItem(e.attribute("comment") + '/' + guidePos, e.attribute("time").toDouble()); + m_view.guide_end->addItem(e.attribute("comment") + '/' + guidePos, e.attribute("time").toDouble()); + } + } + if (nodes.count() > 0) + m_view.guide_end->addItem(i18n("End"), QString::number(duration)); +} + +/** + * Will be called when the user selects an output file via the file dialog. + * File extension will be added automatically. + */ +void RenderWidget::slotUpdateButtons(KUrl url) +{ + if (m_view.out_file->url().isEmpty()) m_view.buttonStart->setEnabled(false); + else { + updateButtons(); // This also checks whether the selected format is available + //m_view.buttonStart->setEnabled(true); + } + if (url != 0) { + QListWidgetItem *item = m_view.size_list->currentItem(); + QString extension = item->data(ExtensionRole).toString(); + url = filenameWithExtension(url, extension); + m_view.out_file->setUrl(url); + } +} + +/** + * Will be called when the user changes the output file path in the text line. + * File extension must NOT be added, would make editing impossible! + */ +void RenderWidget::slotUpdateButtons() +{ if (m_view.out_file->url().isEmpty()) m_view.buttonStart->setEnabled(false); - else m_view.buttonStart->setEnabled(true); + else updateButtons(); // This also checks whether the selected format is available + //else m_view.buttonStart->setEnabled(true); } -void RenderWidget::slotSaveProfile() { +void RenderWidget::slotSaveProfile() +{ + //TODO: update to correctly use metagroups Ui::SaveProfile_UI ui; QDialog *d = new QDialog(this); ui.setupUi(d); - QString customGroup = i18n("Custom"); - QStringList groupNames; - for (int i = 0; i < m_view.format_list->count(); i++) - groupNames.append(m_view.format_list->item(i)->text()); - if (!groupNames.contains(customGroup)) groupNames.prepend(customGroup); - ui.group_name->addItems(groupNames); - int pos = ui.group_name->findText(customGroup); - ui.group_name->setCurrentIndex(pos); - - ui.parameters->setText(m_view.advanced_params->text()); + + for (int i = 0; i < m_view.destination_list->count(); i++) + ui.destination_list->addItem(m_view.destination_list->itemIcon(i), m_view.destination_list->itemText(i), m_view.destination_list->itemData(i, Qt::UserRole)); + + ui.destination_list->setCurrentIndex(m_view.destination_list->currentIndex()); + QString dest = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); + + QString customGroup = m_view.format_list->currentItem()->text(); + if (customGroup.isEmpty()) customGroup = i18n("Custom"); + ui.group_name->setText(customGroup); + + ui.parameters->setText(m_view.advanced_params->toPlainText()); ui.extension->setText(m_view.size_list->currentItem()->data(ExtensionRole).toString()); ui.profile_name->setFocus(); - if (d->exec() == QDialog::Accepted) { - QString exportFile = KStandardDirs::locateLocal("data", "kdenlive/export/customprofiles.xml"); + + if (d->exec() == QDialog::Accepted && !ui.profile_name->text().simplified().isEmpty()) { + QString exportFile = KStandardDirs::locateLocal("appdata", "export/customprofiles.xml"); QDomDocument doc; QFile file(exportFile); doc.setContent(&file, false); file.close(); - QDomElement documentElement; - bool groupExists = false; - QString groupName; - QString newProfileName = ui.profile_name->text(); - QString newGroupName = ui.group_name->currentText(); - QDomNodeList groups = doc.elementsByTagName("group"); - int i = 0; - if (groups.count() == 0) { - QDomElement profiles = doc.createElement("profiles"); + QDomElement profiles = doc.documentElement(); + if (profiles.isNull() || profiles.tagName() != "profiles") { + doc.clear(); + profiles = doc.createElement("profiles"); + profiles.setAttribute("version", 1); + doc.appendChild(profiles); + } + int version = profiles.attribute("version", 0).toInt(); + if (version < 1) { + kDebug() << "// OLD profile version"; + doc.clear(); + profiles = doc.createElement("profiles"); + profiles.setAttribute("version", 1); doc.appendChild(profiles); - } else while (!groups.item(i).isNull()) { - documentElement = groups.item(i).toElement(); - groupName = documentElement.attribute("name"); - kDebug() << "// SAVE, PARSING FROUP: " << i << ", name: " << groupName << ", LOOK FR: " << newGroupName; - if (groupName == newGroupName) { - groupExists = true; + } + + QString newProfileName = ui.profile_name->text().simplified(); + QString newGroupName = ui.group_name->text().simplified(); + if (newGroupName.isEmpty()) newGroupName = i18n("Custom"); + QString newMetaGroupId = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); + QDomNodeList profilelist = doc.elementsByTagName("profile"); + int i = 0; + while (!profilelist.item(i).isNull()) { + // make sure a profile with same name doesn't exist + documentElement = profilelist.item(i).toElement(); + QString profileName = documentElement.attribute("name"); + if (profileName == newProfileName) { + // a profile with that same name already exists + bool ok; + newProfileName = QInputDialog::getText(this, i18n("Profile already exists"), i18n("This profile name already exists. Change the name if you don't want to overwrite it."), QLineEdit::Normal, newProfileName, &ok); + if (!ok) return; + if (profileName == newProfileName) { + profiles.removeChild(profilelist.item(i)); break; } - i++; } - if (!groupExists) { - documentElement = doc.createElement("group"); - documentElement.setAttribute("name", ui.group_name->currentText()); - documentElement.setAttribute("renderer", "avformat"); - doc.documentElement().appendChild(documentElement); + i++; } + QDomElement profileElement = doc.createElement("profile"); profileElement.setAttribute("name", newProfileName); + profileElement.setAttribute("category", newGroupName); + profileElement.setAttribute("destinationid", newMetaGroupId); profileElement.setAttribute("extension", ui.extension->text().simplified()); - profileElement.setAttribute("args", ui.parameters->text().simplified()); - documentElement.appendChild(profileElement); + profileElement.setAttribute("args", ui.parameters->toPlainText().simplified()); + profiles.appendChild(profileElement); //QCString save = doc.toString().utf8(); @@ -125,42 +367,161 @@ void RenderWidget::slotSaveProfile() { } QTextStream out(&file); out << doc.toString(); + if (file.error() != QFile::NoError) { + KMessageBox::error(this, i18n("Cannot write to file %1", exportFile)); + file.close(); + delete d; + return; + } file.close(); - parseProfiles(newGroupName, newProfileName); + parseProfiles(newMetaGroupId, newGroupName, newProfileName); } delete d; } -void RenderWidget::slotDeleteProfile() { +void RenderWidget::slotEditProfile() +{ + QListWidgetItem *item = m_view.size_list->currentItem(); + if (!item) return; + QString currentGroup = m_view.format_list->currentItem()->text(); + + QString params = item->data(ParamsRole).toString(); + QString extension = item->data(ExtensionRole).toString(); + QString currentProfile = item->text(); + + Ui::SaveProfile_UI ui; + QDialog *d = new QDialog(this); + ui.setupUi(d); + + for (int i = 0; i < m_view.destination_list->count(); i++) + ui.destination_list->addItem(m_view.destination_list->itemIcon(i), m_view.destination_list->itemText(i), m_view.destination_list->itemData(i, Qt::UserRole)); + + ui.destination_list->setCurrentIndex(m_view.destination_list->currentIndex()); + QString dest = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); + + QString customGroup = m_view.format_list->currentItem()->text(); + if (customGroup.isEmpty()) customGroup = i18n("Custom"); + ui.group_name->setText(customGroup); + + ui.profile_name->setText(currentProfile); + ui.extension->setText(extension); + ui.parameters->setText(params); + ui.profile_name->setFocus(); + d->setWindowTitle(i18n("Edit Profile")); + if (d->exec() == QDialog::Accepted) { + slotDeleteProfile(false); + QString exportFile = KStandardDirs::locateLocal("appdata", "export/customprofiles.xml"); + QDomDocument doc; + QFile file(exportFile); + doc.setContent(&file, false); + file.close(); + QDomElement documentElement; + QDomElement profiles = doc.documentElement(); + + if (profiles.isNull() || profiles.tagName() != "profiles") { + doc.clear(); + profiles = doc.createElement("profiles"); + profiles.setAttribute("version", 1); + doc.appendChild(profiles); + } + + int version = profiles.attribute("version", 0).toInt(); + if (version < 1) { + kDebug() << "// OLD profile version"; + doc.clear(); + profiles = doc.createElement("profiles"); + profiles.setAttribute("version", 1); + doc.appendChild(profiles); + } + + QString newProfileName = ui.profile_name->text().simplified(); + QString newGroupName = ui.group_name->text().simplified(); + if (newGroupName.isEmpty()) newGroupName = i18n("Custom"); + QString newMetaGroupId = ui.destination_list->itemData(ui.destination_list->currentIndex(), Qt::UserRole).toString(); + QDomNodeList profilelist = doc.elementsByTagName("profile"); + int i = 0; + while (!profilelist.item(i).isNull()) { + // make sure a profile with same name doesn't exist + documentElement = profilelist.item(i).toElement(); + QString profileName = documentElement.attribute("name"); + if (profileName == newProfileName) { + // a profile with that same name already exists + bool ok; + newProfileName = QInputDialog::getText(this, i18n("Profile already exists"), i18n("This profile name already exists. Change the name if you don't want to overwrite it."), QLineEdit::Normal, newProfileName, &ok); + if (!ok) return; + if (profileName == newProfileName) { + profiles.removeChild(profilelist.item(i)); + break; + } + } + i++; + } + + QDomElement profileElement = doc.createElement("profile"); + profileElement.setAttribute("name", newProfileName); + profileElement.setAttribute("category", newGroupName); + profileElement.setAttribute("destinationid", newMetaGroupId); + profileElement.setAttribute("extension", ui.extension->text().simplified()); + profileElement.setAttribute("args", ui.parameters->toPlainText().simplified()); + profiles.appendChild(profileElement); + + //QCString save = doc.toString().utf8(); + delete d; + if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { + KMessageBox::error(this, i18n("Cannot write to file %1", exportFile)); + return; + } + QTextStream out(&file); + out << doc.toString(); + if (file.error() != QFile::NoError) { + KMessageBox::error(this, i18n("Cannot write to file %1", exportFile)); + file.close(); + return; + } + file.close(); + parseProfiles(newMetaGroupId, newGroupName, newProfileName); + } else delete d; +} + +void RenderWidget::slotDeleteProfile(bool refresh) +{ + //TODO: delete a profile installed by KNewStuff the easy way + /* + QString edit = m_view.size_list->currentItem()->data(EditableRole).toString(); + if (!edit.endsWith("customprofiles.xml")) { + // This is a KNewStuff installed file, process through KNS + KNS::Engine engine(0); + if (engine.init("kdenlive_render.knsrc")) { + KNS::Entry::List entries; + } + return; + }*/ QString currentGroup = m_view.format_list->currentItem()->text(); QString currentProfile = m_view.size_list->currentItem()->text(); + QString metaGroupId = m_view.destination_list->itemData(m_view.destination_list->currentIndex(), Qt::UserRole).toString(); - QString exportFile = KStandardDirs::locateLocal("data", "kdenlive/export/customprofiles.xml"); + QString exportFile = KStandardDirs::locateLocal("appdata", "export/customprofiles.xml"); QDomDocument doc; QFile file(exportFile); doc.setContent(&file, false); file.close(); QDomElement documentElement; - bool groupExists = false; - QString groupName; - QDomNodeList groups = doc.elementsByTagName("group"); + QDomNodeList profiles = doc.elementsByTagName("profile"); int i = 0; + QString groupName; + QString profileName; + QString destination; - while (!groups.item(i).isNull()) { - documentElement = groups.item(i).toElement(); - groupName = documentElement.attribute("name"); - if (groupName == currentGroup) { - QDomNodeList children = documentElement.childNodes(); - for (int j = 0; j < children.count(); j++) { - QDomElement pro = children.at(j).toElement(); - if (pro.attribute("name") == currentProfile) { - groups.item(i).removeChild(children.at(j)); - if (groups.item(i).childNodes().isEmpty()) - doc.documentElement().removeChild(groups.item(i)); - break; - } - } + while (!profiles.item(i).isNull()) { + documentElement = profiles.item(i).toElement(); + profileName = documentElement.attribute("name"); + groupName = documentElement.attribute("category"); + destination = documentElement.attribute("destinationid"); + + if (profileName == currentProfile && groupName == currentGroup && destination == metaGroupId) { + kDebug() << "// GOT it: " << profileName; + doc.documentElement().removeChild(profiles.item(i)); break; } i++; @@ -172,131 +533,786 @@ void RenderWidget::slotDeleteProfile() { } QTextStream out(&file); out << doc.toString(); + if (file.error() != QFile::NoError) { + KMessageBox::error(this, i18n("Cannot write to file %1", exportFile)); + file.close(); + return; + } file.close(); - parseProfiles(currentGroup); + if (refresh) { + parseProfiles(metaGroupId, currentGroup); + focusFirstVisibleItem(); + } +} + +void RenderWidget::updateButtons() +{ + if (!m_view.size_list->currentItem() || m_view.size_list->currentItem()->isHidden()) { + m_view.buttonSave->setEnabled(false); + m_view.buttonDelete->setEnabled(false); + m_view.buttonEdit->setEnabled(false); + m_view.buttonStart->setEnabled(false); + } else { + m_view.buttonSave->setEnabled(true); + m_view.buttonStart->setEnabled(m_view.size_list->currentItem()->toolTip().isEmpty()); + QString edit = m_view.size_list->currentItem()->data(EditableRole).toString(); + if (edit.isEmpty() || !edit.endsWith("customprofiles.xml")) { + m_view.buttonDelete->setEnabled(false); + m_view.buttonEdit->setEnabled(false); + } else { + m_view.buttonDelete->setEnabled(true); + m_view.buttonEdit->setEnabled(true); + } + } } -void RenderWidget::slotExport() { - QFile f(m_view.out_file->url().path()); + +void RenderWidget::focusFirstVisibleItem() +{ + if (m_view.size_list->currentItem() && !m_view.size_list->currentItem()->isHidden()) { + updateButtons(); + return; + } + for (int ix = 0; ix < m_view.size_list->count(); ix++) { + QListWidgetItem *item = m_view.size_list->item(ix); + if (item && !item->isHidden()) { + m_view.size_list->setCurrentRow(ix); + break; + } + } + if (!m_view.size_list->currentItem()) m_view.size_list->setCurrentRow(0); + updateButtons(); +} + +void RenderWidget::slotPrepareExport(bool scriptExport) +{ + if (!QFile::exists(KdenliveSettings::rendererpath())) { + KMessageBox::sorry(this, i18n("Cannot find the melt program required for rendering (part of Mlt)")); + return; + } + if (m_view.play_after->isChecked() && KdenliveSettings::defaultplayerapp().isEmpty()) + KMessageBox::sorry(this, i18n("Cannot play video after rendering because the default video player application is not set.\nPlease define it in Kdenlive settings dialog.")); + QString chapterFile; + if (m_view.create_chapter->isChecked()) chapterFile = m_view.out_file->url().path() + ".dvdchapter"; + + // mantisbt 1051 + KStandardDirs::makeDir(m_view.out_file->url().directory()); + + emit prepareRenderingData(scriptExport, m_view.render_zone->isChecked(), chapterFile); +} + + +void RenderWidget::slotExport(bool scriptExport, int zoneIn, int zoneOut, const QString &playlistPath, const QString &scriptPath) +{ + QListWidgetItem *item = m_view.size_list->currentItem(); + if (!item) return; + + QString dest = m_view.out_file->url().path(); + if (dest.isEmpty()) return; + + // Check whether target file has an extension. + // If not, ask whether extension should be added or not. + QString extension = item->data(ExtensionRole).toString(); + if (!dest.endsWith(extension, Qt::CaseInsensitive)) { + if (KMessageBox::questionYesNo(this, i18n("File has no extension. Add extension (%1)?", extension)) == KMessageBox::Yes) { + dest.append("." + extension); + } + } + + QFile f(dest); if (f.exists()) { - if (KMessageBox::warningYesNo(this, i18n("File already exists. Doy you want to overwrite it ?")) != KMessageBox::Yes) + if (KMessageBox::warningYesNo(this, i18n("Output file already exists. Do you want to overwrite it?")) != KMessageBox::Yes) + return; + } + + QStringList overlayargs; + if (m_view.tc_overlay->isChecked()) { + QString filterFile = KStandardDirs::locate("appdata", "metadata.properties"); + overlayargs << "meta.attr.timecode=1" << "meta.attr.timecode.markup=#timecode"; + overlayargs << "-attach" << "data_feed:attr_check" << "-attach"; + overlayargs << "data_show:" + filterFile << "_loader=1" << "dynamic=1"; + } + + QStringList render_process_args; + + if (!scriptExport) render_process_args << "-erase"; + if (KdenliveSettings::usekuiserver()) render_process_args << "-kuiserver"; + + double guideStart = 0; + double guideEnd = 0; + + if (m_view.render_zone->isChecked()) render_process_args << "in=" + QString::number(zoneIn) << "out=" + QString::number(zoneOut); + else if (m_view.render_guide->isChecked()) { + double fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den; + guideStart = m_view.guide_start->itemData(m_view.guide_start->currentIndex()).toDouble(); + guideEnd = m_view.guide_end->itemData(m_view.guide_end->currentIndex()).toDouble(); + render_process_args << "in=" + QString::number(GenTime(guideStart).frames(fps)) << "out=" + QString::number(GenTime(guideEnd).frames(fps)); + } + + if (!overlayargs.isEmpty()) render_process_args << "preargs=" + overlayargs.join(" "); + + render_process_args << KdenliveSettings::rendererpath() << m_profile.path << item->data(RenderRole).toString(); + if (m_view.play_after->isChecked()) render_process_args << KdenliveSettings::KdenliveSettings::defaultplayerapp(); + else render_process_args << "-"; + + QString renderArgs = m_view.advanced_params->toPlainText().simplified(); + + // Adjust frame scale + int width; + int height; + if (m_view.rescale->isChecked() && m_view.rescale->isEnabled()) { + width = m_view.rescale_size->text().section('x', 0, 0).toInt(); + height = m_view.rescale_size->text().section('x', 1, 1).toInt(); + } else { + width = m_profile.width; + height = m_profile.height; + } + renderArgs.replace("%dar", '@' + QString::number(m_profile.display_aspect_num) + '/' + QString::number(m_profile.display_aspect_den)); + + // Adjust scanning + if (m_view.scanning_list->currentIndex() == 1) renderArgs.append(" progressive=1"); + else if (m_view.scanning_list->currentIndex() == 2) renderArgs.append(" progressive=0"); + + // disable audio if requested + if (!m_view.export_audio->isChecked()) + renderArgs.append(" an=1 "); + + // Check if the rendering profile is different from project profile, + // in which case we need to use the producer_comsumer from MLT + QString std = renderArgs; + QString destination = m_view.destination_list->itemData(m_view.destination_list->currentIndex()).toString(); + const QString currentSize = QString::number(width) + 'x' + QString::number(height); + QString subsize = currentSize; + if (std.startsWith("s=")) { + subsize = std.section(' ', 0, 0).toLower(); + subsize = subsize.section("=", 1, 1); + } else if (std.contains(" s=")) { + subsize = std.section(" s=", 1, 1); + subsize = subsize.section(' ', 0, 0).toLower(); + } else if (destination != "audioonly" && m_view.rescale->isChecked() && m_view.rescale->isEnabled()) { + subsize = QString(" s=%1x%2").arg(width).arg(height); + // Add current size parameter + renderArgs.append(subsize); + } + bool resizeProfile = (subsize != currentSize); + QStringList paramsList = renderArgs.split(" ", QString::SkipEmptyParts); + for (int i = 0; i < paramsList.count(); i++) { + if (paramsList.at(i).startsWith("profile=")) { + if (paramsList.at(i).section('=', 1) != m_profile.path) resizeProfile = true; + break; + } + } + + if (resizeProfile) render_process_args << "consumer:" + playlistPath; + else render_process_args << playlistPath; + render_process_args << dest; + render_process_args << paramsList; + + QString group = m_view.size_list->currentItem()->data(MetaGroupRole).toString(); + + QStringList renderParameters; + renderParameters << dest << item->data(RenderRole).toString() << renderArgs.simplified(); + renderParameters << QString::number(zoneIn) << QString::number(zoneOut) << QString::number(m_view.play_after->isChecked()); + renderParameters << QString::number(guideStart) << QString::number(guideEnd) << QString::number(resizeProfile); + + QString scriptName; + if (scriptExport) { + // Generate script file + QFile file(scriptPath); + if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { + KMessageBox::error(this, i18n("Cannot write to file %1", scriptPath)); return; + } + QString renderer = QCoreApplication::applicationDirPath() + QString("/kdenlive_render"); + if (!QFile::exists(renderer)) renderer = "kdenlive_render"; + QTextStream outStream(&file); + outStream << "#! /bin/sh" << "\n" << "\n"; + outStream << "SOURCE=" << "\"" + playlistPath + "\"" << "\n"; + outStream << "TARGET=" << "\"" + dest + "\"" << "\n"; + outStream << "RENDERER=" << "\"" + renderer + "\"" << "\n"; + outStream << "MELT=" << "\"" + render_process_args.takeFirst() + "\"" << "\n"; + outStream << "PARAMETERS=" << "\"" + render_process_args.join(" ") + "\"" << "\n"; + outStream << "$RENDERER $MELT $PARAMETERS" << "\n" << "\n"; + if (file.error() != QFile::NoError) { + KMessageBox::error(this, i18n("Cannot write to file %1", scriptPath)); + file.close(); + return; + } + file.close(); + QFile::setPermissions(scriptPath, file.permissions() | QFile::ExeUser); + + QTimer::singleShot(400, this, SLOT(parseScriptFiles())); + m_view.tabWidget->setCurrentIndex(2); + return; } - emit doRender(m_view.out_file->url().path(), m_view.advanced_params->text().split(' '), m_view.zone_only->isChecked(), m_view.play_after->isChecked()); + renderParameters << scriptName; + m_view.tabWidget->setCurrentIndex(1); + + // Save rendering profile to document + emit selectedRenderProfile(m_view.size_list->currentItem()->data(MetaGroupRole).toString(), m_view.size_list->currentItem()->text(), dest); + + // insert item in running jobs list + QTreeWidgetItem *renderItem; + QList existing = m_view.running_jobs->findItems(dest, Qt::MatchExactly, 1); + if (!existing.isEmpty()) { + renderItem = existing.at(0); + if (renderItem->data(1, Qt::UserRole + 2).toInt() == RUNNINGJOB) { + KMessageBox::information(this, i18n("There is already a job writing file:
%1
Abort the job if you want to overwrite it...", dest), i18n("Already running")); + return; + } + renderItem->setData(1, Qt::UserRole + 4, QString()); + } else { + renderItem = new QTreeWidgetItem(m_view.running_jobs, QStringList() << QString() << dest << QString()); + } + renderItem->setData(1, Qt::UserRole + 2, WAITINGJOB); + renderItem->setIcon(0, KIcon("media-playback-pause")); + renderItem->setData(1, Qt::UserRole, i18n("Waiting...")); + renderItem->setSizeHint(1, QSize(m_view.running_jobs->columnWidth(1), fontMetrics().height() * 2)); + renderItem->setData(1, Qt::UserRole + 1, QTime::currentTime()); + + // Set rendering type + if (group == "dvd") { + if (m_view.open_dvd->isChecked()) { + renderItem->setData(0, Qt::UserRole, group); + if (renderArgs.contains("profile=")) { + // rendering profile contains an MLT profile, so pass it to the running jog item, useful for dvd + QString prof = renderArgs.section("profile=", 1, 1); + prof = prof.section(' ', 0, 0); + kDebug() << "// render profile: " << prof; + renderItem->setData(0, Qt::UserRole + 1, prof); + } + } + } else { + if (group == "websites" && m_view.open_browser->isChecked()) { + renderItem->setData(0, Qt::UserRole, group); + // pass the url + QString url = m_view.size_list->currentItem()->data(ExtraRole).toString(); + renderItem->setData(0, Qt::UserRole + 1, url); + } + } + renderItem->setData(1, Qt::UserRole + 3, render_process_args); + checkRenderStatus(); } -void RenderWidget::setDocumentStandard(QString std) { - m_standard = std; +void RenderWidget::checkRenderStatus() +{ + if (m_blockProcessing) return; + QTreeWidgetItem *item = m_view.running_jobs->topLevelItem(0); + while (item) { + if (item->data(1, Qt::UserRole + 2).toInt() == RUNNINGJOB) return; + item = m_view.running_jobs->itemBelow(item); + } + item = m_view.running_jobs->topLevelItem(0); + while (item) { + if (item->data(1, Qt::UserRole + 2).toInt() == WAITINGJOB) { + item->setData(1, Qt::UserRole + 1, QTime::currentTime()); + if (item->data(1, Qt::UserRole + 4).isNull()) { + // Normal render process + QString renderer = QCoreApplication::applicationDirPath() + QString("/kdenlive_render"); + if (!QFile::exists(renderer)) renderer = "kdenlive_render"; + if (QProcess::startDetached(renderer, item->data(1, Qt::UserRole + 3).toStringList()) == false) { + item->setData(1, Qt::UserRole + 2, FINISHEDJOB); + item->setData(1, Qt::UserRole, i18n("Rendering crashed")); + item->setIcon(0, KIcon("dialog-close")); + item->setData(2, Qt::UserRole, 100); + } else KNotification::event("RenderStarted", i18n("Rendering %1 started", item->text(1)), QPixmap(), this); + } else { + // Script item + if (QProcess::startDetached(item->data(1, Qt::UserRole + 3).toString()) == false) { + item->setData(1, Qt::UserRole + 2, FINISHEDJOB); + item->setData(1, Qt::UserRole, i18n("Rendering crashed")); + item->setIcon(0, KIcon("dialog-close")); + item->setData(2, Qt::UserRole, 100); + } + } + break; + } + item = m_view.running_jobs->itemBelow(item); + } +} + +int RenderWidget::waitingJobsCount() const +{ + int count = 0; + QTreeWidgetItem *item = m_view.running_jobs->topLevelItem(0); + while (item) { + if (item->data(1, Qt::UserRole + 2).toInt() == WAITINGJOB) count++; + item = m_view.running_jobs->itemBelow(item); + } + return count; +} + +void RenderWidget::setProfile(MltVideoProfile profile) +{ + m_profile = profile; + //WARNING: this way to tell the video standard is a bit hackish... + if (m_profile.description.contains("pal", Qt::CaseInsensitive) || m_profile.description.contains("25", Qt::CaseInsensitive) || m_profile.description.contains("50", Qt::CaseInsensitive)) m_view.format_selection->setCurrentIndex(0); + else m_view.format_selection->setCurrentIndex(1); + m_view.scanning_list->setCurrentIndex(0); refreshView(); } -void RenderWidget::refreshView() { - QListWidgetItem *item = m_view.format_list->currentItem(); - if (!item) { - m_view.format_list->setCurrentRow(0); +void RenderWidget::refreshView() +{ + m_view.size_list->blockSignals(true); + QListWidgetItem *sizeItem; + + QString destination; + KIcon brokenIcon("dialog-close"); + if (m_view.destination_list->currentIndex() > 0) + destination = m_view.destination_list->itemData(m_view.destination_list->currentIndex()).toString(); + + + if (destination == "dvd") { + m_view.open_dvd->setVisible(true); + m_view.create_chapter->setVisible(true); + } else { + m_view.open_dvd->setVisible(false); + m_view.create_chapter->setVisible(false); + } + if (destination == "websites") m_view.open_browser->setVisible(true); + else m_view.open_browser->setVisible(false); + if (!destination.isEmpty() && QString("dvd websites audioonly").contains(destination)) + m_view.rescale->setEnabled(false); + else m_view.rescale->setEnabled(true); + // hide groups that are not in the correct destination + for (int i = 0; i < m_view.format_list->count(); i++) { + sizeItem = m_view.format_list->item(i); + if (sizeItem->data(MetaGroupRole).toString() == destination) { + sizeItem->setHidden(false); + //kDebug() << "// SET GRP:: " << sizeItem->text() << ", METY:" << sizeItem->data(MetaGroupRole).toString(); + } else sizeItem->setHidden(true); + } + + // activate first visible item + QListWidgetItem * item = m_view.format_list->currentItem(); + if (!item || item->isHidden()) { + for (int i = 0; i < m_view.format_list->count(); i++) { + if (!m_view.format_list->item(i)->isHidden()) { + m_view.format_list->setCurrentRow(i); + break; + } + } item = m_view.format_list->currentItem(); } - if (!item) return; + if (!item || item->isHidden()) { + m_view.format_list->setEnabled(false); + m_view.size_list->setEnabled(false); + return; + } else { + m_view.format_list->setEnabled(true); + m_view.size_list->setEnabled(true); + } + int count = 0; + for (int i = 0; i < m_view.format_list->count() && count < 2; i++) { + if (!m_view.format_list->isRowHidden(i)) count++; + } + if (count > 1) m_view.format_list->setVisible(true); + else m_view.format_list->setVisible(false); QString std; QString group = item->text(); - QListWidgetItem *sizeItem; bool firstSelected = false; + const QStringList formatsList = KdenliveSettings::supportedformats(); + const QStringList vcodecsList = KdenliveSettings::videocodecs(); + const QStringList acodecsList = KdenliveSettings::audiocodecs(); + + KColorScheme scheme(palette().currentColorGroup(), KColorScheme::Window); + const QColor disabled = scheme.foreground(KColorScheme::InactiveText).color(); + const QColor disabledbg = scheme.background(KColorScheme::NegativeBackground).color(); + for (int i = 0; i < m_view.size_list->count(); i++) { sizeItem = m_view.size_list->item(i); - std = sizeItem->data(StandardRole).toString(); - if (!std.isEmpty() && !std.contains(m_standard, Qt::CaseInsensitive)) sizeItem->setHidden(true); - else if (sizeItem->data(GroupRole) == group) { - sizeItem->setHidden(false); - if (!firstSelected) m_view.size_list->setCurrentItem(sizeItem); - firstSelected = true; + if ((sizeItem->data(GroupRole).toString() == group || sizeItem->data(GroupRole).toString().isEmpty()) && sizeItem->data(MetaGroupRole).toString() == destination) { + std = sizeItem->data(StandardRole).toString(); + if (!std.isEmpty()) { + if (std.contains("PAL", Qt::CaseInsensitive)) sizeItem->setHidden(m_view.format_selection->currentIndex() != 0); + else if (std.contains("NTSC", Qt::CaseInsensitive)) sizeItem->setHidden(m_view.format_selection->currentIndex() != 1); + } else { + sizeItem->setHidden(false); + if (!firstSelected) m_view.size_list->setCurrentItem(sizeItem); + firstSelected = true; + } + + if (!sizeItem->isHidden()) { + // Make sure the selected profile uses an installed avformat codec / format + std = sizeItem->data(ParamsRole).toString(); + if (!formatsList.isEmpty()) { + QString format; + if (std.startsWith("f=")) format = std.section("f=", 1, 1); + else if (std.contains(" f=")) format = std.section(" f=", 1, 1); + if (!format.isEmpty()) { + format = format.section(' ', 0, 0).toLower(); + if (!formatsList.contains(format)) { + kDebug() << "***** UNSUPPORTED F: " << format; + //sizeItem->setHidden(true); + //sizeItem->setFlags(Qt::ItemIsSelectable); + sizeItem->setToolTip(i18n("Unsupported video format: %1", format)); + sizeItem->setIcon(brokenIcon); + sizeItem->setForeground(disabled); + } + } + } + if (!acodecsList.isEmpty() && !sizeItem->isHidden()) { + QString format; + if (std.startsWith("acodec=")) format = std.section("acodec=", 1, 1); + else if (std.contains(" acodec=")) format = std.section(" acodec=", 1, 1); + if (!format.isEmpty()) { + format = format.section(' ', 0, 0).toLower(); + if (!acodecsList.contains(format)) { + kDebug() << "***** UNSUPPORTED ACODEC: " << format; + //sizeItem->setHidden(true); + //sizeItem->setFlags(Qt::ItemIsSelectable); + sizeItem->setToolTip(i18n("Unsupported audio codec: %1", format)); + sizeItem->setIcon(brokenIcon); + sizeItem->setForeground(disabled); + sizeItem->setBackground(disabledbg); + } + } + } + if (!vcodecsList.isEmpty() && !sizeItem->isHidden()) { + QString format; + if (std.startsWith("vcodec=")) format = std.section("vcodec=", 1, 1); + else if (std.contains(" vcodec=")) format = std.section(" vcodec=", 1, 1); + if (!format.isEmpty()) { + format = format.section(' ', 0, 0).toLower(); + if (!vcodecsList.contains(format)) { + kDebug() << "***** UNSUPPORTED VCODEC: " << format; + //sizeItem->setHidden(true); + //sizeItem->setFlags(Qt::ItemIsSelectable); + sizeItem->setToolTip(i18n("Unsupported video codec: %1", format)); + sizeItem->setIcon(brokenIcon); + sizeItem->setForeground(disabled); + } + } + } + } } else sizeItem->setHidden(true); } + focusFirstVisibleItem(); + m_view.size_list->blockSignals(false); + refreshParams(); +} + +KUrl RenderWidget::filenameWithExtension(KUrl url, QString extension) +{ + QString directory = url.directory(KUrl::AppendTrailingSlash | KUrl::ObeyTrailingSlash); + QString filename = url.fileName(KUrl::ObeyTrailingSlash); + QString ext; + + if (extension.at(0) == '.') ext = extension; + else ext = '.' + extension; + if (filename.isEmpty()) filename = i18n("untitled"); + + int pos = filename.lastIndexOf('.'); + if (pos == 0) filename.append(ext); + else { + if (!filename.endsWith(ext, Qt::CaseInsensitive)) { + filename = filename.left(pos) + ext; + } + } + + return KUrl(directory + filename); } -void RenderWidget::refreshParams() { + +/** + * Called when a new format or size has been selected. + */ +void RenderWidget::refreshParams() +{ + // Format not available (e.g. codec not installed); Disable start button QListWidgetItem *item = m_view.size_list->currentItem(); - if (!item) return; + if (!item || item->isHidden()) { + m_view.advanced_params->clear(); + m_view.buttonStart->setEnabled(false); + return; + } QString params = item->data(ParamsRole).toString(); QString extension = item->data(ExtensionRole).toString(); - m_view.advanced_params->setText(params); - m_view.advanced_params->setToolTip(params); - KUrl url = m_view.out_file->url(); - if (!url.isEmpty()) { - QString path = url.path(); - int pos = path.lastIndexOf('.') + 1; - if (pos == 0) path.append('.') + extension; - else path = path.left(pos) + extension; - m_view.out_file->setUrl(KUrl(path)); + m_view.advanced_params->setPlainText(params); + QString destination = m_view.destination_list->itemData(m_view.destination_list->currentIndex()).toString(); + if (params.contains(" s=") || destination == "audioonly") { + // profile has a fixed size, do not allow resize + m_view.rescale->setEnabled(false); + m_view.rescale_size->setEnabled(false); + } else { + m_view.rescale->setEnabled(true); + m_view.rescale_size->setEnabled(true); + } + KUrl url = filenameWithExtension(m_view.out_file->url(), extension); + m_view.out_file->setUrl(url); +// if (!url.isEmpty()) { +// QString path = url.path(); +// int pos = path.lastIndexOf('.') + 1; +// if (pos == 0) path.append('.' + extension); +// else path = path.left(pos) + extension; +// m_view.out_file->setUrl(KUrl(path)); +// } else { +// m_view.out_file->setUrl(KUrl(QDir::homePath() + "/untitled." + extension)); +// } + m_view.out_file->setFilter("*." + extension); + QString edit = item->data(EditableRole).toString(); + if (edit.isEmpty() || !edit.endsWith("customprofiles.xml")) { + m_view.buttonDelete->setEnabled(false); + m_view.buttonEdit->setEnabled(false); } else { - m_view.out_file->setUrl(KUrl(QDir::homePath() + "/untitled." + extension)); + m_view.buttonDelete->setEnabled(true); + m_view.buttonEdit->setEnabled(true); } - if (item->data(EditableRole).toString().isEmpty()) m_view.buttonDelete->setEnabled(false); - else m_view.buttonDelete->setEnabled(true); + m_view.buttonStart->setEnabled(m_view.size_list->currentItem()->toolTip().isEmpty()); } -void RenderWidget::parseProfiles(QString group, QString profile) { +void RenderWidget::reloadProfiles() +{ + parseProfiles(); +} + +void RenderWidget::parseProfiles(QString meta, QString group, QString profile) +{ m_view.size_list->clear(); m_view.format_list->clear(); - QString exportFile = KStandardDirs::locate("data", "kdenlive/export/profiles.xml"); + m_view.destination_list->clear(); + m_view.destination_list->addItem(KIcon("video-x-generic"), i18n("File rendering")); + m_view.destination_list->addItem(KIcon("media-optical"), i18n("DVD"), "dvd"); + m_view.destination_list->addItem(KIcon("audio-x-generic"), i18n("Audio only"), "audioonly"); + m_view.destination_list->addItem(KIcon("applications-internet"), i18n("Web sites"), "websites"); + m_view.destination_list->addItem(KIcon("applications-multimedia"), i18n("Media players"), "mediaplayers"); + m_view.destination_list->addItem(KIcon("drive-harddisk"), i18n("Lossless / HQ"), "lossless"); + m_view.destination_list->addItem(KIcon("pda"), i18n("Mobile devices"), "mobile"); + + QString exportFile = KStandardDirs::locate("appdata", "export/profiles.xml"); parseFile(exportFile, false); - exportFile = KStandardDirs::locateLocal("data", "kdenlive/export/customprofiles.xml"); - parseFile(exportFile, true); + + + QString exportFolder = KStandardDirs::locateLocal("appdata", "export/"); + QDir directory = QDir(exportFolder); + QStringList filter; + filter << "*.xml"; + QStringList fileList = directory.entryList(filter, QDir::Files); + // We should parse customprofiles.xml in last position, so that user profiles + // can also override profiles installed by KNewStuff + fileList.removeAll("customprofiles.xml"); + foreach(const QString &filename, fileList) + parseFile(exportFolder + filename, true); + if (QFile::exists(exportFolder + "customprofiles.xml")) parseFile(exportFolder + "customprofiles.xml", true); + + if (!meta.isEmpty()) { + m_view.destination_list->blockSignals(true); + m_view.destination_list->setCurrentIndex(m_view.destination_list->findData(meta)); + m_view.destination_list->blockSignals(false); + } refreshView(); QList child; - child = m_view.format_list->findItems(group, Qt::MatchExactly); - if (!child.isEmpty()) m_view.format_list->setCurrentItem(child.at(0)); - child = m_view.size_list->findItems(profile, Qt::MatchExactly); + if (!group.isEmpty()) child = m_view.format_list->findItems(group, Qt::MatchExactly); + if (!child.isEmpty()) { + for (int i = 0; i < child.count(); i++) { + if (child.at(i)->data(MetaGroupRole).toString() == meta) { + m_view.format_list->setCurrentItem(child.at(i)); + break; + } + } + } + child.clear(); + if (!profile.isEmpty()) child = m_view.size_list->findItems(profile, Qt::MatchExactly); if (!child.isEmpty()) m_view.size_list->setCurrentItem(child.at(0)); } -void RenderWidget::parseFile(QString exportFile, bool editable) { +void RenderWidget::parseFile(QString exportFile, bool editable) +{ + kDebug() << "// Parsing file: " << exportFile; + kDebug() << "------------------------------"; QDomDocument doc; QFile file(exportFile); doc.setContent(&file, false); file.close(); QDomElement documentElement; QDomElement profileElement; + QString extension; + QListWidgetItem *item; QDomNodeList groups = doc.elementsByTagName("group"); - if (groups.count() == 0) { - kDebug() << "// Export file: " << exportFile << " IS BROKEN"; + const QStringList acodecsList = KdenliveSettings::audiocodecs(); + bool replaceVorbisCodec = false; + if (!acodecsList.contains("vorbis") && acodecsList.contains("libvorbis")) replaceVorbisCodec = true; + + + if (editable || groups.count() == 0) { + QDomElement profiles = doc.documentElement(); + if (editable && profiles.attribute("version", 0).toInt() < 1) { + kDebug() << "// OLD profile version"; + // this is an old profile version, update it + QDomDocument newdoc; + QDomElement newprofiles = newdoc.createElement("profiles"); + newprofiles.setAttribute("version", 1); + newdoc.appendChild(newprofiles); + QDomNodeList profilelist = doc.elementsByTagName("profile"); + for (int i = 0; i < profilelist.count(); i++) { + QString category = i18n("Custom"); + QString extension; + QDomNode parent = profilelist.at(i).parentNode(); + if (!parent.isNull()) { + QDomElement parentNode = parent.toElement(); + if (parentNode.hasAttribute("name")) category = parentNode.attribute("name"); + extension = parentNode.attribute("extension"); + } + profilelist.at(i).toElement().setAttribute("category", category); + if (!extension.isEmpty()) profilelist.at(i).toElement().setAttribute("extension", extension); + QDomNode n = profilelist.at(i).cloneNode(); + newprofiles.appendChild(newdoc.importNode(n, true)); + } + if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { + KMessageBox::sorry(this, i18n("Unable to write to file %1", exportFile)); + return; + } + QTextStream out(&file); + out << newdoc.toString(); + file.close(); + parseFile(exportFile, editable); + return; + } + + QDomNode node = doc.elementsByTagName("profile").at(0); + if (node.isNull()) { + kDebug() << "// Export file: " << exportFile << " IS BROKEN"; + return; + } + int count = 1; + while (!node.isNull()) { + QDomElement profile = node.toElement(); + QString profileName = profile.attribute("name"); + QString standard = profile.attribute("standard"); + QString params = profile.attribute("args"); + + if (replaceVorbisCodec && params.contains("acodec=vorbis")) { + // replace vorbis with libvorbis + params = params.replace("vorbis", "libvorbis"); + } + + + QString category = profile.attribute("category", i18n("Custom")); + QString dest = profile.attribute("destinationid"); + QString prof_extension = profile.attribute("extension"); + if (!prof_extension.isEmpty()) extension = prof_extension; + + QList list = m_view.format_list->findItems(category, Qt::MatchExactly); + bool exists = false; + for (int j = 0; j < list.count(); j++) { + if (list.at(j)->data(MetaGroupRole) == dest) { + exists = true; + break; + } + } + if (!exists) { + item = new QListWidgetItem(category, m_view.format_list); + item->setData(MetaGroupRole, dest); + } + + // Check if item with same name already exists and replace it, + // allowing to override default profiles + + list = m_view.size_list->findItems(profileName, Qt::MatchExactly); + + for (int j = 0; j < list.count(); j++) { + if (list.at(j)->data(MetaGroupRole) == dest) { + QListWidgetItem *duplicate = list.takeAt(j); + delete duplicate; + j--; + } + } + + item = new QListWidgetItem(profileName, m_view.size_list); + //kDebug() << "// ADDINg item with name: " << profileName << ", GRP" << category << ", DEST:" << dest ; + item->setData(GroupRole, category); + item->setData(MetaGroupRole, dest); + item->setData(ExtensionRole, extension); + item->setData(RenderRole, "avformat"); + item->setData(StandardRole, standard); + item->setData(ParamsRole, params); + if (profile.hasAttribute("url")) item->setData(ExtraRole, profile.attribute("url")); + if (editable) { + item->setData(EditableRole, exportFile); + if (exportFile.endsWith("customprofiles.xml")) item->setIcon(KIcon("emblem-favorite")); + else item->setIcon(KIcon("applications-internet")); + } + node = doc.elementsByTagName("profile").at(count); + count++; + } return; } int i = 0; QString groupName; QString profileName; - QString extension; + QString prof_extension; QString renderer; QString params; QString standard; - QListWidgetItem *item; + KIcon icon; + while (!groups.item(i).isNull()) { documentElement = groups.item(i).toElement(); - groupName = documentElement.attribute("name", QString::null); - extension = documentElement.attribute("extension", QString::null); - renderer = documentElement.attribute("renderer", QString::null); - if (m_view.format_list->findItems(groupName, Qt::MatchExactly).isEmpty()) - new QListWidgetItem(groupName, m_view.format_list); + QDomNode gname = documentElement.elementsByTagName("groupname").at(0); + QString metagroupName; + QString metagroupId; + if (!gname.isNull()) { + metagroupName = gname.firstChild().nodeValue(); + metagroupId = gname.toElement().attribute("id"); + + if (!metagroupName.isEmpty() && m_view.destination_list->findData(metagroupId) == -1) { + if (metagroupId == "dvd") icon = KIcon("media-optical"); + else if (metagroupId == "audioonly") icon = KIcon("audio-x-generic"); + else if (metagroupId == "websites") icon = KIcon("applications-internet"); + else if (metagroupId == "mediaplayers") icon = KIcon("applications-multimedia"); + else if (metagroupId == "lossless") icon = KIcon("drive-harddisk"); + else if (metagroupId == "mobile") icon = KIcon("pda"); + m_view.destination_list->addItem(icon, i18n(metagroupName.toUtf8().data()), metagroupId); + } + } + groupName = documentElement.attribute("name", i18n("Custom")); + extension = documentElement.attribute("extension", QString()); + renderer = documentElement.attribute("renderer", QString()); + QList list = m_view.format_list->findItems(groupName, Qt::MatchExactly); + bool exists = false; + for (int j = 0; j < list.count(); j++) { + if (list.at(j)->data(MetaGroupRole) == metagroupId) { + exists = true; + break; + } + } + if (!exists) { + item = new QListWidgetItem(groupName, m_view.format_list); + item->setData(MetaGroupRole, metagroupId); + } QDomNode n = groups.item(i).firstChild(); while (!n.isNull()) { + if (n.toElement().tagName() != "profile") { + n = n.nextSibling(); + continue; + } profileElement = n.toElement(); profileName = profileElement.attribute("name"); standard = profileElement.attribute("standard"); params = profileElement.attribute("args"); + + if (replaceVorbisCodec && params.contains("acodec=vorbis")) { + // replace vorbis with libvorbis + params = params.replace("vorbis", "libvorbis"); + } prof_extension = profileElement.attribute("extension"); if (!prof_extension.isEmpty()) extension = prof_extension; item = new QListWidgetItem(profileName, m_view.size_list); item->setData(GroupRole, groupName); + item->setData(MetaGroupRole, metagroupId); item->setData(ExtensionRole, extension); item->setData(RenderRole, renderer); item->setData(StandardRole, standard); item->setData(ParamsRole, params); - if (editable) item->setData(EditableRole, "true"); + if (profileElement.hasAttribute("url")) item->setData(ExtraRole, profileElement.attribute("url")); + if (editable) item->setData(EditableRole, exportFile); n = n.nextSibling(); } @@ -304,8 +1320,331 @@ void RenderWidget::parseFile(QString exportFile, bool editable) { } } +void RenderWidget::setRenderJob(const QString &dest, int progress) +{ + QTreeWidgetItem *item; + QList existing = m_view.running_jobs->findItems(dest, Qt::MatchExactly, 1); + if (!existing.isEmpty()) item = existing.at(0); + else { + item = new QTreeWidgetItem(m_view.running_jobs, QStringList() << QString() << dest << QString()); + item->setSizeHint(1, QSize(m_view.running_jobs->columnWidth(1), fontMetrics().height() * 2)); + if (progress == 0) { + item->setData(1, Qt::UserRole + 2, WAITINGJOB); + item->setIcon(0, KIcon("media-playback-pause")); + item->setData(1, Qt::UserRole, i18n("Waiting...")); + } + } + item->setData(2, Qt::UserRole, progress); + item->setData(1, Qt::UserRole + 2, RUNNINGJOB); + if (progress == 0) { + item->setIcon(0, KIcon("system-run")); + item->setSizeHint(1, QSize(m_view.running_jobs->columnWidth(1), fontMetrics().height() * 2)); + item->setData(1, Qt::UserRole + 1, QTime::currentTime()); + slotCheckJob(); + } else { + QTime startTime = item->data(1, Qt::UserRole + 1).toTime(); + int seconds = startTime.secsTo(QTime::currentTime());; + const QString t = i18n("Estimated time %1", QTime().addSecs(seconds * (100 - progress) / progress).toString("hh:mm:ss")); + item->setData(1, Qt::UserRole, t); + } +} + +void RenderWidget::setRenderStatus(const QString &dest, int status, const QString &error) +{ + QTreeWidgetItem *item; + QList existing = m_view.running_jobs->findItems(dest, Qt::MatchExactly, 1); + if (!existing.isEmpty()) item = existing.at(0); + else { + item = new QTreeWidgetItem(m_view.running_jobs, QStringList() << QString() << dest << QString()); + item->setSizeHint(1, QSize(m_view.running_jobs->columnWidth(1), fontMetrics().height() * 2)); + } + item->setData(1, Qt::UserRole + 2, FINISHEDJOB); + if (status == -1) { + // Job finished successfully + item->setIcon(0, KIcon("dialog-ok")); + item->setData(2, Qt::UserRole, 100); + QTime startTime = item->data(1, Qt::UserRole + 1).toTime(); + int seconds = startTime.secsTo(QTime::currentTime()); + const QTime tm = QTime().addSecs(seconds); + const QString t = i18n("Rendering finished in %1", tm.toString("hh:mm:ss")); + item->setData(1, Qt::UserRole, t); + QString itemGroup = item->data(0, Qt::UserRole).toString(); + if (itemGroup == "dvd") { + emit openDvdWizard(item->text(1), item->data(0, Qt::UserRole + 1).toString()); + } else if (itemGroup == "websites") { + QString url = item->data(0, Qt::UserRole + 1).toString(); + if (!url.isEmpty()) new KRun(url, this); + } + } else if (status == -2) { + // Rendering crashed + item->setData(1, Qt::UserRole, i18n("Rendering crashed")); + item->setIcon(0, KIcon("dialog-close")); + item->setData(2, Qt::UserRole, 100); + m_view.error_log->append(i18n("Rendering of %1 crashed
", dest)); + m_view.error_log->append(error); + m_view.error_log->append("
"); + m_view.error_box->setVisible(true); + } else if (status == -3) { + // User aborted job + item->setData(1, Qt::UserRole, i18n("Rendering aborted")); + item->setIcon(0, KIcon("dialog-cancel")); + item->setData(2, Qt::UserRole, 100); + } + slotCheckJob(); + checkRenderStatus(); +} + +void RenderWidget::slotAbortCurrentJob() +{ + QTreeWidgetItem *current = m_view.running_jobs->currentItem(); + if (current) { + if (current->data(1, Qt::UserRole + 2).toInt() == RUNNINGJOB) + emit abortProcess(current->text(1)); + else { + delete current; + slotCheckJob(); + checkRenderStatus(); + } + } +} + +void RenderWidget::slotCheckJob() +{ + bool activate = false; + QTreeWidgetItem *current = m_view.running_jobs->currentItem(); + if (current) { + if (current->data(1, Qt::UserRole + 2).toInt() == RUNNINGJOB) + m_view.abort_job->setText(i18n("Abort Job")); + else m_view.abort_job->setText(i18n("Remove Job")); + activate = true; + } + m_view.abort_job->setEnabled(activate); +} + +void RenderWidget::slotCLeanUpJobs() +{ + int ix = 0; + QTreeWidgetItem *current = m_view.running_jobs->topLevelItem(ix); + while (current) { + if (current->data(1, Qt::UserRole + 2).toInt() == FINISHEDJOB) + delete current; + else ix++; + current = m_view.running_jobs->topLevelItem(ix); + } + slotCheckJob(); +} + +void RenderWidget::parseScriptFiles() +{ + QStringList scriptsFilter; + scriptsFilter << "*.sh"; + m_view.scripts_list->clear(); + + QTreeWidgetItem *item; + // List the project scripts + QStringList scriptFiles = QDir(m_projectFolder + "scripts").entryList(scriptsFilter, QDir::Files); + for (int i = 0; i < scriptFiles.size(); ++i) { + KUrl scriptpath(m_projectFolder + "scripts/" + scriptFiles.at(i)); + QString target; + QString renderer; + QString melt; + QFile file(scriptpath.path()); + if (file.open(QIODevice::ReadOnly | QIODevice::Text)) { + while (!file.atEnd()) { + QByteArray line = file.readLine(); + if (line.startsWith("TARGET=")) { + target = QString(line).section("TARGET=", 1).simplified(); + target.remove(QChar('"')); + } else if (line.startsWith("RENDERER=")) { + renderer = QString(line).section("RENDERER=", 1).simplified(); + renderer.remove(QChar('"')); + } else if (line.startsWith("MELT=")) { + melt = QString(line).section("MELT=", 1).simplified(); + melt.remove(QChar('"')); + } + } + file.close(); + } + if (target.isEmpty()) continue; + item = new QTreeWidgetItem(m_view.scripts_list, QStringList() << QString() << scriptpath.fileName()); + if (!renderer.isEmpty() && renderer.contains('/') && !QFile::exists(renderer)) { + item->setIcon(0, KIcon("dialog-cancel")); + item->setToolTip(1, i18n("Script contains wrong command: %1", renderer)); + item->setData(0, Qt::UserRole, '1'); + } else if (!melt.isEmpty() && melt.contains('/') && !QFile::exists(melt)) { + item->setIcon(0, KIcon("dialog-cancel")); + item->setToolTip(1, i18n("Script contains wrong command: %1", melt)); + item->setData(0, Qt::UserRole, '1'); + } else item->setIcon(0, KIcon("application-x-executable-script")); + item->setSizeHint(0, QSize(m_view.scripts_list->columnWidth(0), fontMetrics().height() * 2)); + item->setData(1, Qt::UserRole, target.simplified()); + item->setData(1, Qt::UserRole + 1, scriptpath.path()); + } + bool activate = false; + QTreeWidgetItem *script = m_view.scripts_list->topLevelItem(0); + if (script) { + script->setSelected(true); + m_view.scripts_list->setCurrentItem(script); + activate = true; + } +// m_view.start_script->setEnabled(activate); +// m_view.delete_script->setEnabled(activate); +} + +void RenderWidget::slotCheckScript() +{ + QTreeWidgetItem *item = m_view.scripts_list->currentItem(); + if (item == NULL) return; + m_view.start_script->setEnabled(item->data(0, Qt::UserRole).toString().isEmpty()); + m_view.delete_script->setEnabled(true); +} + +void RenderWidget::slotStartScript() +{ + QTreeWidgetItem *item = m_view.scripts_list->currentItem(); + if (item) { + QString destination = item->data(1, Qt::UserRole).toString(); + QString path = item->data(1, Qt::UserRole + 1).toString(); + // Insert new job in queue + QTreeWidgetItem *renderItem; + QList existing = m_view.running_jobs->findItems(destination, Qt::MatchExactly, 1); + kDebug() << "------ START SCRIPT"; + if (!existing.isEmpty()) { + renderItem = existing.at(0); + if (renderItem->data(1, Qt::UserRole + 2).toInt() == RUNNINGJOB) { + KMessageBox::information(this, i18n("There is already a job writing file:
%1
Abort the job if you want to overwrite it...", destination), i18n("Already running")); + return; + } + } else renderItem = new QTreeWidgetItem(m_view.running_jobs, QStringList() << QString() << destination << QString()); + kDebug() << "------ START SCRIPT 2"; + renderItem->setData(2, Qt::UserRole, 0); + renderItem->setData(1, Qt::UserRole + 2, WAITINGJOB); + renderItem->setIcon(0, KIcon("media-playback-pause")); + renderItem->setData(1, Qt::UserRole, i18n("Waiting...")); + renderItem->setSizeHint(1, QSize(m_view.running_jobs->columnWidth(1), fontMetrics().height() * 2)); + renderItem->setData(1, Qt::UserRole + 1, QTime::currentTime()); + renderItem->setData(1, Qt::UserRole + 3, path); + renderItem->setData(1, Qt::UserRole + 4, '1'); + checkRenderStatus(); + m_view.tabWidget->setCurrentIndex(1); + } +} + +void RenderWidget::slotDeleteScript() +{ + QTreeWidgetItem *item = m_view.scripts_list->currentItem(); + if (item) { + QString path = item->data(1, Qt::UserRole + 1).toString(); + KIO::NetAccess::del(path + ".mlt", this); + KIO::NetAccess::del(path, this); + parseScriptFiles(); + } +} + +void RenderWidget::slotGenerateScript() +{ + slotPrepareExport(true); +} + +void RenderWidget::slotHideLog() +{ + m_view.error_box->setVisible(false); +} + +void RenderWidget::setRenderProfile(const QString &dest, const QString &name, const QString &url) +{ + m_view.destination_list->blockSignals(true); + m_view.format_list->blockSignals(true); + m_view.size_list->blockSignals(true); + if (!url.isEmpty()) m_view.out_file->setUrl(KUrl(url)); + + for (int i = 0; i < m_view.destination_list->count(); i++) { + if (m_view.destination_list->itemData(i, Qt::UserRole) == dest) { + m_view.destination_list->setCurrentIndex(i); + break; + } + } + QList childs = m_view.size_list->findItems(name, Qt::MatchExactly); + if (!childs.isEmpty()) { + QListWidgetItem *profile = childs.at(0); + if (profile->isHidden()) { + QString group = profile->data(GroupRole).toString(); + childs = m_view.format_list->findItems(group, Qt::MatchExactly); + if (!childs.isEmpty()) { + m_view.format_list->setCurrentItem(childs.at(0)); + } + } + refreshView(); + m_view.size_list->blockSignals(false); + m_view.size_list->setCurrentItem(profile); + } else m_view.size_list->blockSignals(false); + m_view.destination_list->blockSignals(false); + m_view.format_list->blockSignals(false); + +} + +bool RenderWidget::startWaitingRenderJobs() +{ + m_blockProcessing = true; + QString autoscriptFile = getFreeScriptName("auto"); + QFile file(autoscriptFile); + if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { + kWarning() << "////// ERROR writing to file: " << autoscriptFile; + KMessageBox::error(0, i18n("Cannot write to file %1", autoscriptFile)); + return false; + } + + QString renderer = QCoreApplication::applicationDirPath() + QString("/kdenlive_render"); + if (!QFile::exists(renderer)) renderer = "kdenlive_render"; + QTextStream outStream(&file); + outStream << "#! /bin/sh" << "\n" << "\n"; + QTreeWidgetItem *item = m_view.running_jobs->topLevelItem(0); + while (item) { + if (item->data(1, Qt::UserRole + 2).toInt() == WAITINGJOB) { + if (item->data(1, Qt::UserRole + 4).isNull()) { + // Add render process for item + const QString params = item->data(1, Qt::UserRole + 3).toStringList().join(" "); + outStream << renderer << " " << params << "\n"; + } else { + // Script item + outStream << item->data(1, Qt::UserRole + 3).toString() << "\n"; + } + } + item = m_view.running_jobs->itemBelow(item); + } + // erase itself when rendering is finished + outStream << "rm " << autoscriptFile << "\n" << "\n"; + if (file.error() != QFile::NoError) { + KMessageBox::error(0, i18n("Cannot write to file %1", autoscriptFile)); + file.close(); + m_blockProcessing = false; + return false; + } + file.close(); + QFile::setPermissions(autoscriptFile, file.permissions() | QFile::ExeUser); + QProcess::startDetached(autoscriptFile, QStringList()); + return true; +} + +QString RenderWidget::getFreeScriptName(const QString &prefix) +{ + int ix = 0; + QString scriptsFolder = m_projectFolder + "scripts/"; + KStandardDirs::makeDir(scriptsFolder); + QString path; + while (path.isEmpty() || QFile::exists(path)) { + ix++; + path = scriptsFolder + prefix + i18n("script") + QString::number(ix).rightJustified(3, '0', false) + ".sh"; + } + return path; +} + +void RenderWidget::slotPlayRendering(QTreeWidgetItem *item, int) +{ + if (KdenliveSettings::defaultplayerapp().isEmpty() || item->data(1, Qt::UserRole + 2).toInt() != FINISHEDJOB) return; + QProcess::startDetached(KdenliveSettings::defaultplayerapp(), QStringList() << item->text(1)); +} -#include "renderwidget.moc"