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
|
/***************************************************************************
* 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 "svnimportjob.h"
#include "svnimportjob_p.h"
#include <QMutexLocker>
#include <QFileInfo>
#include <KLocalizedString>
#include "kdevsvncpp/client.hpp"
#include "kdevsvncpp/path.hpp"
#include <vcs/vcslocation.h>
SvnImportInternalJob::SvnImportInternalJob(SvnJobBase* parent)
: SvnInternalJobBase(parent)
{
}
void SvnImportInternalJob::run(ThreadWeaver::JobPointer /*self*/, ThreadWeaver::Thread* /*thread*/)
{
initBeforeRun();
svn::Client cli(m_ctxt);
try
{
QMutexLocker l( &m_mutex );
QString srcdir = QFileInfo( m_sourceDirectory.toLocalFile() ).canonicalFilePath();
QByteArray srcba = srcdir.toUtf8();
QUrl dest = QUrl::fromUserInput( m_destinationRepository.repositoryServer() );
QByteArray destba = dest.url(QUrl::NormalizePathSegments).toUtf8();
QByteArray msg = m_message.toUtf8();
qCDebug(PLUGIN_SVN) << "Importing" << srcba << "into" << destba;
cli.import( svn::Path( srcba.data() ), destba.data(), msg.data(), true );
}catch( const svn::ClientException& ce )
{
qCWarning(PLUGIN_SVN) << "Exception while importing: "
<< m_sourceDirectory
<< ce.message();
setErrorMessage( QString::fromUtf8( ce.message() ) );
m_success = false;
}
qDebug() << "finished";
}
bool SvnImportInternalJob::isValid() const
{
return !m_message.isEmpty() && m_sourceDirectory.isLocalFile() && QFileInfo::exists( m_sourceDirectory.toLocalFile() ) && !m_destinationRepository.repositoryServer().isEmpty();
}
QUrl SvnImportInternalJob::source() const
{
QMutexLocker l( &m_mutex );
return m_sourceDirectory;
}
void SvnImportInternalJob::setMessage( const QString& message )
{
QMutexLocker l( &m_mutex );
m_message = message;
}
void SvnImportInternalJob::setMapping( const QUrl &sourceDirectory, const KDevelop::VcsLocation & destinationRepository)
{
QMutexLocker l( &m_mutex );
m_sourceDirectory = sourceDirectory;
m_destinationRepository = destinationRepository;
}
QString SvnImportInternalJob::message() const
{
QMutexLocker l( &m_mutex );
return m_message;
}
SvnImportJob::SvnImportJob( KDevSvnPlugin* parent )
: SvnJobBaseImpl( parent, KDevelop::OutputJob::Silent )
{
setType( KDevelop::VcsJob::Import );
setObjectName(i18n("Subversion Import"));
}
QVariant SvnImportJob::fetchResults()
{
return QVariant();
}
void SvnImportJob::start()
{
if( !m_job->isValid() )
{
internalJobFailed();
setErrorText( i18n( "Not enough information to import" ) );
}else
{
qCDebug(PLUGIN_SVN) << "importing:" << m_job->source();
startInternalJob();
}
}
void SvnImportJob::setMapping( const QUrl &sourceDirectory, const KDevelop::VcsLocation & destinationRepository)
{
if( status() == KDevelop::VcsJob::JobNotStarted )
m_job->setMapping( sourceDirectory, destinationRepository);
}
void SvnImportJob::setMessage( const QString& msg )
{
if( status() == KDevelop::VcsJob::JobNotStarted )
m_job->setMessage( msg );
}
|