mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
181 lines
5.1 KiB
C++
181 lines
5.1 KiB
C++
/***************************************************************************
|
|
* This file is part of KDevelop *
|
|
* Copyright 2007 Andreas Pakulat <apaku@gmx.de> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Library General Public License as *
|
|
* published by the Free Software Foundation; either version 2 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
#include "svnupdatejob.h"
|
|
#include "svnupdatejob_p.h"
|
|
|
|
#include <QMutexLocker>
|
|
#include <QDateTime>
|
|
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
|
|
#include <ThreadWeaver.h>
|
|
|
|
#include "kdevsvncpp/client.hpp"
|
|
#include "kdevsvncpp/path.hpp"
|
|
#include "kdevsvncpp/targets.hpp"
|
|
|
|
SvnInternalUpdateJob::SvnInternalUpdateJob( SvnJobBase* parent )
|
|
: SvnInternalJobBase( parent )
|
|
, m_recursive( false )
|
|
, m_ignoreExternals( false )
|
|
{
|
|
}
|
|
|
|
void SvnInternalUpdateJob::run()
|
|
{
|
|
initBeforeRun();
|
|
|
|
svn::Client cli(m_ctxt);
|
|
std::vector<svn::Path> targets;
|
|
KUrl::List l = locations();
|
|
foreach( const KUrl &url, l )
|
|
{
|
|
QByteArray ba = url.toLocalFile( KUrl::RemoveTrailingSlash ).toUtf8();
|
|
targets.push_back( svn::Path( ba.data() ) );
|
|
}
|
|
try
|
|
{
|
|
svn::Revision rev = createSvnCppRevisionFromVcsRevision( m_revision );
|
|
if( rev.kind() == svn_opt_revision_unspecified )
|
|
{
|
|
m_success = false;
|
|
return;
|
|
}
|
|
cli.update( svn::Targets( targets ), rev, recursive(), ignoreExternals() );
|
|
}catch( svn::ClientException ce )
|
|
{
|
|
kDebug(9510) << "Exception while updating files: "
|
|
<< m_locations
|
|
<< QString::fromUtf8( ce.message() );
|
|
setErrorMessage( QString::fromUtf8( ce.message() ) );
|
|
m_success = false;
|
|
}
|
|
}
|
|
|
|
void SvnInternalUpdateJob::setRecursive( bool recursive )
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
m_recursive = recursive;
|
|
}
|
|
|
|
void SvnInternalUpdateJob::setLocations( const KUrl::List& urls )
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
m_locations = urls;
|
|
}
|
|
|
|
|
|
void SvnInternalUpdateJob::setIgnoreExternals( bool ignore )
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
m_ignoreExternals = ignore;
|
|
}
|
|
|
|
bool SvnInternalUpdateJob::ignoreExternals() const
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
return m_ignoreExternals;
|
|
}
|
|
|
|
void SvnInternalUpdateJob::setRevision( const KDevelop::VcsRevision& rev )
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
m_revision = rev;
|
|
}
|
|
|
|
KUrl::List SvnInternalUpdateJob::locations() const
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
return m_locations;
|
|
}
|
|
|
|
KDevelop::VcsRevision SvnInternalUpdateJob::revision() const
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
return m_revision;
|
|
}
|
|
|
|
bool SvnInternalUpdateJob::recursive() const
|
|
{
|
|
QMutexLocker l( m_mutex );
|
|
return m_recursive;
|
|
}
|
|
|
|
SvnUpdateJob::SvnUpdateJob( KDevSvnPlugin* parent )
|
|
: SvnJobBase( parent, KDevelop::OutputJob::Verbose )
|
|
{
|
|
setType( KDevelop::VcsJob::Add );
|
|
m_job = new SvnInternalUpdateJob( this );
|
|
setObjectName(i18n("Subversion Update"));
|
|
}
|
|
|
|
QVariant SvnUpdateJob::fetchResults()
|
|
{
|
|
return QVariant();
|
|
}
|
|
|
|
void SvnUpdateJob::start()
|
|
{
|
|
if( m_job->locations().isEmpty() )
|
|
{
|
|
internalJobFailed( m_job );
|
|
setErrorText( i18n( "Not enough Information to execute update" ) );
|
|
}else
|
|
{
|
|
kDebug(9510) << "updating urls:" << m_job->locations();
|
|
ThreadWeaver::Weaver::instance()->enqueue( m_job );
|
|
}
|
|
}
|
|
|
|
SvnInternalJobBase* SvnUpdateJob::internalJob() const
|
|
{
|
|
return m_job;
|
|
}
|
|
|
|
void SvnUpdateJob::setLocations( const KUrl::List& urls )
|
|
{
|
|
if( status() == KDevelop::VcsJob::JobNotStarted )
|
|
m_job->setLocations( urls );
|
|
}
|
|
|
|
void SvnUpdateJob::setRecursive( bool recursive )
|
|
{
|
|
if( status() == KDevelop::VcsJob::JobNotStarted )
|
|
m_job->setRecursive( recursive );
|
|
}
|
|
|
|
void SvnUpdateJob::setRevision( const KDevelop::VcsRevision& rev )
|
|
{
|
|
if( status() == KDevelop::VcsJob::JobNotStarted )
|
|
m_job->setRevision( rev );
|
|
}
|
|
|
|
void SvnUpdateJob::setIgnoreExternals( bool ignore )
|
|
{
|
|
if( status() == KDevelop::VcsJob::JobNotStarted )
|
|
m_job->setIgnoreExternals( ignore );
|
|
}
|
|
|
|
#include "moc_svnupdatejob.cpp"
|
|
#include "moc_svnupdatejob_p.cpp"
|
|
|
|
|