1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/*
SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
SPDX-FileCopyrightText: 2007 Dukju Ahn <dukjuahn@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "svncommitjob.h"
#include "svncommitjob_p.h"
#include <QMutexLocker>
#include <ThreadWeaver/ThreadWeaver>
#include <ThreadWeaver/Weaver>
#include <QStandardItemModel>
#include <KLocalizedString>
#include <vector>
#include "kdevsvncpp/client.hpp"
#include "kdevsvncpp/path.hpp"
#include "kdevsvncpp/targets.hpp"
#include <iostream>
#include "svninternaljobbase.h"
#include "kdevsvnplugin.h"
SvnInternalCommitJob::SvnInternalCommitJob( SvnJobBase* parent )
: SvnInternalJobBase( parent )
{
}
void SvnInternalCommitJob::setRecursive( bool recursive )
{
QMutexLocker l( &m_mutex );
m_recursive = recursive;
}
void SvnInternalCommitJob::setCommitMessage( const QString& msg )
{
QMutexLocker l( &m_mutex );
m_commitMessage = msg;
}
void SvnInternalCommitJob::setUrls( const QList<QUrl>& urls )
{
QMutexLocker l( &m_mutex );
m_urls = urls;
}
void SvnInternalCommitJob::setKeepLock( bool lock )
{
QMutexLocker l( &m_mutex );
m_keepLock = lock;
}
QList<QUrl> SvnInternalCommitJob::urls() const
{
QMutexLocker l( &m_mutex );
return m_urls;
}
QString SvnInternalCommitJob::commitMessage() const
{
QMutexLocker l( &m_mutex );
return m_commitMessage;
}
bool SvnInternalCommitJob::recursive() const
{
QMutexLocker l( &m_mutex );
return m_recursive;
}
bool SvnInternalCommitJob::keepLock() const
{
QMutexLocker l( &m_mutex );
return m_keepLock;
}
void SvnInternalCommitJob::run(ThreadWeaver::JobPointer /*self*/, ThreadWeaver::Thread* /*thread*/)
{
initBeforeRun();
svn::Client cli(m_ctxt);
std::vector<svn::Path> targets;
const QList<QUrl> l = urls();
for (const QUrl& u : l) {
QByteArray path = u.toString( QUrl::PreferLocalFile | QUrl::StripTrailingSlash ).toUtf8();
targets.push_back( svn::Path( path.data() ) );
}
QByteArray ba = commitMessage().toUtf8();
try
{
cli.commit( svn::Targets(targets), ba.data(), recursive(), keepLock() );
}catch( const svn::ClientException& ce )
{
qCDebug(PLUGIN_SVN) << "Couldn't commit:" << QString::fromUtf8( ce.message() );
setErrorMessage( QString::fromUtf8( ce.message() ) );
m_success = false;
}
}
SvnCommitJob::SvnCommitJob( KDevSvnPlugin* parent )
: SvnJobBaseImpl(parent, KDevelop::OutputJob::Verbose )
{
setType( KDevelop::VcsJob::Commit );
setObjectName(i18n("Subversion Commit"));
}
QVariant SvnCommitJob::fetchResults()
{
return QVariant();
}
void SvnCommitJob::start()
{
setTitle(QStringLiteral("commit"));
setBehaviours( KDevelop::IOutputView::AllowUserClose | KDevelop::IOutputView::AutoScroll );
startOutput();
auto *m = qobject_cast<QStandardItemModel*>(model());
m->setColumnCount(1);
m->appendRow(new QStandardItem(i18n("Committing...")));
if( m_job->urls().isEmpty() ) {
internalJobFailed();
setErrorText( i18n( "Not enough information to execute commit" ) );
m->appendRow(new QStandardItem(errorText()));
} else {
startInternalJob();
}
}
void SvnCommitJob::setCommitMessage( const QString& msg )
{
if( status() == KDevelop::VcsJob::JobNotStarted )
m_job->setCommitMessage( msg );
}
void SvnCommitJob::setKeepLock( bool keepLock )
{
if( status() == KDevelop::VcsJob::JobNotStarted )
m_job->setKeepLock( keepLock );
}
void SvnCommitJob::setUrls( const QList<QUrl>& urls )
{
qCDebug(PLUGIN_SVN) << "Setting urls?" << status() << urls;
if( status() == KDevelop::VcsJob::JobNotStarted )
m_job->setUrls( urls );
}
void SvnCommitJob::setRecursive( bool recursive )
{
if( status() == KDevelop::VcsJob::JobNotStarted )
m_job->setRecursive( recursive );
}
#include "moc_svncommitjob_p.cpp"
#include "moc_svncommitjob.cpp"
|