summaryrefslogtreecommitdiff
path: root/subversion/bindings/swig/perl/native/svn_repos.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/bindings/swig/perl/native/svn_repos.c')
-rw-r--r--subversion/bindings/swig/perl/native/svn_repos.c4560
1 files changed, 3791 insertions, 769 deletions
diff --git a/subversion/bindings/swig/perl/native/svn_repos.c b/subversion/bindings/swig/perl/native/svn_repos.c
index e07f8a1..08a8d95 100644
--- a/subversion/bindings/swig/perl/native/svn_repos.c
+++ b/subversion/bindings/swig/perl/native/svn_repos.c
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.4
+ * Version 2.0.9
*
* This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make
@@ -830,50 +830,35 @@ extern "C" {
SWIGINTERN const char*
SWIG_Perl_ErrorType(int code) {
- const char* type = 0;
switch(code) {
case SWIG_MemoryError:
- type = "MemoryError";
- break;
+ return "MemoryError";
case SWIG_IOError:
- type = "IOError";
- break;
+ return "IOError";
case SWIG_RuntimeError:
- type = "RuntimeError";
- break;
+ return "RuntimeError";
case SWIG_IndexError:
- type = "IndexError";
- break;
+ return "IndexError";
case SWIG_TypeError:
- type = "TypeError";
- break;
+ return "TypeError";
case SWIG_DivisionByZero:
- type = "ZeroDivisionError";
- break;
+ return "ZeroDivisionError";
case SWIG_OverflowError:
- type = "OverflowError";
- break;
+ return "OverflowError";
case SWIG_SyntaxError:
- type = "SyntaxError";
- break;
+ return "SyntaxError";
case SWIG_ValueError:
- type = "ValueError";
- break;
+ return "ValueError";
case SWIG_SystemError:
- type = "SystemError";
- break;
+ return "SystemError";
case SWIG_AttributeError:
- type = "AttributeError";
- break;
+ return "AttributeError";
default:
- type = "RuntimeError";
+ return "RuntimeError";
}
- return type;
}
-
-
/* -----------------------------------------------------------------------------
* perlrun.swg
*
@@ -916,14 +901,14 @@ SWIG_Perl_ErrorType(int code) {
/* Runtime API */
-#define SWIG_GetModule(clientdata) SWIG_Perl_GetModule()
+#define SWIG_GetModule(clientdata) SWIG_Perl_GetModule(clientdata)
#define SWIG_SetModule(clientdata, pointer) SWIG_Perl_SetModule(pointer)
/* Error manipulation */
#define SWIG_ErrorType(code) SWIG_Perl_ErrorType(code)
-#define SWIG_Error(code, msg) sv_setpvf(GvSV(PL_errgv),"%s %s\n", SWIG_ErrorType(code), msg)
+#define SWIG_Error(code, msg) sv_setpvf(get_sv("@", GV_ADD), "%s %s", SWIG_ErrorType(code), msg)
#define SWIG_fail goto fail
/* Perl-specific SWIG API */
@@ -1017,8 +1002,6 @@ typedef int (*SwigMagicFunc)(struct interpreter *, SV *, MAGIC *);
#endif /* MULTIPLICITY */
#endif /* PERL_OBJECT */
-/* Workaround for bug in perl 5.6.x croak and earlier */
-#if (PERL_VERSION < 8)
# ifdef PERL_OBJECT
# define SWIG_croak_null() SWIG_Perl_croak_null(pPerl)
static void SWIG_Perl_croak_null(CPerlObj *pPerl)
@@ -1026,17 +1009,16 @@ static void SWIG_Perl_croak_null(CPerlObj *pPerl)
static void SWIG_croak_null()
# endif
{
- SV *err=ERRSV;
+ SV *err = get_sv("@", GV_ADD);
# if (PERL_VERSION < 6)
croak("%_", err);
# else
- if (SvOK(err) && !SvROK(err)) croak("%_", err);
- croak(Nullch);
+ if (sv_isobject(err))
+ croak(0);
+ else
+ croak("%s", SvPV_nolen(err));
# endif
}
-#else
-# define SWIG_croak_null() croak(Nullch)
-#endif
/*
@@ -1088,8 +1070,7 @@ SWIG_TypeProxyCheck(const char *c, swig_type_info *ty) {
if (ty) {
swig_cast_info *iter = ty->cast;
while (iter) {
- if ( (!iter->type->clientdata && (strcmp(iter->type->name, c) == 0)) ||
- (iter->type->clientdata && (strcmp((char*)iter->type->clientdata, c) == 0)) ) {
+ if (strcmp(SWIG_Perl_TypeProxyName(iter->type), c) == 0) {
if (iter == ty->cast)
return iter;
/* Move iter to the top of the linked list */
@@ -1220,7 +1201,7 @@ SWIG_Perl_MakePtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, swig_type_info *t, i
SV *obj=newSV(0);
HV *hash=newHV();
HV *stash;
- sv_setref_pv(obj, (char *) SWIG_Perl_TypeProxyName(t), ptr);
+ sv_setref_pv(obj, SWIG_Perl_TypeProxyName(t), ptr);
stash=SvSTASH(SvRV(obj));
if (flags & SWIG_POINTER_OWN) {
HV *hv;
@@ -1238,7 +1219,7 @@ SWIG_Perl_MakePtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, swig_type_info *t, i
sv_bless(sv, stash);
}
else {
- sv_setref_pv(sv, (char *) SWIG_Perl_TypeProxyName(t), ptr);
+ sv_setref_pv(sv, SWIG_Perl_TypeProxyName(t), ptr);
}
}
@@ -1329,19 +1310,23 @@ typedef struct {
/* Magic variable code */
#ifndef PERL_OBJECT
-#define swig_create_magic(s,a,b,c) _swig_create_magic(s,a,b,c)
- #ifndef MULTIPLICITY
- SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *))
- #else
- SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(struct interpreter*, SV *, MAGIC *), int (*get)(struct interpreter*, SV *,MAGIC *))
- #endif
+# ifdef __cplusplus
+# define swig_create_magic(s,a,b,c) _swig_create_magic(s,const_cast<char*>(a),b,c)
+# else
+# define swig_create_magic(s,a,b,c) _swig_create_magic(s,(char*)(a),b,c)
+# endif
+# ifndef MULTIPLICITY
+SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *))
+# else
+SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(struct interpreter*, SV *, MAGIC *), int (*get)(struct interpreter*, SV *,MAGIC *))
+# endif
#else
# define swig_create_magic(s,a,b,c) _swig_create_magic(pPerl,s,a,b,c)
SWIGRUNTIME void _swig_create_magic(CPerlObj *pPerl, SV *sv, const char *name, int (CPerlObj::*set)(SV *, MAGIC *), int (CPerlObj::*get)(SV *, MAGIC *))
#endif
{
MAGIC *mg;
- sv_magic(sv,sv,'U',(char *) name,strlen(name));
+ sv_magic(sv,sv,'U',name,strlen(name));
mg = mg_find(sv,'U');
mg->mg_virtual = (MGVTBL *) malloc(sizeof(MGVTBL));
mg->mg_virtual->svt_get = (SwigMagicFunc) get;
@@ -1353,7 +1338,7 @@ SWIGRUNTIME void _swig_create_magic(CPerlObj *pPerl, SV *sv, const char *name, i
SWIGRUNTIME swig_module_info *
-SWIG_Perl_GetModule(void) {
+SWIG_Perl_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
static void *type_pointer = (void *)0;
SV *pointer;
@@ -1447,9 +1432,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#ifdef eof
#undef eof
#endif
-#ifdef bool
- #undef bool
-#endif
#ifdef close
#undef close
#endif
@@ -1490,6 +1472,14 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#undef stat
#endif
+#ifdef bool
+ /* Leave if macro is from C99 stdbool.h */
+ #ifndef __bool_true_false_are_defined
+ #undef bool
+ #endif
+#endif
+
+
#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
@@ -1509,126 +1499,138 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#define SWIGTYPE_p_apr_int64_t swig_types[3]
#define SWIGTYPE_p_apr_pool_t swig_types[4]
#define SWIGTYPE_p_char swig_types[5]
-#define SWIGTYPE_p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[6]
-#define SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t swig_types[7]
-#define SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[8]
-#define SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t swig_types[9]
-#define SWIGTYPE_p_f_p_q_const__svn_commit_info_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[10]
-#define SWIGTYPE_p_f_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t swig_types[11]
-#define SWIGTYPE_p_f_p_svn_location_segment_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[12]
-#define SWIGTYPE_p_f_p_svn_txdelta_window_handler_t_p_p_void_p_void__p_svn_error_t swig_types[13]
-#define SWIGTYPE_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t swig_types[14]
-#define SWIGTYPE_p_f_p_void__p_svn_error_t swig_types[15]
-#define SWIGTYPE_p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t swig_types[16]
-#define SWIGTYPE_p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[17]
-#define SWIGTYPE_p_f_p_void_p_q_const__char__p_svn_error_t swig_types[18]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t swig_types[19]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[20]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_svn_boolean_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[21]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_pool_t__p_svn_error_t swig_types[22]
-#define SWIGTYPE_p_f_p_void_p_q_const__struct_svn_repos_notify_t_p_apr_pool_t__void swig_types[23]
-#define SWIGTYPE_p_f_p_void_p_svn_log_entry_t_p_apr_pool_t__p_svn_error_t swig_types[24]
-#define SWIGTYPE_p_f_svn_repos_authz_access_t_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t swig_types[25]
-#define SWIGTYPE_p_f_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t swig_types[26]
-#define SWIGTYPE_p_int swig_types[27]
-#define SWIGTYPE_p_long swig_types[28]
-#define SWIGTYPE_p_p_apr_array_header_t swig_types[29]
-#define SWIGTYPE_p_p_apr_hash_t swig_types[30]
-#define SWIGTYPE_p_p_char swig_types[31]
-#define SWIGTYPE_p_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t swig_types[32]
-#define SWIGTYPE_p_p_svn_authz_t swig_types[33]
-#define SWIGTYPE_p_p_svn_delta_editor_t swig_types[34]
-#define SWIGTYPE_p_p_svn_dirent_t swig_types[35]
-#define SWIGTYPE_p_p_svn_fs_txn_t swig_types[36]
-#define SWIGTYPE_p_p_svn_lock_t swig_types[37]
-#define SWIGTYPE_p_p_svn_repos_parse_fns2_t swig_types[38]
-#define SWIGTYPE_p_p_svn_repos_parse_fns_t swig_types[39]
-#define SWIGTYPE_p_p_svn_repos_t swig_types[40]
-#define SWIGTYPE_p_p_svn_stream_t swig_types[41]
-#define SWIGTYPE_p_p_svn_string_t swig_types[42]
-#define SWIGTYPE_p_p_void swig_types[43]
-#define SWIGTYPE_p_svn_auth_baton_t swig_types[44]
-#define SWIGTYPE_p_svn_auth_cred_simple_t swig_types[45]
-#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_pw_t swig_types[46]
-#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_t swig_types[47]
-#define SWIGTYPE_p_svn_auth_cred_ssl_server_trust_t swig_types[48]
-#define SWIGTYPE_p_svn_auth_cred_username_t swig_types[49]
-#define SWIGTYPE_p_svn_auth_iterstate_t swig_types[50]
-#define SWIGTYPE_p_svn_auth_provider_object_t swig_types[51]
-#define SWIGTYPE_p_svn_auth_provider_t swig_types[52]
-#define SWIGTYPE_p_svn_auth_ssl_server_cert_info_t swig_types[53]
-#define SWIGTYPE_p_svn_authz_t swig_types[54]
-#define SWIGTYPE_p_svn_commit_info_t swig_types[55]
-#define SWIGTYPE_p_svn_config_t swig_types[56]
-#define SWIGTYPE_p_svn_delta_editor_t swig_types[57]
-#define SWIGTYPE_p_svn_depth_t swig_types[58]
-#define SWIGTYPE_p_svn_diff_conflict_display_style_t swig_types[59]
-#define SWIGTYPE_p_svn_diff_datasource_e swig_types[60]
-#define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[61]
-#define SWIGTYPE_p_svn_diff_file_options_t swig_types[62]
-#define SWIGTYPE_p_svn_diff_fns2_t swig_types[63]
-#define SWIGTYPE_p_svn_diff_fns_t swig_types[64]
-#define SWIGTYPE_p_svn_diff_hunk_t swig_types[65]
-#define SWIGTYPE_p_svn_diff_operation_kind_e swig_types[66]
-#define SWIGTYPE_p_svn_diff_output_fns_t swig_types[67]
-#define SWIGTYPE_p_svn_diff_t swig_types[68]
-#define SWIGTYPE_p_svn_dirent_t swig_types[69]
-#define SWIGTYPE_p_svn_errno_t swig_types[70]
-#define SWIGTYPE_p_svn_error_t swig_types[71]
-#define SWIGTYPE_p_svn_fs_access_t swig_types[72]
-#define SWIGTYPE_p_svn_fs_dirent_t swig_types[73]
-#define SWIGTYPE_p_svn_fs_history_t swig_types[74]
-#define SWIGTYPE_p_svn_fs_id_t swig_types[75]
-#define SWIGTYPE_p_svn_fs_pack_notify_action_t swig_types[76]
-#define SWIGTYPE_p_svn_fs_path_change2_t swig_types[77]
-#define SWIGTYPE_p_svn_fs_path_change_kind_t swig_types[78]
-#define SWIGTYPE_p_svn_fs_path_change_t swig_types[79]
-#define SWIGTYPE_p_svn_fs_root_t swig_types[80]
-#define SWIGTYPE_p_svn_fs_t swig_types[81]
-#define SWIGTYPE_p_svn_fs_txn_t swig_types[82]
-#define SWIGTYPE_p_svn_io_dirent2_t swig_types[83]
-#define SWIGTYPE_p_svn_io_dirent_t swig_types[84]
-#define SWIGTYPE_p_svn_io_file_del_t swig_types[85]
-#define SWIGTYPE_p_svn_location_segment_t swig_types[86]
-#define SWIGTYPE_p_svn_lock_t swig_types[87]
-#define SWIGTYPE_p_svn_log_changed_path2_t swig_types[88]
-#define SWIGTYPE_p_svn_log_changed_path_t swig_types[89]
-#define SWIGTYPE_p_svn_log_entry_t swig_types[90]
-#define SWIGTYPE_p_svn_merge_range_t swig_types[91]
-#define SWIGTYPE_p_svn_mergeinfo_inheritance_t swig_types[92]
-#define SWIGTYPE_p_svn_node_kind_t swig_types[93]
-#define SWIGTYPE_p_svn_opt_revision_range_t swig_types[94]
-#define SWIGTYPE_p_svn_opt_revision_t swig_types[95]
-#define SWIGTYPE_p_svn_opt_revision_value_t swig_types[96]
-#define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[97]
-#define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[98]
-#define SWIGTYPE_p_svn_patch_file_t swig_types[99]
-#define SWIGTYPE_p_svn_patch_t swig_types[100]
-#define SWIGTYPE_p_svn_prop_kind swig_types[101]
-#define SWIGTYPE_p_svn_prop_patch_t swig_types[102]
-#define SWIGTYPE_p_svn_repos_authz_access_t swig_types[103]
-#define SWIGTYPE_p_svn_repos_node_t swig_types[104]
-#define SWIGTYPE_p_svn_repos_notify_action_t swig_types[105]
-#define SWIGTYPE_p_svn_repos_notify_t swig_types[106]
-#define SWIGTYPE_p_svn_repos_notify_warning_t swig_types[107]
-#define SWIGTYPE_p_svn_repos_parse_fns2_t swig_types[108]
-#define SWIGTYPE_p_svn_repos_parse_fns_t swig_types[109]
-#define SWIGTYPE_p_svn_repos_revision_access_level_t swig_types[110]
-#define SWIGTYPE_p_svn_repos_t swig_types[111]
-#define SWIGTYPE_p_svn_stream_mark_t swig_types[112]
-#define SWIGTYPE_p_svn_stream_t swig_types[113]
-#define SWIGTYPE_p_svn_string_t swig_types[114]
-#define SWIGTYPE_p_svn_stringbuf_t swig_types[115]
-#define SWIGTYPE_p_svn_tristate_t swig_types[116]
-#define SWIGTYPE_p_svn_txdelta_op_t swig_types[117]
-#define SWIGTYPE_p_svn_txdelta_stream_t swig_types[118]
-#define SWIGTYPE_p_svn_txdelta_window_t swig_types[119]
-#define SWIGTYPE_p_svn_version_checklist_t swig_types[120]
-#define SWIGTYPE_p_svn_version_t swig_types[121]
-#define SWIGTYPE_p_unsigned_long swig_types[122]
-#define SWIGTYPE_p_void swig_types[123]
-static swig_type_info *swig_types[125];
-static swig_module_info swig_module = {swig_types, 124, 0, 0, 0, 0};
+#define SWIGTYPE_p_f_int_p_void_p_apr_pool_t__p_svn_error_t swig_types[6]
+#define SWIGTYPE_p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[7]
+#define SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t swig_types[8]
+#define SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[9]
+#define SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t swig_types[10]
+#define SWIGTYPE_p_f_p_q_const__svn_commit_info_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[11]
+#define SWIGTYPE_p_f_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t swig_types[12]
+#define SWIGTYPE_p_f_p_svn_location_segment_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[13]
+#define SWIGTYPE_p_f_p_svn_txdelta_window_handler_t_p_p_void_p_void__p_svn_error_t swig_types[14]
+#define SWIGTYPE_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t swig_types[15]
+#define SWIGTYPE_p_f_p_void__p_svn_error_t swig_types[16]
+#define SWIGTYPE_p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t swig_types[17]
+#define SWIGTYPE_p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[18]
+#define SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t swig_types[19]
+#define SWIGTYPE_p_f_p_void_p_q_const__char__p_svn_error_t swig_types[20]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t swig_types[21]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[22]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_svn_boolean_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[23]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_pool_t__p_svn_error_t swig_types[24]
+#define SWIGTYPE_p_f_p_void_p_q_const__struct_svn_repos_notify_t_p_apr_pool_t__void swig_types[25]
+#define SWIGTYPE_p_f_p_void_p_svn_log_entry_t_p_apr_pool_t__p_svn_error_t swig_types[26]
+#define SWIGTYPE_p_f_svn_repos_authz_access_t_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t swig_types[27]
+#define SWIGTYPE_p_f_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t swig_types[28]
+#define SWIGTYPE_p_int swig_types[29]
+#define SWIGTYPE_p_long swig_types[30]
+#define SWIGTYPE_p_p_apr_array_header_t swig_types[31]
+#define SWIGTYPE_p_p_apr_hash_t swig_types[32]
+#define SWIGTYPE_p_p_char swig_types[33]
+#define SWIGTYPE_p_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t swig_types[34]
+#define SWIGTYPE_p_p_svn_authz_t swig_types[35]
+#define SWIGTYPE_p_p_svn_delta_editor_t swig_types[36]
+#define SWIGTYPE_p_p_svn_dirent_t swig_types[37]
+#define SWIGTYPE_p_p_svn_fs_txn_t swig_types[38]
+#define SWIGTYPE_p_p_svn_lock_t swig_types[39]
+#define SWIGTYPE_p_p_svn_repos_parse_fns2_t swig_types[40]
+#define SWIGTYPE_p_p_svn_repos_parse_fns3_t swig_types[41]
+#define SWIGTYPE_p_p_svn_repos_parse_fns_t swig_types[42]
+#define SWIGTYPE_p_p_svn_repos_t swig_types[43]
+#define SWIGTYPE_p_p_svn_stream_t swig_types[44]
+#define SWIGTYPE_p_p_svn_string_t swig_types[45]
+#define SWIGTYPE_p_p_void swig_types[46]
+#define SWIGTYPE_p_svn_auth_baton_t swig_types[47]
+#define SWIGTYPE_p_svn_auth_cred_simple_t swig_types[48]
+#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_pw_t swig_types[49]
+#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_t swig_types[50]
+#define SWIGTYPE_p_svn_auth_cred_ssl_server_trust_t swig_types[51]
+#define SWIGTYPE_p_svn_auth_cred_username_t swig_types[52]
+#define SWIGTYPE_p_svn_auth_iterstate_t swig_types[53]
+#define SWIGTYPE_p_svn_auth_provider_object_t swig_types[54]
+#define SWIGTYPE_p_svn_auth_provider_t swig_types[55]
+#define SWIGTYPE_p_svn_auth_ssl_server_cert_info_t swig_types[56]
+#define SWIGTYPE_p_svn_authz_t swig_types[57]
+#define SWIGTYPE_p_svn_checksum_ctx_t swig_types[58]
+#define SWIGTYPE_p_svn_checksum_kind_t swig_types[59]
+#define SWIGTYPE_p_svn_checksum_t swig_types[60]
+#define SWIGTYPE_p_svn_commit_info_t swig_types[61]
+#define SWIGTYPE_p_svn_config_t swig_types[62]
+#define SWIGTYPE_p_svn_delta_editor_t swig_types[63]
+#define SWIGTYPE_p_svn_depth_t swig_types[64]
+#define SWIGTYPE_p_svn_diff_conflict_display_style_t swig_types[65]
+#define SWIGTYPE_p_svn_diff_datasource_e swig_types[66]
+#define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[67]
+#define SWIGTYPE_p_svn_diff_file_options_t swig_types[68]
+#define SWIGTYPE_p_svn_diff_fns2_t swig_types[69]
+#define SWIGTYPE_p_svn_diff_fns_t swig_types[70]
+#define SWIGTYPE_p_svn_diff_hunk_t swig_types[71]
+#define SWIGTYPE_p_svn_diff_operation_kind_e swig_types[72]
+#define SWIGTYPE_p_svn_diff_output_fns_t swig_types[73]
+#define SWIGTYPE_p_svn_diff_t swig_types[74]
+#define SWIGTYPE_p_svn_dirent_t swig_types[75]
+#define SWIGTYPE_p_svn_errno_t swig_types[76]
+#define SWIGTYPE_p_svn_error_t swig_types[77]
+#define SWIGTYPE_p_svn_fs_access_t swig_types[78]
+#define SWIGTYPE_p_svn_fs_dirent_t swig_types[79]
+#define SWIGTYPE_p_svn_fs_history_t swig_types[80]
+#define SWIGTYPE_p_svn_fs_id_t swig_types[81]
+#define SWIGTYPE_p_svn_fs_pack_notify_action_t swig_types[82]
+#define SWIGTYPE_p_svn_fs_path_change2_t swig_types[83]
+#define SWIGTYPE_p_svn_fs_path_change_kind_t swig_types[84]
+#define SWIGTYPE_p_svn_fs_path_change_t swig_types[85]
+#define SWIGTYPE_p_svn_fs_root_t swig_types[86]
+#define SWIGTYPE_p_svn_fs_t swig_types[87]
+#define SWIGTYPE_p_svn_fs_txn_t swig_types[88]
+#define SWIGTYPE_p_svn_io_dirent2_t swig_types[89]
+#define SWIGTYPE_p_svn_io_dirent_t swig_types[90]
+#define SWIGTYPE_p_svn_io_file_del_t swig_types[91]
+#define SWIGTYPE_p_svn_location_segment_t swig_types[92]
+#define SWIGTYPE_p_svn_lock_t swig_types[93]
+#define SWIGTYPE_p_svn_log_changed_path2_t swig_types[94]
+#define SWIGTYPE_p_svn_log_changed_path_t swig_types[95]
+#define SWIGTYPE_p_svn_log_entry_t swig_types[96]
+#define SWIGTYPE_p_svn_merge_range_t swig_types[97]
+#define SWIGTYPE_p_svn_mergeinfo_inheritance_t swig_types[98]
+#define SWIGTYPE_p_svn_node_kind_t swig_types[99]
+#define SWIGTYPE_p_svn_opt_revision_range_t swig_types[100]
+#define SWIGTYPE_p_svn_opt_revision_t swig_types[101]
+#define SWIGTYPE_p_svn_opt_revision_value_t swig_types[102]
+#define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[103]
+#define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[104]
+#define SWIGTYPE_p_svn_patch_file_t swig_types[105]
+#define SWIGTYPE_p_svn_patch_t swig_types[106]
+#define SWIGTYPE_p_svn_prop_inherited_item_t swig_types[107]
+#define SWIGTYPE_p_svn_prop_kind swig_types[108]
+#define SWIGTYPE_p_svn_prop_patch_t swig_types[109]
+#define SWIGTYPE_p_svn_repos_authz_access_t swig_types[110]
+#define SWIGTYPE_p_svn_repos_node_t swig_types[111]
+#define SWIGTYPE_p_svn_repos_notify_action_t swig_types[112]
+#define SWIGTYPE_p_svn_repos_notify_t swig_types[113]
+#define SWIGTYPE_p_svn_repos_notify_warning_t swig_types[114]
+#define SWIGTYPE_p_svn_repos_parse_fns2_t swig_types[115]
+#define SWIGTYPE_p_svn_repos_parse_fns3_t swig_types[116]
+#define SWIGTYPE_p_svn_repos_parse_fns_t swig_types[117]
+#define SWIGTYPE_p_svn_repos_revision_access_level_t swig_types[118]
+#define SWIGTYPE_p_svn_repos_t swig_types[119]
+#define SWIGTYPE_p_svn_stream_mark_t swig_types[120]
+#define SWIGTYPE_p_svn_stream_t swig_types[121]
+#define SWIGTYPE_p_svn_string_t swig_types[122]
+#define SWIGTYPE_p_svn_stringbuf_t swig_types[123]
+#define SWIGTYPE_p_svn_tristate_t swig_types[124]
+#define SWIGTYPE_p_svn_txdelta_op_t swig_types[125]
+#define SWIGTYPE_p_svn_txdelta_stream_t swig_types[126]
+#define SWIGTYPE_p_svn_txdelta_window_t swig_types[127]
+#define SWIGTYPE_p_svn_version_checklist_t swig_types[128]
+#define SWIGTYPE_p_svn_version_ext_linked_lib_t swig_types[129]
+#define SWIGTYPE_p_svn_version_ext_loaded_lib_t swig_types[130]
+#define SWIGTYPE_p_svn_version_extended_t swig_types[131]
+#define SWIGTYPE_p_svn_version_t swig_types[132]
+#define SWIGTYPE_p_svn_wc_external_item2_t swig_types[133]
+#define SWIGTYPE_p_unsigned_long swig_types[134]
+#define SWIGTYPE_p_void swig_types[135]
+static swig_type_info *swig_types[137];
+static swig_module_info swig_module = {swig_types, 136, 0, 0, 0, 0};
#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
@@ -1639,7 +1641,7 @@ static swig_module_info swig_module = {swig_types, 124, 0, 0, 0, 0};
#define SWIG_name "SVN::_Repos::boot_SVN___Repos"
#define SWIG_prefix "SVN::_Repos::"
-#define SWIGVERSION 0x020004
+#define SWIGVERSION 0x020009
#define SWIG_VERSION SWIGVERSION
@@ -1673,10 +1675,13 @@ SWIGEXPORT void SWIG_init (CV *cv, CPerlObj *);
SWIGINTERNINLINE SV *
SWIG_From_long SWIG_PERL_DECL_ARGS_1(long value)
-{
- SV *obj = sv_newmortal();
- sv_setiv(obj, (IV) value);
- return obj;
+{
+ SV *sv;
+ if (value >= IV_MIN && value <= IV_MAX)
+ sv = newSViv(value);
+ else
+ sv = newSVpvf("%ld", value);
+ return sv_2mortal(sv);
}
@@ -1767,9 +1772,20 @@ SWIG_CanCastAsInteger(double *d, double min, double max) {
SWIGINTERN int
SWIG_AsVal_long SWIG_PERL_DECL_ARGS_2(SV *obj, long* val)
{
- if (SvIOK(obj)) {
- if (val) *val = SvIV(obj);
- return SWIG_OK;
+ if (SvUOK(obj)) {
+ UV v = SvUV(obj);
+ if (v <= LONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else if (SvIOK(obj)) {
+ IV v = SvIV(obj);
+ if (v >= LONG_MIN && v <= LONG_MAX) {
+ if(val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
} else {
int dispatch = 0;
const char *nptr = SvPV_nolen(obj);
@@ -1908,9 +1924,20 @@ SWIG_FromCharPtr(const char *cptr)
SWIGINTERN int
SWIG_AsVal_long_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, long long *val)
{
- if (SvIOK(obj)) {
- if (val) *val = SvIV(obj);
- return SWIG_OK;
+ if (SvUOK(obj)) {
+ UV v = SvUV(obj);
+ if (v < LLONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else if (SvIOK(obj)) {
+ IV v = SvIV(obj);
+ if (v >= LLONG_MIN && v <= LLONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
} else {
int dispatch = 0;
const char *nptr = SvPV_nolen(obj);
@@ -1945,6 +1972,54 @@ SWIG_AsVal_long_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, long long *val)
SWIGINTERN int
+SWIG_AsVal_unsigned_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, unsigned long *val)
+{
+ if (SvUOK(obj)) {
+ UV v = SvUV(obj);
+ if (v <= ULONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else if (SvIOK(obj)) {
+ IV v = SvIV(obj);
+ if (v >= 0 && v <= ULONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else {
+ int dispatch = 0;
+ const char *nptr = SvPV_nolen(obj);
+ if (nptr) {
+ char *endptr;
+ unsigned long v;
+ errno = 0;
+ v = strtoul(nptr, &endptr,0);
+ if (errno == ERANGE) {
+ errno = 0;
+ return SWIG_OverflowError;
+ } else {
+ if (*endptr == '\0') {
+ if (val) *val = v;
+ return SWIG_Str2NumCast(SWIG_OK);
+ }
+ }
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double SWIG_PERL_CALL_ARGS_2(obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) {
+ if (val) *val = (unsigned long)(d);
+ return res;
+ }
+ }
+ }
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERN int
SWIG_AsCharArray(SV * obj, char *val, size_t size)
{
char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ;
@@ -1994,6 +2069,66 @@ SWIG_From_char SWIG_PERL_DECL_ARGS_1(char c)
}
+static svn_error_t * svn_repos_parse_fns3_invoke_magic_header_record(
+ svn_repos_parse_fns3_t * _obj, int version, void *parse_baton, apr_pool_t *pool) {
+ return (_obj->magic_header_record)(version, parse_baton, pool);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_uuid_record(
+ svn_repos_parse_fns3_t * _obj, const char *uuid, void *parse_baton, apr_pool_t *pool) {
+ return (_obj->uuid_record)(uuid, parse_baton, pool);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_new_revision_record(
+ svn_repos_parse_fns3_t * _obj, void **revision_baton, apr_hash_t *headers, void *parse_baton, apr_pool_t *pool) {
+ return (_obj->new_revision_record)(revision_baton, headers, parse_baton, pool);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_new_node_record(
+ svn_repos_parse_fns3_t * _obj, void **node_baton, apr_hash_t *headers, void *revision_baton, apr_pool_t *pool) {
+ return (_obj->new_node_record)(node_baton, headers, revision_baton, pool);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_set_revision_property(
+ svn_repos_parse_fns3_t * _obj, void *revision_baton, const char *name, const svn_string_t *value) {
+ return (_obj->set_revision_property)(revision_baton, name, value);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_set_node_property(
+ svn_repos_parse_fns3_t * _obj, void *node_baton, const char *name, const svn_string_t *value) {
+ return (_obj->set_node_property)(node_baton, name, value);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_delete_node_property(
+ svn_repos_parse_fns3_t * _obj, void *node_baton, const char *name) {
+ return (_obj->delete_node_property)(node_baton, name);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_remove_node_props(
+ svn_repos_parse_fns3_t * _obj, void *node_baton) {
+ return (_obj->remove_node_props)(node_baton);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_set_fulltext(
+ svn_repos_parse_fns3_t * _obj, svn_stream_t **stream, void *node_baton) {
+ return (_obj->set_fulltext)(stream, node_baton);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_apply_textdelta(
+ svn_repos_parse_fns3_t * _obj, svn_txdelta_window_handler_t *handler, void **handler_baton, void *node_baton) {
+ return (_obj->apply_textdelta)(handler, handler_baton, node_baton);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_close_node(
+ svn_repos_parse_fns3_t * _obj, void *node_baton) {
+ return (_obj->close_node)(node_baton);
+}
+
+static svn_error_t * svn_repos_parse_fns3_invoke_close_revision(
+ svn_repos_parse_fns3_t * _obj, void *revision_baton) {
+ return (_obj->close_revision)(revision_baton);
+}
+
static svn_error_t * svn_repos_parse_fns2_invoke_new_revision_record(
svn_repos_parse_fns2_t * _obj, void **revision_baton, apr_hash_t *headers, void *parse_baton, apr_pool_t *pool) {
return (_obj->new_revision_record)(revision_baton, headers, parse_baton, pool);
@@ -2069,6 +2204,11 @@ static void svn_repos_invoke_notify_func(
_obj(baton, notify, scratch_pool);
}
+static svn_error_t * svn_repos_invoke_freeze_func(
+ svn_repos_freeze_func_t _obj, void *baton, apr_pool_t *pool) {
+ return _obj(baton, pool);
+}
+
static svn_error_t * svn_repos_invoke_history_func(
svn_repos_history_func_t _obj, void *baton, const char *path, svn_revnum_t revision, apr_pool_t *pool) {
return _obj(baton, path, revision, pool);
@@ -2129,7 +2269,7 @@ XS(_wrap_svn_repos_version) {
XS(_wrap_svn_repos_notify_t_action_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
svn_repos_notify_action_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2143,9 +2283,9 @@ XS(_wrap_svn_repos_notify_t_action_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_action_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_action_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_action_set" "', argument " "2"" of type '" "svn_repos_notify_action_t""'");
@@ -2166,7 +2306,7 @@ XS(_wrap_svn_repos_notify_t_action_set) {
XS(_wrap_svn_repos_notify_t_action_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2178,9 +2318,9 @@ XS(_wrap_svn_repos_notify_t_action_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_action_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_action_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (svn_repos_notify_action_t) ((arg1)->action);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -2194,7 +2334,7 @@ XS(_wrap_svn_repos_notify_t_action_get) {
XS(_wrap_svn_repos_notify_t_revision_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2208,9 +2348,9 @@ XS(_wrap_svn_repos_notify_t_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_revision_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_revision_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -2231,7 +2371,7 @@ XS(_wrap_svn_repos_notify_t_revision_set) {
XS(_wrap_svn_repos_notify_t_revision_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2243,9 +2383,9 @@ XS(_wrap_svn_repos_notify_t_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_revision_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_revision_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (svn_revnum_t) ((arg1)->revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -2259,7 +2399,7 @@ XS(_wrap_svn_repos_notify_t_revision_get) {
XS(_wrap_svn_repos_notify_t_warning_str_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2274,9 +2414,9 @@ XS(_wrap_svn_repos_notify_t_warning_str_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_str_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_str_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_notify_t_warning_str_set" "', argument " "2"" of type '" "char const *""'");
@@ -2304,7 +2444,7 @@ XS(_wrap_svn_repos_notify_t_warning_str_set) {
XS(_wrap_svn_repos_notify_t_warning_str_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2316,9 +2456,9 @@ XS(_wrap_svn_repos_notify_t_warning_str_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_str_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_str_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (char *) ((arg1)->warning_str);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -2332,7 +2472,7 @@ XS(_wrap_svn_repos_notify_t_warning_str_get) {
XS(_wrap_svn_repos_notify_t_warning_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
svn_repos_notify_warning_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2346,9 +2486,9 @@ XS(_wrap_svn_repos_notify_t_warning_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_warning_set" "', argument " "2"" of type '" "svn_repos_notify_warning_t""'");
@@ -2369,7 +2509,7 @@ XS(_wrap_svn_repos_notify_t_warning_set) {
XS(_wrap_svn_repos_notify_t_warning_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2381,9 +2521,9 @@ XS(_wrap_svn_repos_notify_t_warning_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_warning_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (svn_repos_notify_warning_t) ((arg1)->warning);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -2397,7 +2537,7 @@ XS(_wrap_svn_repos_notify_t_warning_get) {
XS(_wrap_svn_repos_notify_t_shard_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
apr_int64_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2411,9 +2551,9 @@ XS(_wrap_svn_repos_notify_t_shard_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_shard_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_shard_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_shard_set" "', argument " "2"" of type '" "apr_int64_t""'");
@@ -2434,7 +2574,7 @@ XS(_wrap_svn_repos_notify_t_shard_set) {
XS(_wrap_svn_repos_notify_t_shard_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2446,9 +2586,9 @@ XS(_wrap_svn_repos_notify_t_shard_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_shard_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_shard_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = ((arg1)->shard);
{
char temp[256];
@@ -2467,7 +2607,7 @@ XS(_wrap_svn_repos_notify_t_shard_get) {
XS(_wrap_svn_repos_notify_t_new_revision_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2481,9 +2621,9 @@ XS(_wrap_svn_repos_notify_t_new_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_new_revision_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_new_revision_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_new_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -2504,7 +2644,7 @@ XS(_wrap_svn_repos_notify_t_new_revision_set) {
XS(_wrap_svn_repos_notify_t_new_revision_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2516,9 +2656,9 @@ XS(_wrap_svn_repos_notify_t_new_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_new_revision_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_new_revision_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (svn_revnum_t) ((arg1)->new_revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -2532,7 +2672,7 @@ XS(_wrap_svn_repos_notify_t_new_revision_get) {
XS(_wrap_svn_repos_notify_t_old_revision_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2546,9 +2686,9 @@ XS(_wrap_svn_repos_notify_t_old_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_old_revision_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_old_revision_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_old_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -2569,7 +2709,7 @@ XS(_wrap_svn_repos_notify_t_old_revision_set) {
XS(_wrap_svn_repos_notify_t_old_revision_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2581,9 +2721,9 @@ XS(_wrap_svn_repos_notify_t_old_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_old_revision_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_old_revision_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (svn_revnum_t) ((arg1)->old_revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -2597,7 +2737,7 @@ XS(_wrap_svn_repos_notify_t_old_revision_get) {
XS(_wrap_svn_repos_notify_t_node_action_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
enum svn_node_action arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2611,9 +2751,9 @@ XS(_wrap_svn_repos_notify_t_node_action_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_node_action_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_node_action_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_notify_t_node_action_set" "', argument " "2"" of type '" "enum svn_node_action""'");
@@ -2634,7 +2774,7 @@ XS(_wrap_svn_repos_notify_t_node_action_set) {
XS(_wrap_svn_repos_notify_t_node_action_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2646,9 +2786,9 @@ XS(_wrap_svn_repos_notify_t_node_action_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_node_action_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_node_action_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (enum svn_node_action) ((arg1)->node_action);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -2662,7 +2802,7 @@ XS(_wrap_svn_repos_notify_t_node_action_get) {
XS(_wrap_svn_repos_notify_t_path_set) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2677,9 +2817,9 @@ XS(_wrap_svn_repos_notify_t_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_path_set" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_path_set" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_notify_t_path_set" "', argument " "2"" of type '" "char const *""'");
@@ -2707,7 +2847,7 @@ XS(_wrap_svn_repos_notify_t_path_set) {
XS(_wrap_svn_repos_notify_t_path_get) {
{
- svn_repos_notify_t *arg1 = (svn_repos_notify_t *) 0 ;
+ struct svn_repos_notify_t *arg1 = (struct svn_repos_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2719,9 +2859,9 @@ XS(_wrap_svn_repos_notify_t_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_path_get" "', argument " "1"" of type '" "svn_repos_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_notify_t_path_get" "', argument " "1"" of type '" "struct svn_repos_notify_t *""'");
}
- arg1 = (svn_repos_notify_t *)(argp1);
+ arg1 = (struct svn_repos_notify_t *)(argp1);
result = (char *) ((arg1)->path);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -3409,6 +3549,113 @@ XS(_wrap_svn_repos_fs) {
}
+XS(_wrap_svn_repos_hotcopy2) {
+ {
+ char *arg1 = (char *) 0 ;
+ char *arg2 = (char *) 0 ;
+ svn_boolean_t arg3 ;
+ svn_boolean_t arg4 ;
+ svn_cancel_func_t arg5 = (svn_cancel_func_t) 0 ;
+ void *arg6 = (void *) 0 ;
+ apr_pool_t *arg7 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int res6 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 6) || (items > 7)) {
+ SWIG_croak("Usage: svn_repos_hotcopy2(src_path,dst_path,clean_logs,incremental,cancel_func,cancel_baton,pool);");
+ }
+ res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_hotcopy2" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_hotcopy2" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "svn_repos_hotcopy2" "', argument " "3"" of type '" "svn_boolean_t""'");
+ }
+ arg3 = (svn_boolean_t)(val3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_hotcopy2" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_hotcopy2" "', argument " "5"" of type '" "svn_cancel_func_t""'");
+ }
+ }
+ res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_repos_hotcopy2" "', argument " "6"" of type '" "void *""'");
+ }
+ if (items > 6) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_hotcopy2((char const *)arg1,(char const *)arg2,arg3,arg4,arg5,arg6,arg7);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_hotcopy) {
{
char *arg1 = (char *) 0 ;
@@ -4024,6 +4271,78 @@ XS(_wrap_svn_repos_recover) {
}
+XS(_wrap_svn_repos_freeze) {
+ {
+ apr_array_header_t *arg1 = (apr_array_header_t *) 0 ;
+ svn_repos_freeze_func_t arg2 = (svn_repos_freeze_func_t) 0 ;
+ void *arg3 = (void *) 0 ;
+ apr_pool_t *arg4 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ int res3 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_freeze(paths,freeze_func,freeze_baton,pool);");
+ }
+ {
+ arg1 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(0),
+ _global_pool);
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_freeze" "', argument " "2"" of type '" "svn_repos_freeze_func_t""'");
+ }
+ }
+ res3 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg3), 0, 0);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_freeze" "', argument " "3"" of type '" "void *""'");
+ }
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_freeze(arg1,arg2,arg3,arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_db_logfiles) {
{
apr_array_header_t **arg1 = (apr_array_header_t **) 0 ;
@@ -4832,6 +5151,250 @@ XS(_wrap_svn_repos_post_unlock_hook) {
}
+XS(_wrap_svn_repos_hooks_setenv) {
+ {
+ svn_repos_t *arg1 = (svn_repos_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ apr_pool_t *arg3 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 2) || (items > 3)) {
+ SWIG_croak("Usage: svn_repos_hooks_setenv(repos,hooks_env_path,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_hooks_setenv" "', argument " "1"" of type '" "svn_repos_t *""'");
+ }
+ arg1 = (svn_repos_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_hooks_setenv" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (items > 2) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_hooks_setenv(arg1,(char const *)arg2,arg3);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_begin_report3) {
+ {
+ void **arg1 = (void **) 0 ;
+ svn_revnum_t arg2 ;
+ svn_repos_t *arg3 = (svn_repos_t *) 0 ;
+ char *arg4 = (char *) 0 ;
+ char *arg5 = (char *) 0 ;
+ char *arg6 = (char *) 0 ;
+ svn_boolean_t arg7 ;
+ svn_depth_t arg8 ;
+ svn_boolean_t arg9 ;
+ svn_boolean_t arg10 ;
+ svn_delta_editor_t *arg11 = (svn_delta_editor_t *) 0 ;
+ void *arg12 = (void *) 0 ;
+ svn_repos_authz_func_t arg13 = (svn_repos_authz_func_t) 0 ;
+ void *arg14 = (void *) 0 ;
+ apr_size_t arg15 ;
+ apr_pool_t *arg16 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *temp1 ;
+ long val2 ;
+ int ecode2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ int res4 ;
+ char *buf4 = 0 ;
+ int alloc4 = 0 ;
+ int res5 ;
+ char *buf5 = 0 ;
+ int alloc5 = 0 ;
+ int res6 ;
+ char *buf6 = 0 ;
+ int alloc6 = 0 ;
+ int val7 ;
+ int ecode7 = 0 ;
+ int val8 ;
+ int ecode8 = 0 ;
+ int val9 ;
+ int ecode9 = 0 ;
+ int val10 ;
+ int ecode10 = 0 ;
+ unsigned long val15 ;
+ int ecode15 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg16 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 12) || (items > 13)) {
+ SWIG_croak("Usage: svn_repos_begin_report3(revnum,repos,fs_base,target,tgt_path,text_deltas,depth,ignore_ancestry,send_copyfrom_args,editor,edit_baton,authz_read_func,authz_read_baton,zero_copy_limit,pool);");
+ }
+ ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(0), &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_begin_report3" "', argument " "2"" of type '" "svn_revnum_t""'");
+ }
+ arg2 = (svn_revnum_t)(val2);
+ res3 = SWIG_ConvertPtr(ST(1), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_begin_report3" "', argument " "3"" of type '" "svn_repos_t *""'");
+ }
+ arg3 = (svn_repos_t *)(argp3);
+ res4 = SWIG_AsCharPtrAndSize(ST(2), &buf4, NULL, &alloc4);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_repos_begin_report3" "', argument " "4"" of type '" "char const *""'");
+ }
+ arg4 = (char *)(buf4);
+ res5 = SWIG_AsCharPtrAndSize(ST(3), &buf5, NULL, &alloc5);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_repos_begin_report3" "', argument " "5"" of type '" "char const *""'");
+ }
+ arg5 = (char *)(buf5);
+ res6 = SWIG_AsCharPtrAndSize(ST(4), &buf6, NULL, &alloc6);
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_repos_begin_report3" "', argument " "6"" of type '" "char const *""'");
+ }
+ arg6 = (char *)(buf6);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val7);
+ if (!SWIG_IsOK(ecode7)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_repos_begin_report3" "', argument " "7"" of type '" "svn_boolean_t""'");
+ }
+ arg7 = (svn_boolean_t)(val7);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(6), &val8);
+ if (!SWIG_IsOK(ecode8)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_repos_begin_report3" "', argument " "8"" of type '" "svn_depth_t""'");
+ }
+ arg8 = (svn_depth_t)(val8);
+ ecode9 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(7), &val9);
+ if (!SWIG_IsOK(ecode9)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "svn_repos_begin_report3" "', argument " "9"" of type '" "svn_boolean_t""'");
+ }
+ arg9 = (svn_boolean_t)(val9);
+ ecode10 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(8), &val10);
+ if (!SWIG_IsOK(ecode10)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "svn_repos_begin_report3" "', argument " "10"" of type '" "svn_boolean_t""'");
+ }
+ arg10 = (svn_boolean_t)(val10);
+ {
+ svn_delta_make_editor(&arg11, &arg12, ST(9), _global_pool);
+ }
+ {
+ if (SvOK(ST(10))) {
+ arg13 = svn_swig_pl_thunk_authz_func;
+ arg14 = ST(10);
+ } else {
+ arg13 = NULL;
+ arg14 = NULL;
+ }
+ }
+ ecode15 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(11), &val15);
+ if (!SWIG_IsOK(ecode15)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode15), "in method '" "svn_repos_begin_report3" "', argument " "15"" of type '" "apr_size_t""'");
+ }
+ arg15 = (apr_size_t)(val15);
+ if (items > 12) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_begin_report3(arg1,arg2,arg3,(char const *)arg4,(char const *)arg5,(char const *)arg6,arg7,arg8,arg9,arg10,(struct svn_delta_editor_t const *)arg11,arg12,arg13,arg14,arg15,arg16);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+ if (alloc6 == SWIG_NEWOBJ) free((char*)buf6);
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+ if (alloc6 == SWIG_NEWOBJ) free((char*)buf6);
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_begin_report2) {
{
void **arg1 = (void **) 0 ;
@@ -6470,9 +7033,6 @@ XS(_wrap_svn_repos_get_commit_editor5) {
int res6 ;
char *buf6 = 0 ;
int alloc6 = 0 ;
- void *argp7 = 0 ;
- int res7 = 0 ;
- int res9 ;
int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -6483,8 +7043,8 @@ XS(_wrap_svn_repos_get_commit_editor5) {
}
arg1 = &temp1;
arg2 = &temp2;
- if ((items < 9) || (items > 10)) {
- SWIG_croak("Usage: svn_repos_get_commit_editor5(repos,txn,repos_url,base_path,revprop_table,callback,callback_baton,authz_callback,authz_baton,pool);");
+ if ((items < 8) || (items > 9)) {
+ SWIG_croak("Usage: svn_repos_get_commit_editor5(repos,txn,repos_url,base_path,revprop_table,commit_callback,commit_baton,authz_callback,authz_baton,pool);");
}
res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
if (!SWIG_IsOK(res3)) {
@@ -6506,32 +7066,27 @@ XS(_wrap_svn_repos_get_commit_editor5) {
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_repos_get_commit_editor5" "', argument " "6"" of type '" "char const *""'");
}
arg6 = (char *)(buf6);
- res7 = SWIG_ConvertPtr(ST(4), &argp7,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_repos_get_commit_editor5" "', argument " "7"" of type '" "apr_hash_t *""'");
- }
- arg7 = (apr_hash_t *)(argp7);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg8), SWIGTYPE_p_f_p_q_const__svn_commit_info_t_p_void_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_commit_editor5" "', argument " "8"" of type '" "svn_commit_callback2_t""'");
- }
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg7 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
- res9 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_repos_get_commit_editor5" "', argument " "9"" of type '" "void *""'");
+ {
+ arg8 = svn_swig_pl_thunk_commit_callback2;
+ arg9 = (void *)ST(5);
+ svn_swig_pl_hold_ref_in_pool (_global_pool, ST(5));
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg10), SWIGTYPE_p_f_svn_repos_authz_access_t_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg10), SWIGTYPE_p_f_svn_repos_authz_access_t_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_commit_editor5" "', argument " "10"" of type '" "svn_repos_authz_callback_t""'");
}
}
- res11 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg11), 0, 0);
+ res11 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg11), 0, 0);
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_repos_get_commit_editor5" "', argument " "11"" of type '" "void *""'");
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -6572,8 +7127,6 @@ XS(_wrap_svn_repos_get_commit_editor5) {
-
-
XSRETURN(argvi);
fail:
@@ -6586,8 +7139,6 @@ XS(_wrap_svn_repos_get_commit_editor5) {
-
-
SWIG_croak_null();
}
}
@@ -6627,7 +7178,6 @@ XS(_wrap_svn_repos_get_commit_editor4) {
int res8 ;
char *buf8 = 0 ;
int alloc8 = 0 ;
- int res10 ;
int res12 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -6638,8 +7188,8 @@ XS(_wrap_svn_repos_get_commit_editor4) {
}
arg1 = &temp1;
arg2 = &temp2;
- if ((items < 10) || (items > 11)) {
- SWIG_croak("Usage: svn_repos_get_commit_editor4(repos,txn,repos_url,base_path,user,log_msg,callback,callback_baton,authz_callback,authz_baton,pool);");
+ if ((items < 9) || (items > 10)) {
+ SWIG_croak("Usage: svn_repos_get_commit_editor4(repos,txn,repos_url,base_path,user,log_msg,commit_callback,commit_baton,authz_callback,authz_baton,pool);");
}
res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
if (!SWIG_IsOK(res3)) {
@@ -6672,26 +7222,21 @@ XS(_wrap_svn_repos_get_commit_editor4) {
}
arg8 = (char *)(buf8);
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg9), SWIGTYPE_p_f_p_q_const__svn_commit_info_t_p_void_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_commit_editor4" "', argument " "9"" of type '" "svn_commit_callback2_t""'");
- }
- }
- res10 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_repos_get_commit_editor4" "', argument " "10"" of type '" "void *""'");
+ arg9 = svn_swig_pl_thunk_commit_callback2;
+ arg10 = (void *)ST(6);
+ svn_swig_pl_hold_ref_in_pool (_global_pool, ST(6));
}
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg11), SWIGTYPE_p_f_svn_repos_authz_access_t_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg11), SWIGTYPE_p_f_svn_repos_authz_access_t_p_svn_boolean_t_p_svn_fs_root_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_commit_editor4" "', argument " "11"" of type '" "svn_repos_authz_callback_t""'");
}
}
- res12 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg12), 0, 0);
+ res12 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg12), 0, 0);
if (!SWIG_IsOK(res12)) {
SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_repos_get_commit_editor4" "', argument " "12"" of type '" "void *""'");
}
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -6733,8 +7278,6 @@ XS(_wrap_svn_repos_get_commit_editor4) {
-
-
XSRETURN(argvi);
fail:
@@ -6748,8 +7291,6 @@ XS(_wrap_svn_repos_get_commit_editor4) {
-
-
SWIG_croak_null();
}
}
@@ -8023,7 +8564,6 @@ XS(_wrap_svn_repos_get_logs4) {
int ecode7 = 0 ;
int val8 ;
int ecode8 = 0 ;
- int res13 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
@@ -8031,7 +8571,7 @@ XS(_wrap_svn_repos_get_logs4) {
{
_global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
}
- if ((items < 12) || (items > 13)) {
+ if ((items < 11) || (items > 12)) {
SWIG_croak("Usage: svn_repos_get_logs4(repos,paths,start,end,limit,discover_changed_paths,strict_node_history,include_merged_revisions,revprops,authz_read_func,authz_read_baton,receiver,receiver_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_t, 0 | 0 );
@@ -8074,8 +8614,8 @@ XS(_wrap_svn_repos_get_logs4) {
}
arg8 = (svn_boolean_t)(val8);
{
- arg9 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(8),
- _global_pool);
+ arg9 = SvOK(ST(8)) ? (apr_array_header_t *) svn_swig_pl_strings_to_array(
+ ST(8), _global_pool) : NULL;
}
{
if (SvOK(ST(9))) {
@@ -8087,16 +8627,10 @@ XS(_wrap_svn_repos_get_logs4) {
}
}
{
- int res = SWIG_ConvertFunctionPtr(ST(10), (void**)(&arg12), SWIGTYPE_p_f_p_void_p_svn_log_entry_t_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_logs4" "', argument " "12"" of type '" "svn_log_entry_receiver_t""'");
- }
- }
- res13 = SWIG_ConvertPtr(ST(11),SWIG_as_voidptrptr(&arg13), 0, 0);
- if (!SWIG_IsOK(res13)) {
- SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_repos_get_logs4" "', argument " "13"" of type '" "void *""'");
+ arg12 = svn_swig_pl_thunk_log_entry_receiver;
+ arg13 = ST(10);
}
- if (items > 12) {
+ if (items > 11) {
}
{
@@ -8131,8 +8665,6 @@ XS(_wrap_svn_repos_get_logs4) {
-
-
XSRETURN(argvi);
fail:
@@ -8145,8 +8677,6 @@ XS(_wrap_svn_repos_get_logs4) {
-
-
SWIG_croak_null();
}
}
@@ -8234,7 +8764,7 @@ XS(_wrap_svn_repos_get_logs3) {
}
{
arg10 = svn_swig_pl_thunk_log_receiver;
- arg11 = (void *)ST(8);
+ arg11 = ST(8);
}
if (items > 9) {
@@ -8358,7 +8888,7 @@ XS(_wrap_svn_repos_get_logs2) {
}
{
arg9 = svn_swig_pl_thunk_log_receiver;
- arg10 = (void *)ST(7);
+ arg10 = ST(7);
}
if (items > 8) {
@@ -8469,7 +8999,7 @@ XS(_wrap_svn_repos_get_logs) {
arg6 = (svn_boolean_t)(val6);
{
arg7 = svn_swig_pl_thunk_log_receiver;
- arg8 = (void *)ST(6);
+ arg8 = ST(6);
}
if (items > 7) {
@@ -8986,8 +9516,6 @@ XS(_wrap_svn_repos_fs_begin_txn_for_commit2) {
int res2 = 0 ;
long val3 ;
int ecode3 = 0 ;
- void *argp4 = 0 ;
- int res4 = 0 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
@@ -9009,11 +9537,11 @@ XS(_wrap_svn_repos_fs_begin_txn_for_commit2) {
SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "svn_repos_fs_begin_txn_for_commit2" "', argument " "3"" of type '" "svn_revnum_t""'");
}
arg3 = (svn_revnum_t)(val3);
- res4 = SWIG_ConvertPtr(ST(2), &argp4,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_repos_fs_begin_txn_for_commit2" "', argument " "4"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg4 = svn_swig_pl_hash_to_prophash(ST(2), _global_pool);
}
- arg4 = (apr_hash_t *)(argp4);
if (items > 3) {
}
@@ -10597,7 +11125,7 @@ XS(_wrap_svn_repos_fs_change_txn_props) {
XS(_wrap_svn_repos_node_t_kind_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10611,9 +11139,9 @@ XS(_wrap_svn_repos_node_t_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_kind_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_kind_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_node_t_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -10634,7 +11162,7 @@ XS(_wrap_svn_repos_node_t_kind_set) {
XS(_wrap_svn_repos_node_t_kind_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10646,9 +11174,9 @@ XS(_wrap_svn_repos_node_t_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_kind_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_kind_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -10662,7 +11190,7 @@ XS(_wrap_svn_repos_node_t_kind_get) {
XS(_wrap_svn_repos_node_t_action_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
char arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10676,9 +11204,9 @@ XS(_wrap_svn_repos_node_t_action_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_action_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_action_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
ecode2 = SWIG_AsVal_char SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_node_t_action_set" "', argument " "2"" of type '" "char""'");
@@ -10699,7 +11227,7 @@ XS(_wrap_svn_repos_node_t_action_set) {
XS(_wrap_svn_repos_node_t_action_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10711,9 +11239,9 @@ XS(_wrap_svn_repos_node_t_action_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_action_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_action_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (char) ((arg1)->action);
ST(argvi) = SWIG_From_char SWIG_PERL_CALL_ARGS_1((char)(result)); argvi++ ;
@@ -10727,7 +11255,7 @@ XS(_wrap_svn_repos_node_t_action_get) {
XS(_wrap_svn_repos_node_t_text_mod_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10741,9 +11269,9 @@ XS(_wrap_svn_repos_node_t_text_mod_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_text_mod_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_text_mod_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_node_t_text_mod_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -10764,7 +11292,7 @@ XS(_wrap_svn_repos_node_t_text_mod_set) {
XS(_wrap_svn_repos_node_t_text_mod_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10776,9 +11304,9 @@ XS(_wrap_svn_repos_node_t_text_mod_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_text_mod_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_text_mod_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (svn_boolean_t) ((arg1)->text_mod);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -10792,7 +11320,7 @@ XS(_wrap_svn_repos_node_t_text_mod_get) {
XS(_wrap_svn_repos_node_t_prop_mod_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10806,9 +11334,9 @@ XS(_wrap_svn_repos_node_t_prop_mod_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_prop_mod_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_prop_mod_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_node_t_prop_mod_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -10829,7 +11357,7 @@ XS(_wrap_svn_repos_node_t_prop_mod_set) {
XS(_wrap_svn_repos_node_t_prop_mod_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10841,9 +11369,9 @@ XS(_wrap_svn_repos_node_t_prop_mod_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_prop_mod_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_prop_mod_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (svn_boolean_t) ((arg1)->prop_mod);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -10857,7 +11385,7 @@ XS(_wrap_svn_repos_node_t_prop_mod_get) {
XS(_wrap_svn_repos_node_t_name_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10872,9 +11400,9 @@ XS(_wrap_svn_repos_node_t_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_name_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_name_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_node_t_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -10902,7 +11430,7 @@ XS(_wrap_svn_repos_node_t_name_set) {
XS(_wrap_svn_repos_node_t_name_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10914,9 +11442,9 @@ XS(_wrap_svn_repos_node_t_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_name_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_name_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (char *) ((arg1)->name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -10930,7 +11458,7 @@ XS(_wrap_svn_repos_node_t_name_get) {
XS(_wrap_svn_repos_node_t_copyfrom_rev_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10944,9 +11472,9 @@ XS(_wrap_svn_repos_node_t_copyfrom_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_rev_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_rev_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_node_t_copyfrom_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -10967,7 +11495,7 @@ XS(_wrap_svn_repos_node_t_copyfrom_rev_set) {
XS(_wrap_svn_repos_node_t_copyfrom_rev_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10979,9 +11507,9 @@ XS(_wrap_svn_repos_node_t_copyfrom_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_rev_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_rev_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (svn_revnum_t) ((arg1)->copyfrom_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -10995,7 +11523,7 @@ XS(_wrap_svn_repos_node_t_copyfrom_rev_get) {
XS(_wrap_svn_repos_node_t_copyfrom_path_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11010,9 +11538,9 @@ XS(_wrap_svn_repos_node_t_copyfrom_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_path_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_path_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_node_t_copyfrom_path_set" "', argument " "2"" of type '" "char const *""'");
@@ -11038,7 +11566,7 @@ XS(_wrap_svn_repos_node_t_copyfrom_path_set) {
XS(_wrap_svn_repos_node_t_copyfrom_path_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11050,9 +11578,9 @@ XS(_wrap_svn_repos_node_t_copyfrom_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_path_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_copyfrom_path_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (char *) ((arg1)->copyfrom_path);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -11066,7 +11594,7 @@ XS(_wrap_svn_repos_node_t_copyfrom_path_get) {
XS(_wrap_svn_repos_node_t_sibling_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
struct svn_repos_node_t *arg2 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11080,9 +11608,9 @@ XS(_wrap_svn_repos_node_t_sibling_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_sibling_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_sibling_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_repos_node_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_node_t_sibling_set" "', argument " "2"" of type '" "struct svn_repos_node_t *""'");
@@ -11103,7 +11631,7 @@ XS(_wrap_svn_repos_node_t_sibling_set) {
XS(_wrap_svn_repos_node_t_sibling_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11115,9 +11643,9 @@ XS(_wrap_svn_repos_node_t_sibling_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_sibling_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_sibling_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (struct svn_repos_node_t *) ((arg1)->sibling);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_repos_node_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -11131,7 +11659,7 @@ XS(_wrap_svn_repos_node_t_sibling_get) {
XS(_wrap_svn_repos_node_t_child_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
struct svn_repos_node_t *arg2 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11145,9 +11673,9 @@ XS(_wrap_svn_repos_node_t_child_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_child_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_child_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_repos_node_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_node_t_child_set" "', argument " "2"" of type '" "struct svn_repos_node_t *""'");
@@ -11168,7 +11696,7 @@ XS(_wrap_svn_repos_node_t_child_set) {
XS(_wrap_svn_repos_node_t_child_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11180,9 +11708,9 @@ XS(_wrap_svn_repos_node_t_child_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_child_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_child_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (struct svn_repos_node_t *) ((arg1)->child);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_repos_node_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -11196,7 +11724,7 @@ XS(_wrap_svn_repos_node_t_child_get) {
XS(_wrap_svn_repos_node_t_parent_set) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
struct svn_repos_node_t *arg2 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11210,9 +11738,9 @@ XS(_wrap_svn_repos_node_t_parent_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_parent_set" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_parent_set" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_repos_node_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_node_t_parent_set" "', argument " "2"" of type '" "struct svn_repos_node_t *""'");
@@ -11233,7 +11761,7 @@ XS(_wrap_svn_repos_node_t_parent_set) {
XS(_wrap_svn_repos_node_t_parent_get) {
{
- svn_repos_node_t *arg1 = (svn_repos_node_t *) 0 ;
+ struct svn_repos_node_t *arg1 = (struct svn_repos_node_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11245,9 +11773,9 @@ XS(_wrap_svn_repos_node_t_parent_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_node_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_parent_get" "', argument " "1"" of type '" "svn_repos_node_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_node_t_parent_get" "', argument " "1"" of type '" "struct svn_repos_node_t *""'");
}
- arg1 = (svn_repos_node_t *)(argp1);
+ arg1 = (struct svn_repos_node_t *)(argp1);
result = (struct svn_repos_node_t *) ((arg1)->parent);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_repos_node_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -11988,6 +12516,175 @@ XS(_wrap_svn_repos_dump_fs) {
}
+XS(_wrap_svn_repos_load_fs4) {
+ {
+ svn_repos_t *arg1 = (svn_repos_t *) 0 ;
+ svn_stream_t *arg2 = (svn_stream_t *) 0 ;
+ svn_revnum_t arg3 ;
+ svn_revnum_t arg4 ;
+ enum svn_repos_load_uuid arg5 ;
+ char *arg6 = (char *) 0 ;
+ svn_boolean_t arg7 ;
+ svn_boolean_t arg8 ;
+ svn_boolean_t arg9 ;
+ svn_repos_notify_func_t arg10 = (svn_repos_notify_func_t) 0 ;
+ void *arg11 = (void *) 0 ;
+ svn_cancel_func_t arg12 = (svn_cancel_func_t) 0 ;
+ void *arg13 = (void *) 0 ;
+ apr_pool_t *arg14 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ long val3 ;
+ int ecode3 = 0 ;
+ long val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ int res6 ;
+ char *buf6 = 0 ;
+ int alloc6 = 0 ;
+ int val7 ;
+ int ecode7 = 0 ;
+ int val8 ;
+ int ecode8 = 0 ;
+ int val9 ;
+ int ecode9 = 0 ;
+ int res11 ;
+ int res13 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 13) || (items > 14)) {
+ SWIG_croak("Usage: svn_repos_load_fs4(repos,dumpstream,start_rev,end_rev,uuid_action,parent_dir,use_pre_commit_hook,use_post_commit_hook,validate_props,notify_func,notify_baton,cancel_func,cancel_baton,pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_load_fs4" "', argument " "1"" of type '" "svn_repos_t *""'");
+ }
+ arg1 = (svn_repos_t *)(argp1);
+ {
+ svn_swig_pl_make_stream (&arg2, ST(1));
+ }
+ ecode3 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(2), &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "svn_repos_load_fs4" "', argument " "3"" of type '" "svn_revnum_t""'");
+ }
+ arg3 = (svn_revnum_t)(val3);
+ ecode4 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_load_fs4" "', argument " "4"" of type '" "svn_revnum_t""'");
+ }
+ arg4 = (svn_revnum_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_repos_load_fs4" "', argument " "5"" of type '" "enum svn_repos_load_uuid""'");
+ }
+ arg5 = (enum svn_repos_load_uuid)(val5);
+ res6 = SWIG_AsCharPtrAndSize(ST(5), &buf6, NULL, &alloc6);
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_repos_load_fs4" "', argument " "6"" of type '" "char const *""'");
+ }
+ arg6 = (char *)(buf6);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(6), &val7);
+ if (!SWIG_IsOK(ecode7)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_repos_load_fs4" "', argument " "7"" of type '" "svn_boolean_t""'");
+ }
+ arg7 = (svn_boolean_t)(val7);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(7), &val8);
+ if (!SWIG_IsOK(ecode8)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_repos_load_fs4" "', argument " "8"" of type '" "svn_boolean_t""'");
+ }
+ arg8 = (svn_boolean_t)(val8);
+ ecode9 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(8), &val9);
+ if (!SWIG_IsOK(ecode9)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "svn_repos_load_fs4" "', argument " "9"" of type '" "svn_boolean_t""'");
+ }
+ arg9 = (svn_boolean_t)(val9);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_repos_notify_t_p_apr_pool_t__void);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_load_fs4" "', argument " "10"" of type '" "svn_repos_notify_func_t""'");
+ }
+ }
+ res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
+ if (!SWIG_IsOK(res11)) {
+ SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_repos_load_fs4" "', argument " "11"" of type '" "void *""'");
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(11), (void**)(&arg12), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_load_fs4" "', argument " "12"" of type '" "svn_cancel_func_t""'");
+ }
+ }
+ res13 = SWIG_ConvertPtr(ST(12),SWIG_as_voidptrptr(&arg13), 0, 0);
+ if (!SWIG_IsOK(res13)) {
+ SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_repos_load_fs4" "', argument " "13"" of type '" "void *""'");
+ }
+ if (items > 13) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_load_fs4(arg1,arg2,arg3,arg4,arg5,(char const *)arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+
+
+
+ if (alloc6 == SWIG_NEWOBJ) free((char*)buf6);
+
+
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+ if (alloc6 == SWIG_NEWOBJ) free((char*)buf6);
+
+
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_load_fs3) {
{
svn_repos_t *arg1 = (svn_repos_t *) 0 ;
@@ -12373,30 +13070,30 @@ XS(_wrap_svn_repos_load_fs) {
}
-XS(_wrap_svn_repos_parse_fns2_t_new_revision_record_set) {
+XS(_wrap_svn_repos_parse_fns3_t_magic_header_record_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
- svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
+ svn_error_t *(*arg2)(int,void *,apr_pool_t *) = (svn_error_t *(*)(int,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_new_revision_record_set(self,new_revision_record);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_magic_header_record_set(self,magic_header_record);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_revision_record_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_magic_header_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
- int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_int_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_new_revision_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_magic_header_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(int,void *,apr_pool_t *)""'");
}
}
- if (arg1) (arg1)->new_revision_record = arg2;
+ if (arg1) (arg1)->magic_header_record = arg2;
ST(argvi) = sv_newmortal();
@@ -12409,25 +13106,25 @@ XS(_wrap_svn_repos_parse_fns2_t_new_revision_record_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_new_revision_record_get) {
+XS(_wrap_svn_repos_parse_fns3_t_magic_header_record_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
- svn_error_t *(*result)(void **,apr_hash_t *,void *,apr_pool_t *) = 0 ;
+ svn_error_t *(*result)(int,void *,apr_pool_t *) = 0 ;
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_new_revision_record_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_magic_header_record_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_revision_record_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_magic_header_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
- result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_revision_record);
- ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
+ result = (svn_error_t *(*)(int,void *,apr_pool_t *)) ((arg1)->magic_header_record);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_int_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
XSRETURN(argvi);
fail:
@@ -12437,9 +13134,9 @@ XS(_wrap_svn_repos_parse_fns2_t_new_revision_record_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_uuid_record_set) {
+XS(_wrap_svn_repos_parse_fns3_t_uuid_record_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(char const *,void *,apr_pool_t *) = (svn_error_t *(*)(char const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12447,17 +13144,17 @@ XS(_wrap_svn_repos_parse_fns2_t_uuid_record_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_uuid_record_set(self,uuid_record);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_uuid_record_set(self,uuid_record);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_uuid_record_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_uuid_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_uuid_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(char const *,void *,apr_pool_t *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_uuid_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(char const *,void *,apr_pool_t *)""'");
}
}
if (arg1) (arg1)->uuid_record = arg2;
@@ -12473,9 +13170,9 @@ XS(_wrap_svn_repos_parse_fns2_t_uuid_record_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_uuid_record_get) {
+XS(_wrap_svn_repos_parse_fns3_t_uuid_record_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12483,13 +13180,13 @@ XS(_wrap_svn_repos_parse_fns2_t_uuid_record_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_uuid_record_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_uuid_record_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_uuid_record_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_uuid_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(char const *,void *,apr_pool_t *)) ((arg1)->uuid_record);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -12501,9 +13198,9 @@ XS(_wrap_svn_repos_parse_fns2_t_uuid_record_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_new_node_record_set) {
+XS(_wrap_svn_repos_parse_fns3_t_new_revision_record_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12511,17 +13208,81 @@ XS(_wrap_svn_repos_parse_fns2_t_new_node_record_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_new_node_record_set(self,new_node_record);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_new_revision_record_set(self,new_revision_record);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_node_record_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_new_revision_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_new_node_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_new_revision_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)""'");
+ }
+ }
+ if (arg1) (arg1)->new_revision_record = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_t_new_revision_record_get) {
+ {
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void **,apr_hash_t *,void *,apr_pool_t *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_new_revision_record_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_new_revision_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
+ result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_revision_record);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_t_new_node_record_set) {
+ {
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
+ svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_new_node_record_set(self,new_node_record);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_new_node_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_new_node_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)""'");
}
}
if (arg1) (arg1)->new_node_record = arg2;
@@ -12537,9 +13298,9 @@ XS(_wrap_svn_repos_parse_fns2_t_new_node_record_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_new_node_record_get) {
+XS(_wrap_svn_repos_parse_fns3_t_new_node_record_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12547,13 +13308,13 @@ XS(_wrap_svn_repos_parse_fns2_t_new_node_record_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_new_node_record_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_new_node_record_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_node_record_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_new_node_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_node_record);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -12565,9 +13326,9 @@ XS(_wrap_svn_repos_parse_fns2_t_new_node_record_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_set) {
+XS(_wrap_svn_repos_parse_fns3_t_set_revision_property_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_string_t const *) = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12575,17 +13336,17 @@ XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_set_revision_property_set(self,set_revision_property);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_set_revision_property_set(self,set_revision_property);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_revision_property_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_set_revision_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_set_revision_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *,svn_string_t const *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_set_revision_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *,svn_string_t const *)""'");
}
}
if (arg1) (arg1)->set_revision_property = arg2;
@@ -12601,9 +13362,9 @@ XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_get) {
+XS(_wrap_svn_repos_parse_fns3_t_set_revision_property_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12611,13 +13372,13 @@ XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_set_revision_property_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_set_revision_property_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_revision_property_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_set_revision_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) ((arg1)->set_revision_property);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t); argvi++ ;
@@ -12629,9 +13390,9 @@ XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_set_node_property_set) {
+XS(_wrap_svn_repos_parse_fns3_t_set_node_property_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_string_t const *) = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12639,17 +13400,17 @@ XS(_wrap_svn_repos_parse_fns2_t_set_node_property_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_set_node_property_set(self,set_node_property);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_set_node_property_set(self,set_node_property);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_node_property_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_set_node_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_set_node_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *,svn_string_t const *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_set_node_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *,svn_string_t const *)""'");
}
}
if (arg1) (arg1)->set_node_property = arg2;
@@ -12665,9 +13426,9 @@ XS(_wrap_svn_repos_parse_fns2_t_set_node_property_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_set_node_property_get) {
+XS(_wrap_svn_repos_parse_fns3_t_set_node_property_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12675,13 +13436,13 @@ XS(_wrap_svn_repos_parse_fns2_t_set_node_property_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_set_node_property_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_set_node_property_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_node_property_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_set_node_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) ((arg1)->set_node_property);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t); argvi++ ;
@@ -12693,9 +13454,9 @@ XS(_wrap_svn_repos_parse_fns2_t_set_node_property_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_set) {
+XS(_wrap_svn_repos_parse_fns3_t_delete_node_property_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *) = (svn_error_t *(*)(void *,char const *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12703,17 +13464,17 @@ XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_delete_node_property_set(self,delete_node_property);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_delete_node_property_set(self,delete_node_property);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_delete_node_property_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_delete_node_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_delete_node_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_delete_node_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *)""'");
}
}
if (arg1) (arg1)->delete_node_property = arg2;
@@ -12729,9 +13490,9 @@ XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_get) {
+XS(_wrap_svn_repos_parse_fns3_t_delete_node_property_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12739,13 +13500,13 @@ XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_delete_node_property_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_delete_node_property_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_delete_node_property_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_delete_node_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *)) ((arg1)->delete_node_property);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char__p_svn_error_t); argvi++ ;
@@ -12757,9 +13518,9 @@ XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_set) {
+XS(_wrap_svn_repos_parse_fns3_t_remove_node_props_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12767,17 +13528,17 @@ XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_remove_node_props_set(self,remove_node_props);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_remove_node_props_set(self,remove_node_props);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_remove_node_props_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_remove_node_props_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_remove_node_props_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_remove_node_props_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
}
}
if (arg1) (arg1)->remove_node_props = arg2;
@@ -12793,9 +13554,9 @@ XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_get) {
+XS(_wrap_svn_repos_parse_fns3_t_remove_node_props_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12803,13 +13564,13 @@ XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_remove_node_props_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_remove_node_props_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_remove_node_props_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_remove_node_props_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void *)) ((arg1)->remove_node_props);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -12821,9 +13582,9 @@ XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_set) {
+XS(_wrap_svn_repos_parse_fns3_t_set_fulltext_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(svn_stream_t **,void *) = (svn_error_t *(*)(svn_stream_t **,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12831,17 +13592,17 @@ XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_set_fulltext_set(self,set_fulltext);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_set_fulltext_set(self,set_fulltext);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_fulltext_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_set_fulltext_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_set_fulltext_set" "', argument " "2"" of type '" "svn_error_t *(*)(svn_stream_t **,void *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_set_fulltext_set" "', argument " "2"" of type '" "svn_error_t *(*)(svn_stream_t **,void *)""'");
}
}
if (arg1) (arg1)->set_fulltext = arg2;
@@ -12857,9 +13618,9 @@ XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_get) {
+XS(_wrap_svn_repos_parse_fns3_t_set_fulltext_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12867,13 +13628,13 @@ XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_set_fulltext_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_set_fulltext_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_fulltext_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_set_fulltext_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(svn_stream_t **,void *)) ((arg1)->set_fulltext);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t); argvi++ ;
@@ -12885,9 +13646,9 @@ XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_set) {
+XS(_wrap_svn_repos_parse_fns3_t_apply_textdelta_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(svn_txdelta_window_handler_t *,void **,void *) = (svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12895,17 +13656,17 @@ XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_apply_textdelta_set(self,apply_textdelta);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_apply_textdelta_set(self,apply_textdelta);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_apply_textdelta_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_apply_textdelta_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_txdelta_window_handler_t_p_p_void_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_apply_textdelta_set" "', argument " "2"" of type '" "svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_apply_textdelta_set" "', argument " "2"" of type '" "svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)""'");
}
}
if (arg1) (arg1)->apply_textdelta = arg2;
@@ -12921,9 +13682,9 @@ XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_get) {
+XS(_wrap_svn_repos_parse_fns3_t_apply_textdelta_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12931,13 +13692,13 @@ XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_apply_textdelta_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_apply_textdelta_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_apply_textdelta_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_apply_textdelta_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)) ((arg1)->apply_textdelta);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_txdelta_window_handler_t_p_p_void_p_void__p_svn_error_t); argvi++ ;
@@ -12949,9 +13710,9 @@ XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_close_node_set) {
+XS(_wrap_svn_repos_parse_fns3_t_close_node_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12959,17 +13720,17 @@ XS(_wrap_svn_repos_parse_fns2_t_close_node_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_close_node_set(self,close_node);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_close_node_set(self,close_node);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_node_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_close_node_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_close_node_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_close_node_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
}
}
if (arg1) (arg1)->close_node = arg2;
@@ -12985,9 +13746,9 @@ XS(_wrap_svn_repos_parse_fns2_t_close_node_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_close_node_get) {
+XS(_wrap_svn_repos_parse_fns3_t_close_node_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12995,13 +13756,13 @@ XS(_wrap_svn_repos_parse_fns2_t_close_node_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_close_node_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_close_node_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_node_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_close_node_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void *)) ((arg1)->close_node);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -13013,9 +13774,9 @@ XS(_wrap_svn_repos_parse_fns2_t_close_node_get) {
}
-XS(_wrap_svn_repos_parse_fns2_t_close_revision_set) {
+XS(_wrap_svn_repos_parse_fns3_t_close_revision_set) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13023,17 +13784,17 @@ XS(_wrap_svn_repos_parse_fns2_t_close_revision_set) {
dXSARGS;
if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_close_revision_set(self,close_revision);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_close_revision_set(self,close_revision);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_revision_set" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_close_revision_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_close_revision_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns3_t_close_revision_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
}
}
if (arg1) (arg1)->close_revision = arg2;
@@ -13049,9 +13810,9 @@ XS(_wrap_svn_repos_parse_fns2_t_close_revision_set) {
}
-XS(_wrap_svn_repos_parse_fns2_t_close_revision_get) {
+XS(_wrap_svn_repos_parse_fns3_t_close_revision_get) {
{
- svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
+ struct svn_repos_parse_fns3_t *arg1 = (struct svn_repos_parse_fns3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13059,13 +13820,13 @@ XS(_wrap_svn_repos_parse_fns2_t_close_revision_get) {
dXSARGS;
if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_repos_parse_fns2_t_close_revision_get(self);");
+ SWIG_croak("Usage: svn_repos_parse_fns3_t_close_revision_get(self);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_revision_get" "', argument " "1"" of type '" "svn_repos_parse_fns2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_t_close_revision_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns3_t *""'");
}
- arg1 = (svn_repos_parse_fns2_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns3_t *)(argp1);
result = (svn_error_t *(*)(void *)) ((arg1)->close_revision);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -13077,56 +13838,64 @@ XS(_wrap_svn_repos_parse_fns2_t_close_revision_get) {
}
-XS(_wrap_svn_repos_parse_dumpstream2) {
+XS(_wrap_svn_repos_parse_dumpstream3) {
{
svn_stream_t *arg1 = (svn_stream_t *) 0 ;
- svn_repos_parse_fns2_t *arg2 = (svn_repos_parse_fns2_t *) 0 ;
+ svn_repos_parse_fns3_t *arg2 = (svn_repos_parse_fns3_t *) 0 ;
void *arg3 = (void *) 0 ;
- svn_cancel_func_t arg4 = (svn_cancel_func_t) 0 ;
- void *arg5 = (void *) 0 ;
- apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ svn_boolean_t arg4 ;
+ svn_cancel_func_t arg5 = (svn_cancel_func_t) 0 ;
+ void *arg6 = (void *) 0 ;
+ apr_pool_t *arg7 = (apr_pool_t *) 0 ;
apr_pool_t *_global_pool ;
void *argp2 = 0 ;
int res2 = 0 ;
int res3 ;
- int res5 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
- _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ _global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
}
- if ((items < 5) || (items > 6)) {
- SWIG_croak("Usage: svn_repos_parse_dumpstream2(stream,parse_fns,parse_baton,cancel_func,cancel_baton,pool);");
+ if ((items < 6) || (items > 7)) {
+ SWIG_croak("Usage: svn_repos_parse_dumpstream3(stream,parse_fns,parse_baton,deltas_are_text,cancel_func,cancel_baton,pool);");
}
{
svn_swig_pl_make_stream (&arg1, ST(0));
}
- res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_dumpstream2" "', argument " "2"" of type '" "svn_repos_parse_fns2_t const *""'");
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_dumpstream3" "', argument " "2"" of type '" "svn_repos_parse_fns3_t const *""'");
}
- arg2 = (svn_repos_parse_fns2_t *)(argp2);
+ arg2 = (svn_repos_parse_fns3_t *)(argp2);
res3 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg3), 0, 0);
if (!SWIG_IsOK(res3)) {
- SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_dumpstream2" "', argument " "3"" of type '" "void *""'");
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_dumpstream3" "', argument " "3"" of type '" "void *""'");
}
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_parse_dumpstream3" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_dumpstream2" "', argument " "4"" of type '" "svn_cancel_func_t""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_dumpstream3" "', argument " "5"" of type '" "svn_cancel_func_t""'");
}
}
- res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_repos_parse_dumpstream2" "', argument " "5"" of type '" "void *""'");
+ res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_repos_parse_dumpstream3" "', argument " "6"" of type '" "void *""'");
}
- if (items > 5) {
+ if (items > 6) {
}
{
- result = (svn_error_t *)svn_repos_parse_dumpstream2(arg1,(struct svn_repos_parse_fns2_t const *)arg2,arg3,arg4,arg5,arg6);
+ result = (svn_error_t *)svn_repos_parse_dumpstream3(arg1,(struct svn_repos_parse_fns3_t const *)arg2,arg3,arg4,arg5,arg6,arg7);
@@ -13153,6 +13922,7 @@ XS(_wrap_svn_repos_parse_dumpstream2) {
+
XSRETURN(argvi);
fail:
@@ -13161,90 +13931,107 @@ XS(_wrap_svn_repos_parse_dumpstream2) {
+
SWIG_croak_null();
}
}
-XS(_wrap_svn_repos_get_fs_build_parser3) {
+XS(_wrap_svn_repos_get_fs_build_parser4) {
{
- svn_repos_parse_fns2_t **arg1 = (svn_repos_parse_fns2_t **) 0 ;
+ svn_repos_parse_fns3_t **arg1 = (svn_repos_parse_fns3_t **) 0 ;
void **arg2 = (void **) 0 ;
svn_repos_t *arg3 = (svn_repos_t *) 0 ;
- svn_boolean_t arg4 ;
- svn_boolean_t arg5 ;
- enum svn_repos_load_uuid arg6 ;
- char *arg7 = (char *) 0 ;
- svn_repos_notify_func_t arg8 = (svn_repos_notify_func_t) 0 ;
- void *arg9 = (void *) 0 ;
- apr_pool_t *arg10 = (apr_pool_t *) 0 ;
+ svn_revnum_t arg4 ;
+ svn_revnum_t arg5 ;
+ svn_boolean_t arg6 ;
+ svn_boolean_t arg7 ;
+ enum svn_repos_load_uuid arg8 ;
+ char *arg9 = (char *) 0 ;
+ svn_repos_notify_func_t arg10 = (svn_repos_notify_func_t) 0 ;
+ void *arg11 = (void *) 0 ;
+ apr_pool_t *arg12 = (apr_pool_t *) 0 ;
apr_pool_t *_global_pool ;
- svn_repos_parse_fns2_t *temp1 ;
+ svn_repos_parse_fns3_t *temp1 ;
void *temp2 ;
void *argp3 = 0 ;
int res3 = 0 ;
- int val4 ;
+ long val4 ;
int ecode4 = 0 ;
- int val5 ;
+ long val5 ;
int ecode5 = 0 ;
int val6 ;
int ecode6 = 0 ;
- int res7 ;
- char *buf7 = 0 ;
- int alloc7 = 0 ;
+ int val7 ;
+ int ecode7 = 0 ;
+ int val8 ;
+ int ecode8 = 0 ;
int res9 ;
+ char *buf9 = 0 ;
+ int alloc9 = 0 ;
+ int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
- _global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ _global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
}
arg1 = &temp1;
arg2 = &temp2;
- if ((items < 7) || (items > 8)) {
- SWIG_croak("Usage: svn_repos_get_fs_build_parser3(repos,use_history,validate_props,uuid_action,parent_dir,notify_func,notify_baton,pool);");
+ if ((items < 9) || (items > 10)) {
+ SWIG_croak("Usage: svn_repos_get_fs_build_parser4(repos,start_rev,end_rev,use_history,validate_props,uuid_action,parent_dir,notify_func,notify_baton,pool);");
}
res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
if (!SWIG_IsOK(res3)) {
- SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "3"" of type '" "svn_repos_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "3"" of type '" "svn_repos_t *""'");
}
arg3 = (svn_repos_t *)(argp3);
- ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
+ ecode4 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
if (!SWIG_IsOK(ecode4)) {
- SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "4"" of type '" "svn_boolean_t""'");
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "4"" of type '" "svn_revnum_t""'");
}
- arg4 = (svn_boolean_t)(val4);
- ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val5);
+ arg4 = (svn_revnum_t)(val4);
+ ecode5 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(2), &val5);
if (!SWIG_IsOK(ecode5)) {
- SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "5"" of type '" "svn_boolean_t""'");
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "5"" of type '" "svn_revnum_t""'");
}
- arg5 = (svn_boolean_t)(val5);
+ arg5 = (svn_revnum_t)(val5);
ecode6 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val6);
if (!SWIG_IsOK(ecode6)) {
- SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "6"" of type '" "enum svn_repos_load_uuid""'");
+ SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "6"" of type '" "svn_boolean_t""'");
}
- arg6 = (enum svn_repos_load_uuid)(val6);
- res7 = SWIG_AsCharPtrAndSize(ST(4), &buf7, NULL, &alloc7);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "7"" of type '" "char const *""'");
+ arg6 = (svn_boolean_t)(val6);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val7);
+ if (!SWIG_IsOK(ecode7)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "7"" of type '" "svn_boolean_t""'");
+ }
+ arg7 = (svn_boolean_t)(val7);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val8);
+ if (!SWIG_IsOK(ecode8)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "8"" of type '" "enum svn_repos_load_uuid""'");
+ }
+ arg8 = (enum svn_repos_load_uuid)(val8);
+ res9 = SWIG_AsCharPtrAndSize(ST(6), &buf9, NULL, &alloc9);
+ if (!SWIG_IsOK(res9)) {
+ SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "9"" of type '" "char const *""'");
}
- arg7 = (char *)(buf7);
+ arg9 = (char *)(buf9);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_repos_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_repos_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "8"" of type '" "svn_repos_notify_func_t""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "10"" of type '" "svn_repos_notify_func_t""'");
}
}
- res9 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "9"" of type '" "void *""'");
+ res11 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg11), 0, 0);
+ if (!SWIG_IsOK(res11)) {
+ SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_repos_get_fs_build_parser4" "', argument " "11"" of type '" "void *""'");
}
- if (items > 7) {
+ if (items > 9) {
}
{
- result = (svn_error_t *)svn_repos_get_fs_build_parser3((struct svn_repos_parse_fns2_t const **)arg1,arg2,arg3,arg4,arg5,arg6,(char const *)arg7,arg8,arg9,arg10);
+ result = (svn_error_t *)svn_repos_get_fs_build_parser4((struct svn_repos_parse_fns3_t const **)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(char const *)arg9,arg10,arg11,arg12);
@@ -13266,7 +14053,13 @@ XS(_wrap_svn_repos_get_fs_build_parser3) {
}
}
{
- if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_svn_repos_parse_fns2_t, 0); argvi++ ;
+ /* FIXME: Missing argout typemap: svn_repos_get_fs_build_parser4 arg 1 (svn_repos_parse_fns3_t const **) */
+
+
+
+
+ SWIG_exception(SWIG_ValueError, "svn_repos_get_fs_build_parser4 is not implemented yet");
+
}
{
if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_void, 0); argvi++ ;
@@ -13277,7 +14070,9 @@ XS(_wrap_svn_repos_get_fs_build_parser3) {
- if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+
+ if (alloc9 == SWIG_NEWOBJ) free((char*)buf9);
@@ -13289,7 +14084,9 @@ XS(_wrap_svn_repos_get_fs_build_parser3) {
- if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+
+ if (alloc9 == SWIG_NEWOBJ) free((char*)buf9);
@@ -13298,111 +14095,704 @@ XS(_wrap_svn_repos_get_fs_build_parser3) {
}
-XS(_wrap_svn_repos_get_fs_build_parser2) {
+XS(_wrap_svn_repos_parse_fns2_t_new_revision_record_set) {
{
- svn_repos_parse_fns2_t **arg1 = (svn_repos_parse_fns2_t **) 0 ;
- void **arg2 = (void **) 0 ;
- svn_repos_t *arg3 = (svn_repos_t *) 0 ;
- svn_boolean_t arg4 ;
- enum svn_repos_load_uuid arg5 ;
- svn_stream_t *arg6 = (svn_stream_t *) 0 ;
- char *arg7 = (char *) 0 ;
- apr_pool_t *arg8 = (apr_pool_t *) 0 ;
- apr_pool_t *_global_pool ;
- svn_repos_parse_fns2_t *temp1 ;
- void *temp2 ;
- void *argp3 = 0 ;
- int res3 = 0 ;
- int val4 ;
- int ecode4 = 0 ;
- int val5 ;
- int ecode5 = 0 ;
- int res7 ;
- char *buf7 = 0 ;
- int alloc7 = 0 ;
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
int argvi = 0;
- svn_error_t *result = 0 ;
dXSARGS;
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_new_revision_record_set(self,new_revision_record);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_revision_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
{
- _global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_new_revision_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)""'");
+ }
}
- arg1 = &temp1;
- arg2 = &temp2;
- if ((items < 5) || (items > 6)) {
- SWIG_croak("Usage: svn_repos_get_fs_build_parser2(repos,use_history,uuid_action,outstream,parent_dir,pool);");
+ if (arg1) (arg1)->new_revision_record = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_new_revision_record_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void **,apr_hash_t *,void *,apr_pool_t *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_new_revision_record_get(self);");
}
- res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
- if (!SWIG_IsOK(res3)) {
- SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "3"" of type '" "svn_repos_t *""'");
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_revision_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
}
- arg3 = (svn_repos_t *)(argp3);
- ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
- if (!SWIG_IsOK(ecode4)) {
- SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "4"" of type '" "svn_boolean_t""'");
- }
- arg4 = (svn_boolean_t)(val4);
- ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val5);
- if (!SWIG_IsOK(ecode5)) {
- SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "5"" of type '" "enum svn_repos_load_uuid""'");
- }
- arg5 = (enum svn_repos_load_uuid)(val5);
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_revision_record);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_uuid_record_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(char const *,void *,apr_pool_t *) = (svn_error_t *(*)(char const *,void *,apr_pool_t *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_uuid_record_set(self,uuid_record);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_uuid_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
{
- svn_swig_pl_make_stream (&arg6, ST(3));
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_uuid_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(char const *,void *,apr_pool_t *)""'");
+ }
}
- res7 = SWIG_AsCharPtrAndSize(ST(4), &buf7, NULL, &alloc7);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "7"" of type '" "char const *""'");
+ if (arg1) (arg1)->uuid_record = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_uuid_record_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(char const *,void *,apr_pool_t *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_uuid_record_get(self);");
}
- arg7 = (char *)(buf7);
- if (items > 5) {
-
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_uuid_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
}
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(char const *,void *,apr_pool_t *)) ((arg1)->uuid_record);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_new_node_record_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_new_node_record_set(self,new_node_record);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_node_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
{
- result = (svn_error_t *)svn_repos_get_fs_build_parser2((struct svn_repos_parse_fns2_t const **)arg1,arg2,arg3,arg4,arg5,arg6,(char const *)arg7,arg8);
-
-
-
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_new_node_record_set" "', argument " "2"" of type '" "svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)""'");
+ }
+ }
+ if (arg1) (arg1)->new_node_record = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_new_node_record_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void **,apr_hash_t *,void *,apr_pool_t *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_new_node_record_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_new_node_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
}
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_node_record);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void *,char const *,svn_string_t const *) = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_set_revision_property_set(self,set_revision_property);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_revision_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
{
- if (result) {
- SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
-
- if (SvOK(exception_handler)) {
- SV *callback_result;
-
- svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
- &callback_result, "S", result,
- SWIGTYPE_p_svn_error_t);
- } else {
- ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
- argvi++;
- }
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_set_revision_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *,svn_string_t const *)""'");
}
}
+ if (arg1) (arg1)->set_revision_property = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_set_revision_property_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void *,char const *,svn_string_t const *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_set_revision_property_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_revision_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) ((arg1)->set_revision_property);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_set_node_property_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void *,char const *,svn_string_t const *) = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_set_node_property_set(self,set_node_property);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_node_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
{
- if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_svn_repos_parse_fns2_t, 0); argvi++ ;
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_set_node_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *,svn_string_t const *)""'");
+ }
}
+ if (arg1) (arg1)->set_node_property = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_set_node_property_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void *,char const *,svn_string_t const *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_set_node_property_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_node_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) ((arg1)->set_node_property);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void *,char const *) = (svn_error_t *(*)(void *,char const *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_delete_node_property_set(self,delete_node_property);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_delete_node_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
{
- if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_void, 0); argvi++ ;
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_delete_node_property_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *,char const *)""'");
+ }
}
+ if (arg1) (arg1)->delete_node_property = arg2;
+ ST(argvi) = sv_newmortal();
+ XSRETURN(argvi);
+ fail:
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_delete_node_property_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void *,char const *) = 0 ;
+ dXSARGS;
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_delete_node_property_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_delete_node_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void *,char const *)) ((arg1)->delete_node_property);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_remove_node_props_set(self,remove_node_props);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_remove_node_props_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_remove_node_props_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
+ }
+ }
+ if (arg1) (arg1)->remove_node_props = arg2;
+ ST(argvi) = sv_newmortal();
- if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
XSRETURN(argvi);
fail:
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_remove_node_props_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void *) = 0 ;
+ dXSARGS;
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_remove_node_props_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_remove_node_props_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void *)) ((arg1)->remove_node_props);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
+ XSRETURN(argvi);
+ fail:
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(svn_stream_t **,void *) = (svn_error_t *(*)(svn_stream_t **,void *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
- if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_set_fulltext_set(self,set_fulltext);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_fulltext_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_set_fulltext_set" "', argument " "2"" of type '" "svn_error_t *(*)(svn_stream_t **,void *)""'");
+ }
+ }
+ if (arg1) (arg1)->set_fulltext = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_set_fulltext_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(svn_stream_t **,void *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_set_fulltext_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_set_fulltext_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(svn_stream_t **,void *)) ((arg1)->set_fulltext);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(svn_txdelta_window_handler_t *,void **,void *) = (svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_apply_textdelta_set(self,apply_textdelta);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_apply_textdelta_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_txdelta_window_handler_t_p_p_void_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_apply_textdelta_set" "', argument " "2"" of type '" "svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)""'");
+ }
+ }
+ if (arg1) (arg1)->apply_textdelta = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_apply_textdelta_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(svn_txdelta_window_handler_t *,void **,void *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_apply_textdelta_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_apply_textdelta_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(svn_txdelta_window_handler_t *,void **,void *)) ((arg1)->apply_textdelta);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_txdelta_window_handler_t_p_p_void_p_void__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_close_node_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_close_node_set(self,close_node);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_node_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_close_node_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
+ }
+ }
+ if (arg1) (arg1)->close_node = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_close_node_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_close_node_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_node_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void *)) ((arg1)->close_node);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_close_revision_set) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_close_revision_set(self,close_revision);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_revision_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_fns2_t_close_revision_set" "', argument " "2"" of type '" "svn_error_t *(*)(void *)""'");
+ }
+ }
+ if (arg1) (arg1)->close_revision = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns2_t_close_revision_get) {
+ {
+ struct svn_repos_parse_fns2_t *arg1 = (struct svn_repos_parse_fns2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_error_t *(*result)(void *) = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_repos_parse_fns2_t_close_revision_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns2_t_close_revision_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns2_t *""'");
+ }
+ arg1 = (struct svn_repos_parse_fns2_t *)(argp1);
+ result = (svn_error_t *(*)(void *)) ((arg1)->close_revision);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
SWIG_croak_null();
}
@@ -13411,7 +14801,7 @@ XS(_wrap_svn_repos_get_fs_build_parser2) {
XS(_wrap_svn_repos_parser_fns_t_new_revision_record_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13423,9 +14813,9 @@ XS(_wrap_svn_repos_parser_fns_t_new_revision_record_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_revision_record_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_revision_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13447,7 +14837,7 @@ XS(_wrap_svn_repos_parser_fns_t_new_revision_record_set) {
XS(_wrap_svn_repos_parser_fns_t_new_revision_record_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13459,9 +14849,9 @@ XS(_wrap_svn_repos_parser_fns_t_new_revision_record_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_revision_record_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_revision_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_revision_record);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -13475,7 +14865,7 @@ XS(_wrap_svn_repos_parser_fns_t_new_revision_record_get) {
XS(_wrap_svn_repos_parser_fns_t_uuid_record_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(char const *,void *,apr_pool_t *) = (svn_error_t *(*)(char const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13487,9 +14877,9 @@ XS(_wrap_svn_repos_parser_fns_t_uuid_record_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_uuid_record_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_uuid_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13511,7 +14901,7 @@ XS(_wrap_svn_repos_parser_fns_t_uuid_record_set) {
XS(_wrap_svn_repos_parser_fns_t_uuid_record_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13523,9 +14913,9 @@ XS(_wrap_svn_repos_parser_fns_t_uuid_record_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_uuid_record_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_uuid_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(char const *,void *,apr_pool_t *)) ((arg1)->uuid_record);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -13539,7 +14929,7 @@ XS(_wrap_svn_repos_parser_fns_t_uuid_record_get) {
XS(_wrap_svn_repos_parser_fns_t_new_node_record_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void **,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13551,9 +14941,9 @@ XS(_wrap_svn_repos_parser_fns_t_new_node_record_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_node_record_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_node_record_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13575,7 +14965,7 @@ XS(_wrap_svn_repos_parser_fns_t_new_node_record_set) {
XS(_wrap_svn_repos_parser_fns_t_new_node_record_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13587,9 +14977,9 @@ XS(_wrap_svn_repos_parser_fns_t_new_node_record_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_node_record_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_new_node_record_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->new_node_record);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -13603,7 +14993,7 @@ XS(_wrap_svn_repos_parser_fns_t_new_node_record_get) {
XS(_wrap_svn_repos_parser_fns_t_set_revision_property_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_string_t const *) = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13615,9 +15005,9 @@ XS(_wrap_svn_repos_parser_fns_t_set_revision_property_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_revision_property_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_revision_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13639,7 +15029,7 @@ XS(_wrap_svn_repos_parser_fns_t_set_revision_property_set) {
XS(_wrap_svn_repos_parser_fns_t_set_revision_property_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13651,9 +15041,9 @@ XS(_wrap_svn_repos_parser_fns_t_set_revision_property_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_revision_property_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_revision_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) ((arg1)->set_revision_property);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t); argvi++ ;
@@ -13667,7 +15057,7 @@ XS(_wrap_svn_repos_parser_fns_t_set_revision_property_get) {
XS(_wrap_svn_repos_parser_fns_t_set_node_property_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_string_t const *) = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13679,9 +15069,9 @@ XS(_wrap_svn_repos_parser_fns_t_set_node_property_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_node_property_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_node_property_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13703,7 +15093,7 @@ XS(_wrap_svn_repos_parser_fns_t_set_node_property_set) {
XS(_wrap_svn_repos_parser_fns_t_set_node_property_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13715,9 +15105,9 @@ XS(_wrap_svn_repos_parser_fns_t_set_node_property_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_node_property_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_node_property_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_string_t const *)) ((arg1)->set_node_property);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t); argvi++ ;
@@ -13731,7 +15121,7 @@ XS(_wrap_svn_repos_parser_fns_t_set_node_property_get) {
XS(_wrap_svn_repos_parser_fns_t_remove_node_props_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13743,9 +15133,9 @@ XS(_wrap_svn_repos_parser_fns_t_remove_node_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_remove_node_props_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_remove_node_props_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13767,7 +15157,7 @@ XS(_wrap_svn_repos_parser_fns_t_remove_node_props_set) {
XS(_wrap_svn_repos_parser_fns_t_remove_node_props_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13779,9 +15169,9 @@ XS(_wrap_svn_repos_parser_fns_t_remove_node_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_remove_node_props_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_remove_node_props_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void *)) ((arg1)->remove_node_props);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -13795,7 +15185,7 @@ XS(_wrap_svn_repos_parser_fns_t_remove_node_props_get) {
XS(_wrap_svn_repos_parser_fns_t_set_fulltext_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(svn_stream_t **,void *) = (svn_error_t *(*)(svn_stream_t **,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13807,9 +15197,9 @@ XS(_wrap_svn_repos_parser_fns_t_set_fulltext_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_fulltext_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_fulltext_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13831,7 +15221,7 @@ XS(_wrap_svn_repos_parser_fns_t_set_fulltext_set) {
XS(_wrap_svn_repos_parser_fns_t_set_fulltext_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13843,9 +15233,9 @@ XS(_wrap_svn_repos_parser_fns_t_set_fulltext_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_fulltext_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_set_fulltext_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(svn_stream_t **,void *)) ((arg1)->set_fulltext);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_svn_stream_t_p_void__p_svn_error_t); argvi++ ;
@@ -13859,7 +15249,7 @@ XS(_wrap_svn_repos_parser_fns_t_set_fulltext_get) {
XS(_wrap_svn_repos_parser_fns_t_close_node_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13871,9 +15261,9 @@ XS(_wrap_svn_repos_parser_fns_t_close_node_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_node_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_node_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13895,7 +15285,7 @@ XS(_wrap_svn_repos_parser_fns_t_close_node_set) {
XS(_wrap_svn_repos_parser_fns_t_close_node_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13907,9 +15297,9 @@ XS(_wrap_svn_repos_parser_fns_t_close_node_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_node_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_node_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void *)) ((arg1)->close_node);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -13923,7 +15313,7 @@ XS(_wrap_svn_repos_parser_fns_t_close_node_get) {
XS(_wrap_svn_repos_parser_fns_t_close_revision_set) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
svn_error_t *(*arg2)(void *) = (svn_error_t *(*)(void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13935,9 +15325,9 @@ XS(_wrap_svn_repos_parser_fns_t_close_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_revision_set" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_revision_set" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -13959,7 +15349,7 @@ XS(_wrap_svn_repos_parser_fns_t_close_revision_set) {
XS(_wrap_svn_repos_parser_fns_t_close_revision_get) {
{
- svn_repos_parser_fns_t *arg1 = (svn_repos_parser_fns_t *) 0 ;
+ struct svn_repos_parse_fns_t *arg1 = (struct svn_repos_parse_fns_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13971,9 +15361,9 @@ XS(_wrap_svn_repos_parser_fns_t_close_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_revision_get" "', argument " "1"" of type '" "svn_repos_parser_fns_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parser_fns_t_close_revision_get" "', argument " "1"" of type '" "struct svn_repos_parse_fns_t *""'");
}
- arg1 = (svn_repos_parser_fns_t *)(argp1);
+ arg1 = (struct svn_repos_parse_fns_t *)(argp1);
result = (svn_error_t *(*)(void *)) ((arg1)->close_revision);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -13985,6 +15375,95 @@ XS(_wrap_svn_repos_parser_fns_t_close_revision_get) {
}
+XS(_wrap_svn_repos_parse_dumpstream2) {
+ {
+ svn_stream_t *arg1 = (svn_stream_t *) 0 ;
+ svn_repos_parser_fns2_t *arg2 = (svn_repos_parser_fns2_t *) 0 ;
+ void *arg3 = (void *) 0 ;
+ svn_cancel_func_t arg4 = (svn_cancel_func_t) 0 ;
+ void *arg5 = (void *) 0 ;
+ apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ int res5 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 5) || (items > 6)) {
+ SWIG_croak("Usage: svn_repos_parse_dumpstream2(stream,parse_fns,parse_baton,cancel_func,cancel_baton,pool);");
+ }
+ {
+ svn_swig_pl_make_stream (&arg1, ST(0));
+ }
+ res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_repos_parse_fns2_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_dumpstream2" "', argument " "2"" of type '" "svn_repos_parser_fns2_t const *""'");
+ }
+ arg2 = (svn_repos_parser_fns2_t *)(argp2);
+ res3 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg3), 0, 0);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_dumpstream2" "', argument " "3"" of type '" "void *""'");
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_parse_dumpstream2" "', argument " "4"" of type '" "svn_cancel_func_t""'");
+ }
+ }
+ res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_repos_parse_dumpstream2" "', argument " "5"" of type '" "void *""'");
+ }
+ if (items > 5) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_dumpstream2(arg1,(struct svn_repos_parse_fns2_t const *)arg2,arg3,arg4,arg5,arg6);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_parse_dumpstream) {
{
svn_stream_t *arg1 = (svn_stream_t *) 0 ;
@@ -14074,6 +15553,249 @@ XS(_wrap_svn_repos_parse_dumpstream) {
}
+XS(_wrap_svn_repos_get_fs_build_parser3) {
+ {
+ svn_repos_parse_fns2_t **arg1 = (svn_repos_parse_fns2_t **) 0 ;
+ void **arg2 = (void **) 0 ;
+ svn_repos_t *arg3 = (svn_repos_t *) 0 ;
+ svn_boolean_t arg4 ;
+ svn_boolean_t arg5 ;
+ enum svn_repos_load_uuid arg6 ;
+ char *arg7 = (char *) 0 ;
+ svn_repos_notify_func_t arg8 = (svn_repos_notify_func_t) 0 ;
+ void *arg9 = (void *) 0 ;
+ apr_pool_t *arg10 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_repos_parse_fns2_t *temp1 ;
+ void *temp2 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ int val6 ;
+ int ecode6 = 0 ;
+ int res7 ;
+ char *buf7 = 0 ;
+ int alloc7 = 0 ;
+ int res9 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ arg2 = &temp2;
+ if ((items < 7) || (items > 8)) {
+ SWIG_croak("Usage: svn_repos_get_fs_build_parser3(repos,use_history,validate_props,uuid_action,parent_dir,notify_func,notify_baton,pool);");
+ }
+ res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "3"" of type '" "svn_repos_t *""'");
+ }
+ arg3 = (svn_repos_t *)(argp3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "5"" of type '" "svn_boolean_t""'");
+ }
+ arg5 = (svn_boolean_t)(val5);
+ ecode6 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val6);
+ if (!SWIG_IsOK(ecode6)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "6"" of type '" "enum svn_repos_load_uuid""'");
+ }
+ arg6 = (enum svn_repos_load_uuid)(val6);
+ res7 = SWIG_AsCharPtrAndSize(ST(4), &buf7, NULL, &alloc7);
+ if (!SWIG_IsOK(res7)) {
+ SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "7"" of type '" "char const *""'");
+ }
+ arg7 = (char *)(buf7);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_repos_notify_t_p_apr_pool_t__void);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "8"" of type '" "svn_repos_notify_func_t""'");
+ }
+ }
+ res9 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg9), 0, 0);
+ if (!SWIG_IsOK(res9)) {
+ SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_repos_get_fs_build_parser3" "', argument " "9"" of type '" "void *""'");
+ }
+ if (items > 7) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_get_fs_build_parser3((struct svn_repos_parse_fns2_t const **)arg1,arg2,arg3,arg4,arg5,arg6,(char const *)arg7,arg8,arg9,arg10);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_svn_repos_parse_fns2_t, 0); argvi++ ;
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+
+
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_get_fs_build_parser2) {
+ {
+ svn_repos_parse_fns2_t **arg1 = (svn_repos_parse_fns2_t **) 0 ;
+ void **arg2 = (void **) 0 ;
+ svn_repos_t *arg3 = (svn_repos_t *) 0 ;
+ svn_boolean_t arg4 ;
+ enum svn_repos_load_uuid arg5 ;
+ svn_stream_t *arg6 = (svn_stream_t *) 0 ;
+ char *arg7 = (char *) 0 ;
+ apr_pool_t *arg8 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_repos_parse_fns2_t *temp1 ;
+ void *temp2 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ int res7 ;
+ char *buf7 = 0 ;
+ int alloc7 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ arg2 = &temp2;
+ if ((items < 5) || (items > 6)) {
+ SWIG_croak("Usage: svn_repos_get_fs_build_parser2(repos,use_history,uuid_action,outstream,parent_dir,pool);");
+ }
+ res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_repos_t, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "3"" of type '" "svn_repos_t *""'");
+ }
+ arg3 = (svn_repos_t *)(argp3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "5"" of type '" "enum svn_repos_load_uuid""'");
+ }
+ arg5 = (enum svn_repos_load_uuid)(val5);
+ {
+ svn_swig_pl_make_stream (&arg6, ST(3));
+ }
+ res7 = SWIG_AsCharPtrAndSize(ST(4), &buf7, NULL, &alloc7);
+ if (!SWIG_IsOK(res7)) {
+ SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_repos_get_fs_build_parser2" "', argument " "7"" of type '" "char const *""'");
+ }
+ arg7 = (char *)(buf7);
+ if (items > 5) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_get_fs_build_parser2((struct svn_repos_parse_fns2_t const **)arg1,arg2,arg3,arg4,arg5,arg6,(char const *)arg7,arg8);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_svn_repos_parse_fns2_t, 0); argvi++ ;
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+
+
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_get_fs_build_parser) {
{
svn_repos_parser_fns_t **arg1 = (svn_repos_parser_fns_t **) 0 ;
@@ -14185,6 +15907,94 @@ XS(_wrap_svn_repos_get_fs_build_parser) {
}
+XS(_wrap_svn_repos_authz_read2) {
+ {
+ svn_authz_t **arg1 = (svn_authz_t **) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_boolean_t arg4 ;
+ apr_pool_t *arg5 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_authz_t *temp1 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_authz_read2(path,groups_path,must_exist,pool);");
+ }
+ res2 = SWIG_AsCharPtrAndSize(ST(0), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_authz_read2" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(ST(1), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_authz_read2" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_repos_authz_read2" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_authz_read2(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_svn_authz_t, 0); argvi++ ;
+ }
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_authz_read) {
{
svn_authz_t **arg1 = (svn_authz_t **) 0 ;
@@ -14262,6 +16072,74 @@ XS(_wrap_svn_repos_authz_read) {
}
+XS(_wrap_svn_repos_authz_parse) {
+ {
+ svn_authz_t **arg1 = (svn_authz_t **) 0 ;
+ svn_stream_t *arg2 = (svn_stream_t *) 0 ;
+ svn_stream_t *arg3 = (svn_stream_t *) 0 ;
+ apr_pool_t *arg4 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_authz_t *temp1 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 2) || (items > 3)) {
+ SWIG_croak("Usage: svn_repos_authz_parse(stream,groups_stream,pool);");
+ }
+ {
+ svn_swig_pl_make_stream (&arg2, ST(0));
+ }
+ {
+ svn_swig_pl_make_stream (&arg3, ST(1));
+ }
+ if (items > 2) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_authz_parse(arg1,arg2,arg3,arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg1, SWIGTYPE_p_svn_authz_t, 0); argvi++ ;
+ }
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_authz_check_access) {
{
svn_authz_t *arg1 = (svn_authz_t *) 0 ;
@@ -14464,6 +16342,120 @@ XS(_wrap_svn_repos_check_revision_access) {
}
+XS(_wrap_svn_repos_fs_get_inherited_props) {
+ {
+ apr_array_header_t **arg1 = (apr_array_header_t **) 0 ;
+ svn_fs_root_t *arg2 = (svn_fs_root_t *) 0 ;
+ char *arg3 = (char *) 0 ;
+ char *arg4 = (char *) 0 ;
+ svn_repos_authz_func_t arg5 = (svn_repos_authz_func_t) 0 ;
+ void *arg6 = (void *) 0 ;
+ apr_pool_t *arg7 = (apr_pool_t *) 0 ;
+ apr_pool_t *arg8 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ apr_array_header_t *temp1 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int res4 ;
+ char *buf4 = 0 ;
+ int alloc4 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ {
+ _global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 4) || (items > 6)) {
+ SWIG_croak("Usage: svn_repos_fs_get_inherited_props(root,path,propname,authz_read_func,authz_read_baton,result_pool,scratch_pool);");
+ }
+ res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_fs_root_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_fs_get_inherited_props" "', argument " "2"" of type '" "svn_fs_root_t *""'");
+ }
+ arg2 = (svn_fs_root_t *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(ST(1), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_fs_get_inherited_props" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ res4 = SWIG_AsCharPtrAndSize(ST(2), &buf4, NULL, &alloc4);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_repos_fs_get_inherited_props" "', argument " "4"" of type '" "char const *""'");
+ }
+ arg4 = (char *)(buf4);
+ {
+ if (SvOK(ST(3))) {
+ arg5 = svn_swig_pl_thunk_authz_func;
+ arg6 = ST(3);
+ } else {
+ arg5 = NULL;
+ arg6 = NULL;
+ }
+ }
+ if (items > 4) {
+
+ }
+ if (items > 5) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_fs_get_inherited_props(arg1,arg2,(char const *)arg3,(char const *)arg4,arg5,arg6,arg7,arg8);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ /* FIXME: Missing argout typemap: svn_repos_fs_get_inherited_props arg 1 (apr_array_header_t **) */
+
+
+
+
+ SWIG_exception(SWIG_ValueError, "svn_repos_fs_get_inherited_props is not implemented yet");
+
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_remember_client_capabilities) {
{
svn_repos_t *arg1 = (svn_repos_t *) 0 ;
@@ -14522,6 +16514,858 @@ XS(_wrap_svn_repos_remember_client_capabilities) {
}
+XS(_wrap_svn_repos_parse_fns3_invoke_magic_header_record) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ int arg2 ;
+ void *arg3 = (void *) 0 ;
+ apr_pool_t *arg4 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int res3 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_magic_header_record(_obj,version,parse_baton,pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_magic_header_record" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_repos_parse_fns3_invoke_magic_header_record" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ res3 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg3), 0, 0);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_magic_header_record" "', argument " "3"" of type '" "void *""'");
+ }
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_magic_header_record(arg1,arg2,arg3,arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_uuid_record) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *arg3 = (void *) 0 ;
+ apr_pool_t *arg4 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_uuid_record(_obj,uuid,parse_baton,pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_uuid_record" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_uuid_record" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg3), 0, 0);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_uuid_record" "', argument " "3"" of type '" "void *""'");
+ }
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_uuid_record(arg1,(char const *)arg2,arg3,arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_new_revision_record) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void **arg2 = (void **) 0 ;
+ apr_hash_t *arg3 = (apr_hash_t *) 0 ;
+ void *arg4 = (void *) 0 ;
+ apr_pool_t *arg5 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *temp2 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ int res4 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg2 = &temp2;
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_new_revision_record(_obj,headers,parse_baton,pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_new_revision_record" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res3 = SWIG_ConvertPtr(ST(1), &argp3,SWIGTYPE_p_apr_hash_t, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_new_revision_record" "', argument " "3"" of type '" "apr_hash_t *""'");
+ }
+ arg3 = (apr_hash_t *)(argp3);
+ res4 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg4), 0, 0);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_repos_parse_fns3_invoke_new_revision_record" "', argument " "4"" of type '" "void *""'");
+ }
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_new_revision_record(arg1,arg2,arg3,arg4,arg5);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_new_node_record) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void **arg2 = (void **) 0 ;
+ apr_hash_t *arg3 = (apr_hash_t *) 0 ;
+ void *arg4 = (void *) 0 ;
+ apr_pool_t *arg5 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *temp2 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ int res4 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg2 = &temp2;
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_new_node_record(_obj,headers,revision_baton,pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_new_node_record" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res3 = SWIG_ConvertPtr(ST(1), &argp3,SWIGTYPE_p_apr_hash_t, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_new_node_record" "', argument " "3"" of type '" "apr_hash_t *""'");
+ }
+ arg3 = (apr_hash_t *)(argp3);
+ res4 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg4), 0, 0);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_repos_parse_fns3_invoke_new_node_record" "', argument " "4"" of type '" "void *""'");
+ }
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_new_node_record(arg1,arg2,arg3,arg4,arg5);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_set_revision_property) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void *arg2 = (void *) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_string_t *arg4 = (svn_string_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ svn_string_t value4 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ if ((items < 4) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_set_revision_property(_obj,revision_baton,name,value);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_set_revision_property" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_set_revision_property" "', argument " "2"" of type '" "void *""'");
+ }
+ res3 = SWIG_AsCharPtrAndSize(ST(2), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_set_revision_property" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ {
+ if (SvOK(ST(3))) {
+ value4.data = SvPV(ST(3), value4.len);
+ arg4 = &value4;
+ }
+ else {
+ arg4 = NULL;
+ }
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_set_revision_property(arg1,arg2,(char const *)arg3,(struct svn_string_t const *)arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_set_node_property) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void *arg2 = (void *) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_string_t *arg4 = (svn_string_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ svn_string_t value4 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ if ((items < 4) || (items > 4)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_set_node_property(_obj,node_baton,name,value);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_set_node_property" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_set_node_property" "', argument " "2"" of type '" "void *""'");
+ }
+ res3 = SWIG_AsCharPtrAndSize(ST(2), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_set_node_property" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ {
+ if (SvOK(ST(3))) {
+ value4.data = SvPV(ST(3), value4.len);
+ arg4 = &value4;
+ }
+ else {
+ arg4 = NULL;
+ }
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_set_node_property(arg1,arg2,(char const *)arg3,(struct svn_string_t const *)arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_delete_node_property) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void *arg2 = (void *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ if ((items < 3) || (items > 3)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_delete_node_property(_obj,node_baton,name);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_delete_node_property" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_delete_node_property" "', argument " "2"" of type '" "void *""'");
+ }
+ res3 = SWIG_AsCharPtrAndSize(ST(2), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_delete_node_property" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_delete_node_property(arg1,arg2,(char const *)arg3);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_remove_node_props) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void *arg2 = (void *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_remove_node_props(_obj,node_baton);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_remove_node_props" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_remove_node_props" "', argument " "2"" of type '" "void *""'");
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_remove_node_props(arg1,arg2);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_set_fulltext) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ svn_stream_t **arg2 = (svn_stream_t **) 0 ;
+ void *arg3 = (void *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ svn_stream_t *temp2 ;
+ int res3 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ arg2 = &temp2;
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_set_fulltext(_obj,node_baton);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_set_fulltext" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res3 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg3), 0, 0);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_repos_parse_fns3_invoke_set_fulltext" "', argument " "3"" of type '" "void *""'");
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_set_fulltext(arg1,arg2,arg3);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_from_stream(*arg2); argvi++ ;
+ }
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_apply_textdelta) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ svn_txdelta_window_handler_t *arg2 = (svn_txdelta_window_handler_t *) 0 ;
+ void **arg3 = (void **) 0 ;
+ void *arg4 = (void *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ svn_txdelta_window_handler_t temp2 ;
+ void *temp3 ;
+ int res4 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ arg2 = &temp2;
+ arg3 = &temp3;
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_apply_textdelta(_obj,node_baton);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_apply_textdelta" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res4 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg4), 0, 0);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_repos_parse_fns3_invoke_apply_textdelta" "', argument " "4"" of type '" "void *""'");
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_apply_textdelta(arg1,arg2,arg3,arg4);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t, 0); argvi++ ;
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg3, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_close_node) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void *arg2 = (void *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_close_node(_obj,node_baton);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_close_node" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_close_node" "', argument " "2"" of type '" "void *""'");
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_close_node(arg1,arg2);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_repos_parse_fns3_invoke_close_revision) {
+ {
+ svn_repos_parse_fns3_t *arg1 = (svn_repos_parse_fns3_t *) 0 ;
+ void *arg2 = (void *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_repos_parse_fns3_invoke_close_revision(_obj,revision_baton);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_repos_parse_fns3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_repos_parse_fns3_invoke_close_revision" "', argument " "1"" of type '" "svn_repos_parse_fns3_t *""'");
+ }
+ arg1 = (svn_repos_parse_fns3_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_parse_fns3_invoke_close_revision" "', argument " "2"" of type '" "void *""'");
+ }
+ {
+ result = (svn_error_t *)svn_repos_parse_fns3_invoke_close_revision(arg1,arg2);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_parse_fns2_invoke_new_revision_record) {
{
svn_repos_parse_fns2_t *arg1 = (svn_repos_parse_fns2_t *) 0 ;
@@ -15685,6 +18529,71 @@ XS(_wrap_svn_repos_invoke_notify_func) {
}
+XS(_wrap_svn_repos_invoke_freeze_func) {
+ {
+ svn_repos_freeze_func_t arg1 = (svn_repos_freeze_func_t) 0 ;
+ void *arg2 = (void *) 0 ;
+ apr_pool_t *arg3 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ int res2 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 2) || (items > 3)) {
+ SWIG_croak("Usage: svn_repos_invoke_freeze_func(_obj,baton,pool);");
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(0), (void**)(&arg1), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_repos_invoke_freeze_func" "', argument " "1"" of type '" "svn_repos_freeze_func_t""'");
+ }
+ }
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_repos_invoke_freeze_func" "', argument " "2"" of type '" "void *""'");
+ }
+ if (items > 2) {
+
+ }
+ {
+ result = (svn_error_t *)svn_repos_invoke_freeze_func(arg1,arg2,arg3);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_repos_invoke_history_func) {
{
svn_repos_history_func_t arg1 = (svn_repos_history_func_t) 0 ;
@@ -15774,12 +18683,13 @@ XS(_wrap_svn_repos_invoke_history_func) {
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
-static swig_type_info _swigt__p_apr_array_header_t = {"_p_apr_array_header_t", "apr_array_header_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_apr_array_header_t = {"_p_apr_array_header_t", "apr_array_header_t *|svn_rangelist_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_hash_t = {"_p_apr_hash_t", "apr_hash_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_int32_t = {"_p_apr_int32_t", "apr_int32_t *|time_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_int64_t = {"_p_apr_int64_t", "apr_int64_t *|svn_filesize_t *|apr_time_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_pool_t = {"_p_apr_pool_t", "apr_pool_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_f_int_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_int_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(int,void *,apr_pool_t *)|svn_error_t *(*)(int,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t", "svn_opt_subcommand_t *|struct svn_error_t *(*)(apr_getopt_t *,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_p_svn_stream_t_p_void__p_svn_error_t = {"_p_f_p_p_svn_stream_t_p_void__p_svn_error_t", "struct svn_error_t *(*)(svn_stream_t **,void *)|svn_error_t *(*)(svn_stream_t **,void *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)|svn_error_t *(*)(void **,apr_hash_t *,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
@@ -15792,6 +18702,7 @@ static swig_type_info _swigt__p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t =
static swig_type_info _swigt__p_f_p_void__p_svn_error_t = {"_p_f_p_void__p_svn_error_t", "svn_cancel_func_t|struct svn_error_t *(*)(void *)|svn_error_t *(*)(void *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,apr_int64_t,svn_fs_pack_notify_action_t,apr_pool_t *)|svn_fs_pack_notify_t", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,apr_hash_t *,svn_revnum_t,char const *,char const *,char const *,apr_pool_t *)|svn_log_message_receiver_t", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_f_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,apr_pool_t *)|svn_repos_freeze_func_t", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_q_const__char__p_svn_error_t = {"_p_f_p_void_p_q_const__char__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *)|svn_error_t *(*)(void *,char const *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,svn_string_t const *)|svn_error_t *(*)(void *,char const *,svn_string_t const *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,svn_revnum_t,apr_hash_t *,svn_txdelta_window_handler_t *,void **,apr_array_header_t *,apr_pool_t *)|svn_repos_file_rev_handler_t", 0, 0, (void*)0, 0};
@@ -15813,6 +18724,7 @@ static swig_type_info _swigt__p_p_svn_dirent_t = {"_p_p_svn_dirent_t", "struct s
static swig_type_info _swigt__p_p_svn_fs_txn_t = {"_p_p_svn_fs_txn_t", "struct svn_fs_txn_t **|svn_fs_txn_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_lock_t = {"_p_p_svn_lock_t", "struct svn_lock_t **|svn_lock_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_repos_parse_fns2_t = {"_p_p_svn_repos_parse_fns2_t", "struct svn_repos_parse_fns2_t **|svn_repos_parse_fns2_t **", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_svn_repos_parse_fns3_t = {"_p_p_svn_repos_parse_fns3_t", "struct svn_repos_parse_fns3_t **|svn_repos_parse_fns3_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_repos_parse_fns_t = {"_p_p_svn_repos_parse_fns_t", "struct svn_repos_parse_fns_t **|svn_repos_parser_fns_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_repos_t = {"_p_p_svn_repos_t", "struct svn_repos_t **|svn_repos_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_stream_t = {"_p_p_svn_stream_t", "struct svn_stream_t **|svn_stream_t **", 0, 0, (void*)0, 0};
@@ -15829,6 +18741,9 @@ static swig_type_info _swigt__p_svn_auth_provider_object_t = {"_p_svn_auth_provi
static swig_type_info _swigt__p_svn_auth_provider_t = {"_p_svn_auth_provider_t", "struct svn_auth_provider_t *|svn_auth_provider_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_ssl_server_cert_info_t = {"_p_svn_auth_ssl_server_cert_info_t", "struct svn_auth_ssl_server_cert_info_t *|svn_auth_ssl_server_cert_info_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_authz_t = {"_p_svn_authz_t", "struct svn_authz_t *|svn_authz_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_checksum_ctx_t = {"_p_svn_checksum_ctx_t", "struct svn_checksum_ctx_t *|svn_checksum_ctx_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_checksum_kind_t = {"_p_svn_checksum_kind_t", "enum svn_checksum_kind_t *|svn_checksum_kind_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_checksum_t = {"_p_svn_checksum_t", "struct svn_checksum_t *|svn_checksum_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_commit_info_t = {"_p_svn_commit_info_t", "struct svn_commit_info_t *|svn_commit_info_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_config_t = {"_p_svn_config_t", "struct svn_config_t *|svn_config_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_delta_editor_t = {"_p_svn_delta_editor_t", "struct svn_delta_editor_t *|svn_delta_editor_t *", 0, 0, (void*)0, 0};
@@ -15875,6 +18790,7 @@ static swig_type_info _swigt__p_svn_opt_subcommand_desc2_t = {"_p_svn_opt_subcom
static swig_type_info _swigt__p_svn_opt_subcommand_desc_t = {"_p_svn_opt_subcommand_desc_t", "struct svn_opt_subcommand_desc_t *|svn_opt_subcommand_desc_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_patch_file_t = {"_p_svn_patch_file_t", "struct svn_patch_file_t *|svn_patch_file_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_patch_t = {"_p_svn_patch_t", "struct svn_patch_t *|svn_patch_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_prop_inherited_item_t = {"_p_svn_prop_inherited_item_t", "struct svn_prop_inherited_item_t *|svn_prop_inherited_item_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_prop_kind = {"_p_svn_prop_kind", "svn_prop_kind_t *|enum svn_prop_kind *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_prop_patch_t = {"_p_svn_prop_patch_t", "struct svn_prop_patch_t *|svn_prop_patch_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_repos_authz_access_t = {"_p_svn_repos_authz_access_t", "enum svn_repos_authz_access_t *|svn_repos_authz_access_t *", 0, 0, (void*)0, 0};
@@ -15883,6 +18799,7 @@ static swig_type_info _swigt__p_svn_repos_notify_action_t = {"_p_svn_repos_notif
static swig_type_info _swigt__p_svn_repos_notify_t = {"_p_svn_repos_notify_t", "struct svn_repos_notify_t *|svn_repos_notify_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_repos_notify_warning_t = {"_p_svn_repos_notify_warning_t", "enum svn_repos_notify_warning_t *|svn_repos_notify_warning_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_repos_parse_fns2_t = {"_p_svn_repos_parse_fns2_t", "struct svn_repos_parse_fns2_t *|svn_repos_parse_fns2_t *|svn_repos_parser_fns2_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_repos_parse_fns3_t = {"_p_svn_repos_parse_fns3_t", "struct svn_repos_parse_fns3_t *|svn_repos_parse_fns3_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_repos_parse_fns_t = {"_p_svn_repos_parse_fns_t", "struct svn_repos_parse_fns_t *|svn_repos_parser_fns_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_repos_revision_access_level_t = {"_p_svn_repos_revision_access_level_t", "enum svn_repos_revision_access_level_t *|svn_repos_revision_access_level_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_repos_t = {"_p_svn_repos_t", "struct svn_repos_t *|svn_repos_t *", 0, 0, (void*)0, 0};
@@ -15895,7 +18812,11 @@ static swig_type_info _swigt__p_svn_txdelta_op_t = {"_p_svn_txdelta_op_t", "stru
static swig_type_info _swigt__p_svn_txdelta_stream_t = {"_p_svn_txdelta_stream_t", "struct svn_txdelta_stream_t *|svn_txdelta_stream_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_txdelta_window_t = {"_p_svn_txdelta_window_t", "struct svn_txdelta_window_t *|svn_txdelta_window_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_version_checklist_t = {"_p_svn_version_checklist_t", "struct svn_version_checklist_t *|svn_version_checklist_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_version_ext_linked_lib_t = {"_p_svn_version_ext_linked_lib_t", "struct svn_version_ext_linked_lib_t *|svn_version_ext_linked_lib_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_version_ext_loaded_lib_t = {"_p_svn_version_ext_loaded_lib_t", "struct svn_version_ext_loaded_lib_t *|svn_version_ext_loaded_lib_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_version_extended_t = {"_p_svn_version_extended_t", "struct svn_version_extended_t *|svn_version_extended_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_version_t = {"_p_svn_version_t", "struct svn_version_t *|svn_version_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_wc_external_item2_t = {"_p_svn_wc_external_item2_t", "svn_wc_external_item2_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|svn_linenum_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0};
@@ -15906,6 +18827,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_apr_int64_t,
&_swigt__p_apr_pool_t,
&_swigt__p_char,
+ &_swigt__p_f_int_p_void_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_p_svn_stream_t_p_void__p_svn_error_t,
&_swigt__p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t,
@@ -15918,6 +18840,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_f_p_void__p_svn_error_t,
&_swigt__p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t,
+ &_swigt__p_f_p_void_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_q_const__char__p_svn_error_t,
&_swigt__p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t,
&_swigt__p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t,
@@ -15939,6 +18862,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_p_svn_fs_txn_t,
&_swigt__p_p_svn_lock_t,
&_swigt__p_p_svn_repos_parse_fns2_t,
+ &_swigt__p_p_svn_repos_parse_fns3_t,
&_swigt__p_p_svn_repos_parse_fns_t,
&_swigt__p_p_svn_repos_t,
&_swigt__p_p_svn_stream_t,
@@ -15955,6 +18879,9 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_auth_provider_t,
&_swigt__p_svn_auth_ssl_server_cert_info_t,
&_swigt__p_svn_authz_t,
+ &_swigt__p_svn_checksum_ctx_t,
+ &_swigt__p_svn_checksum_kind_t,
+ &_swigt__p_svn_checksum_t,
&_swigt__p_svn_commit_info_t,
&_swigt__p_svn_config_t,
&_swigt__p_svn_delta_editor_t,
@@ -16001,6 +18928,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_opt_subcommand_desc_t,
&_swigt__p_svn_patch_file_t,
&_swigt__p_svn_patch_t,
+ &_swigt__p_svn_prop_inherited_item_t,
&_swigt__p_svn_prop_kind,
&_swigt__p_svn_prop_patch_t,
&_swigt__p_svn_repos_authz_access_t,
@@ -16009,6 +18937,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_repos_notify_t,
&_swigt__p_svn_repos_notify_warning_t,
&_swigt__p_svn_repos_parse_fns2_t,
+ &_swigt__p_svn_repos_parse_fns3_t,
&_swigt__p_svn_repos_parse_fns_t,
&_swigt__p_svn_repos_revision_access_level_t,
&_swigt__p_svn_repos_t,
@@ -16021,7 +18950,11 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_txdelta_stream_t,
&_swigt__p_svn_txdelta_window_t,
&_swigt__p_svn_version_checklist_t,
+ &_swigt__p_svn_version_ext_linked_lib_t,
+ &_swigt__p_svn_version_ext_loaded_lib_t,
+ &_swigt__p_svn_version_extended_t,
&_swigt__p_svn_version_t,
+ &_swigt__p_svn_wc_external_item2_t,
&_swigt__p_unsigned_long,
&_swigt__p_void,
};
@@ -16032,6 +18965,7 @@ static swig_cast_info _swigc__p_apr_int32_t[] = { {&_swigt__p_apr_int32_t, 0, 0
static swig_cast_info _swigc__p_apr_int64_t[] = { {&_swigt__p_apr_int64_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_apr_pool_t[] = { {&_swigt__p_apr_pool_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_f_int_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_int_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_p_svn_stream_t_p_void__p_svn_error_t[] = { {&_swigt__p_f_p_p_svn_stream_t_p_void__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16044,6 +18978,7 @@ static swig_cast_info _swigc__p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t[]
static swig_cast_info _swigc__p_f_p_void__p_svn_error_t[] = { {&_swigt__p_f_p_void__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_f_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_q_const__char__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16065,6 +19000,7 @@ static swig_cast_info _swigc__p_p_svn_dirent_t[] = { {&_swigt__p_p_svn_dirent_t
static swig_cast_info _swigc__p_p_svn_fs_txn_t[] = { {&_swigt__p_p_svn_fs_txn_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_lock_t[] = { {&_swigt__p_p_svn_lock_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_repos_parse_fns2_t[] = { {&_swigt__p_p_svn_repos_parse_fns2_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_svn_repos_parse_fns3_t[] = { {&_swigt__p_p_svn_repos_parse_fns3_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_repos_parse_fns_t[] = { {&_swigt__p_p_svn_repos_parse_fns_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_repos_t[] = { {&_swigt__p_p_svn_repos_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_stream_t[] = { {&_swigt__p_p_svn_stream_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16081,6 +19017,9 @@ static swig_cast_info _swigc__p_svn_auth_provider_object_t[] = { {&_swigt__p_sv
static swig_cast_info _swigc__p_svn_auth_provider_t[] = { {&_swigt__p_svn_auth_provider_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_auth_ssl_server_cert_info_t[] = { {&_swigt__p_svn_auth_ssl_server_cert_info_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_authz_t[] = { {&_swigt__p_svn_authz_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_checksum_ctx_t[] = { {&_swigt__p_svn_checksum_ctx_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_checksum_kind_t[] = { {&_swigt__p_svn_checksum_kind_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_checksum_t[] = { {&_swigt__p_svn_checksum_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_commit_info_t[] = { {&_swigt__p_svn_commit_info_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_config_t[] = { {&_swigt__p_svn_config_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_delta_editor_t[] = { {&_swigt__p_svn_delta_editor_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16127,6 +19066,7 @@ static swig_cast_info _swigc__p_svn_opt_subcommand_desc2_t[] = { {&_swigt__p_sv
static swig_cast_info _swigc__p_svn_opt_subcommand_desc_t[] = { {&_swigt__p_svn_opt_subcommand_desc_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_patch_file_t[] = { {&_swigt__p_svn_patch_file_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_patch_t[] = { {&_swigt__p_svn_patch_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_prop_inherited_item_t[] = { {&_swigt__p_svn_prop_inherited_item_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_prop_kind[] = { {&_swigt__p_svn_prop_kind, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_prop_patch_t[] = { {&_swigt__p_svn_prop_patch_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_repos_authz_access_t[] = { {&_swigt__p_svn_repos_authz_access_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16135,6 +19075,7 @@ static swig_cast_info _swigc__p_svn_repos_notify_action_t[] = { {&_swigt__p_svn
static swig_cast_info _swigc__p_svn_repos_notify_t[] = { {&_swigt__p_svn_repos_notify_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_repos_notify_warning_t[] = { {&_swigt__p_svn_repos_notify_warning_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_repos_parse_fns2_t[] = { {&_swigt__p_svn_repos_parse_fns2_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_repos_parse_fns3_t[] = { {&_swigt__p_svn_repos_parse_fns3_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_repos_parse_fns_t[] = { {&_swigt__p_svn_repos_parse_fns_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_repos_revision_access_level_t[] = { {&_swigt__p_svn_repos_revision_access_level_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_repos_t[] = { {&_swigt__p_svn_repos_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16147,7 +19088,11 @@ static swig_cast_info _swigc__p_svn_txdelta_op_t[] = { {&_swigt__p_svn_txdelta_
static swig_cast_info _swigc__p_svn_txdelta_stream_t[] = { {&_swigt__p_svn_txdelta_stream_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_txdelta_window_t[] = { {&_swigt__p_svn_txdelta_window_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_version_checklist_t[] = { {&_swigt__p_svn_version_checklist_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_version_ext_linked_lib_t[] = { {&_swigt__p_svn_version_ext_linked_lib_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_version_ext_loaded_lib_t[] = { {&_swigt__p_svn_version_ext_loaded_lib_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_version_extended_t[] = { {&_swigt__p_svn_version_extended_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_version_t[] = { {&_swigt__p_svn_version_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_wc_external_item2_t[] = { {&_swigt__p_svn_wc_external_item2_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_unsigned_long[] = { {&_swigt__p_unsigned_long, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}};
@@ -16158,6 +19103,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_apr_int64_t,
_swigc__p_apr_pool_t,
_swigc__p_char,
+ _swigc__p_f_int_p_void_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_p_svn_stream_t_p_void__p_svn_error_t,
_swigc__p_f_p_p_void_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t,
@@ -16170,6 +19116,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_f_p_void__p_svn_error_t,
_swigc__p_f_p_void_apr_int64_t_svn_fs_pack_notify_action_t_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_apr_hash_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t,
+ _swigc__p_f_p_void_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_q_const__char__p_svn_error_t,
_swigc__p_f_p_void_p_q_const__char_p_q_const__svn_string_t__p_svn_error_t,
_swigc__p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t,
@@ -16191,6 +19138,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_p_svn_fs_txn_t,
_swigc__p_p_svn_lock_t,
_swigc__p_p_svn_repos_parse_fns2_t,
+ _swigc__p_p_svn_repos_parse_fns3_t,
_swigc__p_p_svn_repos_parse_fns_t,
_swigc__p_p_svn_repos_t,
_swigc__p_p_svn_stream_t,
@@ -16207,6 +19155,9 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_auth_provider_t,
_swigc__p_svn_auth_ssl_server_cert_info_t,
_swigc__p_svn_authz_t,
+ _swigc__p_svn_checksum_ctx_t,
+ _swigc__p_svn_checksum_kind_t,
+ _swigc__p_svn_checksum_t,
_swigc__p_svn_commit_info_t,
_swigc__p_svn_config_t,
_swigc__p_svn_delta_editor_t,
@@ -16253,6 +19204,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_opt_subcommand_desc_t,
_swigc__p_svn_patch_file_t,
_swigc__p_svn_patch_t,
+ _swigc__p_svn_prop_inherited_item_t,
_swigc__p_svn_prop_kind,
_swigc__p_svn_prop_patch_t,
_swigc__p_svn_repos_authz_access_t,
@@ -16261,6 +19213,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_repos_notify_t,
_swigc__p_svn_repos_notify_warning_t,
_swigc__p_svn_repos_parse_fns2_t,
+ _swigc__p_svn_repos_parse_fns3_t,
_swigc__p_svn_repos_parse_fns_t,
_swigc__p_svn_repos_revision_access_level_t,
_swigc__p_svn_repos_t,
@@ -16273,7 +19226,11 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_txdelta_stream_t,
_swigc__p_svn_txdelta_window_t,
_swigc__p_svn_version_checklist_t,
+ _swigc__p_svn_version_ext_linked_lib_t,
+ _swigc__p_svn_version_ext_loaded_lib_t,
+ _swigc__p_svn_version_extended_t,
_swigc__p_svn_version_t,
+ _swigc__p_svn_wc_external_item2_t,
_swigc__p_unsigned_long,
_swigc__p_void,
};
@@ -16320,6 +19277,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_delete", _wrap_svn_repos_delete},
{"SVN::_Repos::svn_repos_has_capability", _wrap_svn_repos_has_capability},
{"SVN::_Repos::svn_repos_fs", _wrap_svn_repos_fs},
+{"SVN::_Repos::svn_repos_hotcopy2", _wrap_svn_repos_hotcopy2},
{"SVN::_Repos::svn_repos_hotcopy", _wrap_svn_repos_hotcopy},
{"SVN::_Repos::svn_repos_fs_pack2", _wrap_svn_repos_fs_pack2},
{"SVN::_Repos::svn_repos_fs_pack", _wrap_svn_repos_fs_pack},
@@ -16327,6 +19285,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_recover3", _wrap_svn_repos_recover3},
{"SVN::_Repos::svn_repos_recover2", _wrap_svn_repos_recover2},
{"SVN::_Repos::svn_repos_recover", _wrap_svn_repos_recover},
+{"SVN::_Repos::svn_repos_freeze", _wrap_svn_repos_freeze},
{"SVN::_Repos::svn_repos_db_logfiles", _wrap_svn_repos_db_logfiles},
{"SVN::_Repos::svn_repos_path", _wrap_svn_repos_path},
{"SVN::_Repos::svn_repos_db_env", _wrap_svn_repos_db_env},
@@ -16345,6 +19304,8 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_post_lock_hook", _wrap_svn_repos_post_lock_hook},
{"SVN::_Repos::svn_repos_pre_unlock_hook", _wrap_svn_repos_pre_unlock_hook},
{"SVN::_Repos::svn_repos_post_unlock_hook", _wrap_svn_repos_post_unlock_hook},
+{"SVN::_Repos::svn_repos_hooks_setenv", _wrap_svn_repos_hooks_setenv},
+{"SVN::_Repos::svn_repos_begin_report3", _wrap_svn_repos_begin_report3},
{"SVN::_Repos::svn_repos_begin_report2", _wrap_svn_repos_begin_report2},
{"SVN::_Repos::svn_repos_begin_report", _wrap_svn_repos_begin_report},
{"SVN::_Repos::svn_repos_set_path3", _wrap_svn_repos_set_path3},
@@ -16424,9 +19385,36 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_dump_fs3", _wrap_svn_repos_dump_fs3},
{"SVN::_Repos::svn_repos_dump_fs2", _wrap_svn_repos_dump_fs2},
{"SVN::_Repos::svn_repos_dump_fs", _wrap_svn_repos_dump_fs},
+{"SVN::_Repos::svn_repos_load_fs4", _wrap_svn_repos_load_fs4},
{"SVN::_Repos::svn_repos_load_fs3", _wrap_svn_repos_load_fs3},
{"SVN::_Repos::svn_repos_load_fs2", _wrap_svn_repos_load_fs2},
{"SVN::_Repos::svn_repos_load_fs", _wrap_svn_repos_load_fs},
+{"SVN::_Repos::svn_repos_parse_fns3_t_magic_header_record_set", _wrap_svn_repos_parse_fns3_t_magic_header_record_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_magic_header_record_get", _wrap_svn_repos_parse_fns3_t_magic_header_record_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_uuid_record_set", _wrap_svn_repos_parse_fns3_t_uuid_record_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_uuid_record_get", _wrap_svn_repos_parse_fns3_t_uuid_record_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_new_revision_record_set", _wrap_svn_repos_parse_fns3_t_new_revision_record_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_new_revision_record_get", _wrap_svn_repos_parse_fns3_t_new_revision_record_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_new_node_record_set", _wrap_svn_repos_parse_fns3_t_new_node_record_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_new_node_record_get", _wrap_svn_repos_parse_fns3_t_new_node_record_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_set_revision_property_set", _wrap_svn_repos_parse_fns3_t_set_revision_property_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_set_revision_property_get", _wrap_svn_repos_parse_fns3_t_set_revision_property_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_set_node_property_set", _wrap_svn_repos_parse_fns3_t_set_node_property_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_set_node_property_get", _wrap_svn_repos_parse_fns3_t_set_node_property_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_delete_node_property_set", _wrap_svn_repos_parse_fns3_t_delete_node_property_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_delete_node_property_get", _wrap_svn_repos_parse_fns3_t_delete_node_property_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_remove_node_props_set", _wrap_svn_repos_parse_fns3_t_remove_node_props_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_remove_node_props_get", _wrap_svn_repos_parse_fns3_t_remove_node_props_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_set_fulltext_set", _wrap_svn_repos_parse_fns3_t_set_fulltext_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_set_fulltext_get", _wrap_svn_repos_parse_fns3_t_set_fulltext_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_apply_textdelta_set", _wrap_svn_repos_parse_fns3_t_apply_textdelta_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_apply_textdelta_get", _wrap_svn_repos_parse_fns3_t_apply_textdelta_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_close_node_set", _wrap_svn_repos_parse_fns3_t_close_node_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_close_node_get", _wrap_svn_repos_parse_fns3_t_close_node_get},
+{"SVN::_Repos::svn_repos_parse_fns3_t_close_revision_set", _wrap_svn_repos_parse_fns3_t_close_revision_set},
+{"SVN::_Repos::svn_repos_parse_fns3_t_close_revision_get", _wrap_svn_repos_parse_fns3_t_close_revision_get},
+{"SVN::_Repos::svn_repos_parse_dumpstream3", _wrap_svn_repos_parse_dumpstream3},
+{"SVN::_Repos::svn_repos_get_fs_build_parser4", _wrap_svn_repos_get_fs_build_parser4},
{"SVN::_Repos::svn_repos_parse_fns2_t_new_revision_record_set", _wrap_svn_repos_parse_fns2_t_new_revision_record_set},
{"SVN::_Repos::svn_repos_parse_fns2_t_new_revision_record_get", _wrap_svn_repos_parse_fns2_t_new_revision_record_get},
{"SVN::_Repos::svn_repos_parse_fns2_t_uuid_record_set", _wrap_svn_repos_parse_fns2_t_uuid_record_set},
@@ -16449,9 +19437,6 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_parse_fns2_t_close_node_get", _wrap_svn_repos_parse_fns2_t_close_node_get},
{"SVN::_Repos::svn_repos_parse_fns2_t_close_revision_set", _wrap_svn_repos_parse_fns2_t_close_revision_set},
{"SVN::_Repos::svn_repos_parse_fns2_t_close_revision_get", _wrap_svn_repos_parse_fns2_t_close_revision_get},
-{"SVN::_Repos::svn_repos_parse_dumpstream2", _wrap_svn_repos_parse_dumpstream2},
-{"SVN::_Repos::svn_repos_get_fs_build_parser3", _wrap_svn_repos_get_fs_build_parser3},
-{"SVN::_Repos::svn_repos_get_fs_build_parser2", _wrap_svn_repos_get_fs_build_parser2},
{"SVN::_Repos::svn_repos_parser_fns_t_new_revision_record_set", _wrap_svn_repos_parser_fns_t_new_revision_record_set},
{"SVN::_Repos::svn_repos_parser_fns_t_new_revision_record_get", _wrap_svn_repos_parser_fns_t_new_revision_record_get},
{"SVN::_Repos::svn_repos_parser_fns_t_uuid_record_set", _wrap_svn_repos_parser_fns_t_uuid_record_set},
@@ -16470,12 +19455,30 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_parser_fns_t_close_node_get", _wrap_svn_repos_parser_fns_t_close_node_get},
{"SVN::_Repos::svn_repos_parser_fns_t_close_revision_set", _wrap_svn_repos_parser_fns_t_close_revision_set},
{"SVN::_Repos::svn_repos_parser_fns_t_close_revision_get", _wrap_svn_repos_parser_fns_t_close_revision_get},
+{"SVN::_Repos::svn_repos_parse_dumpstream2", _wrap_svn_repos_parse_dumpstream2},
{"SVN::_Repos::svn_repos_parse_dumpstream", _wrap_svn_repos_parse_dumpstream},
+{"SVN::_Repos::svn_repos_get_fs_build_parser3", _wrap_svn_repos_get_fs_build_parser3},
+{"SVN::_Repos::svn_repos_get_fs_build_parser2", _wrap_svn_repos_get_fs_build_parser2},
{"SVN::_Repos::svn_repos_get_fs_build_parser", _wrap_svn_repos_get_fs_build_parser},
+{"SVN::_Repos::svn_repos_authz_read2", _wrap_svn_repos_authz_read2},
{"SVN::_Repos::svn_repos_authz_read", _wrap_svn_repos_authz_read},
+{"SVN::_Repos::svn_repos_authz_parse", _wrap_svn_repos_authz_parse},
{"SVN::_Repos::svn_repos_authz_check_access", _wrap_svn_repos_authz_check_access},
{"SVN::_Repos::svn_repos_check_revision_access", _wrap_svn_repos_check_revision_access},
+{"SVN::_Repos::svn_repos_fs_get_inherited_props", _wrap_svn_repos_fs_get_inherited_props},
{"SVN::_Repos::svn_repos_remember_client_capabilities", _wrap_svn_repos_remember_client_capabilities},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_magic_header_record", _wrap_svn_repos_parse_fns3_invoke_magic_header_record},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_uuid_record", _wrap_svn_repos_parse_fns3_invoke_uuid_record},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_new_revision_record", _wrap_svn_repos_parse_fns3_invoke_new_revision_record},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_new_node_record", _wrap_svn_repos_parse_fns3_invoke_new_node_record},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_set_revision_property", _wrap_svn_repos_parse_fns3_invoke_set_revision_property},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_set_node_property", _wrap_svn_repos_parse_fns3_invoke_set_node_property},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_delete_node_property", _wrap_svn_repos_parse_fns3_invoke_delete_node_property},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_remove_node_props", _wrap_svn_repos_parse_fns3_invoke_remove_node_props},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_set_fulltext", _wrap_svn_repos_parse_fns3_invoke_set_fulltext},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_apply_textdelta", _wrap_svn_repos_parse_fns3_invoke_apply_textdelta},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_close_node", _wrap_svn_repos_parse_fns3_invoke_close_node},
+{"SVN::_Repos::svn_repos_parse_fns3_invoke_close_revision", _wrap_svn_repos_parse_fns3_invoke_close_revision},
{"SVN::_Repos::svn_repos_parse_fns2_invoke_new_revision_record", _wrap_svn_repos_parse_fns2_invoke_new_revision_record},
{"SVN::_Repos::svn_repos_parse_fns2_invoke_uuid_record", _wrap_svn_repos_parse_fns2_invoke_uuid_record},
{"SVN::_Repos::svn_repos_parse_fns2_invoke_new_node_record", _wrap_svn_repos_parse_fns2_invoke_new_node_record},
@@ -16491,6 +19494,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Repos::svn_repos_invoke_authz_callback", _wrap_svn_repos_invoke_authz_callback},
{"SVN::_Repos::svn_repos_invoke_file_rev_handler", _wrap_svn_repos_invoke_file_rev_handler},
{"SVN::_Repos::svn_repos_invoke_notify_func", _wrap_svn_repos_invoke_notify_func},
+{"SVN::_Repos::svn_repos_invoke_freeze_func", _wrap_svn_repos_invoke_freeze_func},
{"SVN::_Repos::svn_repos_invoke_history_func", _wrap_svn_repos_invoke_history_func},
{0,0}
};
@@ -16553,8 +19557,6 @@ SWIG_InitializeModule(void *clientdata) {
swig_module_info *module_head, *iter;
int found, init;
- clientdata = clientdata;
-
/* check to see if the circular list has been setup, if not, set it up */
if (swig_module.next==0) {
/* Initialize the swig_module */
@@ -16745,25 +19747,30 @@ XS(SWIG_init) {
/* Install commands */
for (i = 0; swig_commands[i].name; i++) {
- newXS((char*) swig_commands[i].name,swig_commands[i].wrapper, (char*)__FILE__);
+ /* Casts only needed for Perl < 5.10. */
+#ifdef __cplusplus
+ newXS(const_cast<char*>(swig_commands[i].name), swig_commands[i].wrapper, const_cast<char*>(__FILE__));
+#else
+ newXS((char*)swig_commands[i].name, swig_commands[i].wrapper, (char*)__FILE__);
+#endif
}
/* Install variables */
for (i = 0; swig_variables[i].name; i++) {
SV *sv;
- sv = get_sv((char*) swig_variables[i].name, TRUE | 0x2 | GV_ADDMULTI);
+ sv = get_sv(swig_variables[i].name, TRUE | 0x2 | GV_ADDMULTI);
if (swig_variables[i].type) {
SWIG_MakePtr(sv,(void *)1, *swig_variables[i].type,0);
} else {
sv_setiv(sv,(IV) 0);
}
- swig_create_magic(sv, (char *) swig_variables[i].name, swig_variables[i].set, swig_variables[i].get);
+ swig_create_magic(sv, swig_variables[i].name, swig_variables[i].set, swig_variables[i].get);
}
/* Install constant */
for (i = 0; swig_constants[i].type; i++) {
SV *sv;
- sv = get_sv((char*)swig_constants[i].name, TRUE | 0x2 | GV_ADDMULTI);
+ sv = get_sv(swig_constants[i].name, TRUE | 0x2 | GV_ADDMULTI);
switch(swig_constants[i].type) {
case SWIG_INT:
sv_setiv(sv, (IV) swig_constants[i].lvalue);
@@ -16772,7 +19779,7 @@ XS(SWIG_init) {
sv_setnv(sv, (double) swig_constants[i].dvalue);
break;
case SWIG_STRING:
- sv_setpv(sv, (char *) swig_constants[i].pvalue);
+ sv_setpv(sv, (const char *) swig_constants[i].pvalue);
break;
case SWIG_POINTER:
SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0);
@@ -16786,297 +19793,312 @@ XS(SWIG_init) {
SvREADONLY_on(sv);
}
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_node_action_change", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_node_action_change)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_node_action_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_node_action_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_node_action_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_node_action_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_node_action_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_node_action_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_load_uuid_default", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_load_uuid_default)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_load_uuid_ignore", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_load_uuid_ignore)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_load_uuid_force", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_load_uuid_force)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_authz_none", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_authz_none)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_authz_read", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_authz_read)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_authz_write", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_authz_write)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_authz_recursive", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_authz_recursive)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_warning", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_warning)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_dump_rev_end", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_dump_rev_end)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_verify_rev_end", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_verify_rev_end)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_dump_end", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_dump_end)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_verify_end", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_verify_end)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_pack_shard_start", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_pack_shard_start)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_pack_shard_end", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_pack_shard_end)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_pack_shard_start_revprop", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_pack_shard_start_revprop)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_pack_shard_end_revprop", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_pack_shard_end_revprop)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_txn_start", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_txn_start)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_txn_committed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_txn_committed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_node_start", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_node_start)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_node_done", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_node_done)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_copied_node", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_copied_node)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_normalized_mergeinfo", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_normalized_mergeinfo)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_mutex_acquired", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_mutex_acquired)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_recover_start", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_recover_start)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_upgrade_start", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_upgrade_start)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_load_skipped_rev", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_load_skipped_rev)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_verify_rev_structure", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_verify_rev_structure)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_warning_found_old_reference", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_warning_found_old_reference)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_warning_found_old_mergeinfo", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_warning_found_old_mergeinfo)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_notify_warning_invalid_fspath", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_notify_warning_invalid_fspath)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_CAPABILITY_MERGEINFO", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("mergeinfo"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_MAGIC_HEADER", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("SVN-fs-dump-format-version"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_FORMAT_VERSION", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(3)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_FORMAT_VERSION_DELTAS", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(3)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_UUID", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("UUID"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_CONTENT_LENGTH", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Content-length"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_REVISION_NUMBER", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Revision-number"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_NODE_PATH", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Node-path"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_NODE_KIND", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Node-kind"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_NODE_ACTION", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Node-action"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_NODE_COPYFROM_PATH", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Node-copyfrom-path"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_NODE_COPYFROM_REV", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Node-copyfrom-rev"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_COPY_SOURCE_MD5", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-copy-source-md5"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_COPY_SOURCE_SHA1", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-copy-source-sha1"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_COPY_SOURCE_CHECKSUM", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-copy-source-md5"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_CONTENT_MD5", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-content-md5"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_CONTENT_SHA1", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-content-sha1"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_CONTENT_CHECKSUM", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-content-md5"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_PROP_CONTENT_LENGTH", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Prop-content-length"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_CONTENT_LENGTH", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-content-length"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_PROP_DELTA", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Prop-delta"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_DELTA", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-delta"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_DELTA_BASE_MD5", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-delta-base-md5"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_DELTA_BASE_SHA1", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-delta-base-sha1"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_REPOS_DUMPFILE_TEXT_DELTA_BASE_CHECKSUM", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("Text-delta-base-md5"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_revision_access_none", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_revision_access_none)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_revision_access_partial", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_revision_access_partial)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_repos_revision_access_full", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_repos_revision_access_full)));
SvREADONLY_on(sv);