|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2006-2007 by Rajko Albrecht *
|
|
|
|
* ral@alwins-world.de *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU 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 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 "repository.h"
|
|
|
|
#include "repositorydata.h"
|
|
|
|
|
|
|
|
namespace svn {
|
|
|
|
|
|
|
|
namespace repository {
|
|
|
|
|
|
|
|
Repository::Repository(svn::repository::RepositoryListener*aListener)
|
|
|
|
{
|
|
|
|
m_Data=new RepositoryData(aListener);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Repository::~Repository()
|
|
|
|
{
|
|
|
|
delete m_Data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn svn::Repository::Open(const TQString&)
|
|
|
|
*/
|
|
|
|
void Repository::Open(const TQString&name) throw (ClientException)
|
|
|
|
{
|
|
|
|
svn_error_t * error = m_Data->Open(name);
|
|
|
|
if (error!=0) {
|
|
|
|
throw ClientException (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Repository::CreateOpen(const TQString&path, const TQString&fstype, bool _bdbnosync, bool _bdbautologremove, bool _pre_1_4_compat, bool _pre_1_5_compat) throw (ClientException)
|
|
|
|
{
|
|
|
|
svn_error_t * error = m_Data->CreateOpen(path,fstype,_bdbnosync,_bdbautologremove,_pre_1_4_compat,_pre_1_5_compat);
|
|
|
|
if (error!=0) {
|
|
|
|
throw ClientException (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn svn::Repository::dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas)throw (ClientException)
|
|
|
|
*/
|
|
|
|
void Repository::dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas)throw (ClientException)
|
|
|
|
{
|
|
|
|
svn_error_t * error = m_Data->dump(output,start,end,incremental,use_deltas);
|
|
|
|
if (error!=0) {
|
|
|
|
throw ClientException (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Repository::loaddump(const TQString&dump,LOAD_UUID uuida, const TQString&parentFolder, bool usePre, bool usePost)throw (ClientException)
|
|
|
|
{
|
|
|
|
svn_repos_load_uuid uuid_action;
|
|
|
|
switch (uuida) {
|
|
|
|
case UUID_IGNORE_ACTION:
|
|
|
|
uuid_action=svn_repos_load_uuid_ignore;
|
|
|
|
break;
|
|
|
|
case UUID_FORCE_ACTION:
|
|
|
|
uuid_action=svn_repos_load_uuid_force ;
|
|
|
|
break;
|
|
|
|
case UUID_DEFAULT_ACTION:
|
|
|
|
default:
|
|
|
|
uuid_action=svn_repos_load_uuid_default;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
svn_error_t * error = m_Data->loaddump(dump,uuid_action,parentFolder,usePre,usePost);
|
|
|
|
if (error!=0) {
|
|
|
|
throw ClientException (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn svn::Repository::hotcopy(const TQString&src,const TQString&dest,bool cleanlogs)
|
|
|
|
*/
|
|
|
|
void Repository::hotcopy(const TQString&src,const TQString&dest,bool cleanlogs)throw (ClientException)
|
|
|
|
{
|
|
|
|
svn_error_t * error = RepositoryData::hotcopy(src,dest,cleanlogs);
|
|
|
|
if (error!=0) {
|
|
|
|
throw ClientException (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace repository
|
|
|
|
|
|
|
|
} // namespace svn
|