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
|
/***************************************************************************
* 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.hpp"
#include "repositorydata.hpp"
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 QString&)
*/
void Repository::Open(const QString&name) throw (ClientException)
{
svn_error_t * error = m_Data->Open(name);
if (error!=0) {
throw ClientException (error);
}
}
void Repository::CreateOpen(const QString&path, const QString&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 QString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas)throw (ClientException)
*/
void Repository::dump(const QString&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 QString&dump,LOAD_UUID uuida, const QString&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 QString&src,const QString&dest,bool cleanlogs)
*/
void Repository::hotcopy(const QString&src,const QString&dest,bool cleanlogs)throw (ClientException)
{
svn_error_t * error = RepositoryData::hotcopy(src,dest,cleanlogs);
if (error!=0) {
throw ClientException (error);
}
}
} // namespace repository
} // namespace svn
|